diff --git a/ci/__init__.py b/ci/__init__.py deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/ci/basop-pages/basop_index.html b/ci/basop-pages/basop_index.html deleted file mode 100644 index 148decbd1932a9e0bda68bf5d96f45d4dc3b6050..0000000000000000000000000000000000000000 --- a/ci/basop-pages/basop_index.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -

Ivas BASOP code Development

- -

Daily long testvector tests

- - - -

Complexity Reports

- - {} - - diff --git a/ci/basop-pages/create_report_pages.py b/ci/basop-pages/create_report_pages.py deleted file mode 100644 index cf3a3a6472347271149589643cb7275ddf4ee7f3..0000000000000000000000000000000000000000 --- a/ci/basop-pages/create_report_pages.py +++ /dev/null @@ -1,340 +0,0 @@ -import csv -import pathlib -import argparse -from functools import partial - -FORMATS = ["Stereo", "ISM", "Multichannel", "MASA", "SBA", "OSBA", "OMASA", "Renderer"] - -CSV_DELIM = ";" -SUBPAGE_TMPL_CSS = """ - -""" - -SUBPAGE_TMPL_HTML = """ - -

Report for job {job_name}

- -Comparing: - - -
-

Summary page

-
-
- -How is the table sorted? - -
-What do the colours indicate - -
-How to interpret the Result column? - - - - - - {table_header_a} - - - {table_header_b} - - -{table_body} - -
-""" -TD_TMPL_NORMAL = "{}" -TD_TMPL_INCREASE = "{}" -TD_TMPL_REDUCE = "{}" -TR_TMPL = "{}" -TH_TMPL_GLOBAL = '{}' -TH_TMPL_DIFFERENTIAL = '{}' -TH_TMPL_SECOND_ROW = '{}' - -ARROW_UP = '' -ARROW_DOWN = '' - -# expected columns. actual columns are filtered from the incoming data later, this -# is mainly for controlling the order in the output table -COLUMNS = [ - "testcase", - "Format", - "Category", - "Result", - "MLD", - "MAXIMUM ABS DIFF", - "MIN_SSNR", - "MIN_ODG", -] -COLUMNS_GLOBAL = COLUMNS[:1] -COLUMNS_DIFFERENTIAL = COLUMNS[3:] -COLUMNS_DIFFERENTIAL_NOT_MLD = COLUMNS_DIFFERENTIAL[2:] - - -def create_subpage( - html_out, - csv_out, - csv_current: str, - csv_previous: str, - id_current: int, - id_previous: int, - job_name: str, -): - merged_reports = merge_and_cleanup_mld_reports( - csv_current, csv_previous, id_current, id_previous - ) - write_out_csv(merged_reports, merged_reports[0].keys(), csv_out) - - table_header_a = "".join( - [TH_TMPL_GLOBAL.format(c) for c in COLUMNS_GLOBAL] - + [TH_TMPL_DIFFERENTIAL.format(c) for c in COLUMNS_DIFFERENTIAL] - ) - table_header_b = list() - for c in COLUMNS_DIFFERENTIAL: - table_header_b.append( - TH_TMPL_SECOND_ROW.format(f"Previous Run
ID: {id_previous}") - ) - table_header_b.append( - TH_TMPL_SECOND_ROW.format(f"Current Run
ID: {id_current}") - ) - table_header_b = "".join(table_header_b) - table_body = "\n".join( - tr_from_row(row, id_current, id_previous) for row in merged_reports - ) - - new_subpage = SUBPAGE_TMPL_CSS + SUBPAGE_TMPL_HTML.format( - id_current=id_current, - id_previous=id_previous, - table_body=table_body, - job_name=job_name, - table_header_a=table_header_a, - table_header_b=table_header_b, - ) - with open(html_out, "w") as f: - f.write(new_subpage) - - -def write_out_csv(data, col_names, outfile): - with open(outfile, "w") as f: - writer = csv.DictWriter(f, col_names, delimiter=";") - writer.writeheader() - for row in data: - writer.writerow(row) - - -def tr_from_row(row, id_current, id_previous): - tr = list() - - # pre-filter columns to handle case where new columns are added - # only include columns that are there in both data - columns_global = [c for c in COLUMNS_GLOBAL if c in row] - diff_col_tmpl = "{}-{}" - incoming_cols = row.keys() - columns_differential = [ - c - for c in COLUMNS_DIFFERENTIAL - if diff_col_tmpl.format(c, id_current) in incoming_cols - and diff_col_tmpl.format(c, id_previous) in incoming_cols - ] - - for c in columns_global: - # this is currently for the "testcase" column - here we don't compare, just one value is used - tr.append(TD_TMPL_NORMAL.format(row[c])) - for c in columns_differential: - # this is for all columns where we compare between current and previous run - prev = row[f"{c}-{id_previous}"] - curr = row[f"{c}-{id_current}"] - - if c == "Result": - # print errors in bold red font - td_tmpl = TD_TMPL_INCREASE if prev == "ERROR" else TD_TMPL_NORMAL - tr.append(td_tmpl.format(prev)) - td_tmpl = TD_TMPL_INCREASE if curr == "ERROR" else TD_TMPL_NORMAL - tr.append(td_tmpl.format(curr)) - else: - td_tmpl_curr = TD_TMPL_NORMAL - td_tmpl_prev = TD_TMPL_NORMAL - try: - if float(curr) > float(prev): - curr += f" {ARROW_UP}" - # increase is bad -> mark in red, execpt for SNR for which it is good -> mark in green - td_tmpl_curr = ( - TD_TMPL_REDUCE if c == "MIN_SSNR" else TD_TMPL_INCREASE - ) - elif float(curr) < float(prev): - curr += f" {ARROW_DOWN}" - # reduce is good -> mark in green, execpt for SNR for which it is bad -> mark in red - td_tmpl_curr = ( - TD_TMPL_INCREASE if c == "MIN_SSNR" else TD_TMPL_REDUCE - ) - except ValueError: - # if we land here, one of the cells is not a number, this indicates a crash - # or some error in the scripts, so mark with red as well - td_tmpl_curr = TD_TMPL_INCREASE - td_tmpl_prev = TD_TMPL_INCREASE - - tr.append(td_tmpl_prev.format(prev)) - tr.append(td_tmpl_curr.format(curr)) - - return TR_TMPL.format("\n".join(tr)) - - -def merge_and_cleanup_mld_reports( - csv_current: str, csv_previous: str, id_current: int, id_previous: int -): - with open(csv_current) as f: - current_reader = csv.DictReader(f, delimiter=CSV_DELIM) - current = list(current_reader) - with open(csv_previous) as f: - previous = list(csv.DictReader(f, delimiter=CSV_DELIM)) - - # TODO: handle newly added testcases - for now assume that both have the same columns - merge_key = "testcase" - other_keys = [k for k in current_reader.fieldnames if k != merge_key] - merged = merge_tables( - current, previous, id_current, id_previous, merge_key, other_keys - ) - - # TODO: sort on result as well - mld_col_curr = f"MLD-{id_current}" - mld_col_prev = f"MLD-{id_previous}" - - def sort_func(x, other_col_pairs): - """ - Sort function for the rows. Puts missing or invalid values on top as those usually - indicate crashes. Then sorts by MLD difference in descending order. MLD diffs of zero - are uninteresting and are put last. - """ - try: - cols = [mld_col_curr, mld_col_prev] + [p[1] for p in other_col_pairs] - for c in cols: - float(x[c]) - except ValueError: - # Value is no valid floating point value - return float("inf") - - diff = float(x[mld_col_curr]) - float(x[mld_col_prev]) - - # if no diff in mld col found, check if there is a diff in any other measure - if diff == 0: - diff = float("-inf") - - diff_other = 0 - for col_pair in other_col_pairs: - col_prev = col_pair[0] - col_curr = col_pair[1] - - try: - diff_other += abs(float(x[col_curr]) - float(x[col_prev])) - except ValueError: - # can't make float from the column contents, probably NONE -> put to top - diff_other += float("inf") - - if diff_other > 0: - diff = -1000000 - - return diff - - other_col_pairs = [ - (f"{col}-{id_previous}", f"{col}-{id_current}") - for col in COLUMNS_DIFFERENTIAL_NOT_MLD - ] - merged = sorted( - merged, key=partial(sort_func, other_col_pairs=other_col_pairs), reverse=True - ) - - # remove the unecessary whole path from the testcase names - for row in merged: - row["testcase"] = pathlib.Path(row["testcase"]).name - - return merged - - -def merge_tables(tbl1, tbl2, suffix1, suffix2, merge_key, other_keys): - merged = list() - - for row1 in tbl1: - new_row = dict() - for key in other_keys: - new_row[f"{key}-{suffix1}"] = row1[key] - - found_merge_key_in_both_tbls = False - for row2 in tbl2: - if row1[merge_key] == row2[merge_key]: - new_row[merge_key] = row1[merge_key] - for key in other_keys: - if key in row2: # In case key is missing, just insert a blank - new_row[f"{key}-{suffix2}"] = row2[key] - else: - new_row[f"{key}-{suffix2}"] = "" - - found_merge_key_in_both_tbls = True - break - - if found_merge_key_in_both_tbls: - merged.append(new_row) - - return merged - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("html_out") - parser.add_argument("csv_out") - parser.add_argument("csv_current") - parser.add_argument("csv_previous") - parser.add_argument("id_current", type=int) - parser.add_argument("id_previous", type=int) - parser.add_argument("job_name") - args = parser.parse_args() - - create_subpage( - args.html_out, - args.csv_out, - args.csv_current, - args.csv_previous, - args.id_current, - args.id_previous, - args.job_name, - ) diff --git a/ci/basop-pages/create_summary_page.py b/ci/basop-pages/create_summary_page.py deleted file mode 100644 index 1f146c4cbbb5bfacf57bb908958ee935b3051d3e..0000000000000000000000000000000000000000 --- a/ci/basop-pages/create_summary_page.py +++ /dev/null @@ -1,55 +0,0 @@ -import argparse - -from create_report_pages import SUBPAGE_TMPL_CSS, FORMATS - -MEASURES = ["MLD","DIFF","SSNR","ODG"] - -SUMMARY_PAGE_TMPL_HTML = """ - -

Summary for job {job_name}, ID: {id_current}

- -{images} - -""" - -def create_summary_page( - html_out, - id_current: int, - job_name: str, -): - images = histogram_summary(job_name) - - new_summary_page = SUBPAGE_TMPL_CSS + SUMMARY_PAGE_TMPL_HTML.format( - id_current=id_current, - job_name=job_name, - images=images, - ) - with open(html_out, "w") as f: - f.write(new_summary_page) - -def histogram_summary( - job_name:str, - ): - images = "
" - for m in MEASURES: - images += ( - f"

{m} summary {job_name}

\n" - + " ".join( - [f"" for x in FORMATS] - ) - + f'\n
summary_{m}.csv
\n\n' - ) - return images - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("html_out") - parser.add_argument("id_current", type=int) - parser.add_argument("job_name") - args = parser.parse_args() - - create_summary_page( - args.html_out, - args.id_current, - args.job_name, - ) diff --git a/ci/build_all_linux.sh b/ci/build_all_linux.sh deleted file mode 100644 index 63beef18f07338294d40eda67333536fceac0635..0000000000000000000000000000000000000000 --- a/ci/build_all_linux.sh +++ /dev/null @@ -1,42 +0,0 @@ -#! /usr/bin/bash - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 1 -fi - -# first build codec, everything else needs this anyway -make clean && make all -j -# build unittests -make unittests -j -# build standalone TD object renderer -make -C scripts/td_object_renderer/object_renderer_standalone -j - diff --git a/ci/build_codec_instrumented_linux.sh b/ci/build_codec_instrumented_linux.sh deleted file mode 100644 index 2ff293c61396d409a99a2b52c36f3f21121110c4..0000000000000000000000000000000000000000 --- a/ci/build_codec_instrumented_linux.sh +++ /dev/null @@ -1,39 +0,0 @@ -#! /usr/bin/bash - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 1 -fi - -cd scripts -./prepare_instrumentation.sh -cd c-code_instrument -make -j diff --git a/ci/build_codec_sanitizers_linux.sh b/ci/build_codec_sanitizers_linux.sh deleted file mode 100644 index f599d607ca41504208d52f3ab5f809b0c73859fc..0000000000000000000000000000000000000000 --- a/ci/build_codec_sanitizers_linux.sh +++ /dev/null @@ -1,43 +0,0 @@ -#! /usr/bin/bash - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 1 -fi - -# CI linux container would do this, can stay commented if clang (v13) is in your path -#PATH=$PATH:/usr/lib/llvm-13/bin -make clean -make CLANG=1 -j -make clean -make CLANG=2 -j -make clean -make CLANG=3 -j diff --git a/ci/check_self_test_names.py b/ci/check_self_test_names.py deleted file mode 100644 index 3dea1a1200301d6cfd89c07f4811a901134dd627..0000000000000000000000000000000000000000 --- a/ci/check_self_test_names.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/env python3 -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" -import argparse -import sys - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("prm_file", type=str) - parser.add_argument("max_length", type=int) - args = parser.parse_args() - - skiplines = 8 - exceeded = [] - with open(args.prm_file, "r") as f: - for line in f: - if skiplines > 0: - skiplines = skiplines - 1 - else: - if "//" in line and all(x not in line for x in ["IVAS_cod", "IVAS_dec", "IVAS_rend"]) and len(line) > args.max_length: - exceeded.append(line) - - if exceeded: - print( - f"Failed! *** Following tests cases exceeded the limit of {args.max_length} characters ***\n" - ) - print("\n".join(exceeded)) - sys.exit(-1) - - print("All OK") - sys.exit(0) diff --git a/ci/collect_artifacts.py b/ci/collect_artifacts.py deleted file mode 100644 index c67445e51cdbc67e190622e8ee0387abd0ed61a8..0000000000000000000000000000000000000000 --- a/ci/collect_artifacts.py +++ /dev/null @@ -1,87 +0,0 @@ -#! /usr/bin/env python3 -import argparse -import pathlib -import re - -TEST_TYPES = ["sanitizers"] - - -def main(args): - - test = args.test - file = args.console_out_file - if test == "sanitizers": - collect_for_sanitizer_test(file) - - -def find_failed_files_for_sanitizer_test(console_log: list) -> dict(): - - pattern_line = r"(CLANG.) reports . error\(s\) for (.*)" - - files_found = dict() - for line in console_log: - m_line = re.match(pattern_line, line) - - if m_line is not None: - test, filename = m_line.groups() - if test in files_found: - files_found[test].append(filename) - else: - files_found[test] = [filename] - - return files_found - - -def collect_for_sanitizer_test(file): - - with open(file) as f: - console_log = f.readlines() - - start_indicators = ["Adding config" in l for l in console_log] - idx_first_run = start_indicators.index(True) - idx_second_run = start_indicators[idx_first_run + 1:].index(True) + idx_first_run + 1 - no_plc_part = console_log[idx_first_run:idx_second_run] - plc_part = console_log[idx_second_run:] - - files_to_archive_noPLC = find_failed_files_for_sanitizer_test(no_plc_part) - files_to_archive_PLC = find_failed_files_for_sanitizer_test(plc_part) - - log_folder = pathlib.Path("./LOGS_PLC") - log_folder.mkdir() - for test in files_to_archive_PLC.keys(): - log_folder.joinpath(test).mkdir() - for test, files in files_to_archive_PLC.items(): - folder = log_folder.joinpath(test) - for p in files: - source = pathlib.Path(p) - target = folder.joinpath(source.name) - source.rename(target) - - log_folder_noPLC = pathlib.Path("./LOGS_noPLC") - log_folder_noPLC.mkdir() - for test in files_to_archive_noPLC.keys(): - log_folder_noPLC.joinpath(test).mkdir() - for test, files in files_to_archive_noPLC.items(): - folder = log_folder_noPLC.joinpath(test) - for p in files: - source = pathlib.Path(p.replace("/logs/", "/logs_noPLC/")) - target = folder.joinpath(source.name) - source.rename(target) - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument( - "test", - type=str, - choices=TEST_TYPES, - help="for which test should artifacts be collected?", - ) - parser.add_argument( - "console_out_file", - type=str, - help="file with stdout from IvasBuildAndRunChecks.py", - ) - args = parser.parse_args() - - main(args) diff --git a/ci/combine_genpatt_and_jbm_profile.py b/ci/combine_genpatt_and_jbm_profile.py deleted file mode 100644 index 4d2fd38a0042723d655718547d238a570dbb627d..0000000000000000000000000000000000000000 --- a/ci/combine_genpatt_and_jbm_profile.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python3 -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import argparse - -import numpy as np - -ERR_MAGIC_NUM_DLY_PROF = -1 -ERR_MAGIC_NUM_G192 = 27424 - - -def combine_error_profiles(genpatt_file, jbm_dly_profile, output_file): - ep = np.fromfile(genpatt_file, dtype="int16") - with open(jbm_dly_profile) as f: - dly = np.asarray([int(l.strip()) for l in f.readlines()]) - - # if one wants to differently-sized files, add wraparound/shorten logic here - # in ci, file lengths will match - assert len(ep) == len(dly) - - # remove lost frames already in the dly profile - # replace with no delay (not there in the profile files, except the all-zero one) - err_idx = np.where(dly == ERR_MAGIC_NUM_DLY_PROF)[0] - dly[err_idx] = 0 - - # insert lost frames based on .g192 file - err_idx = np.where(ep == ERR_MAGIC_NUM_G192)[0] - dly[err_idx] = -1 - - with open(output_file, "w") as f: - for d in dly: - f.write(f"{int(d)}\n") - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("genpatt_file") - parser.add_argument("jbm_dly_profile") - parser.add_argument("output_file") - args = parser.parse_args() - - combine_error_profiles(**vars(args)) diff --git a/ci/comment_defines.py b/ci/comment_defines.py deleted file mode 100644 index 7f6a77af4bdc15fb8d90ffcdf4e1709cd754ff21..0000000000000000000000000000000000000000 --- a/ci/comment_defines.py +++ /dev/null @@ -1,51 +0,0 @@ -import argparse -import re - - -def process_file(file_path: str, defines_re): - with open(file_path, "r", encoding="utf-8") as file: - lines = file.readlines() - - num_subbed = dict() - for name in defines_re.keys(): - num_subbed[name] = 0 - - for i, line in enumerate(lines): - for name, regex in defines_re.items(): - # Spaces are replaced with underscores to avoid matching on multiple runs - lines[i] = regex.sub( - lambda x: f"/* {x.group(0).replace(' ', '_')} */", line - ) - - if lines[i] != line: - num_subbed[name] += 1 - - with open(file_path, "w", encoding="utf-8") as file: - file.writelines(lines) - - print(f"Processed {file_path}") - for name, num in num_subbed.items(): - print(f"{name} - {num} occurences commented") - print("") - - -def compile_define_re(define_name: str): - return re.compile(f"#define\\s+{define_name}") - - -def main(args): - defines_re = dict() - for define_name in args.defines: - defines_re[define_name] = compile_define_re(define_name) - - for file_path in args.files: - process_file(file_path, defines_re) - - -if __name__ == "__main__": - parser = argparse.ArgumentParser( - description="Comment out preprocessor defines in c/c++ files" - ) - parser.add_argument("-f", "--files", nargs="+", required=True, type=str) - parser.add_argument("-d", "--defines", nargs="+", required=True, type=str) - main(parser.parse_args()) diff --git a/ci/complexity_measurements/check_for_changes.py b/ci/complexity_measurements/check_for_changes.py deleted file mode 100644 index 50deb76e08202f6b83f2f5ee2afe7499af2cc866..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/check_for_changes.py +++ /dev/null @@ -1,65 +0,0 @@ -import argparse -import csv -import sys - - -THRESH = 0.01 -COLS = [ - [3, 5, 7, 9], # wmops_all - [3,5,7,8,10,12,13,15,17], # ram_all - [3,5,7,9,11,13,15,17,19], # rom_all -] - - -def main(args): - linewise_logfiles = [args.wmops_logfile, args.ram_logfile, args.rom_logfile] - changes_found_linewise = any([check_linewise_logfile(f, c) for f, c in zip(linewise_logfiles, COLS)]) - - if changes_found_linewise: - print("Global max of WMOPS, RAM or ROM changed") - - return int(changes_found_linewise) - - -def check_linewise_logfile(filepath, cols): - with open(filepath) as f: - contents = [line for line in csv.reader(f, delimiter=" ")] - - curr = contents[-1] - try: - prev = contents[-2] - except IndexError: - # this is for handling first runs of new complexity jobs -> only one line present - # do not report any changes then - prev = curr - - changes_found = False - for c in cols: - if curr[c] == prev[c]: - abs_perc_change = 0 - else: - try: - abs_perc_change = abs(float(curr[c]) / float(prev[c]) - 1) - except ZeroDivisionError: - # in some cases, such as missing instrumentation, values can be zero, so catch that here - # from the first if we know that curr can not be 0 too -> report change - abs_perc_change = THRESH + 1 - if abs_perc_change > THRESH: - changes_found = True - break - - if changes_found: - print("Previous log line:", prev) - print("Current log line:", curr) - - return changes_found - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("wmops_logfile") - parser.add_argument("ram_logfile") - parser.add_argument("rom_logfile") - args = parser.parse_args() - - sys.exit(main(args)) diff --git a/ci/complexity_measurements/ep_10pct_fer.g192 b/ci/complexity_measurements/ep_10pct_fer.g192 deleted file mode 100644 index ba6bfc78b30bed13fa038fadb24f81b4aa99c59e..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/ep_10pct_fer.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k k k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k k!k!k k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k k k!k!k k k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k k!k!k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k k k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k k!k!k!k k k k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k k k!k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k k k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k k!k!k!k k k!k!k!k!k k!k k!k!k k!k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k k k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k k!k!k!k!k!k k k!k k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k k!k!k!k!k k!k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k!k k!k k!k k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k k!k k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k k k!k!k!k k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k k k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k k!k k!k!k k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k k k!k!k!k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k k!k!k!k!k!k k k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k k!k!k!k k!k!k!k!k!k k!k k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k k!k!k!k k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k k k!k!k!k k!k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k k k!k!k!k!k!k k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k!k!k!k k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k k!k!k!k k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k k!k!k k k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k k!k k!k k k!k!k!k!k!k!k!k k!k!k!k k k!k k k!k!k!k!k!k!k!k k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k k!k k!k k!k!k!k!k!k k!k!k!k!k!k k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k \ No newline at end of file diff --git a/ci/complexity_measurements/genWebpageData_Ram.csh b/ci/complexity_measurements/genWebpageData_Ram.csh deleted file mode 100644 index c0e3eab411a23ddd2b798859d71b0cd12be6008f..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/genWebpageData_Ram.csh +++ /dev/null @@ -1,504 +0,0 @@ -#!/bin/tcsh - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -set maxValues = 40 - -if (${#argv} != 3) then - echo usage: $0 \ \ \ - exit -endif - -set srcFile = $1 -set file_final = $2 -set file = ${file_final}_new_$$ -set graphName = $3 - - -set tmpBase = `basename $0` -set tmpFile = /tmp/${tmpBase}_$$ -rm -f ${tmpFile} -cat ${srcFile} | tail -n ${maxValues} > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -set maxNumWordsLine = 19 - -rm -f $file -touch $file - -echo "var $graphName = {" >> $file -echo ' ram_worstcase: {' >> $file -echo ' description: "Worst Case RAM",' >> $file -echo ' direction: -1,' >> $file -echo ' runs: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - @ i++ - set separator = "," - if ( $i == $nLines ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set revision = $tmp[1] - set shortDate = `echo $tmp[2] | sed -e "s/_/\ /g"` - set fullDate = `echo $tmp[3] | sed -e "s/_/\ /g"` - set maxTotalRamEnc = $tmp[5] - set maxTotalRamDec = $tmp[7] - set maxStackEnc = $tmp[10] - set maxStackDec = $tmp[12] - set maxHeapEnc = $tmp[15] - set maxHeapDec = $tmp[17] - set logFile = $tmp[19] - - echo ' {' >> $file - echo ' fullDate: "'${fullDate}'",' >> $file - echo ' shortDate: "'${shortDate}'",' >> $file - echo ' revision: "'${revision}'",' >> $file - echo ' maxTotalRamEnc: "'${maxTotalRamEnc}'",' >> $file - echo ' maxTotalRamDec: "'${maxTotalRamDec}'",' >> $file - echo ' maxStackEnc: "'${maxStackEnc}'",' >> $file - echo ' maxStackDec: "'${maxStackDec}'",' >> $file - echo ' maxHeapEnc: "'${maxHeapEnc}'",' >> $file - echo ' maxHeapDec: "'${maxHeapDec}'",' >> $file - echo ' logFile: "'${logFile}'"' >> $file - echo ' }'${separator} >> $file - -end -echo ' ],' >> $file - -# begin displays -echo ' displays: [' >> $file - -# requirement RAM -echo ' {' >> $file -echo ' lines: { show: false },' >> $file -echo ' points: { show: false, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#000000",' >> $file -echo ' id: "requirementRam",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - # TODO: add real requirement once decided on - set score = 0 - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# requirement RAM - -# maxTotalRamCodecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FF0000",' >> $file -echo ' id: "maxTotalRamCodecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[4] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxTotalRamCodecScore - -# maxTotalRamEncScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FF8000",' >> $file -echo ' id: "maxTotalRamEncScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[6] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxTotalRamEncScore - -# maxTotalRamDecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FFFF00",' >> $file -echo ' id: "maxTotalRamDecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[8] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxTotalRamDecScore - -# maxStackCodecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#004000",' >> $file -echo ' id: "maxStackCodecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[9] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxStackCodecScore - - -# maxStackEncScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#008000",' >> $file -echo ' id: "maxStackEncScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[11] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxStackEncScore - -# maxStackDecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#00FF00",' >> $file -echo ' id: "maxStackDecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[13] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxStackDecScore - -# maxHeapCodecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#800080",' >> $file -echo ' id: "maxHeapCodecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[14] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxHeapCodecScore - -# maxHeapEncScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#0000FF",' >> $file -echo ' id: "maxHeapEncScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[16] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxHeapEncScore - -# maxHeapDecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#0080C0",' >> $file -echo ' id: "maxHeapDecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[18] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' }' >> $file -# maxHeapDecScore - -echo ' ]' >> $file -# end displays - -echo ' }' >> $file -echo '};' >> $file - -mv -f $file $file_final -rm -f $tmpFile diff --git a/ci/complexity_measurements/genWebpageData_Rom.csh b/ci/complexity_measurements/genWebpageData_Rom.csh deleted file mode 100644 index d2ed0b3f949b252e651ae261ea11afb2861ee2c7..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/genWebpageData_Rom.csh +++ /dev/null @@ -1,535 +0,0 @@ -#!/bin/tcsh - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -set maxValues = 40 - -if (${#argv} != 3) then - echo usage: $0 \ \ \ - exit -endif - -set srcFile = $1 -set file_final = $2 -set file = ${file_final}_new_$$ -set graphName = $3 - -set tmpBase = `basename $0` -set tmpFile = /tmp/${tmpBase}_$$ -rm -f ${tmpFile} -cat ${srcFile} | tail -n ${maxValues} > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -set maxNumWordsLine = 21 - -rm -f $file -touch $file - -echo "var $graphName = {" >> $file -echo ' rom_worstcase: {' >> $file -echo ' description: "ROM",' >> $file -echo ' direction: -1,' >> $file -echo ' runs: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - @ i++ - set separator = "," - if ( $i == $nLines ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - - # 1 revision, - # 2 shortDate, - # 3 fullDate, - - # 4 max_total_encdec[1], - - # 5 max_prom_enc[0], - # 6 max_prom_enc[1], - # 7 max_prom_dec[0], - # 8 max_prom_dec[1], - # 9 max_prom_com[0], - # 10 max_prom_com[1], - # 11 max_prom_rend[0], - # 12 max_prom_rend[1], - - # 13 max_trom_enc[0], - # 14 max_trom_enc[1], - # 15 max_trom_dec[0], - # 16 max_trom_dec[1], - # 17 max_trom_com[0], - # 18 max_trom_com[1], - # 19 max_trom_rend[0], - # 20 max_trom_rend[1], - - # 21 newsletterFilenameLast, - - - set revision = $tmp[1] - set shortDate = `echo $tmp[2] | sed -e "s/_/\ /g"` - set fullDate = `echo $tmp[3] | sed -e "s/_/\ /g"` - set PromEnc = $tmp[5] - set PromDec = $tmp[7] - set PromCom = $tmp[9] - set PromRend = $tmp[11] - set TromEnc = $tmp[13] - set TromDec = $tmp[15] - set TromCom = $tmp[17] - set TromRend = $tmp[19] - set logFile = $tmp[21] - - echo ' {' >> $file - echo ' fullDate: "'${fullDate}'",' >> $file - echo ' shortDate: "'${shortDate}'",' >> $file - echo ' revision: "'${revision}'",' >> $file - echo ' PromEnc: "'${PromEnc}'",' >> $file - echo ' PromDec: "'${PromDec}'",' >> $file - echo ' PromCom: "'${PromCom}'",' >> $file - echo ' PromRend: "'${PromRend}'",' >> $file - echo ' TromEnc: "'${TromEnc}'",' >> $file - echo ' TromDec: "'${TromDec}'",' >> $file - echo ' TromCom: "'${TromCom}'",' >> $file - echo ' TromRend: "'${TromRend}'",' >> $file - echo ' logFile: "'${logFile}'"' >> $file - echo ' }'${separator} >> $file - -end -echo ' ],' >> $file - -# begin displays -echo ' displays: [' >> $file - -# requirement ROM -echo ' {' >> $file -echo ' lines: { show: false },' >> $file -echo ' points: { show: false, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#000000",' >> $file -echo ' id: "requirementRom",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - # TODO: add real requirement once decided on - set score = 0 - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# requirement ROM - -# TotalRomCodecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FF0000",' >> $file -echo ' id: "TotalRomCodecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[4] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# TotalRomCodecScore - -# maxPROMEncScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FF8000",' >> $file -echo ' id: "maxPROMEncScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[6] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxPROMEncScore - -# maxPROMDecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FFFF00",' >> $file -echo ' id: "maxPROMDecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[8] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxPROMEncScore - -# maxPROMComScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#800080",' >> $file -echo ' id: "maxPROMComScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[10] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxPROMComScore - - -# maxPROMRendScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#0000FF",' >> $file -echo ' id: "maxPROMRendScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[12] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxPROMRendScore - -# maxTROMEncScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#0080C0",' >> $file -echo ' id: "maxTROMEncScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[14] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxTROMEncScore - -# maxTROMDecScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#004000",' >> $file -echo ' id: "maxTROMDecScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[16] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxTROMDecScore - -# maxTROMComScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#008000",' >> $file -echo ' id: "maxTROMComScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[18] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# maxTROMComScore - -# maxTROMRendScore -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#00FF00",' >> $file -echo ' id: "maxTROMRendScore",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLine ) then - continue - endif - - set score = $tmp[20] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' }' >> $file -# maxTROMRendScore - -echo ' ]' >> $file -# end displays - -echo ' }' >> $file -echo '};' >> $file - -mv -f $file $file_final -rm -f $tmpFile diff --git a/ci/complexity_measurements/genWebpageData_WMOPS.csh b/ci/complexity_measurements/genWebpageData_WMOPS.csh deleted file mode 100644 index 8e052210c8ea9879ff5eba25041a66520cdb631c..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/genWebpageData_WMOPS.csh +++ /dev/null @@ -1,500 +0,0 @@ -#!/bin/tcsh - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -set maxValues = 40 - -if (${#argv} != 3) then - echo usage: $0 \ \ \ - exit -endif - -set srcFile = $1 -set file_final = $2 -set file = ${file_final}_new_$$ -set graphName = $3 - - -set tmpBase = `basename $0` -set tmpFile = /tmp/${tmpBase}_$$ -rm -f ${tmpFile} -cat ${srcFile} | tail -n ${maxValues} > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -set maxNumWordsLineOld = 12 -set maxNumWordsLineNew = 19 - -rm -f $file -touch $file - -echo "var $graphName = {" >> $file -echo ' wmops_worstcase: {' >> $file -echo ' description: "Worst Case WMOPS",' >> $file -echo ' direction: -1,' >> $file -echo ' runs: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - @ i++ - set separator = "," - if ( $i == $nLines ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - set revision = $tmp[1] - set shortDate = `echo $tmp[2] | sed -e "s/_/\ /g"` - set fullDate = `echo $tmp[3] | sed -e "s/_/\ /g"` - set worstCaseEnc = $tmp[5] - set worstCaseDec = $tmp[7] - set worstCaseCodec = $tmp[9] - set fixpointScalingFac = $tmp[11] - if ( $numWords == $maxNumWordsLineOld ) then - set logFile = $tmp[12] - set worstCaseEncRs = "" - set worstCaseDecRs = "" - set worstCaseCodecRs = "" - else if ( $numWords < $maxNumWordsLineNew ) then - set logFile = "" - set worstCaseEncRs = "" - set worstCaseDecRs = "" - set worstCaseCodecRs = "" - else - set logFile = $tmp[19] - set worstCaseEncRs = $tmp[13] - set worstCaseDecRs = $tmp[15] - set worstCaseCodecRs = $tmp[17] - endif - - - echo ' {' >> $file - echo ' fullDate: "'${fullDate}'",' >> $file - echo ' shortDate: "'${shortDate}'",' >> $file - echo ' revision: "'${revision}'",' >> $file - echo ' worstCaseEnc: "'${worstCaseEnc}'",' >> $file - echo ' worstCaseDec: "'${worstCaseDec}'",' >> $file - echo ' worstCaseCodec: "'${worstCaseCodec}'",'>> $file - echo ' worstCaseEncRs: "'${worstCaseEncRs}'",' >> $file - echo ' worstCaseDecRs: "'${worstCaseDecRs}'",' >> $file - echo ' worstCaseCodecRs: "'${worstCaseCodecRs}'",'>> $file - echo ' fixpointScalingFac: "'${fixpointScalingFac}'",'>> $file - echo ' logFile: "'${logFile}'"' >> $file - echo ' }'${separator} >> $file - -end -echo ' ],' >> $file - -# begin displays -echo ' displays: [' >> $file - -# 135 WMOPS boundary -echo ' {' >> $file -echo ' lines: { show: false },' >> $file -echo ' points: { show: false, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: false,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#000000",' >> $file -echo ' id: "requirement",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - # TODO: add real requirement once decided on - set score = 0 - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# 135 WMOPS boundary - -# worst case codec -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#0080FF",' >> $file -echo ' id: "worst case codec",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - set score = $tmp[10] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# end worst case codec - -# worst case enc/dec -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FF8000",' >> $file -echo ' id: "worst case enc/dec",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - set score = $tmp[4] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# worst case enc/dec - -# worst case encoder -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#CF4B4B",' >> $file -echo ' id: "worst case enc",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - set score = $tmp[6] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# end worst case encoder - -# worst case decoder -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#008040",' >> $file -echo ' id: "worst case dec",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - set score = $tmp[8] - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# end worst case decoder - -########### rateswitching ############### - -# worst case codec rateswitching -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#40C4FF",' >> $file -echo ' id: "worst case codec rs",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - if ( $numWords < $maxNumWordsLineNew ) then - set score = 0 - else - set score = $tmp[18] - endif - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# end worst case codec rateswitching - -# worst case enc/dec rateswitching -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#FFC480",' >> $file -echo ' id: "worst case enc/dec rs",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - if ( $numWords < $maxNumWordsLineNew ) then - set score = 0 - else - set score = $tmp[12] - endif - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# worst case enc/dec rateswitching - -# worst case encoder rateswitching -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#CF8080",' >> $file -echo ' id: "worst case enc rs",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - if ( $numWords < $maxNumWordsLineNew ) then - set score = 0 - else - set score = $tmp[14] - endif - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' },' >> $file -# end worst case encoder rateswitching - -# worst case decoder rateswitching -echo ' {' >> $file -echo ' lines: { show: true },' >> $file -echo ' points: { show: true, fillColor: "#ffffff" },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: true,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#00F040",' >> $file -echo ' id: "worst case dec rs",' >> $file -echo ' data: [' >> $file - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - set separator = "," - if ( $i == $nLines - 1 ) then - set separator = "" - endif - - set tmp = ( $line ) - - set numWords = `echo $tmp | wc -w` - if ( $numWords < $maxNumWordsLineOld ) then - continue - endif - - if ( $numWords < $maxNumWordsLineNew ) then - set score = 0 - else - set score = $tmp[16] - endif - - echo ' ['"${i}, ${score}"']'${separator} >> $file - @ i++ - -end - -echo ' ]' >> $file -echo ' }' >> $file -# end worst case decoder rateswitching - -########### end rateswitching ############### - -echo ' ]' >> $file -# end displays - -echo ' }' >> $file -echo '};' >> $file - -mv -f $file $file_final -rm -f $tmpFile diff --git a/ci/complexity_measurements/genWebpageData_WmopPerOperatingpoint.csh b/ci/complexity_measurements/genWebpageData_WmopPerOperatingpoint.csh deleted file mode 100644 index 906d08c949b015fc6c6bb0f96a11d22c01eab187..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/genWebpageData_WmopPerOperatingpoint.csh +++ /dev/null @@ -1,503 +0,0 @@ -#!/bin/tcsh - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -set srcFile = $1 -set file_final = $2 -set file = ${file_final}.new -set graphName = $3 - -set tmpBase = `basename $0` -set tmpFile = /tmp/${tmpBase}_$$ - -rm -f $file -touch $file - -set worstCaseCodec -set worstCaseEnc -set worstCaseDec -@ numEntries = 0; -@ offsetTicks = 0; - -echo "var $graphName = {" >> $file -echo ' wmops_worstcase_per_op: {' >> $file -echo ' description: "Worst Case WMOPS per OP",' >> $file -echo ' direction: -1,' >> $file -echo ' runs: [' >> $file - -# -# NB modes -# -if (0) then # don't use! -rm -f ${tmpFile} -cat ${srcFile} | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_NB_" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksNB = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "NB"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - -# -# NB modes, rateswitching -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_NB_RS" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksNB_RS = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "NB RS"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - -# -# AMR-WB IO modes -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_WB_" | grep "AMR" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksWBIO = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "AMR-WB IO"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - -# -# AMR-WB IO modes rateswitching -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_WB_RS" | grep "AMR" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksWBIO_RS = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "AMR-WB IO RS"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file -endif - -# -# WB modes -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_WB_" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksWB = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "WB"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - -# -# WB modes rateswitching -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_WB_RS" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksWB_RS = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "WB RS"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - -# -# SWB modes -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_SWB_" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksSWB = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "SWB"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - - -# -# SWB modes rateswitching -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_SWB_RS" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksSWB_RS = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "SWB RS"' >> $file - echo ' },' >> $file - -end - -# -# FB modes -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_FB_" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksFB = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -foreach line ( "`cat ${tmpFile}`" ) - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "FB"' >> $file - echo ' },' >> $file - -end - -set worstCaseCodec = ( $worstCaseCodec 0 ) -set worstCaseEnc = ( $worstCaseEnc 0 ) -set worstCaseDec = ( $worstCaseDec 0 ) -@ numEntries++ - -echo ' {' >> $file -echo ' operatingPoint: "",' >> $file -echo ' mode: ""' >> $file -echo ' },' >> $file - - -# -# FB modes rateswitching -# -rm -f ${tmpFile} -cat $srcFile | grep "[0-9]" | sed -e "s/\ /_/g" | sed -e "s/;/\ /g" | grep "_FB_RS" > ${tmpFile} -set nLines = `cat ${tmpFile} | wc -l` -@ ticksFB_RS = $offsetTicks + ( $nLines / 2 ) -@ offsetTicks += ($nLines + 1) - -@ i = 0 -foreach line ( "`cat ${tmpFile}`" ) - @ i++ - set separator = "," - if ( $i == $nLines ) then - set separator = "" - endif - - set tmp = `echo $line` - - set operatingPoint = $tmp[1] - set worstCaseCodec = ( $worstCaseCodec $tmp[4] ) - set worstCaseEnc = ( $worstCaseEnc $tmp[2] ) - set worstCaseDec = ( $worstCaseDec $tmp[3] ) - @ numEntries++ - - echo ' {' >> $file - echo ' operatingPoint: "'${operatingPoint}'",' >> $file - echo ' mode: "SWB RS"' >> $file - echo ' }'${separator} >> $file - -end - -echo ' ],' >> $file - -# -# ticks -# -echo ' ticks: [' >> $file -if (0) then -echo ' ['$ticksNB', "NB"],' >> $file -echo ' ['$ticksNB_RS', "NB RS"],' >> $file -echo ' ['$ticksWBIO', "AMR-WB IO"],' >> $file -endif -echo ' ['$ticksWB', "WB"],' >> $file -echo ' ['$ticksWB_RS', "WB RS"],' >> $file -echo ' ['$ticksSWB', "SWB"],' >> $file -echo ' ['$ticksSWB_RS', "SWB RS"],' >> $file -echo ' ['$ticksFB', "FB"],' >> $file -echo ' ['$ticksFB_RS', "FB RS"]' >> $file -echo ' ],' >> $file - - -# begin displays -echo ' displays: [' >> $file - -# Start: Worse case encoder -echo ' {' >> $file -echo ' lines: { show: false },' >> $file -echo ' points: { show: false },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: false,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#CF4B4B",' >> $file -echo ' id: "worstCaseEnc",' >> $file -echo ' label: "Encoder",' >> $file -echo ' data: [' >> $file - -@ i = 0 -while($i < $numEntries) - - set separator = "," - if ( $i == $numEntries - 1 ) then - set separator = "" - endif - - @ j = $i + 1 - - echo ' ['"${i}, $worstCaseEnc[$j]"']'${separator} >> $file - - @ i++ -end - -echo ' ]' >> $file -echo ' },' >> $file -# End: Worst case encoder - -# Start: Worse case decoder -echo ' {' >> $file -echo ' lines: { show: false },' >> $file -echo ' points: { show: false },' >> $file -echo ' borderWidth: 1.5,' >> $file -echo ' borderColor: "#BEBEBE",' >> $file -echo ' markingsLineWidth: .75,' >> $file -echo ' hoverable: true,' >> $file -echo ' clickable: false,' >> $file -echo ' shadowSize: 0,' >> $file -echo ' color: "#008040",' >> $file -echo ' id: "worstCaseDec",' >> $file -echo ' label: "Decoder",' >> $file -echo ' data: [' >> $file - -@ i = 0 -while($i < $numEntries) - - set separator = "," - if ( $i == $numEntries - 1 ) then - set separator = "" - endif - - @ j = $i + 1 - - echo ' ['"${i}, $worstCaseDec[$j]"']'${separator} >> $file - - @ i++ -end - -echo ' ]' >> $file -echo ' }' >> $file -# End: Worst case encoder - -echo ' ]' >> $file -# end displays - -echo ' }' >> $file -echo '};' >> $file - -mv -f $file $file_final -rm -f $tmpFile diff --git a/ci/complexity_measurements/getWmops.sh b/ci/complexity_measurements/getWmops.sh deleted file mode 100644 index 321cc30fa3ecb030359d00ae563142fd84f570a0..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/getWmops.sh +++ /dev/null @@ -1,113 +0,0 @@ -#! /bin/bash - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -function usage { - echo "Usage: $0 \"ivas-format(s)\" \"output-format(s)\" \"mode{full(default)|mem_only}\"" - exit 1 -} - -if [ $# -ne 2 ] && [ $# -ne 3 ]; then - usage -fi - -ivas_format=$1 -output_format="$2" - -mode_arg_script="" -if [ $# -eq 3 ]; then - if [ "$3" = "mem_only" ]; then - mode_arg_script="--wmc_tool_mem_only" - elif [ "$3" != "full" ]; then - usage - fi -fi - -date=`date +%Y%m%d` # used for log-file file ending -shortDate=`date "+%b %d" | sed -e "s/\ /_/g"` # stored in the log-file -fullDate=`date "+%c" | sed -e "s/\ /_/g"` # stored in the log-file - -commit_sha=`git rev-parse --short HEAD` - -destDir="." -scriptDir="ci/complexity_measurements" -ep="${scriptDir}/ep_10pct_fer.g192" - -config_file="scripts/config/ci_linux.json" - -# get wmops newsletter -wmopsFilenameFlcLast=wmops_newsletter_stereo__${commit_sha}_${date} -wmopsFilenameFlc=${destDir}/wmops/logs/${wmopsFilenameFlcLast} - -ret_val=0 - -mode_arg="" -# for OSBA, there are just too many modes... -> only select HOA3 ones -if [ "$ivas_format" == "OSBA" ]; then - osba_hoa3_modes=$(./scripts/runIvasCodec.py -C OSBA -l | grep "HOA3") - mode_arg="-m $osba_hoa3_modes" -fi - -# instrument and build -./scripts/IvasBuildAndRunChecks.py $mode_arg_script -p $config_file --checks COMPLEXITY --create_complexity_tables ${wmopsFilenameFlc} -C $ivas_format $mode_arg -f ${ep} --oc $output_format -ret_val=$? - -# get the info on worst-case operating point: WMOPS number, enc-operating mode, dec-operating mode -### WMOPS -${scriptDir}/parseNewsletterWmops.py ${wmopsFilenameFlc}_WMOPS.csv ${wmopsFilenameFlcLast}_WMOPS.csv ${commit_sha} ${shortDate} ${fullDate} >> ${destDir}/wmops/log_wmops_all.txt - -# now update the webpage -tcsh ${scriptDir}/genWebpageData_WMOPS.csh ${destDir}/wmops/log_wmops_all.txt ${destDir}/wmops/graphs_wmops_flc.js Graphs_WMOPS - -# per mode graph -tcsh ${scriptDir}/genWebpageData_WmopPerOperatingpoint.csh ${wmopsFilenameFlc}_WMOPS.csv ${destDir}/wmops/graphs_wmops_flc_perOP.js Graphs_WMOPS_perOP - - -# get memory info for webpage -### RAM -${scriptDir}/mergeNewsletterRam.py ${wmopsFilenameFlc}_HEAP.csv ${wmopsFilenameFlc}_STACK.csv > ${wmopsFilenameFlc}_RAM.csv -${scriptDir}/parseNewsletterRam.py ${wmopsFilenameFlc}_HEAP.csv ${wmopsFilenameFlc}_STACK.csv ${wmopsFilenameFlcLast}_RAM.csv ${commit_sha} ${shortDate} ${fullDate} >> ${destDir}/wmops/log_ram_all.txt - -# generate java script from database -tcsh ${scriptDir}/genWebpageData_Ram.csh ${destDir}/wmops/log_ram_all.txt ${destDir}/wmops/graphs_ram_flc.js Graphs_RAM - -### ROM - -${scriptDir}/mergeNewsletterRom.py ${wmopsFilenameFlc}_PROM.csv ${wmopsFilenameFlc}_TROM.csv > ${wmopsFilenameFlc}_ROM.csv -${scriptDir}/parseNewsletterRom.py ${wmopsFilenameFlc}_PROM.csv ${wmopsFilenameFlc}_TROM.csv ${wmopsFilenameFlcLast}_ROM.csv ${commit_sha} ${shortDate} ${fullDate} >> ${destDir}/wmops/log_rom_all.txt - -# generate java script from database -tcsh ${scriptDir}/genWebpageData_Rom.csh ${destDir}/wmops/log_rom_all.txt ${destDir}/wmops/graphs_rom_flc.js Graphs_ROM - -python3 ${scriptDir}/check_for_changes.py ${destDir}/wmops/log_wmops_all.txt ${destDir}/wmops/log_ram_all.txt ${destDir}/wmops/log_rom_all.txt -if [ "$?" != "0" ]; then - ret_val=1 -fi - -exit $ret_val diff --git a/ci/complexity_measurements/index_complexity.html b/ci/complexity_measurements/index_complexity.html deleted file mode 100644 index 3b3964e9d8da73b40e284b34a64622253c6ebb21..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/index_complexity.html +++ /dev/null @@ -1,1073 +0,0 @@ - - - - - - - - - - - IVAS FORMAT - Worst Case WMOPS/Memory Performance - - - - - - - - - - - - - - - - - - - - - -
-

IVAS FORMAT - Worst Case WMOPS Performance

- -
-
-
- -
-
    -
  • Worst case encoder + decoder performance: Encoder and decoder mode might be different.
  • -
  • Worst case encoder + decoder performance (rateswitching): Encoder and decoder mode might be different.
  • -
  • Worst case codec performance: Encoder and decoder modes are identical.
  • -
  • Worst case codec performance (rateswitching): Encoder and decoder modes are identical.
  • -
  • Worst case encoder performance
  • -
  • Worst case encoder performance (rateswitching)
  • -
  • Worst case decoder performance
  • -
  • Worst case decoder performance (rateswitching)
  • -
-
- -
- -

IVAS FORMAT - Worst Case WMOPS Performance - per Operating Point

- -
-
-
- -
-
-
- -
- - - - -

IVAS FORMAT - Worst Case RAM Demand

- -
-
-
- -
-
    -
  • Max. total RAM Codec: - Encoder + Decoder
  • -
  • Max. total RAM Encoder: - Encoder only
  • -
  • Max. total RAM Decoder: - Decoder only
  • - -
  • Max. HEAP Codec: - Encoder + Decoder
  • -
  • Max. HEAP Encoder - Encoder only
  • -
  • Max. HEAP Decoder - Decoder only
  • - -
  • Max. STACK Codec: - max(Encoder, Decoder)
  • -
  • Max. STACK Encoder: - Encoder only
  • -
  • Max. STACK Decoder: - Decoder only
  • -
-
- -
- - - -

IVAS FORMAT - Worst Case ROM Demand

- -
-
-
- -
-
    -
  • Max. total ROM Codec: Encoder + Decoder
  • - -
  • Max. Program ROM Encoder Library: lib_enc only
  • -
  • Max. Program ROM Decoder Library: lib_dec only
  • -
  • Max. Program ROM Common Library: lib_com only
  • -
  • Max. Program ROM Ext Renderer Library: lib_rend only
  • - -
  • Max. Table ROM Encoder Library: lib_enc only
  • -
  • Max. Table ROM Decoder Library: lib_dec only
  • -
  • Max. Table ROM Common Library: lib_com only
  • -
  • Max. Table ROM Ext Renderer Library: lib_rend only
  • -
-
- - - -

FAQ

-
-
Q:
What is the meaning of these funny symbols in the navigation box, in the left upper corner of this page?
-
A:
- 1) Traffic light , or : !!!CURRENTLY NOT WORKING CORRECTLY AS NO REQUIREMENTS DEFINED YET!!! The traffic light symbols show, whether the last datapoint matches the requirement (green) or not (red). A yellow traffic light means that the requirement is matched, but the score is very close (within a 3% margin) to the requirement.
- 2) Arrow , , : The arrow indicates the trend of the last datapoint, compared to the last but one. An upwards arrow means that the score got higher (i.e. worse), downwards arrow arrow means that the score got lower (i.e. better), and a rightwards arrow means that the score was kept constant (within a 1% margin). -
-
Q:
Which input files are used for audio-input? What error pattern is used?
-
A:
The input files can be found here. The error pattern is here. -
- - -
-

Legal notice

-
- This webpage uses jQuery and Flot.js libraries for which the following licenses apply: -
-
jQuery:
-
- Copyright OpenJS Foundation and other contributors, https://openjsf.org/ - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -
-
Flot.js:
-
- Copyright (c) 2007-2014 IOLA and Ole Laursen - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following - conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. -
-
-
-
- - - - - diff --git a/ci/complexity_measurements/mergeNewsletterRam.py b/ci/complexity_measurements/mergeNewsletterRam.py deleted file mode 100644 index d578b51c56f8b7a4cf6dee50c87f0d94d7c64422..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/mergeNewsletterRam.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -import csv -import sys - -newsletterFilename = "" -newsletterFilenameLast = "" -revision = "" -shortDate = "" -fullDate = "" - -if __name__ == "__main__": - newsletterFilenameHEAP = sys.argv[1] - newsletterFilenameSTACK = sys.argv[2] - -ram_table = {} - -with open(newsletterFilenameHEAP, "r") as csvfile: - HEAP = csv.reader(csvfile, delimiter=";") - for row in HEAP: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - ram_table[key] = lst - -with open(newsletterFilenameSTACK, "r") as csvfile: - STACK = csv.reader(csvfile, delimiter=";") - for row in STACK: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - ram_table[key] += lst - -# now we have the following format -# HEAP enc, HEAP dec, HEAP total, STACK enc, STACK dec, STACK max(enc, dec) - -print("conf;HEAP enc;HEAP dec;HEAP total;STACK enc;STACK dec;STACK max;total") - -for key in ram_table: - ram = ram_table[key] - total = int(ram[0]) + int(ram[1]) + int(ram[5]) - print( - key, - ";", - ram[0], - ";", - ram[1], - ";", - ram[2], - ";", - ram[3], - ";", - ram[4], - ";", - ram[5], - ";", - total, - sep="", - ) diff --git a/ci/complexity_measurements/mergeNewsletterRom.py b/ci/complexity_measurements/mergeNewsletterRom.py deleted file mode 100644 index b46e6c55709ee8c401cec78554218f8cff283bf7..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/mergeNewsletterRom.py +++ /dev/null @@ -1,99 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -import csv -import sys - -newsletterFilename = "" -newsletterFilenameLast = "" -revision = "" -shortDate = "" -fullDate = "" - -if __name__ == "__main__": - newsletterFilenamePROM = sys.argv[1] - newsletterFilenameTROM = sys.argv[2] - -rom_table = {} - -with open(newsletterFilenamePROM, "r") as csvfile: - PROM = csv.reader(csvfile, delimiter=";") - for row in PROM: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - rom_table[key] = lst - -with open(newsletterFilenameTROM, "r") as csvfile: - TROM = csv.reader(csvfile, delimiter=";") - for row in TROM: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - rom_table[key] += lst - -# now we have the following format -# PROM enc, PROM dec, PROM com, PROM rend, PROM total, TROM enc, TROM dec, TROM com, TROM rend, TROM total - -print( - "conf;PROM enc;PROM dec;PROM com;PROM rend;PROM total;TROM enc;TROM dec;TROM com;TROM rend;TROM total;total" -) - -for key in rom_table: - rom = rom_table[key] - total = int(rom[4]) + int(rom[9]) - print( - key, - ";", - rom[0], - ";", - rom[1], - ";", - rom[2], - ";", - rom[3], - ";", - rom[4], - ";", - rom[5], - ";", - rom[6], - ";", - rom[7], - ";", - rom[8], - ";", - rom[9], - ";", - total, - sep="", - ) diff --git a/ci/complexity_measurements/parseNewsletterRam.py b/ci/complexity_measurements/parseNewsletterRam.py deleted file mode 100644 index 55eecff5738264d933b13470ee0f35789c138853..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/parseNewsletterRam.py +++ /dev/null @@ -1,157 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import csv -import re -import sys - -newsletterFilename = "" -newsletterFilenameLast = "" -revision = "" -shortDate = "" -fullDate = "" - -if __name__ == "__main__": - newsletterFilenameHEAP = sys.argv[1] - newsletterFilenameSTACK = sys.argv[2] - newsletterFilenameLast = sys.argv[3] - revision = sys.argv[4] - shortDate = sys.argv[5] - fullDate = sys.argv[6] - -max_total_enc = ["None", 0] -max_total_dec = ["None", 0] -max_total_encdec = ["None", 0] - -max_stack_enc = ["None", 0] -max_stack_dec = ["None", 0] -max_stack_encdec = ["None", 0] - -max_heap_enc = ["None", 0] -max_heap_dec = ["None", 0] -max_heap_encdec = ["None", 0] - -ram_table = {} - -with open(newsletterFilenameHEAP, "r") as csvfile: - HEAP = csv.reader(csvfile, delimiter=";") - for row in HEAP: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - ram_table[key] = lst - -with open(newsletterFilenameSTACK, "r") as csvfile: - STACK = csv.reader(csvfile, delimiter=";") - for row in STACK: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - ram_table[key] += lst - -# now we have the following format -# HEAP enc, HEAP dec, HEAP total, STACK enc, STACK dec, STACK max(enc, dec), total - -for key in ram_table: - ram = ram_table[key] - heap_enc = int(ram[0]) - heap_dec = int(ram[1]) - heap_encdec = heap_enc + heap_dec - - stack_enc = int(ram[3]) - stack_dec = int(ram[4]) - stack_encdec = int(ram[5]) - - total_enc = heap_enc + stack_enc - total_dec = heap_dec + stack_dec - total_encdec = heap_encdec + stack_encdec - - if heap_enc > max_heap_enc[1]: - max_heap_enc[0] = re.sub(" ", "_", key) - max_heap_enc[1] = heap_enc - - if heap_dec > max_heap_dec[1]: - max_heap_dec[0] = re.sub(" ", "_", key) - max_heap_dec[1] = heap_dec - - if heap_encdec > max_heap_encdec[1]: - max_heap_encdec[0] = re.sub(" ", "_", key) - max_heap_encdec[1] = heap_encdec - - if stack_enc > max_stack_enc[1]: - max_stack_enc[0] = re.sub(" ", "_", key) - max_stack_enc[1] = stack_enc - - if stack_dec > max_stack_dec[1]: - max_stack_dec[0] = re.sub(" ", "_", key) - max_stack_dec[1] = stack_dec - - if stack_encdec > max_stack_encdec[1]: - max_stack_encdec[0] = re.sub(" ", "_", key) - max_stack_encdec[1] = stack_encdec - - if total_enc > max_total_enc[1]: - max_total_enc[0] = re.sub(" ", "_", key) - max_total_enc[1] = total_enc - - if total_dec > max_total_dec[1]: - max_total_dec[0] = re.sub(" ", "_", key) - max_total_dec[1] = total_dec - - if total_encdec > max_total_encdec[1]: - max_total_encdec[0] = re.sub(" ", "_", key) - max_total_encdec[1] = total_encdec - - -print( - revision, # string revision $tmp[1] - shortDate, # string shortDate $tmp[2] - fullDate, # string fullDate $tmp[3] - max_total_encdec[1], # value maxTotalRamCodecScore $tmp[4] - max_total_enc[0], # string maxTotalRamEnc $tmp[5] - max_total_enc[1], # value maxTotalRamEnc $tmp[6] - max_total_dec[0], # string maxTotalRamDec $tmp[7] - max_total_dec[1], # value maxTotalRamDecScore $tmp[8] - max_stack_encdec[1], # value maxStackCodecScore $tmp[9] - max_stack_enc[0], # string maxStackEnc $tmp[10] - max_stack_enc[1], # value maxStackEncScore $tmp[11] - max_stack_dec[0], # string maxStackDec $tmp[12] - max_stack_dec[1], # value maxStackDecScore $tmp[13] - max_heap_encdec[1], # value maxHeapCodecScore $tmp[14] - max_heap_enc[0], # string maxHeapEnc $tmp[15] - max_heap_enc[1], # value maxHeapEncScore $tmp[16] - max_heap_dec[0], # string maxHeapDec $tmp[17] - max_heap_dec[1], # value maxHeapDecScore $tmp[19] - newsletterFilenameLast, # string logFile $tmp[19] -) diff --git a/ci/complexity_measurements/parseNewsletterRom.py b/ci/complexity_measurements/parseNewsletterRom.py deleted file mode 100644 index a4a3df4ecfe0da6763668dd4e4e5639ebbb087aa..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/parseNewsletterRom.py +++ /dev/null @@ -1,164 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import csv -import re -import sys - -newsletterFilename = "" -newsletterFilenameLast = "" -revision = "" -shortDate = "" -fullDate = "" - -if __name__ == "__main__": - newsletterFilenamePROM = sys.argv[1] - newsletterFilenameTROM = sys.argv[2] - newsletterFilenameLast = sys.argv[3] - revision = sys.argv[4] - shortDate = sys.argv[5] - fullDate = sys.argv[6] - -max_prom_enc = ["None", 0] -max_prom_dec = ["None", 0] -max_prom_com = ["None", 0] -max_prom_rend = ["None", 0] -max_prom_total = ["None", 0] - -max_trom_enc = ["None", 0] -max_trom_dec = ["None", 0] -max_trom_com = ["None", 0] -max_trom_rend = ["None", 0] -max_trom_total = ["None", 0] - -max_total_encdec = ["None", 0] - -rom_table = {} - -with open(newsletterFilenamePROM, "r") as csvfile: - PROM = csv.reader(csvfile, delimiter=";") - for row in PROM: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - rom_table[key] = lst - -with open(newsletterFilenameTROM, "r") as csvfile: - TROM = csv.reader(csvfile, delimiter=";") - for row in TROM: - if row[0] == "conf": - continue - key = row[0] - lst = row[1:] - rom_table[key] += lst - -# now we have the following format -# PROM enc, PROM dec, PROM com, PROM rend, PROM total, TROM enc, TROM dec, TROM com, TROM rend, TROM total, total - -for key in rom_table: - rom = rom_table[key] - prom_enc = int(rom[0]) - prom_dec = int(rom[1]) - prom_com = int(rom[2]) - prom_rend = int(rom[3]) - prom_total = int(rom[4]) - - trom_enc = int(rom[5]) - trom_dec = int(rom[6]) - trom_com = int(rom[7]) - trom_rend = int(rom[8]) - trom_total = int(rom[9]) - - total_encdec = prom_total + trom_total - - if prom_enc > max_prom_enc[1]: - max_prom_enc[0] = re.sub(" ", "_", key) - max_prom_enc[1] = prom_enc - - if prom_dec > max_prom_dec[1]: - max_prom_dec[0] = re.sub(" ", "_", key) - max_prom_dec[1] = prom_dec - - if prom_com > max_prom_com[1]: - max_prom_com[0] = re.sub(" ", "_", key) - max_prom_com[1] = prom_com - - if prom_rend > max_prom_rend[1]: - max_prom_rend[0] = re.sub(" ", "_", key) - max_prom_rend[1] = prom_rend - - if trom_enc > max_trom_enc[1]: - max_trom_enc[0] = re.sub(" ", "_", key) - max_trom_enc[1] = trom_enc - - if trom_dec > max_trom_dec[1]: - max_trom_dec[0] = re.sub(" ", "_", key) - max_trom_dec[1] = trom_dec - - if trom_com > max_trom_com[1]: - max_trom_com[0] = re.sub(" ", "_", key) - max_trom_com[1] = trom_com - - if trom_rend > max_trom_rend[1]: - max_trom_rend[0] = re.sub(" ", "_", key) - max_trom_rend[1] = trom_rend - - if total_encdec > max_total_encdec[1]: - max_total_encdec[0] = re.sub(" ", "_", key) - max_total_encdec[1] = total_encdec - - -print( - revision, # string revision $tmp[1] - shortDate, # string shortDate $tmp[2] - fullDate, # string fullDate $tmp[3] - max_total_encdec[1], # value maxTotalRomCodecScore $tmp[4] - max_prom_enc[0], # string maxPROMEnc $tmp[5] - max_prom_enc[1], # value maxPROMEncScore $tmp[6] - max_prom_dec[0], # string maxPROMDec $tmp[7] - max_prom_dec[1], # value maxPROMDecScore $tmp[8] - max_prom_com[0], # string maxPROMCom $tmp[9] - max_prom_com[1], # value maxPROMComScore $tmp[10] - max_prom_rend[0], # string maxPROMRend $tmp[11] - max_prom_rend[1], # value maxPROMRendScore $tmp[12] - max_trom_enc[0], # string maxTROMEnc $tmp[13] - max_trom_enc[1], # value maxTROMEncScore $tmp[14] - max_trom_dec[0], # string maxTROMDec $tmp[15] - max_trom_dec[1], # value maxTROMDecScore $tmp[16] - max_trom_com[0], # string maxTROMCom $tmp[17] - max_trom_com[1], # value maxTROMComScore $tmp[18] - max_trom_rend[0], # string maxTROMRend $tmp[19] - max_trom_rend[1], # value maxTROMRendScore $tmp[20] - newsletterFilenameLast, # string logFile $tmp[21] -) diff --git a/ci/complexity_measurements/parseNewsletterWmops.py b/ci/complexity_measurements/parseNewsletterWmops.py deleted file mode 100644 index a00171ead797c3117aaf8e571cd88415480ad47d..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/parseNewsletterWmops.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import csv -import re -import sys - -newsletterFilename = "" -newsletterFilenameLast = "" -revision = "" -shortDate = "" -fullDate = "" - -if __name__ == "__main__": - newsletterFilename = sys.argv[1] - newsletterFilenameLast = sys.argv[2] - revision = sys.argv[3] - shortDate = sys.argv[4] - fullDate = sys.argv[5] - -max_enc = ["None", 0] -max_dec = ["None", 0] -max_total = ["None", 0] -fixedpointScalingFac = 1.0 - -with open(newsletterFilename, "r") as csvfile: - wmops = csv.reader(csvfile, delimiter=";") - for row in wmops: - if row[0] == "conf": - continue - if float(row[1]) > max_enc[1]: - max_enc[0] = re.sub(" ", "_", row[0]) - max_enc[1] = float(row[1]) - if float(row[2]) > max_dec[1]: - max_dec[0] = re.sub(" ", "_", row[0]) - max_dec[1] = float(row[2]) - if float(row[3]) > max_total[1]: - max_total[0] = re.sub(" ", "_", row[0]) - max_total[1] = float(row[3]) - -print( - revision, - shortDate, - fullDate, - max_enc[1] + max_dec[1], - max_enc[0], - max_enc[1], - max_dec[0], - max_dec[1], - max_total[0], - max_total[1], - fixedpointScalingFac, - max_enc[1] + max_dec[1], - max_enc[0], - max_enc[1], - max_dec[0], - max_dec[1], - max_total[0], - max_total[1], - newsletterFilenameLast, -) diff --git a/ci/complexity_measurements/style.css b/ci/complexity_measurements/style.css deleted file mode 100644 index 764ed0d94ff13958cbb612872e9bd9054e193387..0000000000000000000000000000000000000000 --- a/ci/complexity_measurements/style.css +++ /dev/null @@ -1,220 +0,0 @@ -body { - background-color:#FFF; - font:.6875em Verdana, Arial, Helvetica, sans-serif; - color:#000; -} -a { - color:#000; - text-decoration:underline; -} -a:hover { - text-decoration:none; -} -h1 { - font-size:2.265em; - font-weight:700; - text-align: center; -} -em { - font-style: normal; - font-weight: bold; -} -hr { - margin-top: 30px; - margin-bottom: 30px; - margin-left: 150px; - margin-right:150px; - height: 0px; - border-top-width: 2px; - border-bottom-width: 0px; - border-left-width: 0px; - border-right-width: 0px; - border-top-style: solid; - color: #606060; -} -.graph { - width: 800px; - height: 350px; -} -.graph-container { - margin: 0 auto; - width: 1600px; -} -.message-box { - margin-top: 2em; - padding: 1em; - background-color: #FF8000; - border-radius: 20px; -} -#wmops-graph { - height:500px; - width:1600px; - float:left; -} -#wmops_per_op-graph { - height:500px; - width:1600px; - float:left; -} -#wmops-48kHz-graph { - height:500px; - width:1600px; - float:left; -} -#wmops_per_op-48kHz-graph { - height:500px; - width:1600px; - float:left; -} -#wmops_basop_per_op-graph { - height:500px; - width:1600px; - float:left; -} -#wmops-graph-basop { - height:500px; - width:1600px; - float:left; -} -#conversion_factors_basop_flc { - height:500px; - width:1600px; - float:left; -} -#ram-graph { - height:500px; - width:1600px; - float:left; -} -#ram-graph-basop { - height:500px; - width:1600px; - float:left; -} -#rom-graph { - height:500px; - width:1600px; - float:left; -} -#rom-graph-basop{ - height:500px; - width:1600px; - float:left; -} -#prom-graph { - height:500px; - width:1600px; - float:left; -} -#tooltip { - border-radius:.35em; - border-radius:.35em; - background-color:#000; - color:#FFF; - display:none; - opacity:0.8; - padding:.25em; - position:absolute; - box-shadow: 6px 6px 6px #666; -} -#tooltip a:link, #tooltip a:active, #tooltip a:visited { - color:#FFF; - text-decoration: underline; -} -#tooltip a:hover { - color:#FFF; - text-decoration: none; -} -.legend { - display: inline; -} -.legend li { - border-left: 1.2em solid #FFF; - margin-right: 2em; - padding-left: .3em; - margin-bottom: .2em; - list-style-type: none; -} - -#menu { - color: #FFFFFF; -} - -#menu ul { - color: #FFFFFF; - list-style: none; - margin-left: -1em; - position: relative; - margin-top: 1.5em; - margin-bottom: 1.5em; -} - -#menu li { - margin-left: -1em; - margin-bottom: 1.0em; - margin-top: 1.0em; -} - -#menu a { - color: #FFFFFF; -} - -dt { - font-weight: bold; -} - -dd hr { - margin-top: 0.1em; - margin-bottom: 0.1em; - margin-left: 48%; - margin-right: 48%; -} - -#menu { - float: left; - margin-left: 1em; - margin-top: 1em; - width: 22em; - border-radius: 1em; - position: fixed; - background-color: #000000; - opacity: 0.8; - box-shadow: 6px 6px 6px #666; -} - -#content { - margin-left: 17em; -} - -.symbols { - float: right; - font-weight: bolder; - font-size: 2em; - margin-top: -0.4em; -} - -.trafficlight { - margin-right: 0px; - margin-left: 0px; - position: absolute; - right: 2em; - color: #202020; -} - -.trend { - margin-right: 0.5em; - margin-left: 0.2em; -} - -th, td { - padding: 0.5em 2em; - border: 1px solid #606060; -} - -th { - text-align: left; -} - -td#number { - text-align: right; -} diff --git a/ci/create_trajectories.py b/ci/create_trajectories.py deleted file mode 100644 index 6b957df0926bdb2f08a43727571d160ea164894a..0000000000000000000000000000000000000000 --- a/ci/create_trajectories.py +++ /dev/null @@ -1,25 +0,0 @@ -import numpy as np - - -FRAMES_PER_SEC = 50 - - -def random_trajectory(duration_sec): - n_frames = int(FRAMES_PER_SEC * duration_sec) - trj = np.random.random((n_frames, 4)) - trj[:, 0] = -3 - trj[:, 1] *= 180 - trj[:, 2] *= 90 - trj[:, 3] *= 180 - return trj - - -def constant_trajectory(duration_sec, yaw=0, pitch=0, roll=0): - n_frames = int(FRAMES_PER_SEC * duration_sec) - trj = np.empty((n_frames, 4)) - trj[:, 0] = -3 - trj[:, 1] = yaw - trj[:, 2] = pitch - trj[:, 3] = roll - return trj - diff --git a/ci/get_id_of_last_job_occurence.py b/ci/get_id_of_last_job_occurence.py deleted file mode 100644 index f7540523b9e24295729df259205eb832b157c8a5..0000000000000000000000000000000000000000 --- a/ci/get_id_of_last_job_occurence.py +++ /dev/null @@ -1,95 +0,0 @@ -#!/usr/bin/env python3 - -""" -(C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository. All Rights Reserved. - -This software is protected by copyright law and by international treaties. -The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository retain full ownership rights in their respective contributions in -the software. This notice grants no license of any kind, including but not limited to patent -license, nor is any license granted by implication, estoppel or otherwise. - -Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -contributions. - -This software is provided "AS IS", without any express or implied warranties. The software is in the -development stage. It is intended exclusively for experts who have experience with such software and -solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -and fitness for a particular purpose are hereby disclaimed and excluded. - -Any dispute, controversy or claim arising under or in relation to providing this software shall be -submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import argparse - -import requests - - -PER_PAGE_SUFFIX = "?per_page=50" -PAGE_SUFFIX = "&page={}" -API_URL_TMPL = "https://forge.3gpp.org/rep/api/v4/projects/{}/pipelines" -SCOPE_FAILED = "&scope[]=failed" -SCOPE_SUCCESS = "&scope[]=success" - - -def get_job_id(branch_name, job_name, project_id, success_only): - job_id = -1 - # check last 500 pipelines max - for page in range(100): - url_pls = API_URL_TMPL.format(project_id) - - # need both suffixes here to descend through the pages and get also older pipelines - suffix = PER_PAGE_SUFFIX + PAGE_SUFFIX.format(page) - resp_pls = requests.get(url_pls + suffix) - for pl in resp_pls.json(): - if pl["ref"] == branch_name: - url_args = PER_PAGE_SUFFIX - - url_args += SCOPE_SUCCESS - if not success_only: - url_args += SCOPE_FAILED - - url_jobs = url_pls + f"/{pl['id']}/jobs" + url_args - - resp_jobs = requests.get(url_jobs) - if job_name not in resp_jobs.text: - continue - - # find actual job by name, exclude timed out or stuck jobs - for job in resp_jobs.json(): - name_matches = job["name"] == job_name - is_success = job["status"] == "success" - has_timed_out = job.get("failure_reason", "") == "stuck_or_timeout_failure" - if name_matches and (is_success or not has_timed_out): - job_id = job["id"] - break - if job_id >= 0: - break - - if job_id >= 0: - break - - return job_id - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("branch_name", help="Name of the branch to search on") - parser.add_argument("job_name", help="Name of the job to get the id of") - parser.add_argument("project_id", help="ID of project to search in", type=int) - parser.add_argument("--success_only", help="Only include jobs with status 'success'", action="store_true") - - args = parser.parse_args() - - job_id = get_job_id(args.branch_name, args.job_name, args.project_id, args.success_only) - print(job_id) diff --git a/ci/index-pages.html b/ci/index-pages.html deleted file mode 100644 index 510e2031155ac1b2a2296b1066d29c37cb1344f7..0000000000000000000000000000000000000000 --- a/ci/index-pages.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -

Ivas Codec Development

- -

Complexity Reports

- - {} - -

Test Coverage

- - - - diff --git a/ci/remove_unsupported_testcases.py b/ci/remove_unsupported_testcases.py deleted file mode 100644 index 05132e0f3c47f7668b2e0fcccb02ec8109465878..0000000000000000000000000000000000000000 --- a/ci/remove_unsupported_testcases.py +++ /dev/null @@ -1,99 +0,0 @@ -__copyright__ = """ -(C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository. All Rights Reserved. - -This software is protected by copyright law and by international treaties. -The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository retain full ownership rights in their respective contributions in -the software. This notice grants no license of any kind, including but not limited to patent -license, nor is any license granted by implication, estoppel or otherwise. - -Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -contributions. - -This software is provided "AS IS", without any express or implied warranties. The software is in the -development stage. It is intended exclusively for experts who have experience with such software and -solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -and fitness for a particular purpose are hereby disclaimed and excluded. - -Any dispute, controversy or claim arising under or in relation to providing this software shall be -submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -the United Nations Convention on Contracts on the International Sales of Goods. -""" - -from pathlib import Path -import argparse - -# Enter tag of testcases to remove here WITHOUT the leading // -TESTCASES = [ - "OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, EXT out", - "OSBA planar FOA 2ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL out", - "4 ISM with extended metadata at 128 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out, rendconf dir w id", - "OSBA planar FOA 1ISM at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out", - "Multi-channel 5_1 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, BINAURAL out, FER at 10%, bandwidth switching", - "OSBA FOA 4ISM at bitrate switching 13.2 to 512 kbps, 48kHz in, 48kHz out, BINAURAL out, FER at 5%, bandwidth switching", - "OSBA FOA 2ISM at 64 kbps, 48kHz in, 48kHz out, HOA3 out, bandwidth switching", - "OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, EXT out", - "OSBA planar FOA 2ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL out", - "OSBA planar FOA 1ISM at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out", - "SBA 3OA at 128 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB rendconf sel acoustic env", - "OSBA FOA 4ISM at br sw 13.2 to 512 kbps, 48kHz in, 16kHz out, BINAURAL out (Model from file), FER at 5%, bandwidth switching", - "stereo bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, EXT out", - "SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 32kHz in, 32kHz out, DTX on, EXT out", - "SBA 2OA bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out, DTX on, EXT out", - "SBA 3OA bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, random FER at 5%, EXT out", - "Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out", - "Multi-channel 5_1_2 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, EXT out", - "Multi-channel 5_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, EXT out", - "Multi-channel 7_1 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 16kHz out, EXT out", - "Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out", - "SBA planar 2OA bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out, DTX on, EXT out", - "SBA planar FOA bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 32kHz out, EXT out", - "SBA 2OA bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 32kHz out, EXT out", - "SBA planar 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, random FER at 5%, EXT out", - "Multi-channel 5_1 at 512 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (CREND)", - "Multi-channel 5_1 at 64 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (FastConv)", - "Multi-channel 5_1 at 32 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (ParamBin)", - "MASA 1dir 1TC at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, HR custom configuration", - "MASA 1dir 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out custom configuration", - "MASA 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out custom configuration", -] - - - -def remove_testcases(cfg: Path, testcases: list): - """ - Go through file line by line and copy all testcases except the given ones - """ - with open(cfg, "r") as f: - content_in = f.readlines() - - content_out = list() - copy_flag = True - for line in content_in: - if any([tc in line for tc in testcases]): - copy_flag = False - - if copy_flag: - content_out.append(line) - elif line == "\n": - copy_flag = True - - with open(cfg, "w") as f: - f.write("".join(content_out)) - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("cfg_files", nargs="+", type=Path) - args = parser.parse_args() - - for f in args.cfg_files: - remove_testcases(f, TESTCASES) diff --git a/ci/run-first-frame-is-sid-test.sh b/ci/run-first-frame-is-sid-test.sh deleted file mode 100644 index fb18eec5ccdb52aa89213678dcd0263d022d8ff6..0000000000000000000000000000000000000000 --- a/ci/run-first-frame-is-sid-test.sh +++ /dev/null @@ -1,56 +0,0 @@ -#! /usr/bin/bash - -# build encoder without sanitizers for faster runtime -make clean -make -j IVAS_cod -mv IVAS_cod IVAS_cod_nosan - -# run all modes and cut bitstream to start with an SID. Use mono output to limit runtime, test is only about decoding the first frame -modes_no_sba=$(scripts/runIvasCodec.py -l | grep dtx | grep -vE "FOA|HOA" ) -modes_hoa=$(scripts/runIvasCodec.py -l | grep dtx | grep -E "HOA") -modes_foa=$(scripts/runIvasCodec.py -l | grep dtx | grep "FOA") - -# config vars -testcase_timeout=20 -bitstream_cut_length=5 -common_args="-z console -p scripts/config/ci_linux_sidstart_test.json -s --oc mono --timeout $testcase_timeout --bs_length $bitstream_cut_length" - -# first encoder + MSAN decoder -# hack to use the encoder with no sanitizers -mkdir CLANG1 -make clean -make IVAS_dec -j CLANG=1 -cp IVAS_dec CLANG1/IVAS_dec -cp IVAS_cod_nosan CLANG1/IVAS_cod - -exit_code_msan=0 -echo "-------------- 1. Encoder + Msan decoder -------------- " -echo "-------------- 1.1 all DTX modes except SBA -------------- " -scripts/IvasBuildAndRunChecks.py --checks CLANG1 -m $modes_no_sba -U 0:20 $common_args || exit_code_msan=$? -echo "-------------- 1.2 HOA2 + HOA3 DTX modes -------------- " -scripts/IvasBuildAndRunChecks.py --checks CLANG1 -m $modes_hoa -U 70:80 $common_args || exit_code_msan=$? -echo "-------------- 1.3 FOA DTX modes -------------- " -scripts/IvasBuildAndRunChecks.py --checks CLANG1 -m $modes_foa -U 75:110 $common_args || exit_code_msan=$? -# archive encoder logs separately -mkdir logs_enc logs_dec_msan -mv CLANG1/logs/*.enc.txt logs_enc/ -mv CLANG1/logs/*.dec*.txt logs_dec_msan/ - -# ASAN and USAN can be done in one go and decoder only -# copy encoder output from CLANG1 dir -mkdir CLANG2 CLANG3 -cp -r CLANG1/enc CLANG2/enc -cp -r CLANG1/enc CLANG3/enc - -exit_code_asan_usan=0 -echo "-------------- 2. Asan + Usan decoder -------------- " -echo "-------------- 2.1 all DTX modes except SBA -------------- " -scripts/IvasBuildAndRunChecks.py --checks CLANG2 CLANG3 --decoder_only -m $modes_no_sba -U 0:20 $common_args || exit_code_asan_usan=$? -echo "-------------- 2.2 HOA2 + HOA3 DTX modes -------------- " -scripts/IvasBuildAndRunChecks.py --checks CLANG2 CLANG3 --decoder_only -m $modes_hoa -U 70:80 $common_args || exit_code_asan_usan=$? -echo "-------------- 2.3 FOA DTX modes -------------- " -scripts/IvasBuildAndRunChecks.py --checks CLANG2 CLANG3 --decoder_only -m $modes_foa -U 75:110 $common_args || exit_code_asan_usan=$? -mv CLANG2/logs logs_dec_asan -mv CLANG3/logs logs_dec_usan - -if [ $exit_code_msan -ne 0 ] || [ $exit_code_asan_usan -ne 0 ]; then echo "There was either a crash or a sanitizer error encountered when decoding a bitstream that starts with an SID. Check the artifacts for the logfiles."; exit 1; fi diff --git a/ci/run_evs_be_test.py b/ci/run_evs_be_test.py deleted file mode 100644 index 3103a800c84fd1f88db1e8d32b2509fe38317f60..0000000000000000000000000000000000000000 --- a/ci/run_evs_be_test.py +++ /dev/null @@ -1,108 +0,0 @@ -#!/usr/bin/env python3 -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" -import concurrent.futures -import pathlib -import subprocess -import sys -from threading import Lock - -README_FILES_PARALLEL = [ - "Readme_AMRWB_IO_enc.txt", - "Readme_AMRWB_IO_dec.txt", - "Readme_EVS_enc.txt", - "Readme_EVS_dec.txt", -] -README_FILES_JBM = ["Readme_JBM_dec.txt"] -README_FILES = README_FILES_PARALLEL + README_FILES_JBM -BINARY_PATHS = ["./bin/EVS_cod", "./bin/EVS_dec"] -FOLDER_PATHS = ["testv"] -BIN_PATHS = BINARY_PATHS * 2 - - -def main(): - - if not environment_is_correct(): - return 1 - - result_dict = dict() - # run first part in parallel - with concurrent.futures.ThreadPoolExecutor() as executor: - executor.map( - run_file, - README_FILES_PARALLEL, - BIN_PATHS, - [result_dict] * len(README_FILES_PARALLEL), - ) - - # JBM test can not run concurrently with the others - run_file(README_FILES_JBM[0], BINARY_PATHS[1], result_dict) - - return analyze_results(result_dict) - - -def analyze_results(result_dict): - ret = 0 - - for filename, ret_code in result_dict.items(): - if ret_code != 0: - print(f"========= Test for {filename} failed! See log below: ==========") - with open(filename.replace("Readme", "Log")) as f: - print(f.read()) - ret = 1 - - return ret - - -def run_file(filename: str, bin_path: str, result_dict: dict): - ret_code = subprocess.call(["bash", filename, bin_path]) - with Lock(): - result_dict[filename] = ret_code - - -def environment_is_correct(): - """ - Check that the folder with the test resources is set up correctly: - - all Readme files there - - EVS binaries available in bin/ - - testv and switchPaths folder exist - Content is not checked, though - """ - ret = True - - for path in README_FILES + BINARY_PATHS + FOLDER_PATHS: - if not pathlib.Path(path).exists(): - print(f"Environment setup is incorrect - {path} not found.") - ret = False - - return ret - - -if __name__ == "__main__": - sys.exit(main()) diff --git a/ci/run_evs_be_win_test.py b/ci/run_evs_be_win_test.py deleted file mode 100644 index 4a93756787fc296c771f3a7574bafe5b749169ec..0000000000000000000000000000000000000000 --- a/ci/run_evs_be_win_test.py +++ /dev/null @@ -1,186 +0,0 @@ -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import argparse -import os -import shutil -import subprocess -import sys -from multiprocessing import Pool - - -def run_condition(eval_cmd, diff_cmd, id_count): - """Run ENC or DEC command string and compare output with EVS test vectors.""" - - cmd = subprocess.run(eval_cmd.split(), capture_output=True, text=True, check=True) - - # diff - diff_fails = "" - if ";" in diff_cmd: - # JBM cases - diff_cmd1, diff_cmd2 = diff_cmd.split(";") - cmd1 = subprocess.run(diff_cmd1.split(), stdout=subprocess.DEVNULL, check=False) - cmd2 = subprocess.run(diff_cmd2.split(), stdout=subprocess.DEVNULL, check=False) - if cmd1.returncode != 0: - diff_fails += f"{diff_cmd1}\n" - if cmd2.returncode != 0: - diff_fails += f"{diff_cmd2}\n" - else: - cmd = subprocess.run(diff_cmd.split(), stdout=subprocess.DEVNULL, check=False) - if cmd.returncode != 0: - diff_fails += f"{diff_cmd}\n" - if diff_fails: - return diff_fails - else: - return None - - -def environment_is_correct(paths): - """ - Check that the folder with the test resources is set up correctly: - - all Readme files there - - EVS binaries available in bin/ - - testv and switchPaths folder exist - Content is not checked, though - """ - ret = True - - for pth in paths: - if not os.path.exists(pth): - print(f"Environment setup is incorrect - {pth} not found.") - ret = False - - return ret - - -if __name__ == "__main__": - parser = argparse.ArgumentParser( - description="Run 26.444 test with parallel processes " - ) - parser.add_argument( - "-p", - type=int, - default=os.cpu_count(), - help="Number of processes (default cpu_count)", - ) - parser.add_argument( - "-test_dir", type=str, default="./", help="testvec directory from 26.444)" - ) - parser.add_argument( - "-enc_bin", - type=str, - default="./bin/IVAS_cod.exe", - help="Encoder binary (default ./bin/IVAS_cod.exe)", - ) - parser.add_argument( - "-dec_bin", - type=str, - default="./bin/IVAS_dec.exe", - help="Decoder binary (default ./bin/IVAS_dec.exe)", - ) - - args = parser.parse_args() - test_vec_dir = args.test_dir - processes = args.p - enc_bin = args.enc_bin - dec_bin = args.dec_bin - - README_FILES = [ - "Readme_AMRWB_IO_dec.txt", - "Readme_AMRWB_IO_enc.txt", - "Readme_EVS_dec.txt", - "Readme_EVS_enc.txt", - "Readme_JBM_dec.txt", - ] - - scripts = [os.path.join(test_vec_dir, script) for script in README_FILES] - - if not environment_is_correct( - [f"{test_vec_dir}/testv"] + scripts + [enc_bin, dec_bin] - ): - sys.exit(1) - - pool = Pool(processes) - results = [] - id_count = 0 - - for script in scripts: - with open(script) as file: - tmp_dir = None - eval_cmd = None - diff_cmd = "" - for line in file: - if line.startswith("TMP="): - assert tmp_dir is None - tmp_dir = line.split('"')[1] - if os.path.exists(tmp_dir): - shutil.rmtree(tmp_dir) - os.makedirs(tmp_dir) - line = line.replace("testv", f"{test_vec_dir}/testv") - line = line if tmp_dir is None else line.replace("$TMP/", f"{tmp_dir}/") - if "$CUT_DEC_BIN" in line: - eval_cmd = dec_bin + " -q " + " ".join(line.split()[1:]) - if "$CUT_ENC_BIN" in line: - eval_cmd = enc_bin + " -q " + " ".join(line.split()[1:]) - if "$DIFF_BIN" in line: - if "Readme_JBM_dec.txt" in script: - if "-w" not in line.split()[1]: - diff_cmd = "FC.exe " + " ".join(line.split()[1:]).replace( - "/", "\\" - ).replace("\n", "/n") - continue - diff_cmd += ";FC.exe " + " ".join(line.split()[1:]).replace( - "/", "\\" - ).replace("\n", "/n").replace("-w", "/W") - else: - diff_cmd = "FC.exe " + " ".join(line.split()[1:]).replace( - "/", "\\" - ).replace("\n", "/n") - results.append( - pool.apply_async( - run_condition, args=(eval_cmd, diff_cmd, id_count) - ) - ) - id_count = id_count + 1 - print( - "Total number of conditions for", - '"' + os.path.basename(script) + '": ' + str(id_count - 1), - ) - - results = [r.get() for r in results if r.get()] - if results: - print(f"\n --- {len(results)} test conditions failed ---") - print("".join(results)) - with open("failed.txt", "w") as f: - print(f" --- {len(results)} test conditions failed ---", file=f) - print("".join(results), file=f) - sys.exit(1) - else: - print("\n *** All tests passed! ***") - sys.exit(0) diff --git a/ci/run_scheduled_sanitizer_test.py b/ci/run_scheduled_sanitizer_test.py deleted file mode 100644 index eda1fade6c15c29e5793a1e6d7c04050a070a753..0000000000000000000000000000000000000000 --- a/ci/run_scheduled_sanitizer_test.py +++ /dev/null @@ -1,281 +0,0 @@ -#!/usr/bin/env python3 -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import argparse -import pathlib -import subprocess -import sys -import numpy as np -import json - -CI_SCRIPT_DIR = "./ci" -sys.path.append(CI_SCRIPT_DIR) -from collect_artifacts import ( - collect_for_sanitizer_test, - find_failed_files_for_sanitizer_test, -) -from combine_genpatt_and_jbm_profile import combine_error_profiles -from create_trajectories import random_trajectory - - -SCRIPT_DIR = pathlib.Path("./scripts").resolve() -DURATION = "120" -CFG = "ci_linux_ltv.json" -SUPPORTED_TESTS = ["CLANG1", "CLANG2", "CLANG3"] -USAN_SUPP_FILE = str(SCRIPT_DIR.joinpath("ubsan.supp")) -EP_FILE = "ep_015.g192" -DLY_PROFILE_IN = SCRIPT_DIR.joinpath("dly_error_profiles/dly_error_profile_5.dat") -DLY_PROFILE_OUT = "dly_profile.dat" -N_FRAMES_DLY_PROFILE = 7500 -GENPATT_CMD = f"gen-patt -tailstat -fer -g192 -gamma 0 -rate 0.15 -tol 0.001 -reset -n {N_FRAMES_DLY_PROFILE} {EP_FILE}" -MC_MODES = ["5_1", "5_1_2", "5_1_4", "7_1", "7_1_4"] -AMBISONICS_MODES = ["HOA3", "HOA2", "FOA", "PlanarHOA3", "PlanarHOA2", "PlanarFOA"] -# timeout of 25 minutes per en/decoding to safeguard against endless loops -TIMEOUT = 60 * 25 -HEAD_TRAJ_FILE = str(pathlib.Path("./head_rot_traj.csv").resolve()) -EXOF_TRAJ_FILE = str(pathlib.Path("./exof_traj.csv").resolve()) - -CONSOLE_OUT_FILE = "output_san.txt" - -HEAD_ROT_ARGS = ["-t", HEAD_TRAJ_FILE] -EXOF_ARGS = ["-exof", EXOF_TRAJ_FILE] -OTR_ARGS = ["-otr", "avg"] -BINAURAL_OUT_ARGS = HEAD_ROT_ARGS + EXOF_ARGS + OTR_ARGS -ARGS_FOR_OC = { - "BINAURAL": BINAURAL_OUT_ARGS, - "BINAURAL_ROOM_IR": BINAURAL_OUT_ARGS, - "BINAURAL_ROOM_REVERB": BINAURAL_OUT_ARGS, -} - - -def main(args): - in_format = args.in_format - out_formats = args.out_formats - tests = args.tests - run_fec = not args.skip_fec - - assert all([t in SUPPORTED_TESTS for t in tests]) - - returncode = run_check(in_format, out_formats, tests, run_fec=run_fec) - - collect_for_sanitizer_test(CONSOLE_OUT_FILE) - - sys.exit(returncode) - - -def get_modes(in_format: str) -> list: - - in_format_for_script = in_format - if in_format in MC_MODES: - in_format_for_script = "MC" - elif "-" in in_format: - # hyphen indicates combined format - scene_format, object_format = in_format.split("-") - if scene_format in AMBISONICS_MODES: - in_format_for_script = "OSBA" - else: - assert scene_format == "MASA" - in_format_for_script = "OMASA" - - cmd = [ - SCRIPT_DIR.joinpath("runIvasCodec.py"), - "-C", - in_format_for_script, - "-l", - ] - list_process = subprocess.run(cmd, capture_output=True) - - output = list_process.stdout.decode("utf8") - mode_list = output.splitlines() - - # correction for multichannel modes to avoid selecting some mono modes... - if in_format in MC_MODES: - in_format = "MC_" + in_format + "_b" - mode_list = [m for m in mode_list if in_format in m] - elif in_format_for_script != in_format: - # indicates combined format - mode_list = [m for m in mode_list if object_format in m and scene_format in m] - - return mode_list - - -def assemble_oc_dict(out_formats: list): - oc_dict = {of: ARGS_FOR_OC.get(of, list()) for of in out_formats} - - return json.dumps(oc_dict) - - -def get_md_file_command(in_format: str) -> list: - - cmd = list() - if "ISM" in in_format: - cmd.append("--ism_metadata_files") - md_filename = "/usr/local/ltv/ltvISM{}.csv" - n = int(in_format[-1]) - cmd.extend([md_filename.format(i) for i in range(1, n + 1)]) - - return cmd - - -def run_check(in_format: str, out_formats: list, tests: list, run_fec: bool = True): - - modes = get_modes(in_format) - if len(modes) == 0: - return 0 - - md_file_command = get_md_file_command(in_format) - oc_str = assemble_oc_dict(out_formats) - - # create random trajectory files - if "BINAURAL" in oc_str: - trajectory_files = [HEAD_TRAJ_FILE, EXOF_TRAJ_FILE] - for tf in trajectory_files: - traj = random_trajectory(int(DURATION)) - np.savetxt(tf, traj, fmt="%.2f", delimiter=",") - - ### always run encoder and decoder with no frameloss - cmd_no_fec = [ - str(SCRIPT_DIR.joinpath("IvasBuildAndRunChecks.py")), - "-U", - DURATION, - "-p", - CFG, - "-z", - "console", - "--checks", - *tests, - "-m", - *modes, - "--oc", - oc_str, - *md_file_command, - "--usan_supp_file", - USAN_SUPP_FILE, - "--timeout", - str(TIMEOUT), - ] - - # to test non-diegetic panning with mono decoding: - # resue decoder part of StereDmxEVS mode (it is basically a duplicate of "normal" mono run) - if in_format == "StereoDmxEVS": - panning = np.random.randint(-90, 91) - cmd_no_fec += [f'-D=-non_diegetic_pan {panning}'] - - print( - "======== Script command line WITHOUT plc: ========\n{}".format( - " ".join(cmd_no_fec) - ) - ) - - with open(CONSOLE_OUT_FILE, "w") as f: - proc = subprocess.Popen( - cmd_no_fec, stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) - for c in iter(lambda: proc.stdout.read(1), b""): - sys.stdout.buffer.write(c) - f.write(c.decode("utf8")) - proc.wait() - - returncode_no_fec = proc.returncode - print("returncode_no_fec:", returncode_no_fec) - if returncode_no_fec not in [0, 101]: - raise IvasBuildAndRunFailed("Failed at first run (no PLC)") - - if not run_fec: - return returncode_no_fec - - # delete bitstream files for all failed modes to prevent follow-up errors in decoder-only run - with open(CONSOLE_OUT_FILE) as f: - console_log = f.readlines() - failed_files = find_failed_files_for_sanitizer_test(console_log) - for t in failed_files.keys(): - bs_folder = pathlib.Path(f"{t}/enc") - file_starts = failed_files[t] - for f in bs_folder.iterdir(): - for fs in file_starts: - if f.name.startswith(fs): - f.unlink() - - ### second run: decoder only with disturbed bitstream - - # generate error pattern - subprocess.call(GENPATT_CMD.split()) - combine_error_profiles(EP_FILE, DLY_PROFILE_IN, DLY_PROFILE_OUT) - - # cleanup to avoid script errors - # we want "logs" and "dec" subfolders to be empty -> delete "dec" and rename "log" - # to keep the log files from the first run with no frame losses - folders_to_delete = ["dec"] - folders_to_backup = ["logs"] - for t in tests: - for fol in folders_to_delete: - for fi in pathlib.Path(t).joinpath(fol).iterdir(): - fi.unlink() - for fol in folders_to_backup: - path = pathlib.Path(t).joinpath(fol) - new_name = pathlib.Path(str(path) + "_noPLC") - path.rename(new_name) - # need empty log folder to avoid crashes - path.mkdir() - - cmd_fec = cmd_no_fec + ["--decoder_only", "-J", DLY_PROFILE_OUT] - print( - "======== Script command line WITH plc: ========\n{}".format(" ".join(cmd_fec)) - ) - - with open(CONSOLE_OUT_FILE, "a") as f: - proc = subprocess.Popen(cmd_fec, stdout=subprocess.PIPE, stderr=subprocess.PIPE) - for c in iter(lambda: proc.stdout.read(1), b""): - sys.stdout.buffer.write(c) - f.write(c.decode("utf8")) - proc.wait() - - returncode_fec = proc.returncode - print("returncode_fec:", returncode_fec) - - if returncode_fec not in [0, 101]: - raise IvasBuildAndRunFailed("failed at second run (PLC)") - - return 101 if 101 in [returncode_no_fec, returncode_fec] else 0 - - -class IvasBuildAndRunFailed(Exception): - pass - - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("in_format", type=str) - parser.add_argument("out_formats", type=str, nargs="+") - parser.add_argument("--tests", type=str, nargs="+", default=["CLANG1", "CLANG2"]) - parser.add_argument("--skip_fec", action="store_true") - - sys.exit(main(parser.parse_args())) diff --git a/ci/setup_pages.py b/ci/setup_pages.py deleted file mode 100644 index 7e426ac0662fc629ef907779fd126e4b03ffb1de..0000000000000000000000000000000000000000 --- a/ci/setup_pages.py +++ /dev/null @@ -1,196 +0,0 @@ -#!/usr/bin/env python3 -import os -import pathlib -import subprocess -import sys -import shutil -from tempfile import TemporaryDirectory - -from get_id_of_last_job_occurence import get_job_id - -PROJECT_ID_FLOAT_REPO = 49 -PROJECT_ID_BASOP_REPO = 77 - -# job names -> hyperlink strings for the landing page -JOBS_FLOAT_REPO = { - # old ones no longer running -> replaced by "ext" jobs, remove after some time - # "complexity-stereo-in-stereo-out": "[OLD] Stereo in, stereo out", - # "complexity-sba-hoa3-in-hoa3-out": "[OLD] HOA3 in, HOA3 out", - # "complexity-mc-in-7_1_4-out": "[OLD] MC in, 7_1_4 out", - # "complexity-masa-in-7_1_4-out": "[OLD] Masa in, 7_1_4 out", - # current ones - "complexity-stereo-in-ext-out": "Stereo in, EXT out", - "complexity-ism-in-binaural-out": "ISM in, BINAURAL out", - "complexity-ism-in-binaural_room_ir-out": "ISM in, BINAURAL_ROOM_IR out", - "complexity-ism-in-ext-out": "ISM in, EXT out", - "complexity-sba-hoa3-in-ext-out": "HOA3 in, EXT out", - "complexity-sba-hoa3-in-binaural-out": "HOA3 in, BINAURAL out", - "complexity-sba-hoa3-in-binaural_room_ir-out": "HOA3 in, BINAURAL_ROOM_IR out", - "complexity-mc-in-ext-out": "MC in, EXT out", - "complexity-mc-in-binaural-out": "MC in, BINAURAL out", - "complexity-mc-in-binaural_room_ir-out": "MC in, BINAURAL_ROOM_IR out", - "complexity-masa-in-ext-out": "MASA in, EXT out", - "complexity-masa-in-binaural-out": "MASA in, BINAURAL out", - "complexity-masa-in-hoa3-out": "MASA in, HOA3 out", - "complexity-omasa-in-ext-out": "OMASA in, EXT out", - "complexity-omasa-in-binaural-out": "OMASA in, BINAURAL out", - "complexity-omasa-in-hoa3-out": "OMASA in, HOA3 out", - "complexity-osba-in-ext-out": "OSBA in, EXT out", - "complexity-osba-in-binaural-out": "OSBA in, BINAURAL out", - "complexity-osba-in-binaural_room_ir-out": "OSBA in, BINAURAL_ROOM_IR out", - "complexity-StereoDmxEVS-stereo-in-mono-out": "StereoDmxEVS, Stereo in, Mono out", - # "timeless" jobs (not complexity) - "coverage-test-on-main-scheduled": "Coverage", -} -JOBS_BASOP_REPO = { - "ivas-pytest-compare_ref-long-dec": "Pytest decoder compare to ref LTV", - "ivas-pytest-compare_ref-long-dec-lev+10": "Pytest decoder compare to ref LTV +10dB", - "ivas-pytest-compare_ref-long-dec-lev-10": "Pytest decoder compare to ref LTV -10dB", - "ivas-pytest-compare_ref-long-enc": "Pytest encoder compare to ref LTV", - "ivas-pytest-compare_ref-long-enc-lev+10": "Pytest encoder compare to ref LTV +10dB", - "ivas-pytest-compare_ref-long-enc-lev-10": "Pytest encoder compare to ref LTV -10dB", - "complexity-ism-in-binaural-out": "ISM in, BINAURAL out", - "complexity-ism-in-binaural_room_ir-out": "ISM in, BINAURAL_ROOM_IR out", - "complexity-ism-in-ext-out": "ISM in, EXT out", - "complexity-sba-hoa3-in-hoa3-out": "HOA3 in, HOA3 out", - "complexity-sba-hoa3-in-binaural-out": "HOA3 in, BINAURAL out", - "complexity-sba-hoa3-in-binaural_room_ir-out": "HOA3 in, BINAURAL_ROOM_IR out", - "complexity-mc-in-7_1_4-out": "MC in, 7_1_4 out", - "complexity-mc-in-binaural-out": "MC in, BINAURAL out", - "complexity-mc-in-binaural_room_ir-out": "MC in, BINAURAL_ROOM_IR out", - "complexity-masa-in-ext-out": "MASA in, EXT out", - "complexity-masa-in-binaural-out": "MASA in, BINAURAL out", - "complexity-masa-in-hoa3-out": "MASA in, HOA3 out", - "complexity-omasa-in-binaural-out": "OMASA in, BINAURAL out", - "complexity-omasa-in-hoa3-out": "OMASA in HOA3 out", - "complexity-StereoDmxEVS-stereo-in-mono-out": "StereoDmxEVS", - "complexity-osba-in-binaural-out": "OSBA in, BINAURAL out", - "complexity-osba-in-binaural_room_ir-out": "OSBA in, BINAURAL_ROOM_IR out", - "complexity-stereo-in-stereo-out": "Stereo in, Stereo out", -} - -JOBS_FOR_PROJECT_ID = { - PROJECT_ID_FLOAT_REPO: JOBS_FLOAT_REPO, - PROJECT_ID_BASOP_REPO: JOBS_BASOP_REPO, -} - -ARTIFACTS = "artifacts.zip" -API_URL_BASE = "https://forge.3gpp.org/rep/api/v4/projects/{}/jobs" -PUBLIC_FOLDER = pathlib.Path("./public").absolute() - - -def main(): - PUBLIC_FOLDER.mkdir() - - project_id = int(os.environ["CI_PROJECT_ID"]) - jobs = JOBS_FOR_PROJECT_ID[project_id] - success_only = False - failed_count = get_artifacts_for_jobs_and_return_num_failed( - jobs, project_id, success_only - ) - - if failed_count == len(jobs): - print("Artifact collection failed for all jobs to check.") - sys.exit(1) - - index_html = PUBLIC_FOLDER.joinpath("index.html") - create_landing_page(jobs, index_html, project_id) - - sys.exit(0) - - -def create_landing_page(jobs, index_html, project_id): - # dynamically create the complexity links on the landing page - link_html = list() - link_html = ["
    "] - - for job, link_text in jobs.items(): - if job.startswith("complexity"): - line = f'
  • {link_text}
  • ' - link_html.append(line) - link_html.append("
") - link_html_text = "\n".join(link_html) - - if project_id == PROJECT_ID_FLOAT_REPO: - index_template = "index-pages.html" - elif project_id == PROJECT_ID_BASOP_REPO: - index_template = "basop-pages/basop_index.html" - - index_pages_tmpl_path = ( - pathlib.Path(__file__).parent.joinpath(index_template).absolute() - ) - - with open(index_pages_tmpl_path) as f: - index_pages_tmpl = f.read() - - index_pages_tmpl = index_pages_tmpl.format(link_html_text) - - with open(index_html, "w") as f: - f.write(index_pages_tmpl) - - -def get_artifacts_for_jobs_and_return_num_failed( - jobs: list, project_id: int, success_only: bool -) -> int: - """ - Get specified artifact folders for all jobs given and put them into the public folder. - - jobs: dictionary with the job names in the keys and a list of the - public folders to copy from the artifacts in the values - if "-public" is in the list, the actual folder name to copy is the key with "-public" appended - """ - failed_count = 0 - - for job in jobs: - job_id = get_job_id( - os.environ["CI_DEFAULT_BRANCH"], job, project_id, success_only - ) - - print(f"{job_id} - {job}") - try: - with TemporaryDirectory() as tmp_dir: - curl_for_artifacts(job_id, project_id, tmp_dir) - - tmp_dir = pathlib.Path(tmp_dir) - - for artifact in tmp_dir.iterdir(): - src = tmp_dir.joinpath(artifact).absolute() - dst = PUBLIC_FOLDER.joinpath(artifact.name) - print(f"{src} -> {dst}") - shutil.move(src, dst) - - except subprocess.CalledProcessError: - print(f"Could not get artifacts for {job}") - failed_count += 1 - - return failed_count - - -def curl_for_artifacts(job_id: int, project_id: int, exdir: str): - cmd = [ - "curl", - "--request", - "GET", - API_URL_BASE.format(project_id) + f"/{job_id}/artifacts", - "--output", - ARTIFACTS, - ] - print(cmd) - subprocess.run(cmd, check=True) - - # check for valid archive (if not, it is likely a 404 page, then display that) - cmd = ["unzip", "-t", ARTIFACTS] - try: - subprocess.run(cmd, check=True) - except subprocess.CalledProcessError: - with open(ARTIFACTS, "r") as f: - print(f.read()) - raise subprocess.CalledProcessError(-1, "Unzip check failed") - - # do the actual unzipping - cmd = ["unzip", ARTIFACTS, "-d", exdir] - subprocess.run(cmd, check=True) - - -if __name__ == "__main__": - main() diff --git a/ci/smoke_test.sh b/ci/smoke_test.sh deleted file mode 100644 index 071b9a0be620c8ebf8aef7c00f50914459088047..0000000000000000000000000000000000000000 --- a/ci/smoke_test.sh +++ /dev/null @@ -1,112 +0,0 @@ -#! /usr/bin/bash - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -function usage { - echo - echo "Usage:" - echo " smoke_test.sh [MODE]" - echo - echo " MODE - test (default) or coverage" - exit -} - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 1 -fi - -if [ -z "$1" ] || [ "$1" == "test" ]; then - BUILD=1 -elif [ "$1" == "coverage" ]; then - BUILD=0 -else - usage -fi - - -cfg=./scripts/config/ci_linux.json -dly_profile=./scripts/dly_error_profiles/dly_error_profile_10_smoke_test.dat -ism_md_cmd="--ism_metadata_files /usr/local/ltv/ltvISM1.csv /usr/local/ltv/ltvISM2.csv /usr/local/ltv/ltvISM3.csv /usr/local/ltv/ltvISM4.csv" -duration_arg="-U 1:2" -verbosity_cmd="-z console" -timeout_cmd="--timeout 20" - -if [ $BUILD -eq 1 ];then - # Enable memory macros to find unbalanced memory allocations/deallocations - # Does not implement full memory analysis - make clean - - # Replace free -> free_, malloc -> malloc_, calloc -> calloc_ - python3 ./scripts/prepare_mem_dryrun.py - - # Enable WMOPS and disable DEBUGGING - sed -i.bak -e "s/\/\*\s*\(#define\s*WMOPS\)\s*\*\//\1/g" lib_com/options.h - sed -i.bak -e "s/\/\/\s*\(#define\s*WMOPS\)/\1/g" lib_com/options.h -# sed -i.bak -e "s/\s*\(#define\s*DEBUGGING\)/\/\*\1*\//g" lib_com/options.h - - make all -j - -fi - -# prepare combined format test signals -echo "\n======================= 0. preparing combined format test inputs =======================\n\n" -./scripts/prepare_combined_format_inputs.py - -# run all modes vanilla-fashion -# treat ISM modes separately because passing the metadata files to MASA modes causes crashes -ism_modes=$(./scripts/runIvasCodec.py -l | grep ISM) -non_ism_modes=$(./scripts/runIvasCodec.py -l | grep -v ISM) -echo "\n======================= 1. non-ism modes no FEC =======================\n\n" -./scripts/runIvasCodec.py $verbosity_cmd -m $non_ism_modes -p $cfg $duration_arg $timeout_cmd | tee smoke_test_output.txt -echo "\n======================= 2. ism modes no FEC =======================\n\n" -./scripts/runIvasCodec.py $verbosity_cmd -m $ism_modes -p $cfg $duration_arg $ism_md_cmd $timeout_cmd | tee smoke_test_output.txt - -# all modes with simulated network delay - this includes JBM TSM and lost frames -echo "\n======================= 3. JBM =======================\n\n" -./scripts/runIvasCodec.py $verbosity_cmd -p $cfg $duration_arg --decoder_only --jbm_file $dly_profile $timeout_cmd | tee smoke_test_output_jbm.txt - -# run all modes with binaural output using external files -formats_with_bin_out=$(./scripts/runIvasCodec.py -L | grep -v "mono\|tereo") -bin_out_modes="BINAURAL BINAURAL_ROOM_IR BINAURAL_ROOM_REVERB" - -echo "\n======================= 4. binaural out with HRTF files - WB =======================\n\n" -wb_modes=$(./scripts/runIvasCodec.py -l -C $formats_with_bin_out | grep _wb_) -hrtf_wb="../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin" -./scripts/runIvasCodec.py $verbosity_cmd -p $cfg -m $wb_modes $duration_arg -D="-hrtf ${hrtf_wb}" --decoder_only --oc $bin_out_modes $timeout_cmd | tee -a smoke_test_output_hrtf.txt - -echo "\n======================= 5. binaural out with HRTF files - SWB =======================\n\n" -swb_modes=$(./scripts/runIvasCodec.py -l -C $formats_with_bin_out | grep _swb_) -hrtf_swb="../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin" -./scripts/runIvasCodec.py $verbosity_cmd -p $cfg -m $swb_modes $duration_arg -D="-hrtf ${hrtf_swb}" --decoder_only --oc $bin_out_modes $timeout_cmd | tee -a smoke_test_output_hrtf.txt - -echo "\n======================= 6. binaural out with HRTF files - FB =======================\n\n" -fb_modes=$(./scripts/runIvasCodec.py -l -C $formats_with_bin_out | grep _fb_) -hrtf_fb="../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin" -./scripts/runIvasCodec.py $verbosity_cmd -p $cfg -m $fb_modes $duration_arg -D="-hrtf ${hrtf_fb}" --decoder_only --oc $bin_out_modes $timeout_cmd | tee -a smoke_test_output_hrtf.txt diff --git a/ci/smoke_test_complexity.sh b/ci/smoke_test_complexity.sh deleted file mode 100644 index abd724c88f189e0930a01b1b4e491586e412c3bb..0000000000000000000000000000000000000000 --- a/ci/smoke_test_complexity.sh +++ /dev/null @@ -1,214 +0,0 @@ -#! /usr/bin/bash - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -function usage { - echo - echo "Usage:" - echo " smoke_test_complexity.sh [--max_cores nMaxCores]" - echo - echo " nMaxCores - the number of CPUs to use (default 42)" - exit -} - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 1 -fi - -if [[ -z "$1" ]]; then - MAX_CORES=42 -elif [[ "$1" == "--max_cores" ]]; then - if [[ -z "$2" ]]; then - echo "Need maximum number of cores" - exit 1 - else - MAX_CORES=$2 - fi -else - usage -fi - -cfg=./scripts/config/ci_linux_ltv.json -ism_md_cmd="--ism_metadata_files /usr/local/ltv/ltvISM1.csv /usr/local/ltv/ltvISM2.csv /usr/local/ltv/ltvISM3.csv /usr/local/ltv/ltvISM4.csv" -duration_arg="" -complexity_cmd="--checks COMPLEXITY --create_complexity_tables" -max_num_workers="--max_workers $MAX_CORES" - -# prepare combined format test signals -echo "\n======================= 0. preparing combined format test inputs =======================\n\n" -./scripts/prepare_combined_format_inputs.py - -# Modes -mono_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^mono) -FOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^FOA) -HOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA2) -HOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^HOA3) -PlanarFOA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarFOA) -PlanarHOA2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA2) -PlanarHOA3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^PlanarHOA3) -MASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MASA) -MC_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^MC) -stereo_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^stereo) -stereoDmx_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^StereoDmx) -OMASA_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OMASA) -OSBA_ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM1) -OSBA_ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM2) -OSBA_ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM3) -OSBA_ISM4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^OSBA_ISM4) -ISM1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM1) -ISM2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM2) -ISM3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM3) -ISM4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM4) -ISM_plus1_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+1) -ISM_plus2_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+2) -ISM_plus3_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+3) -ISM_plus4_modes=$(./scripts/IvasBuildAndRunChecks.py -l | grep ^ISM+4) - - -echo "\n======================= 1. Mono =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_mono_no_fec -m $mono_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_mono.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 2. FOA =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_FOA_no_fec -m $FOA_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_FOA.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 3. HOA2 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_HOA2_no_fec -m $HOA2_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_HOA2.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 4. HOA3 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_HOA3_no_fec -m $HOA3_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_HOA3.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 5. PlanarFOA =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_PlanarFOA_no_fec -m $PlanarFOA_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_PlanarFOA.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 6. PlanarHOA2 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_PlanarHOA2_no_fec -m $PlanarHOA2_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_PlanarHOA2.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 7. PlanarHOA3 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_PlanarHOA3_no_fec -m $PlanarHOA3_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_PlanarHOA3.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 8. MASA =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_MASA_no_fec -m $MASA_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_MASA.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 9. MC =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_MC_no_fec -m $MC_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_MC.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 10. stereo =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_stereo_no_fec -m $stereo_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_stereo.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 11. stereoDmx =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_stereoDmx_no_fec -m $stereoDmx_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_stereoDmx.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 12. OMASA =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_OMASA_no_fec -m $OMASA_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_OMASA.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 13. OSBA ISM1 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_OSBA_ISM1_no_fec -m $OSBA_ISM1_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_OSBA_ISM1.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 14. OSBA ISM2 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_OSBA_ISM2_no_fec -m $OSBA_ISM2_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_OSBA_ISM2.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 15. OSBA ISM3 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_OSBA_ISM3_no_fec -m $OSBA_ISM3_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_OSBA_ISM3.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 16. OSBA ISM4 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_OSBA_ISM4_no_fec -m $OSBA_ISM4_modes -p $cfg $duration_arg $max_num_workers | tee smoke_test_output_OSBA_ISM4.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 15. ISM1 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM1_no_fec -m $ISM1_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM1.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 16. ISM2 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM2_no_fec -m $ISM2_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM2.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 17. ISM3 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM3_no_fec -m $ISM3_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM3.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 18. ISM4 =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM4_no_fec -m $ISM4_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM4.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 19. ISM1 + extended metadata =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM_plus1_no_fec -m $ISM_plus1_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM_plus1.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 20. ISM2 + extended metadata =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM_plus2_no_fec -m $ISM_plus2_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM_plus2.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 21. ISM3 + extended metadata =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM_plus3_no_fec -m $ISM_plus3_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM_plus3.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ -echo "\n======================= 22. ISM4 + extended metadata =======================\n\n" -./scripts/IvasBuildAndRunChecks.py $complexity_cmd ltv_complexity_ISM_plus4_no_fec -m $ISM_plus4_modes -p $cfg $duration_arg $ism_md_cmd $max_num_workers | tee smoke_test_output_ISM_plus4.txt -rm -r ./COMPLEXITY/dec/ -rm -r ./COMPLEXITY/enc/ -rm -r ./COMPLEXITY/pcm/ diff --git a/ci/test_vectors_available.py b/ci/test_vectors_available.py deleted file mode 100644 index 6c11898560a6957e5f31047effdbcace76f552f4..0000000000000000000000000000000000000000 --- a/ci/test_vectors_available.py +++ /dev/null @@ -1,25 +0,0 @@ -import itertools -import json -import pathlib - -import pytest - -TEST_CONFIG_DIR = pathlib.Path(__file__).parent.parent.joinpath("scripts/config") -TEST_CONFIGS = [f for f in TEST_CONFIG_DIR.iterdir() if f.name.startswith("ci_linux")] - - -def get_testvectors_from_config(config) -> list: - with open(config) as f: - cfg = json.load(f) - return list(cfg["inpaths"].values()) - - -TESTVECTORS = sorted( - set(itertools.chain(*[get_testvectors_from_config(cfg) for cfg in TEST_CONFIGS])) -) - - -@pytest.mark.parametrize("testvector", TESTVECTORS) -def test_vectors_available(testvector): - if not pathlib.Path(testvector).exists(): - raise FileNotFoundError(f"Testvector {testvector} can not be found") diff --git a/scripts/IvasBuildAndRunChecks.py b/scripts/IvasBuildAndRunChecks.py deleted file mode 100644 index c1f31e433d4085d860ca7e833078e9ff555e8a14..0000000000000000000000000000000000000000 --- a/scripts/IvasBuildAndRunChecks.py +++ /dev/null @@ -1,229 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import os.path -import sys - -import pyivastest.constants as constants -from pyivastest import IvasScriptsCommon -from pyivastest.IvasSvnBuilder import * - -RET_CODE_FAILURE = 101 - - -class IvasBuildAndRunChecks(IvasScriptsCommon.IvasScript): - def __init__(self): - super().__init__( - ivas_parser=True, enable_logging=True, logger_name="IvasBuildAndRunChecks" - ) - - self.parser.add_argument( - "--checks", - nargs="*", - default="all", - help="List of checks to run, default all", - choices=["all", "CLANG1", "CLANG2", "CLANG3", "VALGRIND", "COMPLEXITY"], - ) - self.parser.add_argument( - "--srcdir", - help="Existing source file directory or desired directory for SVN export, default is the base directory of this working copy {}".format( - constants.WC_BASE_DIR - ), - ) - self.parser.add_argument("--svn", help="Path to SVN repository") - self.parser.add_argument("--svnuser", help="SVN user name", default="") - self.parser.add_argument("--svnpass", help="SVN password", default="") - self.parser.add_argument( - "-r", help="SVN revision (default HEAD)", type=int, default=None - ) - self.parser.add_argument( - "--def", - help="defines to enable for the version to be tested", - nargs="*", - default=None, - ) - self.parser.add_argument( - "--undef", - help="defines to disable for the version to be tested", - nargs="*", - default=None, - ) - self.parser.add_argument( - "--create_complexity_tables", - help="create complexity tables with the given prefix", - default="", - ) - self.parser.add_argument( - "--create_html_output", - help="create html output for automated tests emails with given prefix", - default="", - ) - self.parser.add_argument( - "--rebuild", help="force a rebuild of the binaries", action="store_true" - ) - self.parser.add_argument( - "--usan_supp_file", - help="suppression file for undef behaviour sanitizer", - default=None, - ) - self.parser.add_argument( - "--wmc_tool_mem_only", - help="pass the '-s' argument to the wmc tool to only measure memory", - action="store_true", - ) - - def run(self): - - self.parse_args() - if self.args["error"] or self.args["exit"]: - exit() - - if self.args["svn"]: - # check if we have an output directory - if not ["srcdir"]: - sys.exit("You have to specifiy a root directory for the SVN export!") - - elif self.args["srcdir"]: - # check if srcdir exists - self.args["srcdir"] = os.path.abspath(self.args["srcdir"]) - if not os.path.exists(self.args["srcdir"]): - sys.exit("Source directory " + self.args["srcdir"] + " does not exist") - else: - self.args["srcdir"] = constants.WC_BASE_DIR - - if "all" in self.args["checks"]: - checks = ["CLANG1", "CLANG2", "CLANG3", "VALGRIND"] - else: - checks = self.args["checks"] - - usan_supp_file = None - # need to convert to abs path as runtime dir will be different from calling dir - if self.args["usan_supp_file"] is not None: - usan_supp_file = os.path.abspath(self.args["usan_supp_file"]) - - if self.args["svn"]: - br = IvasBuilderAndRunner.fromSvn( - self.args["svn"], - self.args["svnuser"], - revision=self.args["r"], - svn_pwd=self.args["svnpass"], - out_dir=self.args["srcdir"], - site_config=self.args["config"], - sample_rate_enc_in=self.args["srin"], - sample_rate_dec_out=self.args["srout"], - enable_logging=True, - logger_name="{}.br".format(self.logger.name), - ) - - elif self.args["srcdir"]: - br = IvasBuilderAndRunner( - src_dir=self.args["srcdir"], - site_config=self.args["config"], - sample_rate_enc_in=self.args["srin"], - sample_rate_dec_out=self.args["srout"], - enable_logging=True, - logger_name="{}.br".format(self.logger.name), - ) - - modes = self.args["formats"] - - self.logger.console("Running checks for {}".format(str(modes)), logging.INFO) - - for check in checks: - if check == "COMPLEXITY": - br.add_complexity( - format_select_list=modes, - formats_fname=self.args["format_file"], - max_workers=self.args["max_workers"], - mem_only=self.args["wmc_tool_mem_only"], - ) - else: - br.add_check( - check, - format_select_list=modes, - formats_fname=self.args["format_file"], - max_workers=self.args["max_workers"], - usan_supp_file=usan_supp_file, - ) - IvasScriptsCommon.runner_setup( - br.build_and_run_dict[check]["runner"], self.args - ) - IvasScriptsCommon.analyzer_setup( - br.build_and_run_dict[check]["analyzer"], self.args - ) - - if self.args["rebuild"] == True: - br.force_build = True - - checks_ret_val = list() - for check in checks: - ret_val = br.run(check) - checks_ret_val.append(ret_val) - if self.args["create_html_output"]: - cmd = ["git", "rev-parse", "HEAD"] - commit_hash = subprocess.run(cmd, capture_output=True).stdout.decode( - "utf8" - ) - br.build_and_run_dict[check]["analyzer"].write_html_file( - check, self.args["create_html_output"], commit_hash - ) - for r in br.build_and_run_dict[check]["runner"].results: - self.logger.console(r[0]) - - if "COMPLEXITY" in checks and self.args["create_complexity_tables"]: - cmplx_analyzer = br.build_and_run_dict["COMPLEXITY"]["analyzer"] - if self.args["formats"]: - cmplx_analyzer.set_format_select_list(self.args["formats"]) - if self.args["oc_dict"]: - for ivas_format in self.args["formats"]: - cmplx_analyzer.set_format_output_config( - ivas_format, self.args["oc_dict"] - ) - cmplx_analyzer.ls_modes() - cmplx_analyzer.all_instrumented_to_csv( - self.args["create_complexity_tables"] - ) - - returncode = 0 - for check, ret_val in zip(checks, checks_ret_val): - runner = br.build_and_run_dict[check]["runner"] - failed_encs = runner.failed_modes["enc"] - failed_decs = runner.failed_modes["dec"] - if len(failed_encs) > 0 or len(failed_decs) > 0 or ret_val != 0: - returncode = RET_CODE_FAILURE - - return returncode - - -if __name__ == "__main__": - script = IvasBuildAndRunChecks() - sys.exit(script.run()) diff --git a/scripts/check-format.sh b/scripts/check-format.sh deleted file mode 100755 index db6c681e9dfd515db91e8ed78da252ef06536769..0000000000000000000000000000000000000000 --- a/scripts/check-format.sh +++ /dev/null @@ -1,248 +0,0 @@ -#!/bin/bash - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -# Simple script to format or check formatting of your working copy before you commit to the SVN -# for questions: dla@iis.fhg.de - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 255 -fi - -CLANG_FORMAT=clang-format -CLANG_FORMAT_REQUIRED_VERSION="13.0" - -# list (with space between entries) of substrings that are excluded from the file list, e.g. very large files -EXCLUDE_FILES="ivas_rom_binaural_crend_head.c" - -NUMPROCS=1 - -function usage() { - cat < clang-format-13 does not add them and warnings e.g. on MacOS are triggered by them - sed -i -e '$a\' $1 - # second command removes multiple newlines at the end of a file so that there is only one left - # -> clang-format-13 does not do that, but complains about it - sed -i -e :a -e '/^\n*$/{$d;N;ba' -e '}' $1 -} - -cl-format-check() { - local I=$1 - local COLOR=$2 - local RED="" - local GREEN="" - local DEFAULT="" - - if [[ $NUMPROCS -lt 2 ]]; then - printf '%-50s' $I - fi - - if [ $COLOR ]; then - RED="\e[41m" - GREEN="\e[42m" - DEFAULT="\e[49m" - fi - - local O=$(${CLANG_FORMAT} $I) - local DIFF=$(diff $I <(echo "$O")) - - if [[ $NUMPROCS -ge 2 ]]; then - printf '%-50s' $I - fi - - if [ "$DIFF" != "" ]; then - printf '[%bFAIL%b]\n' $RED $DEFAULT - if [ ! $NODIFF ]; then - DIFF=$(diff -u $I <(echo "$O")) - if [ $COLOR ]; then - if [[ "$OSTYPE" == "darwin"* ]]; then - echo "$DIFF" | sed "s/^-/`echo -e \"\x1b\"`[41m-/;s/^+/`echo -e \"\x1b\"`[42m+/;s/^@/`echo -e \"\x1b\"`[34m@/;s/$/`echo -e \"\x1b\"`[0m/" - else - echo "$DIFF" | sed 's/^-/\x1b[41m-/;s/^+/\x1b[42m+/;s/^@/\x1b[34m@/;s/$/\x1b[0m/' - fi - else - echo "$DIFF" - fi - fi - return 1 - else - printf '[%bOK%b]\n' $GREEN $DEFAULT - return 0 - fi -} - -while getopts "facDVe:p:h" OPTIONS; do - case ${OPTIONS} in - f) - FORMAT=true - ;; - a) - ALL=true - ;; - c) - COLOR=true - ;; - D) - NODIFF=true - ;; - V) - NOVERSION=true - ;; - e) - CLANG_FORMAT=$OPTARG - ;; - p) - NUMPROCS=$OPTARG - ;; - h | *) - usage - ;; - esac -done -shift $((OPTIND-1)) -FILES="$@" - -if [ ! -d "lib_com" ]; then - echo "not in root directory! - please run in IVAS root" - exit 253 -fi - -if [ ! $NOVERSION ]; then - if [[ $(cl-format-check-version) != "${CLANG_FORMAT_REQUIRED_VERSION}"* ]]; then - echo "clang-format must be version ${CLANG_FORMAT_REQUIRED_VERSION} but is $(cl-format-check-version) !!!" - echo "Executables for Win32 could be downloaded from https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/LLVM-13.0.1-win32.exe" - exit 252 - fi -fi - -if [ -z "$FILES" ]; then - if [ $ALL ]; then - FILES=$(ls lib_com/*.[c,h] lib_dec/*.[c,h] lib_enc/*.[c,h] lib_isar/*.[c,h] lib_rend/*.[c,h] lib_util/*.[c,h] apps/*.[c,h]) - elif [ -d ".svn" ]; then - if [ ! -x "$(command -v svn)" ]; then - echo "Subversion doesn't seem to be installed. Please ensure svn is in your PATH" - exit 251 - fi - if [[ "$OSTYPE" == "darwin"* ]]; then - FILES=$(svn st | grep '^M' | cut -b 9- | grep -E "\.c|\.h") - else - FILES=$(svn st | grep '^M' | cut -b 9- | grep '\.c$\|\.h$') - fi - elif [ -d ".git" ]; then - if [ ! -x "$(command -v git)" ]; then - echo "GIT doesn't seem to be installed. Please ensure git is in your PATH" - exit 251 - fi - if [[ "$OSTYPE" == "darwin"* ]]; then - FILES=$(git status | grep 'modified: ' | cut -b 14- | grep -E "\.c|\.h") - else - FILES=$(git status | grep 'modified: ' | cut -b 14- | grep '\.c$\|\.h$') - fi - else - echo "Warning: no files checked (either no cmdl params or no modified files)" - exit 0 - fi - for i in ${EXCLUDE_FILES}; do - FILES=$(echo ${FILES} | xargs -n 1 | grep -v ${i} | tr '\n' ' ') - done -fi - -if [[ $NUMPROCS -lt 2 ]]; then - NUMFAILS=0 - for i in ${FILES}; do - cl-format-check $i $COLOR - RET=$? - ((NUMFAILS+=RET)) - if [ $FORMAT ]; then - ensure-one-newline $i - cl-format-apply $i - fi - done - if [[ $NUMFAILS -gt 0 ]]; then - echo "Total fails: $NUMFAILS" -# exit $NUMFAILS ## uncomment if script should have num fails as return code - fi -else - NUMFAILS=0 - NUMFAILSTMPFILE=$(mktemp) - # parallel processing. Note that return code is always 0 then and fails are not counted - for i in ${FILES}; do - ( - cl-format-check $i $COLOR - RET=$? - if [[ $RET -gt 0 ]] - then - echo "1" >> "$NUMFAILSTMPFILE" - fi - ((NUMFAILS+=RET)) - if [ $FORMAT ]; then - ensure-one-newline $i - cl-format-apply $i - fi ) & - while [[ $(jobs -r -p | wc -l) -ge $NUMPROCS ]];do - sleep 0.1 - done - done - wait - NUMFAILS=`cat $NUMFAILSTMPFILE | wc -l` - rm "$NUMFAILSTMPFILE" - if [[ $NUMFAILS -gt 0 ]]; then - echo "Total fails: $NUMFAILS" - exit $NUMFAILS ## uncomment if script should have num fails as return code - fi -fi - -exit 0 diff --git a/scripts/config/ci_linux.json b/scripts/config/ci_linux.json deleted file mode 100644 index 93a7f9eadb5521cf7746cd107a3f4dd54f2689c5..0000000000000000000000000000000000000000 --- a/scripts/config/ci_linux.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "afspPath": "not_needed", - "utilPath": "/tools", - "inpaths": { - "MONO": "/usr/local/testv/stv48c.wav", - "STEREO": "/usr/local/testv/stvST48c.wav", - "FOA": "/usr/local/testv/stvFOA48c.wav", - "HOA2": "/usr/local/testv/stv2OA48c.wav", - "HOA3": "/usr/local/testv/stv3OA48c.wav", - "SBA": "/usr/local/testv/stv3OA48c.wav", - "MASA1TC": "/usr/local/testv/stv1MASA1TC48c.wav", - "MASA2TC": "/usr/local/testv/stv1MASA2TC48c.wav", - "5_1": "/usr/local/testv/stv51MC48c.wav", - "5_1_2": "/usr/local/testv/stv512MC48c.wav", - "5_1_4": "/usr/local/testv/stv514MC48c.wav", - "7_1": "/usr/local/testv/stv71MC48c.wav", - "7_1_4": "/usr/local/testv/stv714MC48c.wav", - "ISM1": "/usr/local/testv/stv1ISM48s.wav", - "ISM2": "/usr/local/testv/stv2ISM48s.wav", - "ISM3": "/usr/local/testv/stv3ISM48s.wav", - "ISM4": "/usr/local/testv/stv4ISM48s.wav", - "OMASA_ISM1_1TC": "/usr/local/testv/stvOMASA_1ISM_1MASA1TC48c.wav", - "OMASA_ISM1_2TC": "/usr/local/testv/stvOMASA_1ISM_1MASA2TC48c.wav", - "OMASA_ISM2_1TC": "/usr/local/testv/stvOMASA_2ISM_1MASA1TC48c.wav", - "OMASA_ISM2_2TC": "/usr/local/testv/stvOMASA_2ISM_1MASA2TC48c.wav", - "OMASA_ISM3_1TC": "/usr/local/testv/stvOMASA_3ISM_1MASA1TC48c.wav", - "OMASA_ISM3_2TC": "/usr/local/testv/stvOMASA_3ISM_1MASA2TC48c.wav", - "OMASA_ISM4_1TC": "/usr/local/testv/stvOMASA_4ISM_1MASA1TC48c.wav", - "OMASA_ISM4_2TC": "/usr/local/testv/stvOMASA_4ISM_1MASA2TC48c.wav", - "OSBA_ISM1_FOA": "/usr/local/testv/stvOSBA_1ISM_FOA48c.wav", - "OSBA_ISM1_HOA2": "/usr/local/testv/stvOSBA_1ISM_2OA48c.wav", - "OSBA_ISM1_HOA3": "/usr/local/testv/stvOSBA_1ISM_3OA48c.wav", - "OSBA_ISM2_FOA": "/usr/local/testv/stvOSBA_2ISM_FOA48c.wav", - "OSBA_ISM2_HOA2": "/usr/local/testv/stvOSBA_2ISM_2OA48c.wav", - "OSBA_ISM2_HOA3": "/usr/local/testv/stvOSBA_2ISM_3OA48c.wav", - "OSBA_ISM3_FOA": "/usr/local/testv/stvOSBA_3ISM_FOA48c.wav", - "OSBA_ISM3_HOA2": "/usr/local/testv/stvOSBA_3ISM_2OA48c.wav", - "OSBA_ISM3_HOA3": "/usr/local/testv/stvOSBA_3ISM_3OA48c.wav", - "OSBA_ISM4_FOA": "/usr/local/testv/stvOSBA_4ISM_FOA48c.wav", - "OSBA_ISM4_HOA2": "/usr/local/testv/stvOSBA_4ISM_2OA48c.wav", - "OSBA_ISM4_HOA3": "/usr/local/testv/stvOSBA_4ISM_3OA48c.wav" - } -} diff --git a/scripts/config/ci_linux_ltv.json b/scripts/config/ci_linux_ltv.json deleted file mode 100644 index ece0e2d7399139401c7292ad8eec0de40220f2c7..0000000000000000000000000000000000000000 --- a/scripts/config/ci_linux_ltv.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "afspPath": "not_needed", - "utilPath": "/tools", - "inpaths": { - "MONO": "/usr/local/ltv/ltv48_MONO.wav", - "STEREO": "/usr/local/ltv/ltv48_STEREO.wav", - "FOA": "/usr/local/ltv/ltv48_FOA.wav", - "HOA2": "/usr/local/ltv/ltv48_HOA2.wav", - "HOA3": "/usr/local/ltv/ltv48_HOA3.wav", - "SBA": "/usr/local/ltv/ltv48_HOA3.wav", - "MASA1TC": "/usr/local/ltv/ltv48_MASA1TC.wav", - "MASA2TC": "/usr/local/ltv/ltv48_MASA2TC.wav", - "5_1": "/usr/local/ltv/ltv48_MC51.wav", - "5_1_2": "/usr/local/ltv/ltv48_MC512.wav", - "5_1_4": "/usr/local/ltv/ltv48_MC514.wav", - "7_1": "/usr/local/ltv/ltv48_MC71.wav", - "7_1_4": "/usr/local/ltv/ltv48_MC714.wav", - "ISM1": "/usr/local/ltv/ltv48_1ISM.wav", - "ISM2": "/usr/local/ltv/ltv48_2ISM.wav", - "ISM3": "/usr/local/ltv/ltv48_3ISM.wav", - "ISM4": "/usr/local/ltv/ltv48_4ISM.wav", - "OMASA_ISM1_1TC": "/usr/local/ltv/ltv48_OMASA_1ISM_1TC.wav", - "OMASA_ISM1_2TC": "/usr/local/ltv/ltv48_OMASA_1ISM_2TC.wav", - "OMASA_ISM2_1TC": "/usr/local/ltv/ltv48_OMASA_2ISM_1TC.wav", - "OMASA_ISM2_2TC": "/usr/local/ltv/ltv48_OMASA_2ISM_2TC.wav", - "OMASA_ISM3_1TC": "/usr/local/ltv/ltv48_OMASA_3ISM_1TC.wav", - "OMASA_ISM3_2TC": "/usr/local/ltv/ltv48_OMASA_3ISM_2TC.wav", - "OMASA_ISM4_1TC": "/usr/local/ltv/ltv48_OMASA_4ISM_1TC.wav", - "OMASA_ISM4_2TC": "/usr/local/ltv/ltv48_OMASA_4ISM_2TC.wav", - "OSBA_ISM1_FOA": "/usr/local/ltv/ltv48_OSBA_1ISM_FOA.wav", - "OSBA_ISM1_HOA2": "/usr/local/ltv/ltv48_OSBA_1ISM_HOA2.wav", - "OSBA_ISM1_HOA3": "/usr/local/ltv/ltv48_OSBA_1ISM_HOA3.wav", - "OSBA_ISM2_FOA": "/usr/local/ltv/ltv48_OSBA_2ISM_FOA.wav", - "OSBA_ISM2_HOA2": "/usr/local/ltv/ltv48_OSBA_2ISM_HOA2.wav", - "OSBA_ISM2_HOA3": "/usr/local/ltv/ltv48_OSBA_2ISM_HOA3.wav", - "OSBA_ISM3_FOA": "/usr/local/ltv/ltv48_OSBA_3ISM_FOA.wav", - "OSBA_ISM3_HOA2": "/usr/local/ltv/ltv48_OSBA_3ISM_HOA2.wav", - "OSBA_ISM3_HOA3": "/usr/local/ltv/ltv48_OSBA_3ISM_HOA3.wav", - "OSBA_ISM4_FOA": "/usr/local/ltv/ltv48_OSBA_4ISM_FOA.wav", - "OSBA_ISM4_HOA2": "/usr/local/ltv/ltv48_OSBA_4ISM_HOA2.wav", - "OSBA_ISM4_HOA3": "/usr/local/ltv/ltv48_OSBA_4ISM_HOA3.wav" - } -} diff --git a/scripts/config/ci_linux_sidstart_test.json b/scripts/config/ci_linux_sidstart_test.json deleted file mode 100644 index 787efbf82cb0323a3dc5400a95e2f02067c7d2b7..0000000000000000000000000000000000000000 --- a/scripts/config/ci_linux_sidstart_test.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "afspPath": "not_needed", - "utilPath": "/tools", - "inpaths": { - "MONO": "/usr/local/testv/stv48n.wav", - "STEREO": "/usr/local/ltv/ltv48_STEREO.wav", - "FOA": "/usr/local/ltv/ltv48_FOA.wav", - "HOA2": "/usr/local/ltv/ltv48_HOA2.wav", - "HOA3": "/usr/local/ltv/ltv48_HOA3.wav", - "SBA": "/usr/local/ltv/ltv48_HOA3.wav", - "MASA1TC": "/usr/local/ltv/ltv48_MASA1TC.wav", - "MASA2TC": "/usr/local/ltv/ltv48_MASA2TC.wav", - "5_1": "/usr/local/testv/stv51MC48c.wav", - "5_1_2": "/usr/local/testv/stv512MC48c.wav", - "5_1_4": "/usr/local/testv/stv514MC48c.wav", - "7_1": "/usr/local/testv/stv71MC48c.wav", - "7_1_4": "/usr/local/testv/stv714MC48c.wav", - "ISM1": "/usr/local/ltv/ltv48_1ISM.wav", - "ISM2": "/usr/local/ltv/ltv48_2ISM.wav", - "ISM3": "/usr/local/ltv/ltv48_3ISM.wav", - "ISM4": "/usr/local/ltv/ltv48_4ISM.wav" - } -} diff --git a/scripts/config/ivas_modes.json b/scripts/config/ivas_modes.json deleted file mode 100644 index 1ba398353649aaac74b63db50106a242fb7c3385..0000000000000000000000000000000000000000 --- a/scripts/config/ivas_modes.json +++ /dev/null @@ -1,9160 +0,0 @@ -{ - "version": 2, - "mono": { - "mono_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "nb": [ - 7200, - 8000, - 9600, - 13200, - 16400, - 24400 - ], - "wb": [ - 7200, - 8000, - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "swb": [ - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "fb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_lo2_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "2" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Lo2 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_lo3_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "3" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Lo3 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_lo5_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "5" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Lo5 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_lo7_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "7" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Lo7 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_hi2_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "2" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Hi2 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_hi3_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "3" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Hi3 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_hi5_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "5" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Hi5 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rf_hi7_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "7" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RF Hi7 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "mono_b{bitrate}_dtx_{bandwidth}_vbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "nb": [ - 5900 - ], - "wb": [ - 5900 - ] - } - }, - "mono_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "nb": [ - 7200, - 8000, - 9600, - 13200, - 16400, - 24400 - ], - "wb": [ - 7200, - 8000, - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "swb": [ - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "fb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ] - } - }, - "mono_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true, - "bitrates": { - "nb": { - "07/13": "{sw_files_path}/sw_nb1.bin" - }, - "wb": { - "07/16": "{sw_files_path}/wb_low1.bin", - "13/64": "{sw_files_path}/wb_high1.bin", - "07/64": "{sw_files_path}/sw_wb1.bin" - }, - "swb": { - "13/32": "{sw_files_path}/swb_low1.bin", - "24/64": "{sw_files_path}/swb_high1.bin", - "13/128": "{sw_files_path}/sw_swb1.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - } - } - }, - "mono_b{bitrate}_dtx_{bandwidth}_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RS DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true, - "bitrates": { - "nb": { - "05/13": "{sw_files_path}/sw_nb5.bin", - "07/13": "{sw_files_path}/sw_nb1.bin" - }, - "wb": { - "07/16": "{sw_files_path}/wb_low1.bin", - "05/64": "{sw_files_path}/wb_high1.bin", - "07/64": "{sw_files_path}/sw_wb5.bin", - "13/64": "{sw_files_path}/sw_wb1.bin" - }, - "swb": { - "13/32": "{sw_files_path}/swb_low1.bin", - "24/64": "{sw_files_path}/swb_high1.bin", - "13/128": "{sw_files_path}/sw_swb1.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - } - } - }, - "mono_b{bitrate}_amr_{bandwidth}_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps AMR {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true, - "bitrates": { - "wb": [ - 6600, - 8850, - 12650, - 14250, - 15850, - 18250, - 19850, - 23050, - 23850 - ] - } - }, - "mono_b{bitrate}_dtx_amr_{bandwidth}_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps AMR DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true, - "bitrates": { - "wb": [ - 6600, - 8850, - 12650, - 14250, - 15850, - 18250, - 19850, - 23050, - 23850 - ] - } - }, - "mono_b{bitrate}_amr_{bandwidth}_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RS AMR {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/23": "{sw_files_path}/sw_amrwb.bin" - } - } - }, - "mono_b{bitrate}_amr_evs_{bandwidth}_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RS AMR {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/64": "{sw_files_path}/sw_amrwb_evs.bin" - }, - "swb": { - "06/128": "{sw_files_path}/sw_amrwb_evs2.bin" - } - } - }, - "mono_b{bitrate}_dtx_amr_{bandwidth}_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RS AMR DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/23": "{sw_files_path}/sw_amrwb.bin" - } - } - }, - "mono_b{bitrate}_dtx_amr_evs_{bandwidth}_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@{table_bitrate} kbps RS AMR DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/64": "{sw_files_path}/sw_amrwb_evs.bin" - }, - "swb": { - "06/128": "{sw_files_path}/sw_amrwb_evs2.bin" - } - } - } - }, - "FOA": { - "FOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "FOA", - "table_name": "FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "FOA_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "FOA", - "table_name": "FOA@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000 - ] - } - }, - "FOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-sba", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "FOA", - "table_name": "FOA@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "HOA2": { - "HOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA2", - "table_name": "HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "HOA2_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA2", - "table_name": "HOA2@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000 - ] - } - }, - "HOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-sba", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA2", - "table_name": "HOA2@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "HOA3": { - "HOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA3", - "table_name": "HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "HOA3_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "3" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA3", - "table_name": "HOA3@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000 - ] - } - }, - "HOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-sba", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA3", - "table_name": "HOA3@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "PlanarFOA": { - "PlanarFOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "FOA", - "table_name": "Planar FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "PlanarFOA_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "-1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "FOA", - "table_name": "Planar FOA@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000 - ] - } - }, - "PlanarFOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-sba", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "FOA", - "table_name": "Planar FOA@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "PlanarHOA2": { - "PlanarHOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA2", - "table_name": "Planar HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "PlanarHOA2_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "-2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA2", - "table_name": "Planar HOA2@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000 - ] - } - }, - "PlanarHOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-sba", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA2", - "table_name": "Planar HOA2@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "PlanarHOA3": { - "PlanarHOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA3", - "table_name": "Planar HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "PlanarHOA3_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-sba", - "-3" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA3", - "table_name": "Planar HOA3@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000 - ] - } - }, - "PlanarHOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-sba", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "HOA3", - "table_name": "Planar HOA3@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "MASA": { - "MASA_1TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "MASA1TC", - "table_name": "MASA 1TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MASA_1TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "MASA1TC", - "table_name": "MASA 1TC @{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "MASA_2TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "MASA2TC", - "table_name": "MASA 2TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MASA_2TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "MASA2TC", - "table_name": "MASA 2TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "MASA_1TC_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "MASA1TC", - "table_name": "MASA 1TC @{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MASA_2TC_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "MASA2TC", - "table_name": "MASA 2TC @{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - } - }, - "MC": { - "MC_5_1_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MC_7_1_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MC_5_1_2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-mc", - "5_1_2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "5_1_2", - "table_name": "MC 5_1_2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MC_5_1_4_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MC_7_1_4_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "MC_5_1_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "MC_7_1_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "MC_5_1_2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-mc", - "5_1_2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "5_1_2", - "table_name": "MC 5_1_2@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "MC_5_1_4_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "MC_7_1_4_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "ISM1": { - "ISM1_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ] - } - }, - "ISM1_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@{table_bitrate} RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_128k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_128k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_32k_128k.bin" - } - } - }, - "ISM1_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ] - } - } - }, - "ISM2": { - "ISM2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "swb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ] - } - }, - "ISM2_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-dtx", - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "swb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ] - } - }, - "ISM2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_16k4_256k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_16k4_256k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_32k_256k.bin" - } - } - } - }, - "ISM3": { - "ISM3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ] - } - }, - "ISM3_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-dtx", - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ] - } - }, - "ISM3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_24k4_384k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_24k4_384k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_32k_384k.bin" - } - } - } - }, - "ISM4": { - "ISM4_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "ISM4_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-dtx", - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "ISM4_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_24k4_384k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_24k4_384k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_32k_384k.bin" - } - } - } - }, - "ISM+1": { - "ISM+1_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "+1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM+1@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ] - } - }, - "ISM+1_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "+1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM+1@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000 - ] - } - } - }, - "ISM+2": { - "ISM+2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "+2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM+2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "swb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ] - } - }, - "ISM+2_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-dtx", - "-ism", - "+2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM+2@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "swb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ] - } - } - }, - "ISM+3": { - "ISM+3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "+3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM+3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ] - } - }, - "ISM+3_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-dtx", - "-ism", - "+3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM+3@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000 - ] - } - } - }, - "ISM+4": { - "ISM+4_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism", - "+4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM+4@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "ISM+4_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-dtx", - "-ism", - "+4" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM+4@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000, - 384000, - 512000 - ] - } - } - }, - "stereo": { - "stereo_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-stereo" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "STEREO", - "table_name": "Stereo@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ] - } - }, - "stereo_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-stereo" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "STEREO", - "table_name": "Stereo@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ], - "fb": [ - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 160000, - 192000, - 256000 - ] - } - }, - "stereo_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "STEREO", - "table_name": "stereo@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "13/64": "{sw_files_path}/wb_high1.bin" - }, - "swb": { - "13/32": "{sw_files_path}/swb_low1.bin", - "24/64": "{sw_files_path}/swb_high1.bin", - "13/128": "{sw_files_path}/sw_swb1.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - }, - "fb": { - "32/64": "{sw_files_path}/sw_fb1.bin", - "32/128": "{sw_files_path}/sw_fb2.bin", - "48/256": "{sw_files_path}/sw_fb3.bin" - } - } - }, - "stereo_b{bitrate}_dtx_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "STEREO", - "table_name": "stereo@{table_bitrate} kbps RS DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "13/64": "{sw_files_path}/wb_high1.bin" - }, - "swb": { - "13/32": "{sw_files_path}/swb_low1.bin", - "24/64": "{sw_files_path}/swb_high1.bin", - "13/128": "{sw_files_path}/sw_swb1.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - }, - "fb": { - "32/64": "{sw_files_path}/sw_fb1.bin", - "32/128": "{sw_files_path}/sw_fb2.bin", - "48/256": "{sw_files_path}/sw_fb3.bin" - } - } - } - }, - "StereoDmxEVS": { - "StereoDmxEvs_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 7200, - 8000, - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "swb": [ - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "fb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_lo2_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "2" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Lo2 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_lo3_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "3" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Lo3 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_lo5_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "5" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Lo5 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_lo7_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "lo", - "7" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Lo7 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_hi2_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "2" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Hi2 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_hi3_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "3" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Hi3 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_hi5_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "5" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Hi5 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rf_hi7_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}", - "-rf", - "hi", - "7" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RF Hi7 {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 13200 - ], - "swb": [ - 13200 - ] - } - }, - "StereoDmxEvs_b{bitrate}_dtx_{bandwidth}_vbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 5900 - ] - } - }, - "StereoDmxEvs_b{bitrate}_dtx_{bandwidth}_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true, - "bitrates": { - "wb": [ - 7200, - 8000, - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "swb": [ - 9600, - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ], - "fb": [ - 16400, - 24400, - 32000, - 48000, - 64000, - 96000, - 128000 - ] - } - }, - "StereoDmxEvs_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RS {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true, - "bitrates": { - "wb": { - "07/16": "{sw_files_path}/wb_low1.bin", - "13/64": "{sw_files_path}/wb_high1.bin", - "07/64": "{sw_files_path}/sw_wb1.bin" - }, - "swb": { - "13/32": "{sw_files_path}/swb_low1.bin", - "24/64": "{sw_files_path}/swb_high1.bin", - "13/128": "{sw_files_path}/sw_swb1.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - }, - "fb": { - "16/128": "{sw_files_path}/sw_16k4_128k_evs.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - } - } - }, - "StereoDmxEvs_b{bitrate}_dtx_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RS DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true, - "bitrates": { - "wb": { - "07/16": "{sw_files_path}/wb_low1.bin", - "05/64": "{sw_files_path}/wb_high1.bin", - "07/64": "{sw_files_path}/sw_wb5.bin", - "13/64": "{sw_files_path}/sw_wb1.bin" - }, - "swb": { - "13/32": "{sw_files_path}/swb_low1.bin", - "24/64": "{sw_files_path}/swb_high1.bin", - "13/128": "{sw_files_path}/sw_swb1.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - }, - "fb": { - "16/128": "{sw_files_path}/sw_16k4_128k_evs.bin", - "48/128": "{sw_files_path}/sw_highest.bin" - } - } - }, - "StereoDmxEvs_b{bitrate}_amr_{bandwidth}_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps AMR {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true, - "bitrates": { - "wb": [ - 6600, - 8850, - 12650, - 14250, - 15850, - 18250, - 19850, - 23050, - 23850 - ] - } - }, - "StereoDmxEvs_b{bitrate}_dtx_amr_{bandwidth}_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps AMR DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true, - "bitrates": { - "wb": [ - 6600, - 8850, - 12650, - 14250, - 15850, - 18250, - 19850, - 23050, - 23850 - ] - } - }, - "StereoDmxEvs_b{bitrate}_amr_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RS AMR {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/23": "{sw_files_path}/sw_amrwb.bin" - } - } - }, - "StereoDmxEvs_b{bitrate}_amr_evs_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RS AMR {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/64": "{sw_files_path}/sw_amrwb_evs.bin" - }, - "swb": { - "06/128": "{sw_files_path}/sw_amrwb_evs2.bin" - } - } - }, - "StereoDmxEvs_b{bitrate}_dtx_amr_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RS AMR DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/23": "{sw_files_path}/sw_amrwb.bin" - } - } - }, - "StereoDmxEvs_b{bitrate}_dtx_amr_evs_{bandwidth}_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "{bandwidth}" - ], - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@{table_bitrate} kbps RS AMR DTX {bandwidth}", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true, - "bitrates": { - "wb": { - "06/64": "{sw_files_path}/sw_amrwb_evs.bin" - }, - "swb": { - "06/128": "{sw_files_path}/sw_amrwb_evs2.bin" - } - } - } - }, - "OMASA": { - "OMASA_ISM1_2TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "1", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM1_2TC", - "table_name": "OMASA ISM1 2TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM1_2TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "1", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM1_2TC", - "table_name": "OMASA ISM1 2TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM1_1TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "1", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM1_1TC", - "table_name": "OMASA ISM1 1TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM1_1TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "1", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM1_1TC", - "table_name": "OMASA ISM1 1TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM2_2TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "2", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM2_2TC", - "table_name": "OMASA ISM2 2TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM2_2TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "2", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM2_2TC", - "table_name": "OMASA ISM2 2TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM2_1TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "2", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM2_1TC", - "table_name": "OMASA ISM2 1TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM2_1TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "2", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM2_1TC", - "table_name": "OMASA ISM2 1TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM3_2TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "3", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM3_2TC", - "table_name": "OMASA ISM3 2TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM3_2TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "3", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM3_2TC", - "table_name": "OMASA ISM3 2TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM3_1TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "3", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM3_1TC", - "table_name": "OMASA ISM3 1TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM3_1TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "3", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM3_1TC", - "table_name": "OMASA ISM3 1TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM4_2TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "4", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM4_2TC", - "table_name": "OMASA ISM4 2TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 5, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM4_2TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "4", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM4_2TC", - "table_name": "OMASA ISM4 2TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 5, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OMASA_ISM4_1TC_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_masa", - "4", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM4_1TC", - "table_name": "OMASA ISM4 1TC @{table_bitrate} kbps {bandwidth}", - "nummetadata": 5, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OMASA_ISM4_1TC_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_masa", - "4", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OMASA_ISM4_1TC", - "table_name": "OMASA ISM4 1TC @{table_bitrate} RS {bandwidth}", - "nummetadata": 5, - "metadatafilenames": [ - "{item}_ISM{mdi}.csv", - "{item}.met" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - }, - "OSBA": { - "OSBA_ISM1_HOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "1", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA3", - "table_name": "OSBA ISM1 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM1_HOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "1", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA2", - "table_name": "OSBA ISM1 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM1_FOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "1", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_FOA", - "table_name": "OSBA ISM1 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM2_HOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "2", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA3", - "table_name": "OSBA ISM2 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM2_HOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "2", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA2", - "table_name": "OSBA ISM2 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM2_FOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "2", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_FOA", - "table_name": "OSBA ISM2 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM3_HOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "3", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA3", - "table_name": "OSBA ISM3 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM3_HOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "3", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA2", - "table_name": "OSBA ISM3 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM3_FOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "3", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_FOA", - "table_name": "OSBA ISM3 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM4_HOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "4", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA3", - "table_name": "OSBA ISM4 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM4_HOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "4", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA2", - "table_name": "OSBA ISM4 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM4_FOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "4", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_FOA", - "table_name": "OSBA ISM4 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM1_HOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "1", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA3", - "table_name": "OSBA ISM1 HOA3 RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM1_HOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "1", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA2", - "table_name": "OSBA ISM1 HOA2 RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM1_FOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "1", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_FOA", - "table_name": "OSBA ISM1 FOA RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM2_HOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "2", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA3", - "table_name": "OSBA ISM2 HOA RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM2_HOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "2", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA2", - "table_name": "OSBA ISM2 HOA2 RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM2_FOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "2", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_FOA", - "table_name": "OSBA ISM2 FOA RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM3_HOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "3", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA3", - "table_name": "OSBA ISM3 HOA3 RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM3_HOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "3", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA2", - "table_name": "OSBA ISM3 HOA2 RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM3_FOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "3", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_FOA", - "table_name": "OSBA ISM3 FOA RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM4_HOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "4", - "3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA3", - "table_name": "OSBA ISM4 HOA3 RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM4_HOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "4", - "2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA2", - "table_name": "OSBA ISM4 HOA2 RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM4_FOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "4", - "1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_FOA", - "table_name": "OSBA ISM4 FOA RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM1_PlanarHOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "1", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA3", - "table_name": "OSBA ISM1 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM1_PlanarHOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "1", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA2", - "table_name": "OSBA ISM1 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM1_PlanarFOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "1", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_FOA", - "table_name": "OSBA ISM1 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM2_PlanarHOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "2", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA3", - "table_name": "OSBA ISM2 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM2_PlanarHOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "2", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA2", - "table_name": "OSBA ISM2 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM2_PlanarFOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "2", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_FOA", - "table_name": "OSBA ISM2 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM3_PlanarHOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "3", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA3", - "table_name": "OSBA ISM3 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM3_PlanarHOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "3", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA2", - "table_name": "OSBA ISM3 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM3_PlanarFOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "3", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_FOA", - "table_name": "OSBA ISM3 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM4_PlanarHOA3_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "4", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA3", - "table_name": "OSBA ISM4 HOA3@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM4_PlanarHOA2_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "4", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA2", - "table_name": "OSBA ISM4 HOA2@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM4_PlanarFOA_b{bitrate}_{bandwidth}_cbr": { - "encmodeoption": [ - "-ism_sba", - "4", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_FOA", - "table_name": "OSBA ISM4 FOA@{table_bitrate} kbps {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false, - "bitrates": { - "wb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "swb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ], - "fb": [ - 13200, - 16400, - 24400, - 32000, - 48000, - 64000, - 80000, - 96000, - 128000, - 192000, - 256000, - 384000, - 512000 - ] - } - }, - "OSBA_ISM1_PlanarHOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "1", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA3", - "table_name": "OSBA ISM1 HOA3 RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM1_PlanarHOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "1", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_HOA2", - "table_name": "OSBA ISM1 HOA2 RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM1_PlanarFOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "1", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM1_FOA", - "table_name": "OSBA ISM1 FOA RS {bandwidth}", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM2_PlanarHOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "2", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA3", - "table_name": "OSBA ISM2 HOA RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM2_PlanarHOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "2", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_HOA2", - "table_name": "OSBA ISM2 HOA2 RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM2_PlanarFOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "2", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM2_FOA", - "table_name": "OSBA ISM2 FOA RS {bandwidth}", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM3_PlanarHOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "3", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA3", - "table_name": "OSBA ISM3 HOA3 RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM3_PlanarHOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "3", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_HOA2", - "table_name": "OSBA ISM3 HOA2 RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM3_PlanarFOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "3", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM3_FOA", - "table_name": "OSBA ISM3 FOA RS {bandwidth}", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM4_PlanarHOA3_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "4", - "-3" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA3", - "table_name": "OSBA ISM4 HOA3 RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM4_PlanarHOA2_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "4", - "-2" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_HOA2", - "table_name": "OSBA ISM4 HOA2 RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - }, - "OSBA_ISM4_PlanarFOA_b{bitrate}_{bandwidth}_rs": { - "encmodeoption": [ - "-ism_sba", - "4", - "-1" - ], - "encoptions": [ - "-max_band", - "{bandwidth}" - ], - "dec": { - "7_1_4": [], - "7_1": [], - "5_1_4": [], - "5_1_2": [], - "5_1": [], - "BINAURAL": [], - "BINAURAL_ROOM_IR": [], - "BINAURAL_ROOM_REVERB": [], - "HOA3": [], - "HOA2": [], - "FOA": [], - "mono": [], - "stereo": [], - "EXT": [] - }, - "in_config": "OSBA_ISM4_FOA", - "table_name": "OSBA ISM4 FOA RS {bandwidth}", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": true, - "amr": false, - "mono": false, - "bitrates": { - "wb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "swb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - }, - "fb": { - "all": "{sw_files_path}/sw_13k2_512k.bin" - } - } - } - } -} diff --git a/scripts/config/ivas_modes_debug.json b/scripts/config/ivas_modes_debug.json deleted file mode 100644 index bbd63d224ce3f0ca5d75dd6b040b91dcdbbda6fd..0000000000000000000000000000000000000000 --- a/scripts/config/ivas_modes_debug.json +++ /dev/null @@ -1,19179 +0,0 @@ -{ - "mono": { - "mono_b07_2_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07.2kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b08_0_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@08.0kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b09_6_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@09.6kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b13_2_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13.2kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b07_2_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b08_0_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@08.0kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b09_6_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@09.6kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b13_2_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b32_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b48_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b64_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b96_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b128_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b09_6_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@09.6kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b13_2_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b32_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b48_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b64_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b96_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b128_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b05_9_dtx_nb_vbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 5900, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@05.9kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b07_2_dtx_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07.2kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b08_0_dtx_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@08.0kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b09_6_dtx_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@09.6kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b13_2_dtx_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13.2kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_dtx_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_dtx_nb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b05_9_dtx_wb_vbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 5900, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@05.9kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b07_2_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b08_0_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@08.0kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b09_6_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@09.6kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b13_2_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b32_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b48_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b64_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@64kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b96_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@96kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b128_dtx_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@128kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b09_6_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@09.6kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b13_2_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b32_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b48_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b64_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b96_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@96kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b128_dtx_swb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@128kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b32_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b48_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b64_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b96_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b128_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b16_4_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@16.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b24_4_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b32_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b48_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b64_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@64kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b96_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@96kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b128_dtx_fb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@128kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "mono_b07_13_nb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": "{sw_files_path}/sw_nb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07/13 RS kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b07_16_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07/16 RS kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b13_64_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13/64 RS kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b07_64_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_wb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07/64 RS kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b13_32_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13/32 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b24_64_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24/64 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b13_128_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_swb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13/128 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b48_128_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_highest.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48/128 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b05_13_dtx_nb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": "{sw_files_path}/sw_nb5.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@05/13 RS kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b07_13_dtx_nb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": "{sw_files_path}/sw_nb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07/13 RS kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b07_16_dtx_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07/16 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b05_64_dtx_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@05/64 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b07_64_dtx_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_wb5.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@07/64 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b13_64_dtx_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_wb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13/64 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b13_32_dtx_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13/32 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b24_64_dtx_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@24/64 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b13_128_dtx_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_swb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@13/128 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b48_128_dtx_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_highest.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@48/128 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "mono_b06_6_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 6600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06.6kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b08_8_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 8850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@08.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b12_6_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 12650, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@12.6kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b14_2_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 14250, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@14.2kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b15_8_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 15850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@15.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b18_2_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 18250, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@18.2kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b19_8_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 19850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@19.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b23_0_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 23050, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@23.0kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b23_8_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 23850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@23.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b06_6_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 6600, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06.6kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b08_8_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 8850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@08.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b12_6_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 12650, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@12.6kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b14_2_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 14250, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@14.2kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b15_8_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 15850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@15.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b18_2_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 18250, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@18.2kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b19_8_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 19850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@19.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b23_0_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 23050, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@23.0kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b23_8_dtx_amr_wb_cbr": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 23850, - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@23.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "mono_b06_23_amr_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06/23 RS kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "mono_b06_64_amr_evs_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06/64 RS kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "mono_b06_128_amr_evs_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs2.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06/128 RS kbps AMR SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "mono_b06_23_dtx_amr_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06/23 RS kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "mono_b06_64_dtx_amr_evs_wb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06/64 RS kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "mono_b06_128_dtx_amr_evs_swb_rs": { - "encmodeoption": [], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs2.bin", - "dec": { - "MONO": [] - }, - "in_config": "MONO", - "table_name": "Mono@06/128 RS kbps AMR DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - } - }, - "DFTStereo": { - "DFTStereo_b13_2_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b16_4_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b24_4_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b32_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b48_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b13_2_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b16_4_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b24_4_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b32_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b48_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b24_4_fb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b32_fb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b48_fb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "DFTStereo_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "DFT Stereo@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "TDStereo": { - "TDStereo_b13_2_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b16_4_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b24_4_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b32_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b48_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b13_2_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b16_4_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b24_4_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b32_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b48_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b24_4_fb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b32_fb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b48_fb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "TDStereo_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "TD Stereo@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "MDCTStereo": { - "MDCTStereo_b48_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b64_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b80_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b96_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b128_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b160_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b192_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b256_wb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b48_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b64_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b80_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b96_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b128_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b160_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b192_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b256_swb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b48_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b64_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b80_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b96_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b128_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b160_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b192_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MDCTStereo_b256_fb_cbr": { - "encmodeoption": [ - "-stereo", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "MDCT Stereo@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "UnifiedStereo": { - "UnifiedStereo_b13_2_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b16_4_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b24_4_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b32_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b48_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b13_2_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b16_4_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b24_4_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b32_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b48_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b24_4_fb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b32_fb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b48_fb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "UnifiedStereo_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo", - "12" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Unified Stereo@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "SwStereoDftMdct": { - "SwStereoDftMdct_b48_wb_cbr": { - "encmodeoption": [ - "-stereo", - "13" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Switched Stereo (DFT/MDCT)@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SwStereoDftMdct_b48_swb_cbr": { - "encmodeoption": [ - "-stereo", - "13" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Switched Stereo (DFT/MDCT)@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SwStereoDftMdct_b48_fb_cbr": { - "encmodeoption": [ - "-stereo", - "13" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Switched Stereo (DFT/MDCT)@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "SwStereoTdMdct": { - "SwStereoTdMdct_b48_wb_cbr": { - "encmodeoption": [ - "-stereo", - "23" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Switched Stereo (TD/MDCT)@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SwStereoTdMdct_b48_swb_cbr": { - "encmodeoption": [ - "-stereo", - "23" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Switched Stereo (TD/MDCT)@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SwStereoTdMdct_b48_fb_cbr": { - "encmodeoption": [ - "-stereo", - "23" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "STEREO": [] - }, - "in_config": "STEREO", - "table_name": "Switched Stereo (TD/MDCT)@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "SBA": { - "SBA_b13_2_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b16_4_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b24_4_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "SBA@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b32_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b48_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b64_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b80_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b96_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b128_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b160_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b192_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b256_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b384_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@384kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b512_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 512000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@512kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b13_2_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b16_4_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b24_4_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b32_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b48_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b64_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b80_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b96_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b128_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b160_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b192_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b256_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b384_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@384kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b512_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 512000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@512kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b24_4_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b32_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b48_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b64_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b80_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b96_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b128_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b160_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b192_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b256_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b384_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@384kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b512_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 512000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@512kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "SBA@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@64kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b80_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@80kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b64_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b80_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@80kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@64kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "SBA_b80_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "SBA@80kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "PlanarSBA": { - "PlanarSBA_b13_2_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b16_4_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b24_4_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b32_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b48_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b64_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b80_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b96_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b128_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b160_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b192_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b256_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b384_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@384kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b512_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 512000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@512kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b13_2_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b16_4_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b24_4_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b32_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b48_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b64_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b80_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b96_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b128_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b160_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b192_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b256_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b384_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@384kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b512_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 512000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@512kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b24_4_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b32_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b48_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b64_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b80_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b96_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b128_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b160_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b192_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b256_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b384_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@384kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b512_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 512000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@512kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "stereo": [], - "mono": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@64kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b80_dtx_wb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@80kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b64_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b80_dtx_swb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@80kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@64kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "PlanarSBA_b80_dtx_fb_cbr": { - "encmodeoption": [ - "-sba", - "-{ambi_order}" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "FOA": [], - "mono": [], - "stereo": [] - }, - "in_config": "SBA", - "table_name": "Planar SBA@80kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "MASA": { - "MASA_1TC_1DIR_b13_2_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@13.2kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b16_4_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@16.4kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b16_4_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@16.4kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b24_4_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@24.4kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b24_4_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@24.4kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b32_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@32kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b32_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@32kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b48_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@48kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b48_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@48kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_2DIR_b48_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC2DIR", - "table_name": "MASA 1TC 2DIR@48kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b48_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@48kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b64_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@64kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b64_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@64kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b80_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@80kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b80_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@80kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b96_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@96kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b96_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@96kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b128_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@128kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b128_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@128kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b192_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@192kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b192_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@192kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b256_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@256kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b256_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@256kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_1DIR_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC1DIR", - "table_name": "MASA 1TC 1DIR@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_1TC_2DIR_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA1TC2DIR", - "table_name": "MASA 1TC 2DIR@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@48kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@64kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b80_dtx_wb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@80kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b80_dtx_wb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@80kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b64_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b80_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@80kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b80_dtx_swb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@80kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@48kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@48kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@64kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@64kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_1DIR_b80_dtx_fb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC1DIR", - "table_name": "MASA 2TC 1DIR@80kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - }, - "MASA_2TC_2DIR_b80_dtx_fb_cbr": { - "encmodeoption": [ - "-masa", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [], - "HOA3": [], - "mono": [], - "stereo": [] - }, - "in_config": "MASA2TC2DIR", - "table_name": "MASA 2TC 2DIR@80kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "{item}.met" - ], - "rs": false, - "amr": false, - "mono": false - } - }, - "MC_McMASA": { - "MC_McMASA_5_1_b13_2_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b16_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b24_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b32_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b13_2_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b16_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b24_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b32_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_b32_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b13_2_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b16_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b24_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b32_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b13_2_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b16_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b24_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b32_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_b32_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b13_2_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b16_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b24_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b32_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b48_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b64_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b80_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b13_2_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b16_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b24_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b32_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b48_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b64_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b80_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b32_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b48_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b64_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_5_1_4_b80_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b13_2_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b16_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b24_4_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b32_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b48_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b64_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b80_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b96_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b13_2_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b16_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b24_4_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b32_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b48_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b64_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b80_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b96_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b32_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b48_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b64_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b80_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_McMASA_7_1_4_b96_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "MC_ParamMC": { - "MC_ParamMC_5_1_b48_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b64_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b80_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b48_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b64_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b80_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b48_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b64_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_b80_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b48_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b64_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b80_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@80kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b96_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b48_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b64_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b80_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@80kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b96_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b48_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b64_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b80_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@80kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_b96_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_4_b96_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_4_b128_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_4_b96_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_4_b128_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_4_b96_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_5_1_4_b128_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_4_b128_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_4_b160_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_4_b128_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_4_b160_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_4_b128_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_ParamMC_7_1_4_b160_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "MC_MCT": { - "MC_MCT_5_1_b96_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b128_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b160_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b192_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b256_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b384_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 384000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@384kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b96_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b128_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b160_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b192_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b256_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b384_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 384000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@384kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b96_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b128_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b160_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b192_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b256_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_b384_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 384000, - "dec": { - "5_1": [] - }, - "in_config": "5_1", - "table_name": "MC 5_1@384kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b128_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b160_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b192_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b256_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b384_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 384000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@384kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b128_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b160_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b192_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b256_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b384_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 384000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@384kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b128_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b160_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b192_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b256_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_b384_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 384000, - "dec": { - "7_1": [] - }, - "in_config": "7_1", - "table_name": "MC 7_1@384kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b160_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@160kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b192_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b256_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b384_wb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 384000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@384kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b160_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@160kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b192_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b256_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b384_swb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 384000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@384kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b160_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@160kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b192_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b256_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_5_1_4_b384_fb_cbr": { - "encmodeoption": [ - "-mc", - "5_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 384000, - "dec": { - "5_1_4": [] - }, - "in_config": "5_1_4", - "table_name": "MC 5_1_4@384kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b192_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@192kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b256_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@256kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b384_wb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@384kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b192_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@192kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b256_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@256kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b384_swb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@384kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b192_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@192kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b256_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@256kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - }, - "MC_MCT_7_1_4_b384_fb_cbr": { - "encmodeoption": [ - "-mc", - "7_1_4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 384000, - "dec": { - "7_1_4": [] - }, - "in_config": "7_1_4", - "table_name": "MC 7_1_4@384kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": false - } - }, - "ISM1": { - "ISM1_b13_2_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@13.2kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b16_4_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@16.4kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b24_4_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@24.4kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b32_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@32kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b48_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@48kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b64_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@64kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b80_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@80kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b96_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@96kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b128_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@128kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b160_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@160kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b192_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@192kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b256_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@256kbps WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b13_2_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@13.2kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b16_4_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@16.4kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b24_4_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@24.4kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b32_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@32kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b48_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@48kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b64_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@64kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b80_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@80kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b96_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@96kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b128_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@128kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b160_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@160kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b192_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@192kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b256_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@256kbps SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b16_4_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@16.4kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b24_4_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@24.4kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b32_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@32kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b48_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@48kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b64_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@64kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b80_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@80kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b96_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@96kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b128_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@128kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b160_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@160kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b192_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@192kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b256_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@256kbps FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b09_6_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 9600, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@09.6kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@32kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@48kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@64kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b80_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@80kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b96_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@96kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b128_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@128kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b160_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@160kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b192_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@192kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b256_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@256kbps DTX WB", - "bw": "wb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b09_6_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 9600, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@09.6kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b64_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b80_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@80kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b96_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@96kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b128_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@128kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b160_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@160kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b192_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@192kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b256_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@256kbps DTX SWB", - "bw": "swb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b16_4_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@16.4kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@32kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@48kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@64kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b80_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@80kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b96_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@96kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b128_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@128kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b160_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@160kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b192_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@192kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM1_b256_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "1" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM1", - "table_name": "ISM1@256kbps DTX FB", - "bw": "fb", - "nummetadata": 1, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - } - }, - "ISM2": { - "ISM2_b16_4_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@16.4kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b24_4_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@24.4kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b32_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@32kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b48_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@48kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b64_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@64kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b80_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@80kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b96_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@96kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b128_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@128kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b160_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@160kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b192_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@192kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b256_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@256kbps WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b16_4_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@16.4kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b24_4_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@24.4kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b32_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@32kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b48_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@48kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b64_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@64kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b80_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@80kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b96_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@96kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b128_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@128kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b160_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@160kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b192_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@192kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b256_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@256kbps SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b24_4_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@24.4kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b32_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@32kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b48_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@48kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b64_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@64kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b80_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@80kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b96_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@96kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b128_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@128kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b160_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@160kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b192_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@192kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b256_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@256kbps FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@32kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@48kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@64kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b80_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@80kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b96_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@96kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b128_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@128kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b160_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@160kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b192_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@192kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b256_dtx_wb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@256kbps DTX WB", - "bw": "wb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b64_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b80_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@80kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b96_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@96kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b128_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@128kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b160_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@160kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b192_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@192kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b256_dtx_swb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@256kbps DTX SWB", - "bw": "swb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@32kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@48kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@64kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b80_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@80kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b96_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@96kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b128_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@128kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b160_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@160kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b192_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@192kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM2_b256_dtx_fb_cbr": { - "encmodeoption": [ - "-ism", - "2" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM2", - "table_name": "ISM2@256kbps DTX FB", - "bw": "fb", - "nummetadata": 2, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - } - }, - "ISM3": { - "ISM3_b24_4_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@24.4kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b32_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@32kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b48_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@48kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b64_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@64kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b80_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@80kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b96_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@96kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b128_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@128kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b160_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@160kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b192_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@192kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b256_wb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@256kbps WB", - "bw": "wb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b24_4_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@24.4kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b32_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@32kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b48_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@48kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b64_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@64kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b80_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@80kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b96_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@96kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b128_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@128kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b160_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@160kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b192_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@192kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b256_swb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@256kbps SWB", - "bw": "swb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b24_4_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@24.4kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b32_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@32kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b48_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@48kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b64_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@64kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b80_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@80kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b96_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@96kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b128_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@128kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b160_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@160kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b192_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@192kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM3_b256_fb_cbr": { - "encmodeoption": [ - "-ism", - "3" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM3", - "table_name": "ISM3@256kbps FB", - "bw": "fb", - "nummetadata": 3, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - } - }, - "ISM4": { - "ISM4_b32_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@32kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b48_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@48kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b64_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@64kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b80_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@80kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b96_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@96kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b128_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@128kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b160_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@160kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b192_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@192kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b256_wb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@256kbps WB", - "bw": "wb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b32_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@32kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b48_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@48kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b64_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@64kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b80_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 80000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@80kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b96_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@96kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b128_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@128kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b160_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@160kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b192_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@192kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b256_swb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@256kbps SWB", - "bw": "swb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b32_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@32kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b48_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@48kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b64_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@64kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b80_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@80kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b96_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@96kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b128_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@128kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b160_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 160000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@160kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b192_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 192000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@192kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - }, - "ISM4_b256_fb_cbr": { - "encmodeoption": [ - "-ism", - "4" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 256000, - "dec": { - "EXT": [] - }, - "in_config": "ISM4", - "table_name": "ISM4@256kbps FB", - "bw": "fb", - "nummetadata": 4, - "metadatafilenames": [ - "stvISM{mdi}.csv" - ], - "rs": false, - "amr": false, - "mono": false - } - }, - "StereoDmxEVS": { - "StereoDmxEvs_b07_2_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07.2kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b08_0_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@08.0kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b09_6_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@09.6kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_2_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13.2kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_2_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b08_0_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@08.0kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b09_6_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@09.6kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_2_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13.2kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b32_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@32kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b64_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@64kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b96_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@96kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b128_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@128kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b09_6_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@09.6kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_2_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13.2kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b32_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@32kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b64_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@64kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b96_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@96kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b128_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@128kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b05_9_dtx_nb_vbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 5900, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@05.9kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_2_dtx_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07.2kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b08_0_dtx_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@08.0kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b09_6_dtx_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@09.6kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_2_dtx_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13.2kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_dtx_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_dtx_nb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b05_9_dtx_wb_vbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 5900, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@05.9kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_2_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 7200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b08_0_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 8000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@08.0kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b09_6_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@09.6kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_2_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13.2kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b32_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@32kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b64_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@64kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b96_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@96kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b128_dtx_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@128kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b09_6_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 9600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@09.6kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_2_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 13200, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13.2kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b32_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@32kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b64_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@64kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b96_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@96kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b128_dtx_swb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@128kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b32_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@32kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b64_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@64kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b96_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@96kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b128_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@128kbps FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b16_4_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 16400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@16.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_4_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 24400, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24.4kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b32_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 32000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@32kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 48000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b64_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 64000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@64kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b96_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 96000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@96kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b128_dtx_fb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "fb" - ], - "bitrate": 128000, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@128kbps DTX FB", - "bw": "fb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_13_nb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "nb" - ], - "bitrate": "{sw_files_path}/sw_nb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07/13 RS kbps NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_16_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07/16 RS kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_64_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13/64 RS kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_64_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_wb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07/64 RS kbps WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_32_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13/32 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_64_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24/64 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_128_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_swb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13/128 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_128_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_highest.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48/128 RS kbps SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b05_13_dtx_nb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": "{sw_files_path}/sw_nb5.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@05/13 RS kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_13_dtx_nb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "nb" - ], - "bitrate": "{sw_files_path}/sw_nb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07/13 RS kbps DTX NB", - "bw": "nb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_16_dtx_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07/16 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b05_64_dtx_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/wb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@05/64 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b07_64_dtx_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_wb5.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@07/64 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_64_dtx_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_wb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13/64 RS kbps DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_32_dtx_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_low1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13/32 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b24_64_dtx_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/swb_high1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@24/64 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b13_128_dtx_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_swb1.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@13/128 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b48_128_dtx_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_highest.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@48/128 RS kbps DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": false, - "mono": true - }, - "StereoDmxEvs_b06_6_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 6600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06.6kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b08_8_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 8850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@08.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b12_6_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 12650, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@12.6kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b14_2_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 14250, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@14.2kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b15_8_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 15850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@15.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b18_2_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 18250, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@18.2kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b19_8_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 19850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@19.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b23_0_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 23050, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@23.0kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b23_8_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": 23850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@23.8kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_6_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 6600, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06.6kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b08_8_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 8850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@08.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b12_6_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 12650, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@12.6kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b14_2_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 14250, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@14.2kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b15_8_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 15850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@15.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b18_2_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 18250, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@18.2kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b19_8_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 19850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@19.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b23_0_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 23050, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@23.0kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b23_8_dtx_amr_wb_cbr": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": 23850, - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@23.8kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": false, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_23_amr_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06/23 RS kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_64_amr_evs_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06/64 RS kbps AMR WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_128_amr_evs_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs2.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06/128 RS kbps AMR SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_23_dtx_amr_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06/23 RS kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_64_dtx_amr_evs_wb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "wb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06/64 RS kbps AMR DTX WB", - "bw": "wb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - }, - "StereoDmxEvs_b06_128_dtx_amr_evs_swb_rs": { - "encmodeoption": [ - "-stereo_dmx_evs" - ], - "encoptions": [ - "-dtx", - "-max_band", - "swb" - ], - "bitrate": "{sw_files_path}/sw_amrwb_evs2.bin", - "dec": { - "MONO": [] - }, - "in_config": "STEREO", - "table_name": "StereoDmxEVS@06/128 RS kbps AMR DTX SWB", - "bw": "swb", - "nummetadata": 0, - "metadatafilenames": [], - "rs": true, - "amr": true, - "mono": true - } - } -} diff --git a/scripts/config/self_test.json b/scripts/config/self_test.json deleted file mode 100644 index 67e846a3267f3894052b50bac53abf6e76df1fba..0000000000000000000000000000000000000000 --- a/scripts/config/self_test.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "afspPath": "not_needed", - "utilPath": "not_needed", - "inpaths": {} -} \ No newline at end of file diff --git a/scripts/config/self_test.prm b/scripts/config/self_test.prm deleted file mode 100644 index b1396d19551206909eb2851cde91f7243dcf80ca..0000000000000000000000000000000000000000 --- a/scripts/config/self_test.prm +++ /dev/null @@ -1,1958 +0,0 @@ -// Self-test parameter file -// -// - each test must have a tag (unique name) which must be entered as a comment (you can use // /* or rem comment) -// - the following line must be the encoder command line -// - the following line must be the decoder command line -// - if the name of the output file are exactly the same as -// the name of the test vector located in ./testv directory, these files will be compared for bit-exactness -// (the easiest way how to achieve this is to use the name of the test vector itself, as shown below) - - -// stereo at 13.2 kbps, 16kHz in, 16kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 13200 16 testv/stvST16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST16n.wav_stereo_13200_16-16_DTX_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, DTX on -../IVAS_cod -stereo -dtx 16400 32 testv/stvST32n.wav bit -../IVAS_dec STEREO 16 bit testv/stvST32n.wav_stereo_16400_32-16_DTX.tst - -// stereo at 32 kbps, 32kHz in, 48kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stvST32c.wav_stereo_32000_32-48_MONO_FER5.tst - -// stereo at 13.2 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 13200 16 testv/stvST16c.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16c.wav_stereo_13200_16-16.tst - -// stereo at 16.4 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 16400 16 testv/stvST16c.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16c.wav_stereo_16400_16-16.tst - -// stereo at 24.4 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 24400 16 testv/stvST16c.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16c.wav_stereo_24400_16-16.tst - -// stereo at 32 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 32000 16 testv/stvST16c.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16c.wav_stereo_32000_16-16.tst - -// stereo at 13.2 kbps, 16kHz in, 16kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 13200 16 testv/stvST16n.wav bit -../IVAS_dec MONO 16 bit testv/stvST16n.wav_stereo_13200_16-16_DTX_MONO.tst - -// stereo at 16.4 kbps, 16kHz in, 16kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 16400 16 testv/stvST16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST16n.wav_stereo_16400_16-16_DTX_FER5.tst - -// stereo at 24.4 kbps, 16kHz in, 16kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 24400 16 testv/stvST16n.wav bit -../IVAS_dec MONO 16 bit testv/stvST16n.wav_stereo_24400_16-16_DTX_MONO.tst - -// stereo at 24.4 kbps, 16kHz in, 32kHz out, DTX on -../IVAS_cod -stereo -dtx 24400 16 testv/stvST16n.wav bit -../IVAS_dec STEREO 32 bit testv/stvST16n.wav_stereo_24400_16-32_DTX.tst - -// stereo at 32 kbps, 16kHz in, 16kHz out, random FER at 5%, DTX on -../IVAS_cod -stereo -dtx 32000 16 testv/stvST16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST16n.wav_stereo_32000_16-16_FER5_DTX.tst - -// stereo at 32 kbps, 16kHz in, 48kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 32000 16 testv/stvST16c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stvST16c.wav_stereo_32000_16-48_MONO_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 13200 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_13200_32-32.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out, DTX on -../IVAS_cod -stereo -dtx 13200 32 testv/stvST32n.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32n.wav_stereo_13200_32-32_DTX.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out, DTX on, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -stereo -dtx 13200 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvST32n.wav_stereo_13200_32-32_DTX_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 13200 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/stvST32n.wav_stereo_13200_32-32_DTX_MONO_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 16kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 13200 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST32n.wav_stereo_13200_32-16_DTX_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 48kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 13200 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stvST32n.wav_stereo_13200_32-48_DTX_MONO_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 16400 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_16400_32-32.tst - -// stereo at 16.4 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 16400 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvST32c.wav_stereo_16400_32-32_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, random FER at 5% -../IVAS_cod -stereo 16400 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST32c.wav_stereo_16400_32-16_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 16400 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/stvST32c.wav_stereo_16400_32-16_MONO_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, random FER at 5%, DTX on -../IVAS_cod -stereo -dtx 16400 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST32n.wav_stereo_16400_32-16_DTX_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 48kHz out, random FER at 5%, MONO out, DTX on -../IVAS_cod -stereo -dtx 16400 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stvST32n.wav_stereo_16400_32-48_DTX_MONO_FER5.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 24400 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_24400_32-32.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out, DTX on -../IVAS_cod -stereo -dtx 24400 32 testv/stvST32n.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32n.wav_stereo_24400_32-32_DTX.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 24400 32 testv/stvST32n.wav bit -../IVAS_dec MONO 32 bit testv/stvST32n.wav_stereo_24400_32-32_DTX_MONO.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 24400 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/stvST32n.wav_stereo_24400_32-32_DTX_MONO_FER5.tst - -// stereo at 24.4 kbps, 32kHz in, 16kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 24400 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/stvST32n.wav_stereo_24400_32-16_DTX_MONO_FER5.tst - -// stereo at 24.4 kbps, 32kHz in, 48kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 24400 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/stvST32n.wav_stereo_24400_32-48_DTX_FER5.tst - -// stereo at 24.4 kbps, 48kHz in, 48kHz out, DTX on -../IVAS_cod -stereo -dtx 24400 48 testv/stvST48n.wav bit -../IVAS_dec STEREO 48 bit testv/stvST48n.wav_24400_48_48_DTX.txt - -// stereo at 32 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 32000 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_32000_32-32.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, NOOP -../IVAS_cod -stereo 32000 32 testv/stvST32noop.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32noop.wav_stereo_32000_32-32.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvST32c.wav_stereo_32000_32-32_FER5.tst - -// stereo at 32 kbps, 32kHz in, 48kHz out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/stvST32c.wav_stereo_32000_32-48_FER5.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/stvST32c.wav_stereo_32000_32-32_MONO_FER5.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/stvST32n.wav_stereo_32000_32-32_DTX_MONO_FER5.tst - -// stereo at 32 kbps, 32kHz in, 16kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 32 testv/stvST32n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/stvST32n.wav_stereo_32000_32-16_DTX_MONO_FER5.tst - -// stereo at 32 kbps, 48kHz in, 48kHz out, bandwidth switching -../IVAS_cod -stereo -max_band testv/bwidth_cntl.txt 32000 48 testv/stvST48c.wav bit -../IVAS_dec STEREO 48 bit testv/stvST48c.wav_stereo_32000_48-48_bandwidth_sw.tst - -// stereo at 32 kbps, 48kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 32000 48 testv/stvST48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvST48c.wav_stereo_32000_48-32_FER5.tst - -// stereo at 32 kbps, 48kHz in, 48kHz out, DTX on, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -stereo -dtx 32000 48 testv/stvST48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/stvST48n.wav_stereo_32000_48-48_DTX_FER5.tst - -// stereo at 32 kbps, 48kHz in, 48kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 48 testv/stvST48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stvST48n.wav_stereo_32000_48-48_DTX_MONO_FER5.tst - -// stereo at 32 kbps, 48kHz in, 16kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 48 testv/stvST48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/stvST48n.wav_stereo_32000_48-16_DTX_MONO_FER5.tst - -// stereo at 48 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 48000 16 testv/stvST16c.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16c.wav_stereo_48000_16-16.tst - -// stereo at 64 kbps, 16kHz in, 16kHz out, random FER at 10% -../IVAS_cod -stereo 64000 16 testv/stvST16c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST16c.wav_stereo_64000_16-16_FER10.tst - -// stereo at 96 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 96000 16 testv/stvST16c.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16c.wav_stereo_96000_16-16.tst - -// stereo at 128 kbps, 16kHz in, 16kHz out, random FER at 10% -../IVAS_cod -stereo 128000 16 testv/stvST16c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/stvST16c.wav_stereo_128000_16-16_FER10.tst - -// stereo at 48 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 48000 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvST32c.wav_stereo_48000_32-32_FER5.tst - -// stereo at 64 kbps, 32kHz in, 32kHz out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -stereo 64000 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_64000_32-32.tst - -// stereo at 96 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 96000 32 testv/stvST32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvST32c.wav_stereo_96000_32-32_FER5.tst - -// stereo at 128 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 128000 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_128000_32-32.tst - -// stereo at 48 kbps, 32kHz in, 32kHz out, MONO out -../IVAS_cod -stereo 48000 32 testv/stvST32c.wav bit -../IVAS_dec MONO 32 bit testv/stvST32c.wav_stereo_48000_32-32_MONO.tst - -// stereo at 13.2 kbps, 48kHz in, 48kHz out -../IVAS_cod -stereo 13200 48 testv/stvST48c.wav bit -../IVAS_dec STEREO 48 bit testv/stvST48c.wav_stereo_13200_48-48.tst - -// stereo at 128 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -stereo 128000 48 testv/stvST48c.wav bit -../IVAS_dec MONO 48 bit testv/stvST48c.wav_stereo_128000_48-48_MONO.tst - -// stereo at 48 kbps, 48 kHz in, 48 kHz out, DTX on, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -stereo -dtx 48000 48 testv/stvST48n.wav bit -../IVAS_dec STEREO 48 bit testv/stvST48n.wav_stereo_48000_48-48_DTX.tst - -// stereo at 48 kbps, 32 kHz in, 32 kHz out, DTX on -../IVAS_cod -stereo -dtx 48000 32 testv/stvST32n.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32n.wav_stereo_48000_32-32_DTX.tst - -// stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on -../IVAS_cod -stereo -dtx 48000 16 testv/stvST16n.wav bit -../IVAS_dec STEREO 16 bit testv/stvST16n.wav_stereo_48000_16-16_DTX.tst - -// stereo at 48 kbps, 48 kHz in, 48 kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 48000 48 testv/stvST48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stvST48n.wav_stereo_48000_48-48_DTX_MONO_FER5.tst - -// stereo at 48 kbps, 48 kHz in, 48 kHz out, DTX on, FER with burst error before SID -../IVAS_cod -stereo -dtx 48000 48 testv/stvST48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct_burst.g192 bit_error -../IVAS_dec stereo 48 bit_error testv/stvST48n.wav_stereo_48000_48-48_DTX_stereo_FER5_burst.tst - -// stereo at 48 kbps, 32 kHz in, 32 kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 48000 32 testv/stvST32n.wav bit -../IVAS_dec MONO 32 bit testv/stvST32n.wav_stereo_48000_32-32_DTX_MONO.tst - -// stereo at 48 kbps, 16 kHz in, 16 kHz, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 48000 16 testv/stvST16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/stvST16n.wav_stereo_48000_16-16_DTX_MONO_FER5.tst - -// stereo bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/stvST32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32c.wav_stereo_sw_32-32.tst - -// stereo bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, MONO out -//../IVAS_cod -dtx -stereo ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stvST48n.wav bit -//../IVAS_dec MONO 48 bit testv/stvST48n.wav_stereo_sw_48-48_DTX_MONO.tst - -// stereo bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, EXT out -//../IVAS_cod -dtx -stereo ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stvST48c.wav bit -//../IVAS_dec EXT 48 bit testv/stvST48c.wav_stereo_sw_48-48_DTX_EXT.tst - - -// 1 ISM with metadata at 13.2 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 1 testv/stvISM1.csv 13200 48 testv/stv1ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv1ISM48s.wav_13200_48-48_EXT.tst - -// 1 ISM with metadata at 13.2 kbps, 48 kHz in, 48 kHz out, MONO out -../IVAS_cod -ism 1 testv/stvISM1.csv 13200 48 testv/stv1ISM48s.wav bit -../IVAS_dec MONO 48 bit testv/stv1ISM48s.wav_13200_48-48_MONO.tst - -// 1 ISM with metadata at 13.2 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -dtx -ism 1 testv/stvISM1.csv 13200 48 testv/stv48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/stv48n.wav_1ISM_13200_48-48_DTX_FER5_BINAURAL.tst - -// 1 ISM with metadata at 16.4 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism 1 testv/stvISM1.csv 16400 48 testv/stv1ISM48s.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv1ISM48s.wav_16400_48-48_binaural_room.tst - -// 1 ISM with metadata at 32 kbps, 32 kHz in, 32 kHz out, DTX on, MONO out -../IVAS_cod -dtx -ism 1 testv/stvISM1.csv 32000 32 testv/stv32n.wav bit -../IVAS_dec MONO 32 bit testv/stv32n.wav_1ISM_32000_32-32_DTX_MONO.tst - -// 1 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, HR, random FER at 5% -../IVAS_cod -ism 1 testv/stvISM1.csv 48000 48 testv/stv1ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 48 bit_error testv/stv1ISM48s.wav_64000_48-48_binaural_room_HR.tst - -// 1 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, random FER at 5% -../IVAS_cod -ism 1 testv/stvISM1.csv 48000 48 testv/stv1ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL 48 bit_error testv/stv1ISM48s.wav_64000_48-48_FER5_binaural_HR.tst - -// 1 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, HR, exo, random FER at 5% -../IVAS_cod -ism 1 testv/stvISM1.csv 48000 48 testv/stv1ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit_error testv/stv1ISM48s.wav_64000_48-48_FER5_binaural_room_HR_EXOF.tst - -// 1 ISM with metadata at 80 kbps, 48 kHz in, 16 kHz out, BINAURAL out (Model from file), HR, random FER at 5% -../IVAS_cod -ism 1 testv/stvISM1.csv 80000 48 testv/stv1ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit_error testv/stv1ISM48s.wav_80000_48-16_FER5_binaural_file_TDHR.tst - -// 1 ISM with metadata at 80 kbps, 48 kHz in, 16 kHz out, BINAURAL out (Model from file), HR, exo, random FER at 5% -../IVAS_cod -ism 1 testv/stvISM1.csv 80000 48 testv/stv1ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit_error testv/stv1ISM48s.wav_80000_48-16_FER5_binaural_file_TDHR_EXOF.tst - -// 1 ISM with metadata at 96 kbps, 48 kHz in, 16 kHz out, EXT out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -ism 1 testv/stvISM1.csv 96000 48 testv/stv1ISM48s.wav bit -../IVAS_dec EXT 16 bit testv/stv1ISM48s.wav_96000_48-16_EXT.tst - -// 1 ISM with metadata bitrate switching from 13.2 kbps to 128 kbps, 32 kHz in, 32 kHz out, EXT out, DTX on -../IVAS_cod -dtx -ism 1 testv/stvISM1.csv ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/stv32c.wav bit -../IVAS_dec EXT 32 bit testv/stv32c.wav_1ISM_brate_sw_32-32_EXT_dtx.tst - - -// 2 ISM with metadata at 16.4 kbps, 48 kHz in, 48 kHz out, STEREO out -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 16400 48 testv/stv2ISM48s.wav bit -../IVAS_dec STEREO 48 bit testv/stv2ISM48s.wav_16400_48-48_STEREO.tst - -// 2 ISM with metadata at 16.4 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 16400 48 testv/stv2ISM48s.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv2ISM48s.wav_16400_48-48_binaural.tst - -// 2 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, DTX on, HOA2 out -../IVAS_cod -dtx -ism 2 testv/stvISM1.csv testv/stvISM2.csv 32000 48 testv/stvST48n.wav bit -../IVAS_dec HOA2 48 bit testv/stvST48n.wav_2ISM_32000_48-48_DTX_HOA2.tst - -// 2 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, DTX on, EXTERNAL out -../IVAS_cod -dtx -ism 2 testv/stvISM1.csv testv/stvISM2.csv 32000 48 testv/stvST48n.wav bit -../IVAS_dec EXT 48 bit testv/stvST48n.wav_2ISM_32000_48-48_DTX_external.tst - -// 2 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, EXT out, random FER at 5% -../IVAS_cod -ism 2 testv/stvISM3.csv testv/stvISM4.csv 48000 48 testv/stv2ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/stv2ISM48s.wav_48000_48-48_EXT_FER5.tst - -// 2 ISM with metadata at 64 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism 2 testv/stvISM3.csv testv/stvISM4.csv 64000 48 testv/stv2ISM48s.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv2ISM48s.wav_64000_48-48_binaural_room.tst - -// 2 ISM with metadata at 64 kbps, 48 kHz in, 32 kHz out, 5_1 out -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 64000 48 testv/stv2ISM48s.wav bit -../IVAS_dec 5_1 32 bit testv/stv2ISM48s.wav_64000_48-32_5_1.tst - -// 2 ISM with metadata at 64 kbps, 48 kHz in, 32 kHz out, EXT out -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 64000 48 testv/stv2ISM48s.wav bit -../IVAS_dec EXT 32 bit testv/stv2ISM48s.wav_64000_48-32_EXT.tst - -// 2 ISM with metadata at 80 kbps, 48 kHz in, 48 kHz out, DTX on, stereo out -../IVAS_cod -dtx -ism 2 testv/stvISM1.csv testv/stvISM2.csv 80000 48 testv/stvST48n.wav bit -../IVAS_dec STEREO 48 bit testv/stvST48n.wav_2ISM_80000_48-48_DTX_STEREO.tst - -// 2 ISM with metadata at 128 kbps, 48 kHz in, 32 kHz out, BINAURAL out (Model from file), HR -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 128000 48 testv/stv2ISM48s.wav bit -../IVAS_dec -t testv/headrot_case01_3000_q.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL 32 bit testv/stv2ISM48s.wav_128000_48-32_binaural_file_TDHR.tst - -// 2 ISM with metadata at 128 kbps, 48 kHz in, 32 kHz out, BINAURAL out (Model from file), HR, exo -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 128000 48 testv/stv2ISM48s.wav bit -../IVAS_dec -t testv/headrot_case01_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL 32 bit testv/stv2ISM48s.wav_128000_48-32_binaural_file_TDHR_EXOF.tst - -// 2 ISM with metadata at 160 kbps, 48 kHz in, 32 kHz out, BINAURAL out -../IVAS_cod -ism 2 testv/stvISM1.csv testv/stvISM2.csv 160000 48 testv/stv2ISM48s.wav bit -../IVAS_dec BINAURAL 32 bit testv/stv2ISM48s.wav_160000_48-32_binaural.tst - - -// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, 7_1 out -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 24400 48 testv/stv3ISM48s.wav bit -../IVAS_dec 7_1 48 bit testv/stv3ISM48s.wav_24400_48-48_7_1.tst - -// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, MONO out, random FER at 5% -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 24400 48 testv/stv3ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stv3ISM48s.wav_24400_48-48_MONO_FER5.tst - -// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 24400 48 testv/stv3ISM48s.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv3ISM48s.wav_24400_48-48_binaural.tst - -// 3 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 48000 48 testv/stv3ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv3ISM48s.48000_48-48_MONO.tst - -// 3 ISM with metadata at 64 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 64000 48 testv/stv3ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv3ISM48s.64000_48-48_EXT.tst - -// 3 ISM with metadata at 96 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 96000 48 testv/stv3ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv3ISM48s.96000_48-48_EXT.tst - -// 3 ISM with metadata at 128 kbps, 48 kHz in, 32 kHz out, HOA3 out, random FER at 5% -../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 128000 48 testv/stv3ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA3 32 bit_error testv/stv3ISM48s.wav_128000_48-32_HOA3_FER5.tst - -// 3 ISM with metadata at 192 kbps, 48 kHz in, 48 kHz out, BINAURAL out (Model from file) -../IVAS_cod -ism 3 testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 192000 48 testv/stv3ISM48s.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv3ISM48s.wav_192000_48-48_binauralfile.tst - -// 3 ISM with metadata at 192 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, random FER at 5% -../IVAS_cod -ism 3 testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 192000 48 testv/stv3ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case02_3000_q.csv BINAURAL 48 bit_error testv/stv3ISM48s.wav_192000_48-48_binaural_file_TDHR_FER5.tst - -// 3 ISM with metadata at 384 kbps, 48 kHz in, 32 kHz out, 7_1_4 out -../IVAS_cod -ism 3 testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 384000 48 testv/stv3ISM48s.wav bit -../IVAS_dec 7_1_4 32 bit testv/stv3ISM48s.wav_384000_48-32_7_1_4.tst - - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit -../IVAS_dec FOA 48 bit testv/stv4ISM48s.wav_32000_48-48_FOA.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, STEREO out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit -../IVAS_dec STEREO 48 bit testv/stv4ISM48s.wav_32000_48-48_STEREO.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv4ISM48s.wav_32000_48-48_binaural.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48n.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv4ISM48n.wav_32000_48-48_DTX_BINAURAL.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, exo -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit -../IVAS_dec -t testv/headrot_case03_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv4ISM48s.wav_32000_48-48_binaural_file_TDHR_EXOF.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, random FER at 5% -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_IR 48 bit_error testv/stv4ISM48s.wav_32000_48-48_binaural_room_FER5.tst - -// 4 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL ROOM IR out, random FER at 5% -../IVAS_cod -dtx -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 48000 48 testv/stv4ISM48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_IR 48 bit_error testv/stv4ISM48n.wav_48000_48-48_DTX_TD_binaural_room_FER5.tst - -// 4 ISM with metadata at 64 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 64000 48 testv/stv4ISM48s.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv4ISM48s.wav_64000_48-48_binaural_room.tst - -// 4 ISM with metadata at 80 kbps, 48 kHz in, 48 kHz out, HOA2 out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 80000 48 testv/stv4ISM48s.wav bit -../IVAS_dec HOA2 48 bit testv/stv4ISM48s.wav_80000_48-48_HOA2.tst - -// 4 ISM with metadata at 96 kbps, 48 kHz in, 48 kHz out, Custom LS setup out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 96000 48 testv/stv4ISM48s.wav bit -../IVAS_dec testv/ls_setup_16ch_8+4+4.txt 48 bit testv/stv4ISM48s.wav_96000_48-48_MC_custom_setup.tst - -// 4 ISM with metadata at 96 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 96000 48 testv/stv4ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv4ISM48s.wav_96000_48-48_EXT.tst - -// 4 ISM with metadata at 128 kbps, 48 kHz in, 48 kHz out, EXT out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 128000 48 testv/stv4ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv4ISM48s.wav_128000_48-48_EXT.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv4ISM48s.wav_256000_48-48_EXT.tst - -// 4 ISM with metadata at 160 kbps, 48 kHz in, 48 kHz out, STEREO out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 160000 48 testv/stv4ISM48s.wav bit -../IVAS_dec STEREO 48 bit testv/stv4ISM48s.wav_160000_48-48_STEREO.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv4ISM48s.wav_256000_48-48_binaural.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -../IVAS_dec -t testv/headrot_case03_3000_q.csv BINAURAL 48 bit testv/stv4ISM48s.wav_256000_48-48_binaural_file_TDHR.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, exo -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -../IVAS_dec -t testv/headrot_case03_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv4ISM48s.wav_256000_48-48_binaural_file_TDHR_EXOF.tst - -// 4 ISM with metadata at 512 kbps, 48 kHz in, 48 kHz out, 5_1 -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 512000 48 testv/stv4ISM48s.wav bit -../IVAS_dec 5_1 48 bit testv/stv4ISM48s.wav_512000_48-48_5_1.tst - -// 4 ISm with metadata at 256 kbps, 48 kHz in, 48 kHz out, TD BINAURAL out, HR, OT -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL 48 bit testv/stv4ISM48s.pcm_256000_48-48_TDHR_OtrAvg.tst - -// 4 ISm with metadata at 256 kbps, 48 kHz in, 48 kHz out, TD BINAURAL out, HR, exo, OT -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL 48 bit testv/stv4ISM48s.pcm_256000_48-48_TDHR_EXOF_OtrAvg.tst - -// 4 ISM with metadata bitrate switching from 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv4ISM48s.wav bit -../IVAS_dec EXT 48 bit testv/stv4ISM48s.wav_brate_sw_48-48_EXT.tst - -// 4 ISM with and without metadata bitrate switching from 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, DTX on, HOA3 out -../IVAS_cod -dtx -ism 4 testv/stvISM1.csv NULL NULL testv/stvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv4ISM48n.wav bit -../IVAS_dec HOA3 48 bit testv/stv4ISM48n.wav_brate_sw_48-48_DTX_hoa3.tst - -// 4 ISM w and wo md br switching 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL_ROOM_IR out (Model from file) -../IVAS_cod -dtx -ism 4 testv/stvISM1.csv NULL NULL testv/stvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv4ISM48n.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL_ROOM_IR 48 bit testv/stv4ISM48n.wav_brate_sw_48-48_DTX_hoa3.tst - -// 4 ISM with extended metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, directivity configuration, random FER at 5% -../IVAS_cod -ism +4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -render_config testv/config_directivity_txt.cfg -t testv/headrot_case04_3000_q.csv BINAURAL 48 bit_error testv/stv+4ISM48s.wav_256000_48-48_binaural_file_TDHR_DirConfig_FER5.tst - -// 4 ISM with extended metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, exo, directivity configuration, random FER at 5% -../IVAS_cod -ism +4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48s.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -render_config testv/config_directivity.cfg -t testv/headrot_case04_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit_error testv/stv+4ISM48s.wav_256000_48-48_binaural_file_TDHR_EXOF_DirConfig_FER5.tst - -// 4 ISM with and without extended metadata bitrate switching from 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, DTX on, EXT out -../IVAS_cod -dtx -ism +4 testv/stvISM1.csv NULL testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv4ISM48n.wav bit -../IVAS_dec EXT 48 bit testv/stv+4ISM48n.wav_brate_sw_48-48_DTX_EXT.tst - -// 4 ISM with extended metadata and non diegetic pan object switching bitrate 256 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -ism +4 testv/stvISM1.csv NULL testv/stvISM_with_no_diegetic_switch.csv testv/stvISM4.csv 256000 48 testv/stv4ISM48n.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv+4ISM48n+non_diegetic_pan.wav_brate_256000-48_DTX_binaural.tst - -// 4 ISM with extended metadata at 128 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out, rendconf dir w id -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 128000 48 testv/stv4ISM48n.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -dpid 3 0 2 1 BINAURAL_ROOM_REVERB 48 bit testv/stv4ISM48n+combined_render_config_brate_128000-48-binaural_room_reverb.wav - -// 4 ISM with extended metadata at 128 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 128000 48 testv/stv4ISM48n.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv4ISM48n.wav_BINAURAL_ROOM_REVERB_128000_48-48.tst - - - -// SBA at 13.2 kbps, 32kHz in, 32kHz out, HOA3 out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -sba 3 13200 32 testv/stv3OA32c.wav bit -../IVAS_dec HOA3 32 bit testv/stv3OA32c.wav_SBA_13200_32-32_HOA3.tst - -// SBA at 13.2 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 3 13200 32 testv/stv3OA32c.wav bit -../IVAS_dec STEREO 32 bit testv/stv3OA32c.wav_SBA_13200_32-32_stereo.tst - -// SBA at 16.4 kbps, 32kHz in, 32kHz out, 7_1_4 out -../IVAS_cod -sba 3 16400 32 testv/stv3OA32c.wav bit -../IVAS_dec 7_1_4 32 bit testv/stv3OA32c.wav_SBA_16400_32-32_7_1_4.tst - -// SBA at 16.4 kbps, 32kHz in, 32kHz out, BINAURAL out -../IVAS_cod -sba 3 16400 32 testv/stv3OA32c.wav bit -../IVAS_dec BINAURAL 32 bit testv/stv3OA32c.wav_SBA_16400_32-32_Binaural.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec STEREO 32 bit testv/stv3OA32c.wav_SBA_24400_32-32_stereo.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec BINAURAL 32 bit testv/stv3OA32c.wav_SBA_24400_32-32_Binaural.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/stv3OA32c.wav_SBA_24400_32-32_Binaural_Subframe_FER5.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_24400_32-32_Binaural_Headrot.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, exo -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_24400_32-32_Binaural_Headrot_EXOF.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, OT -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL 32 bit testv/stv3OA32c.pcm_SBA_24400_32-32_Binaural_Headrot_OtrAvg.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, exo, OT -../IVAS_cod -sba 3 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL 32 bit testv/stv3OA32c.pcm_SBA_24400_32-32_Binaural_Headrot_EXOF_OtrAvg.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 -dtx 24400 32 testv/stv3OA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_FER5.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR -../IVAS_cod -sba 3 -dtx 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_Headrot.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR, exo -../IVAS_cod -sba 3 -dtx 24400 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_Headrot_EXOF.tst - -// SBA at 32 kbps, 32kHz in, 32kHz out, FOA out -../IVAS_cod -sba 1 32000 32 testv/stvFOA32c.wav bit -../IVAS_dec FOA 32 bit testv/stvFOA32c.wav_SBA_32000_32-32_FOA.tst - -// SBA at 32 kbps, 32kHz in, 32kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -sba 1 32000 32 testv/stvFOA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/stvFOA32c.wav_SBA_32000_32-32_BINAURAL_FER5.tst - -// SBA at 32 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM out -../IVAS_cod -sba 1 32000 32 testv/stvFOA32c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/stvFOA32c.wav_SBA_32000_32-32_BINAURAL_ROOM.tst - -// SBA at 32 kbps, 48kHz in, 48kHz out, MONO out, DTX, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -dtx -sba 1 32000 48 testv/stvFOA48c.wav bit -../IVAS_dec MONO 48 bit testv/stvFOA48c.wav_SBA_32000_48-48_DTX_MONO.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, MONO out, random FER at 5% -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/stv3OA32c.wav_SBA_48000_32-32_MONO_FER5.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec STEREO 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_stereo.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_BinauralRoom.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_BinauralRoom_Subframe.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_BinauralRoom_Headrot.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_BinauralRoom_Headrot_EXOF.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_OtrAvg.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_EXOF_OtrAvg.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-4s.csv -rvf ../scripts/trajectories/full-circle-4s-Vector3.csv -otr ref_vec BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_OtrRefPos.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking, exo -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-4s.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -rvf ../scripts/trajectories/full-circle-4s-Vector3.csv -otr ref_vec BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_EXOF_OtrRefPos.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking in level mode -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-with-up-and-down-4s.csv -rvf ../scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv -otr ref_vec_lev BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_OtrRefPosLev.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking in level mode, exo -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-with-up-and-down-4s.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -rvf ../scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv -otr ref_vec_lev BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_EXOF_OtrRefPosLev.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 -dtx 48000 32 testv/stv3OA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/stv3OA32c.wav_SBA_48000_32-32_DTX_Binaural_FER5.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR -../IVAS_cod -sba 3 -dtx 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_DTX_Binaural_Headrot.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR, exo -../IVAS_cod -sba 3 -dtx 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_48000_32-32_DTX_Binaural_Headrot_EXOF.tst - -// SBA at 48 kbps, 48kHz in, 48kHz out, 5_1_2 out -../IVAS_cod -sba 3 48000 48 testv/stv3OA48c.wav bit -../IVAS_dec 5_1_2 48 bit testv/stv3OA48c.wav_SBA_48000_48-48_5_1_2.tst - -// SBA at 64 kbps, 32kHz in, 32kHz out, FOA out, DTX, random FER at 5% -../IVAS_cod -dtx -sba 1 64000 32 testv/stvFOA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec FOA 32 bit_error testv/stvFOA32c.wav_SBA_64000_32-32_FER5_DTX_FOA.tst - -// SBA at 64 kbps, 48kHz in, 48kHz out, 5_1_4 out -../IVAS_cod -sba 1 64000 48 testv/stvFOA48c.wav bit -../IVAS_dec 5_1_4 48 bit testv/stvFOA48c.wav_SBA_64000_48-48_5_1_4.tst - -// SBA at 64 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -sba 1 64000 48 testv/stvFOA48c.wav bit -../IVAS_dec 7_1_4 48 bit testv/stvFOA48c.wav_SBA_64000_48-48_7_1_4.tst - -// SBA at 64 kpbs, 48kHz in, 48kHz out, BINAURAL out, DTX -../IVAS_cod -dtx -sba 1 64000 48 testv/stvFOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvFOA48c.wav_SBA_64000_48-48_DTX_BINAURAL.tst - -// SBA at 64 kpbs, 48kHz in, 48kHz out, BINAURAL_ROOM out, DTX -../IVAS_cod -dtx -sba 1 64000 48 testv/stvFOA48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stvFOA48c.wav_SBA_64000_48-48_DTX_BINAURAL_ROOM.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out -../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit -../IVAS_dec HOA3 32 bit testv/stv3OA32c.wav_SBA_80000_32-32_HOA3.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/stv3OA32c.wav_SBA_80000_32-32_Binaural_FER5.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, BINAURAL out, HR -../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_80000_32-32_Binaural_Headrot.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, exo -../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/stv3OA32c.wav_SBA_80000_32-32_Binaural_Headrot_EXOF.tst - -// SBA at 96 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 1 96000 32 testv/stvFOA32c.wav bit -../IVAS_dec STEREO 32 bit testv/stvFOA32c.wav_SBA_96000_32-32_STEREO.tst - -// SBA at 96 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 1 96000 48 testv/stvFOA48c.wav bit -../IVAS_dec FOA 48 bit testv/stvFOA48c.wav_SBA_96000_48-48_FOA.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.wav_SBA_128000_32-32_Binaural_room_Headrot.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.wav_SBA_128000_32-32_Binaural_room_Headrot_EXOF.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_Binaural_room_Headrot_OtrAvg.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_Binaural_room_Headrot_EXOF_OtrAvg.tst - -// SBA at 192 kbps, 48kHz in, 48kHz out, HOA2 out, random FER at 5% -../IVAS_cod -sba 3 192000 48 testv/stv3OA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA2 48 bit_error testv/stv3OA48c.wav_SBA_192000_48-48_HOA2_FER5.tst - -// SBA at 48 kbps, 48kHz in, 48kHz out, DTX on, 5_1 out -../IVAS_cod -sba 3 -dtx 48000 48 testv/stv3OA48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv3OA48c.wav_SBA_48000_48-48_DTX_5_1.tst - -// SBA at 160 kbps, 32kHz in, 32kHz out, FOA out -../IVAS_cod -sba 1 160000 32 testv/stvFOA32c.wav bit -../IVAS_dec FOA 32 bit testv/stvFOA32c.wav_SBA_160000_32-32_FOA.tst - -// SBA at 160 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out, random FER at 5% -../IVAS_cod -sba 1 160000 48 testv/stvFOA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_IR 48 bit_error testv/stvFOA48c.wav_SBA_160000_48-48_BINAURAL_ROOM_FER5.tst - -// SBA at 160 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -sba 1 160000 48 testv/stvFOA48c.wav bit -../IVAS_dec 5_1 48 bit testv/stvFOA48c.wav_SBA_160000_48-48_5_1.tst - -// SBA at 192 kbps, 48kHz in, 48kHz out, Custom LS setup out -../IVAS_cod -sba 1 192000 48 testv/stvFOA48c.wav bit -../IVAS_dec testv/ls_setup_16ch_8+4+4.txt 48 bit testv/stvFOA48c.wav_SBA_192000_48-48_MC_custom_setup.tst - -// SBA at 256 kbps, 32kHz in, 32kHz out, FOA out -../IVAS_cod -sba 1 256000 32 testv/stvFOA32c.wav bit -../IVAS_dec FOA 32 bit testv/stvFOA32c.wav_SBA_256000_32-32_FOA.tst - -// SBA at 256 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM out -../IVAS_cod -sba 1 256000 32 testv/stvFOA32c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/stvFOA32c.wav_SBA_256000_32-32_BINAURAL_ROOM.tst - -// SBA at 256 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -sba 1 256000 32 testv/stvFOA32c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 32 bit testv/stvFOA32c.wav_SBA_256000_32-32_BinauralRoom_Headrot_EXOF.tst - -// SBA at 256 kbps, 48kHz in, 48kHz out, 7_1 out, random FER at 5% -../IVAS_cod -sba 1 256000 48 testv/stvFOA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1 48 bit_error testv/stvFOA48c.wav_SBA_256000_48-48_7_1_FER5.tst - -// SBA 2OA at 384 kbps, 32kHz in, 32kHz out, STEREO out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -sba 2 384000 32 testv/stv2OA32c.wav bit -../IVAS_dec STEREO 32 bit testv/stv2OA32c.wav_SBA_384000_32-32_stereo.tst - -// SBA 3OA at 512 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -sba 3 512000 48 testv/stv3OA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv3OA48c.wav_SBA_512000_48-48_binaural.tst - -// SBA 3OA at 512 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -sba 3 512000 48 testv/stv3OA48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv3OA48c.wav_SBA_512000_48-48_Binaural_Headrot_EXOF.tst - -// SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -sba 1 ../scripts/switchPaths/sw_13k2_192k_50fr.bin 48 testv/stvFOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvFOA48c.wav_sw_48-48_BINAURAL.tst - -// SBA 2OA bitrate switching from 16.4 kbps to 512 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 2 ../scripts/switchPaths/sw_16k4_512k_50fr.bin 48 testv/stv2OA48c.wav bit -../IVAS_dec FOA 48 bit testv/stv2OA48c.wav_sw_48-48_FOA.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, HOA3 out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv3OA48c.wav bit -../IVAS_dec HOA3 48 bit testv/stv3OA48c.wav_sw_48-48_HOA3.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv3OA48c.wav bit -../IVAS_dec MONO 48 bit testv/stv3OA48c.wav_sw_48-48_MONO.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv3OA48c.wav bit -../IVAS_dec STEREO 48 bit testv/stv3OA48c.wav_sw_48-48_STEREO.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv3OA48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv3OA48c.wav_sw_48-48_BINAURAL.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv3OA48c.wav bit -../IVAS_dec FOA 48 bit testv/stv3OA48c.wav_sw_48-48_FOA.tst - -// SBA planar 3OA bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -sba -3 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv3OA48c.wav bit -../IVAS_dec 7_1_4 48 bit testv/stv3OA48c.wav_sw_48-48_7_1_4.tst - -// SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -sba 1 ../scripts/switchPaths/sw_13k2_192k_50fr.bin 32 testv/stvFOA32c_cut_.004.wav bit -../IVAS_dec BINAURAL 32 bit testv/stvFOA32c.wav_sw_32-32_DTX_BINAURAL.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out, DTX on, HOA3 out -../IVAS_cod -dtx -sba 3 ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/stv3OA32c_cut_.004.wav bit -../IVAS_dec HOA3 32 bit testv/stv3OA32c.wav_sw_32-32_DTX_HOA3.tst - -// SBA FOA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 1 -max_band fb ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvFOA48c.wav bit -../IVAS_dec FOA 48 bit testv/stvFOA48c.wav_sw_48-48_FOA.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, HR -../IVAS_cod -sba 3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_REVERB 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoomReverb_Headrot.tst - -// Planar SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, Config renderer, HR -../IVAS_cod -sba -2 48000 32 testv/stv2OA32c.wav bit -../IVAS_dec -t testv/headrot.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/stv2OA32c.pcm_planarSBA_48000_32-32_BinauralRoomReverb_Config_renderer_Headrot.tst - -// SBA at 48 kbps, 32kHz in, 48kHz out, BINAURAL_ROOM_REVERB out (Model from file), HR -../IVAS_cod -sba 1 48000 32 testv/stvFOA32c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin -t testv/headrot.csv BINAURAL_ROOM_REVERB 48 bit testv/stvFOA32c.pcm_SBA_48000_32-48_BinauralRoomReverb_Headrot_BinauralFile.tst - -// Planar SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM_REVERB out (Model from file), Config renderer, HR -../IVAS_cod -sba -3 48000 32 testv/stv3OA32c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin -t testv/headrot.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/stv3OA32c.pcm_planarSBA_48000_32-32_BinauralRoomReverb_Config_renderer_Headrot_BinauralFile.tst - -// SBA at 128 kbps, 32kHZ in, 32kHz out, BINAURAL_ROOM_REVERB out HR -../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_REVERB 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_BinauralRoomReverb_Headrot.tst - -// SBA at 128 kbps, 32kHZ in, 32kHz out, BINAURAL_ROOM_REVERB out, Config renderer, HR -../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_BinauralRoomReverb_Config_renderer_Headrot.tst - -// SBA at 128 kbps, 32kHZ in, 16kHz out, BINAURAL_ROOM_REVERB out (Model from file), HR -../IVAS_cod -sba 2 128000 32 testv/stv2OA32c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_REVERB 16 bit testv/stv2OA32c.pcm_SBA_128000_32-16_BinauralRoomReverb_Headrot_BinauralFile.tst - -// Planar SBA at 128 kbps, 48kHZ in, 32kHz out, BINAURAL_ROOM_REVERB out (Model from file), Config renderer, HR -../IVAS_cod -sba -1 128000 48 testv/stvFOA48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin -t testv/headrot_case00_3000_q.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/stvFOA48c.pcm_planarSBA_128000_48-32_BinauralRoomReverb_Config_renderer_Headrot_BinauralFile.tst - -// SBA 3OA at 128 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB rendconf sel acoustic env -../IVAS_cod -sba 3 128000 48 testv/stv3OA48c.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid 1 BINAURAL_ROOM_REVERB 48 bit testv/stv3OA48c.pcm_SBA_128000_48-48_BinauralRoomReverb_Config_renderer_combined_AEID_1.tst - -// SBA at 256 kbps, 48kHz in, 48kHz out, PCA, BINAURAL out -../IVAS_cod -pca -sba 1 256000 48 testv/stvFOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvFOA48c.wav_SBA_PCA_256000_48-48_BINAURAL.tst - -// SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 32kHz in, 32kHz out, DTX on, EXT out -../IVAS_cod -dtx -sba 1 ../scripts/switchPaths/sw_13k2_192k_50fr.bin 32 testv/stvFOA32c.wav bit -../IVAS_dec EXT 32 bit testv/stvFOA32c.wav_sw_32-32_DTX_EXT.tst - -// SBA planar 2OA bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out, DTX on, EXT out -../IVAS_cod -dtx -sba -2 ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/stv2OA32c.wav bit -../IVAS_dec EXT 32 bit testv/stv2OA32c.wav_sw_32-32_DTX_EXT.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, random FER at 5%, EXT out -../IVAS_cod -dtx -sba 3 ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv3OA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/stv3OA48c.wav_sw_48-48_DTX_EXT_FER5.tst - -// SBA planar FOA bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 32kHz out, EXT out -../IVAS_cod -sba -1 ../scripts/switchPaths/sw_13k2_512k.bin 32 testv/stvFOA32c.wav bit -../IVAS_dec EXT 32 bit testv/stvFOA32c.wav_sw_32-32_DTX_EXT.tst - -// SBA 2OA bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 32kHz out, EXT out -../IVAS_cod -sba 2 ../scripts/switchPaths/sw_13k2_512k.bin 32 testv/stv2OA32c.wav bit -../IVAS_dec EXT 32 bit testv/stv2OA32c.wav_sw_32-32_DTX_EXT.tst - -// SBA planar 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, random FER at 5%, EXT out -../IVAS_cod -sba -3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv3OA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/stv3OA48c.wav_sw_48-48_DTX_EXT_FER5.tst - -// SBA 3OA at 96 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -sba 3 512000 48 testv/stv3OA48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv3OA48c.wav_BINAURAL_ROOM_REVERB_96000_48-48.tst - -// SBA 3OA 4ISM at 96 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -sba 3 96000 48 testv/stv3OA48c.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv3OA48c.wav_BINAURAL_ROOM_REVERB_96000_48-48_custom_configuration.tst - - -// MASA 1dir 1TC at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -masa 1 testv/stv1MASA1TC48c.met 13200 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv1MASA1TC48c.wav_13200_48-48_BINAURAL.tst - -// MASA 1dir 1TC at 16.4 kbps, 48kHz in, 48kHz out, HOA3 out, random FER at 5% -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 16400 48 testv/stv1MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA3 48 bit_error testv/stv1MASA1TC48c.wav_16400_48-48_HOA3_FER5.tst - -// MASA 1dir 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 24400 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv1MASA1TC48c.wav_24400_48-48_BinauralRoom.tst - -// MASA 1dir 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 24400 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv1MASA1TC48c.wav_24400_48-48_BinauralRoom_Subframe.tst - -// MASA 1dir 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 24400 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/stv1MASA1TC48c.wav_24400_48-48_BinauralRoom_Headrot.tst - -// MASA 1dir 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 24400 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/stv1MASA1TC48c.wav_24400_48-48_BinauralRoom_Headrot_EXOF.tst - -// MASA 1dir 1TC at 32 kbps, 48kHz in, 48kHz out, 7_1_4, random FER at 5% -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 32000 48 testv/stv1MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1_4 48 bit_error testv/stv1MASA1TC48c.wav_32000_48-48_7_1_4_FER5.tst - -// MASA 1dir 1TC at 48 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 48000 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stv1MASA1TC48c.wav_48000_48-48_MONO.tst - -// MASA 1dir 1TC at 64 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 64000 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stv1MASA1TC48c.wav_64000_48-48_STEREO.tst - -// MASA 2dir 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -masa 1 testv/stv2MASA1TC48c.met 128000 48 testv/stv2MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/stv2MASA1TC48c.wav_128000_48-48_BINAURAL_FER5.tst - -// MASA 2dir 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -masa 1 testv/stv2MASA1TC48c.met 128000 48 testv/stv2MASA1TC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv2MASA1TC48c.wav_128000_48-48_BINAURAL_Subframe.tst - -// MASA 2dir 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -masa 1 testv/stv2MASA1TC48c.met 128000 48 testv/stv2MASA1TC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stv2MASA1TC48c.wav_128000_48-48_BINAURAL_Headrot.tst - -// MASA 2dir 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -masa 1 testv/stv2MASA1TC48c.met 128000 48 testv/stv2MASA1TC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv2MASA1TC48c.wav_128000_48-48_BINAURAL_Headrot_EXOF.tst - -// MASA 1dir 2TC at 13.2 kbps, 48kHz in, 48kHz out, 5_1 out, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -masa 2 testv/stv1MASA2TC48c.met 13200 48 testv/stv1MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/stv1MASA2TC48c.wav_13200_48-48_5_1_FER5.tst - -// MASA 1dir 2TC at 16.4 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 16400 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv1MASA2TC48c.wav_16400_48-48_5_1.tst - -// MASA 1dir 2TC at 24.4 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 24400 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stv1MASA2TC48c.wav_24400_48-48_STEREO.tst - -// MASA 1dir 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 32000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv1MASA2TC48c.wav_32000_48-48_BinauralRoom.tst - -// MASA 1dir 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 32000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/stv1MASA2TC48c.wav_32000_48-48_BinauralRoom_Headrot.tst - -// MASA 1dir 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 32000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/stv1MASA2TC48c.wav_32000_48-48_BinauralRoom_Headrot_EXOF.tst - -// MASA 1dir 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 32000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv_IVASMASA_1dir2TC.pcm_32000_48-48_BinauralRoom_Headrot_OtrAvg.tst - -// MASA 1dir 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 32000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv_IVASMASA_1dir2TC.pcm_32000_48-48_BinauralRoom_Headrot_EXOF_OtrAvg.tst - -// MASA 1dir 2TC at 48 kbps, 48kHz in, 48kHz out, 7_1_4 out, random FER at 5% -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 48000 48 testv/stv1MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1_4 48 bit_error testv/stv1MASA2TC48c.wav_48000_48-48_7_1_4_FER5.tst - -// MASA 1dir 2TC at 80 kbps, 32kHz in, 16kHz out, STEREO out -../IVAS_cod -masa 2 testv/stv1MASA2TC32c.met 80000 32 testv/stv1MASA2TC32c.wav bit -../IVAS_dec STEREO 16 bit testv/stv1MASA2TC32c.wav_80000_32-16_STEREO.tst - -// MASA 1dir 2TC at 96 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 96000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stv1MASA2TC48c.wav_96000_48-48_MONO.tst - -// MASA 1dir 2TC at 160 kbps, 48kHz in, 48kHz out, HOA3 out, random FER at 5% -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 160000 48 testv/stv1MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA3 48 bit_error testv/stv1MASA2TC48c.wav_160000_48-48_HOA3_FER5.tst - -// MASA 1dir 2TC at 256 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 256000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv1MASA2TC48c.wav_256000_48-48_5_1.tst - -// MASA 2dir 2TC at 48 kbps, 48kHz in, 48kHz out, 5_1 out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -masa 2 testv/stv2MASA2TC48c.met 48000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv2MASA2TC48c.wav_48000_48-48_5_1.tst - -// MASA 2dir 2TC at 64 kbps, 48kHz in, 48kHz out, EXTERNAL out, random FER at 5% -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 64000 48 testv/stv2MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/stv2MASA2TC48c.wav_64000_48-48_external_FER5.tst - -// MASA 2dir 2TC at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 64000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stv2MASA2TC48c.wav_64000_48-48_BINAURAL_Headrot.tst - -// MASA 2dir 2TC at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 64000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv2MASA2TC48c.wav_64000_48-48_BINAURAL_Headrot_EXOF.tst - -// MASA 2dir 2TC at 128 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 128000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec FOA 48 bit testv/stv2MASA2TC48c.wav_128000_48-48_FOA.tst - -// MASA 2dir 2TC at 192 kbps, 48kHz in, 48kHz out, 5_1_4 out, random FER at 5% -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 192000 48 testv/stv2MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1_4 48 bit_error testv/stv2MASA2TC48c.wav_192000_48-48_5_1_4_FER5.tst - -// MASA 2dir 2TC at 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 384000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv2MASA2TC48c.wav_384000_48-48_BinauralRoom.tst - -// MASA 2dir 2TC at 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM IR out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -masa 2 testv/stv2MASA2TC48c.met 384000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv2MASA2TC48c.wav_384000_48-48_BinauralRoom_Subframe.tst - -// MASA 2dir 2TC at 512 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 512000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv2MASA2TC48c.wav_512000_48-48_5_1.tst - -// MASA 1dir 1TC at 13.2 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 13200 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv1MASA1TC48c.wav_13200_48-48_EXT.tst - -// MASA 1dir 2TC at 16.4 kbps, 16kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv1MASA2TC16c.met 16400 16 testv/stv1MASA2TC16c.wav bit -../IVAS_dec EXT 48 bit testv/stv1MASA2TC16c.wav_16400_16-48_EXT.tst - -// MASA 2dir 1TC at 24.4 kbps, 48kHz in, 32kHz out, EXT out -../IVAS_cod -masa 1 testv/stv2MASA1TC48c.met 24400 48 testv/stv2MASA1TC48c.wav bit -../IVAS_dec EXT 32 bit testv/stv2MASA1TC48c.wav_24400_48-32_EXT.tst - -// MASA 2dir 2TC at 32 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 32000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_32000_48-48_EXT.tst - -// MASA 1dir 1TC at 48 kbps, 32kHz in, 48kHz out, EXT out -../IVAS_cod -masa 1 testv/stv1MASA1TC32c.met 48000 32 testv/stv1MASA1TC32c.wav bit -../IVAS_dec EXT 48 bit testv/stv1MASA1TC32c.wav_48000_32-48_EXT.tst - -// MASA 1dir 2TC at 64 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv1MASA2TC48c.met 64000 48 testv/stv1MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv1MASA2TC48c.wav_64000_48-48_EXT.tst - -// MASA 2dir 1TC at 80 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 1 testv/stv2MASA1TC48c.met 80000 48 testv/stv2MASA1TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA1TC48c.wav_80000_48-48_EXT.tst - -// MASA 2dir 2TC at 96 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 96000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_96000_48-48_EXT.tst - -// MASA 1dir 2TC at 128 kbps, 48kHz in, 48kHz out, DTX on, EXT out -../IVAS_cod -dtx -masa 2 testv/stv1MASA2TC48n.met 128000 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec EXT 48 bit testv/stv1MASA2TC48n.wav_128000_48-48_DTX_EXT.tst - -// MASA 2dir 2TC at 160 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 160000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_160000_48-48_EXT.tst - -// MASA 2dir 2TC at 192 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 192000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_192000_48-48_EXT.tst - -// MASA 2dir 2TC at 256 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 256000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_256000_48-48_EXT.tst - -// MASA 2dir 2TC at 384 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 384000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_384000_48-48_EXT.tst - -// MASA 2dir 2TC at 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met 512000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv2MASA2TC48c.wav_512000_48-48_EXT.tst - -// MASA 1dir 1TC at 13.2 kbps, 48kHz in, 48kHz out, DTX on, 7_1_4 out -../IVAS_cod -dtx -masa 1 testv/stv1MASA1TC48n.met 13200 48 testv/stv1MASA1TC48n.wav bit -../IVAS_dec 7_1_4 48 bit testv/stv1MASA1TC48n.wav_13200_48-48_DTX_7_1_4.tst - -// MASA 1dir 1TC at 24.4 kbps, 48kHz in, 48kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -masa 1 testv/stv1MASA1TC48n.met 24400 48 testv/stv1MASA1TC48n.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv1MASA1TC48n.wav_24400_48-48_DTX_BINAURAL.tst - -// MASA 1dir 2TC at 16.4 kbps, 48kHz in, 48kHz out, DTX on, FOA out -../IVAS_cod -dtx -masa 2 testv/stv1MASA2TC48n.met 16400 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec FOA 48 bit testv/stv1MASA2TC48n.wav_16400_48-48_DTX_FOA.tst - -// MASA 1dir 2TC at 32.0 kbps, 48kHz in, 48kHz out, DTX on, 5_1 out -../IVAS_cod -dtx -masa 2 testv/stv1MASA2TC48n.met 32000 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec 5_1 48 bit testv/stv1MASA2TC48n.wav_32000_48-48_DTX_5_1.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -../IVAS_dec 5_1 48 bit testv/stv1MASA1TC48n.wav_sw_48-48_5_1.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -../IVAS_dec STEREO 48 bit testv/stv1MASA1TC48n.wav_sw_48-48_STEREO.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv1MASA1TC48n.wav_sw_48-48_BINAURAL.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -../IVAS_dec FOA 48 bit testv/stv1MASA1TC48n.wav_sw_48-48_FOA.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv1MASA2TC48n.wav_sw_48-48_BINAURAL.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec MONO 48 bit testv/stv1MASA2TC48n.wav_sw_48-48_MONO.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, 7_1 out -../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec 7_1 48 bit testv/stv1MASA2TC48n.wav_sw_48-48_7_1.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -../IVAS_dec MONO 48 bit testv/stv1MASA2TC48n.wav_sw_48-48_MONO.tst - -// MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, 7_1 out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec 7_1 48 bit testv/stv2MASA2TC48c.wav_sw_48-48_7_1.tst - -// MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv2MASA2TC48c.wav_sw_48-48_BINAURAL.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -dtx -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/stv1MASA2TC48n.wav_sw_48-48_DTX_BINAURAL_FER5.tst - -// MASA 1dir 1TC at 256kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 256000 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv1MASA1TC48c.wav_BINAURAL_ROOM_REVERB_256000_48-48.tst - -// MASA 1dir 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 256000 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv1MASA1TC48c.wav_BINAURAL_ROOM_REVERB_256000_48-48_custom_config.tst - -// MASA 1dir 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration, random FER at 5% -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 256000 48 testv/stv1MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit_error testv/stv1MASA1TC48c.wav_256000_48-48_BINAURAL_ROOM_REVERB_FER5.tst - -// MASA 1dir 1TC at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, HR deafult configuration -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 256000 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_REVERB 48 bit testv/stv1MASA1TC48c.wav_BINAURAL_ROOM_REVERB_256000_48-48_Headrot.tst - -// MASA 1dir 1TC at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, HR custom configuration -../IVAS_cod -masa 1 testv/stv1MASA1TC48c.met 256000 48 testv/stv1MASA1TC48c.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -t testv/headrot.csv BINAURAL_ROOM_REVERB 48 bit testv/stv1MASA1TC48c.wav_BINAURAL_ROOM_REVERB_256000_48-48_Headrot_custom_config.tst - - -// Multi-channel 5_1 at 13.2 kbps, 48kHz in, 48kHz out -../IVAS_cod -mc 5_1 13200 48 testv/stv51MC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv51MC48c.wav_MC51_13200_48-48_5_1.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -mc 5_1 24400 48 testv/stv51MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/stv51MC48c.wav_MC51_24400_48-48_Binaural_FER5.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -mc 5_1 24400 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv51MC48c.wav_MC51_24400_48-48_Binaural_bwsw.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, HR -../IVAS_cod -mc 5_1 24400 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.wav_MC51_24400_48-48_BinauralRoom_Headrot.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -mc 5_1 24400 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv51MC48c.wav_MC51_24400_48-48_Binaural_Headrot_EXOF.tst - -// Multi-channel 5_1 at 48 kbps, 48kHz in, 48kHz out, random FER at 5% -../IVAS_cod -mc 5_1 48000 48 testv/stv51MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/stv51MC48c.wav_MC51_48000_48-48_5_1_FER5.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -mc 5_1 64000 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv51MC48c.wav_MC51_64000_48-48_Binaural.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -mc 5_1 64000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stv51MC48c.wav_MC51_64000_48-48_Binaural_Headrot.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -mc 5_1 64000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv51MC48c.wav_MC51_64000_48-48_Binaural_Headrot_EXOF.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -mc 5_1 64000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.wav_MC51_64000_48-48_Binaural_room_Headrot.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -mc 5_1 64000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.wav_MC51_64000_48-48_Binaural_room_Headrot_EXOF.tst - -// Multi-channel 5_1 at 96 kbps, 48kHz in, 48kHz out, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -mc 5_1 96000 48 testv/stv51MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/stv51MC48c.wav_MC51_96000_48-48_5_1_FER5.tst - -// Multi-channel 5_1 at 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -mc 5_1 128000 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv51MC48c.wav_MC51_128000_48-48_Binaural.tst - -// Multi-channel 5_1 at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -mc 5_1 128000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stv51MC48c.wav_MC51_128000_48-48_Binaural_Headrot.tst - -// Multi-channel 5_1 at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -mc 5_1 128000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/stv51MC48c.wav_MC51_128000_48-48_Binaural_Headrot_EXOF.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, STEREO out, random FER at 5% -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/stv51MC48c.wav_MC51_256000_48-48_stereo_FER5.tst - -// Multi-channel 5_1 at 192 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -mc 5_1 192000 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.wav_MC51_192000_48-48_BinauralRoom.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -../IVAS_dec MONO 48 bit testv/stv51MC48c.wav_MC51_256000_48-48_mono.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.wav_MC51_256000_48-48_BinauralRoom_Headrot.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.wav_MC51_256000_48-48_BinauralRoom_Headrot_EXOF.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.pcm_MC51_256000_48-48_BinauralRoom_Headrot_OtrAvg.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.pcm_MC51_256000_48-48_BinauralRoom_EXOF_OtrAvg.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out -../IVAS_cod -mc 5_1 384000 48 testv/stv51MC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv51MC48c.wav_MC51_384000_48-48_5_1.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -mc 5_1 384000 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stv51MC48c.wav_MC51_384000_48-48_Binaural.tst - -// Multi-channel 5_1 at 192 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -mc 5_1 192000 48 testv/stv51MC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stv51MC48c.wav_MC51_192000_48-48_stereo.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -mc 5_1 384000 48 testv/stv51MC48c.wav bit -../IVAS_dec 7_1_4 48 bit testv/stv51MC48c.wav_MC51_384000_48-48_7_1_4.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -mc 5_1 24400 48 testv/stv51MC48c.wav bit -../IVAS_dec MONO 48 bit testv/stv51MC48c.wav_MC51_24400_48-48_MONO.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 5_1 512000 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// Multi-channel 5_1_4 at 48 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, HR -../IVAS_cod -mc 5_1_4 48000 48 testv/stv514MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/stv514MC48c.wav_MC514_48000_48-48_BinauralRoom_Headrot.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 5_1_4 512000 48 testv/stv514MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 7_1_4 160000 48 testv/stv714MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv71MC48c.wav_BINAURAL_ROOM_REVERB_160000_48-48.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stv71MC48c.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// Multi-channel 7_1_4 at 48 kbps, 48kHz in, 48kHz out, MONO out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -mc 7_1_4 48000 48 testv/stv714MC48c.wav bit -../IVAS_dec MONO 48 bit testv/stv714MC48c.wav_MC714_48000_48-48_Mono_bwsw.tst - -// Multi-channel 7_1_4 at 64 kbps, 48kHz in, 48kHz out, MONO out, random FER at 5% -../IVAS_cod -mc 7_1_4 64000 48 testv/stv714MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/stv714MC48c.wav_MC714_64000_48-48_MONO_FER5.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -mc 5_1 24400 48 testv/stv51MC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stv51MC48c.wav_MC51_24400_48-48_Stereo.tst - -// Multi-channel 7_1_4 at 96 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -mc 7_1_4 96000 48 testv/stv714MC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stv714MC48c.wav_MC714_96000_48-48_Stereo.tst - -// Multi-channel 7_1_4 at 96 kbps, 48kHz in, 48kHz out, 5_1 out, random FER at 5% -../IVAS_cod -mc 7_1_4 96000 48 testv/stv714MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/stv714MC48c.wav_MC714_96000_48-48_5_1_FER5.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching, HR -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -mc 7_1_4 160000 48 testv/stv714MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stv714MC48c.wav_MC714_160000_48-48_MC_binaural-HR_bwsw.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM_IR out, HR -../IVAS_cod -max_band FB -mc 7_1_4 160000 48 testv/stv714MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 16 bit testv/stv714MC48c.wav_MC714_160000_48-16_MC_binaural-HR.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -mc 7_1_4 160000 48 testv/stv714MC48c.wav bit -../IVAS_dec 7_1_4 48 bit testv/stv714MC48c.wav_MC714_160000_48-48_MC714.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stv714MC48c.wav_MC714_512000_48-48_MC_binaural_hrot.tst - -// Multi-channel 5_1_2 at 32 kbps, 48kHz in, 48kHz out, STEREO out, random FER at 5% -../IVAS_cod -mc 5_1_2 32000 48 testv/stv512MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/stv512MC48c.wav_MC512_32000_48-48_Stereo_FER5.tst - -// Multi-channel 5_1_2 at 80 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -mc 5_1_2 80000 48 testv/stv512MC48c.wav bit -../IVAS_dec 5_1 48 bit testv/stv512MC48c.wav_MC512_80000_48-48_5_1.tst - -// Multi-channel 5_1_2 at 160 kbps, 48kHz in, 48kHz out, 5_1_2 out -../IVAS_cod -mc 5_1_2 160000 48 testv/stv512MC48c.wav bit -../IVAS_dec 5_1_2 48 bit testv/stv512MC48c.wav_MC512_160000_48-48_5_1_2.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, Custom LS setup out -../IVAS_cod -mc 5_1 256000 48 testv/stv51MC48c.wav bit -../IVAS_dec testv/ls_setup_16ch_8+4+4.txt 48 bit testv/stv51MC48c.wav_MC51_256000_48-48_MC_custom_setup.tst - -// Multi-channel 7_1 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer -../IVAS_cod -mc 7_1 512000 48 testv/stv71MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv71MC48c.wav_MC71_512000_48-48_MC_Config_renderer.tst - -// Multi-channel 5_1 at 80 kbps, 48kHz in, 32kHz out, BINAURAL_ROOM_REVERB out Config renderer, HR -../IVAS_cod -mc 5_1 80000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg -t ../scripts/trajectories/full-circle-4s.csv BINAURAL_ROOM_REVERB 32 bit testv/stv51MC48c.wav_MC51_80000_48-32_MC_Config_renderer.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM_REVERB out Config renderer -../IVAS_cod -mc 5_1 512000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 16 bit testv/stv51MC48c.wav_MC51_512000_48-16_MC_Config_renderer.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (CREND) -../IVAS_cod -mc 5_1 512000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid testv/aeid1.txt BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_MC51_512000_48-48_MC_reverb_sequence.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (FastConv) -../IVAS_cod -mc 5_1 64000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid testv/aeid2.txt BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_MC51_64000_48-48_MC_reverb_sequence.tst - -// Multi-channel 5_1 at 32 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (ParamBin) -../IVAS_cod -mc 5_1 32000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid testv/aeid3.txt BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_MC51_32000_48-48_MC_reverb_sequence.tst - -// Multi-channel 5_1 at 32 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config hospital_patientroom -../IVAS_cod -mc 5_1 32000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_MC51_32000_48-48_MC_Config_hospital_patientroom.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config recreation, HR -../IVAS_cod -mc 7_1_4 160000 48 testv/stv714MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg -t ../scripts/trajectories/full-circle-with-up-and-down-4s.csv BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_MC714_160000_48-48_MC_Config_recreation-HR.tst - -// Multi-channel 5_1_2 at 64 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer, HR -../IVAS_cod -mc 5_1_2 64000 48 testv/stv512MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg -t testv/headrot_case04_3000_q.csv BINAURAL_ROOM_REVERB 48 bit testv/stv512MC48c.wav_MC512_64000_48-48_MC_Config_renderer-HR.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -mc 5_1_4 512000 48 testv/stv514MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv514MC48c.wav_MC514_512000_48-48_MC_Config_renderer.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv714MC48c.wav_MC714_512000_48-48_MC_Config_renderer.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config early reflections -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v1.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv714MC48c.wav_MC714_512000_48-48_ER_v1.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config early reflections, listener origin -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v2.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv714MC48c.wav_MC714_512000_48-48_MC_ER_v2.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Conf early refl, low complexity, listener origin -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v3.cfg BINAURAL_ROOM_REVERB 48 bit testv/stv714MC48c.wav_MC714_512000_48-48_MC_ER_v3.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config early reflections, HR -../IVAS_cod -mc 5_1 512000 48 testv/stv51MC48c.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v1.cfg -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_REVERB 48 bit testv/stv51MC48c.wav_MC51_512000_48-48_MC_ER_v1_hrot.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv51MC48c.wav bit -../IVAS_dec 7_1_4 48 bit testv/stv51MC48c.wav_sw_48-48_7_1_4.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 16 bit testv/stv51MC48c.wav_sw_48-16_Binaural_room.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 48kHz out, BINAURAL_ROOM_IR out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 32 testv/stv51MC32c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv51MC32c.wav_sw_32-48_Binaural_room.tst - -// Multi-channel 5_1 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, BINAURAL out, FER at 10%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -mc 5_1 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv51MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/stv51MC48c.wav_sw_48-48_binaural_FER10.tst - -// Multi-channel 5_1_2 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM out -../IVAS_cod -mc 5_1_2 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv512MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 16 bit testv/stv512MC48c.wav_sw_48-16_Binaural_room.tst - -// Multi-channel 7_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (model from file), head rotation -../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv71MC48c.wav bit -../IVAS_dec -t testv/headrot.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv71C48c.wav_sw_48-48_Binaural_model_file_headrot.tst - -// Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, HOA3 out -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv714MC48c.wav bit -../IVAS_dec HOA3 48 bit testv/stv51MC48c.wav_sw_48-48_HOA3.tst - -// Multi-channel 7_1_4 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 32kHz out, STEREO out, FER at 5% -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv714MC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stv714MC48c.wav_sw_48-32_stereo_FER5.tst - -// Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv714MC48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv51MC48c.wav_sw_48-48_BINAURAL.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM out (Model from file) -../IVAS_cod -mc 5_1_4 512000 48 testv/stv514MC48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL_ROOM_IR 16 bit testv/stv51MC48c.wav_MC51_512000_48-16_MC_binaural_room.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 32kHz out, BINAURAL out (Model from file) -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL 32 bit testv/stv714MC48c.wav_MC714_512000_48-32_MC_binaural.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -mc 5_1_4 512000 48 testv/stv514MC48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv51MC48c.wav_MC51_512000_48-48_MC_binaural.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out (Model from file) -../IVAS_cod -mc 7_1_4 512000 48 testv/stv714MC48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL_ROOM_IR 48 bit testv/stv714MC48c.wav_MC714_512000_48-48_MC_binaural_room.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv51MC48c.wav bit -../IVAS_dec HOA3 48 bit testv/stv51MC48c.wav_sw_48-48_EXT.tst - -// Multi-channel 5_1_2 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -mc 5_1_2 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv512MC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv512MC48c.wav_sw_48-48_EXT.tst - -// Multi-channel 5_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, EXT out -../IVAS_cod -mc 5_1_4 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv514MC48c.wav bit -../IVAS_dec EXT 32 bit testv/stv514MC48c.wav_sw_48-32_EXT.tst - -// Multi-channel 7_1 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 16kHz out, EXT out -../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/stv71MC48c.wav bit -../IVAS_dec EXT 16 bit testv/stv71MCMC48c.wav_sw_48-16_EXT.tst - -// Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv714MC48c.wav bit -../IVAS_dec EXT 48 bit testv/stv714MC48c.wav_sw_48-48_EXT.tst - - -// Stereo downmix to bit-exact EVS at 13200 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo_dmx_evs 13200 32 testv/stvST32c.wav bit -../IVAS_dec 32 bit testv/stvST32c.wav_StereoDmxEVS_13200_32-32.tst - -// Stereo downmix to bit-exact EVS at 24400 kbps, 48kHz in, 48kHz out -../IVAS_cod -stereo_dmx_evs 24400 48 testv/stvST48c.wav bit -../IVAS_dec 48 bit testv/stvST48c.wav_StereoDmxEVS_24400_48-48.tst - - - -// stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on, JBM Prof 5 -../IVAS_cod -stereo -dtx 48000 16 testv/stvST16n.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/stvST16n.wav_stereo_48000_16-16_DTX_JBM5.tst - -// 4 ISm with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out, JBM Prof 5 -../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv4ISM48s.wav_32000_48-48_FOA_JBM5.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out, JBM Prof 5 -../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/stv3OA32c.wav_SBA_80000_32-32_HOA3_JBM5.tst - -// SBA at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -sba 1 13200 48 testv/stvFOA48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvFOA32c.wav_SBA_13200_48-48_BINAURAL_JBM5.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 -../IVAS_cod -mc 5_1 384000 48 testv/stv51MC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv51MC48c.wav_MC51_384000_48-48_7_1_4_JBM5.tst - -// Multi-channel 7_1_4 at 256 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 -../IVAS_cod -mc 7_1_4 256000 48 testv/stv714MC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv714MC48c.wav_MC714_256000_48-48_7_1_4_JBM5.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 32kHz out, 5_1 out, JBM Prof 5 -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-32_5_1_JBM5.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out, JBM Prof 5 -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_STEREO_JBM5.tst - -// MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 -../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_FOA_JBM5.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-16_BINAURAL_JBM5.tst - -// MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, MONO out, JBM Prof 5 -../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-32_MONO_JBM5.tst - -// MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-16_BINAURAL_JBM5.tst - -// MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 -../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-48_EXT_JBM5.tst - -// OMASA 2Dir2TC 1ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, JBM Prof 5 -../IVAS_cod -ism_masa 1 2 testv/stvISM1.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin 48 testv/stvOMASA_1ISM_2MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/stvOMASA_1ISM_2MASA2TC48c.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst - -// OMASA 2Dir2TC 2ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, 7.1 out, JBM Prof 5 -../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv NULL testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_7_1_sw_48-48_JBM5.tst - -// OMASA 2Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out, JBM Prof 5 -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_sw_48-48_JBM5.tst - -// OMASA 2Dir1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, JBM Prof 5 -../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA1TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvOMASA_3ISM_2MASA1TC48c.wav_STEREO_sw_48-32_JBM5.tst - -// OMASA 1Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.2 out, JBM Prof 5 -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/stvOMASA_3ISM_1MASA2TC32c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/stvOMASA_3ISM_1MASA2TC32c.wav_5_1_2_sw_32-48_JBM5.tst - -// OMASA 1Dir1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_sw_48-48_JBM5.tst - -// OMASA 1Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 -../IVAS_cod -ism_masa 4 2 NULL testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_sw_48-48_JBM5.tst - -// OMASA 2Dir2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv NULL testv/stvISM4.csv testv/stv2MASA2TC48c.met 256000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_256000_48-48_JBM5.tst - -// OMASA 1Dir1TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met 48000 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_ROOM_REVERB_48000_48-48_custom_configuration.tst - -// OMASA 2Dir2TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met 48000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_ROOM_REVERB_48000_48-48_custom_configuration.tst - -// EVS non-diegetic panning at 64 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod 64000 48 testv/stv48c.wav bit -../IVAS_dec -non_diegetic_pan -50 48 bit testv/stv48c.pcm_EVS_64000_48-48_STEREO_NON-DIEGETIC-PAN_-50.tst - -// 1 ISM non-diegetic panning at 32 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism 1 testv/stvISM1.csv 32000 48 testv/stv1ISM48s.wav bit -../IVAS_dec -non_diegetic_pan 80 STEREO 48 bit testv/stv1ISM48s.pcm_ISM_32000_48-48_STEREO_NON-DIEGETIC-PAN_80.tst - - -// OMASA 2Dir2TC 1ISM at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_masa 1 2 NULL testv/stv2MASA2TC48c.met 13200 48 testv/stvOMASA_1ISM_2MASA2TC48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOMASA_1ISM_2MASA2TC48c.wav_BINAURAL_13200_48-48.tst - -// OMASA 1Dir2TC 1ISM at 128 kbps, 48kHz in, 48kHz out, EXT out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -ism_masa 1 2 testv/stvISM1.csv testv/stv1MASA2TC48c.met 128000 48 testv/stvOMASA_1ISM_1MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stvOMASA_1ISM_1MASA2TC48c.wav_EXT_128000_48-48.tst - -// OMASA 2Dir1TC 1ISM at 512 kbps, 32kHz in, 48kHz out, 7.1.4 out, FER at 5% -../IVAS_cod -ism_masa 1 1 testv/stvISM1.csv testv/stv2MASA1TC48c.met 512000 32 testv/stvOMASA_1ISM_2MASA1TC32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1_4 48 bit_error testv/stvOMASA_1ISM_2MASA1TC32c.wav_7_1_4_512000_32-48_FER5.tst - - -// OMASA 1Dir1TC 2ISM at 16.4 kbps, 16kHz in, 48kHz out, 5.1 out -../IVAS_cod -ism_masa 2 1 testv/stvISM1.csv testv/stvISM2.csv testv/stv1MASA1TC48c.met 16400 16 testv/stvOMASA_2ISM_1MASA1TC16c.wav bit -../IVAS_dec 5_1 48 bit testv/stvOMASA_2ISM_1MASA1TC16c.wav_5_1_16400_16-48.tst - -// OMASA 2Dir2TC 2ISM at 32 kbps, 48kHz in, 48kHz out, STEREO out, FER at 5% -../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv testv/stvISM2.csv testv/stv2MASA2TC48c.met 32000 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/stvOMASA_2ISM_2MASA2TC48c.wav_STEREO_32000_48-48_FER5.tst - -// OMASA 1Dir2TC 2ISM at 256 kbps, 48kHz in, 32kHz out, BINAURAL_ROOM_IR out -../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv NULL testv/stv1MASA2TC48c.met 256000 48 testv/stvOMASA_2ISM_1MASA2TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/stvOMASA_2ISM_1MASA2TC48c.wav_BINAURAL_ROOM_IR_256000_48-32.tst - - -// OMASA 2Dir1TC 3ISM at 24.4 kbps, 48kHz in, 16kHz out, FOA out, FER at 10% -../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA1TC48c.met 24400 48 testv/stvOMASA_3ISM_2MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec FOA 16 bit_error testv/stvOMASA_3ISM_2MASA1TC48c.wav_FOA_24400_48-16_FER10.tst - -// OMASA 1Dir2TC 3ISM at 32 kbps, 48kHz in, 16kHz out, STEREO out -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA2TC48c.met 32000 48 testv/stvOMASA_3ISM_1MASA2TC48c.wav bit -../IVAS_dec STEREO 16 bit testv/stvOMASA_3ISM_1MASA2TC48c.wav_STEREO_32000_48-16.tst - -// OMASA 2Dir2TC 3ISM at 32 kbps, 48kHz in, 48kHz out, 5.1.2 out -../IVAS_cod -ism_masa 3 2 NULL NULL NULL testv/stv2MASA2TC48c.met 32000 48 testv/stvOMASA_3ISM_2MASA2TC48c.wav bit -../IVAS_dec 5_1_2 48 bit testv/stvOMASA_3ISM_2MASA2TC48c.wav_5_1_2_32000_48-48.tst - -// OMASA 2Dir2TC 3ISM at 48 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA2TC48c.met 48000 48 testv/stvOMASA_3ISM_2MASA2TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_48000_48-48.tst - -// OMASA 1Dir1TC 3ISM at 64 kbps, 32kHz in, 32kHz out, BINAURAL out -../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA1TC48c.met 64000 32 testv/stvOMASA_3ISM_1MASA1TC32c.wav bit -../IVAS_dec BINAURAL 32 bit testv/stvOMASA_3ISM_1MASA1TC32c.wav_BINAURAL_64000_32-32.tst - -// OMASA 2Dir2TC 3ISM at 80 kbps, 32kHz in, 16kHz out, 5.1.4 out -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA2TC48c.met 80000 32 testv/stvOMASA_3ISM_2MASA2TC32c.wav bit -../IVAS_dec 5_1_4 16 bit testv/stvOMASA_3ISM_2MASA2TC32c.wav_5_1_4_80000_32-16.tst - -// OMASA 2Dir1TC 3ISM at 96 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA1TC48c.met 96000 48 testv/stvOMASA_3ISM_2MASA1TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOMASA_3ISM_2MASA1TC48c.wav_MONO_96000_48-48.tst - -// OMASA 1Dir2TC 3ISM at 160 kbps, 16kHz in, 32kHz out, HOA3 out -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA2TC48c.met 160000 16 testv/stvOMASA_3ISM_1MASA2TC16c.wav bit -../IVAS_dec HOA3 32 bit testv/stvOMASA_3ISM_1MASA2TC16c.wav_HOA3_160000_16-32.tst - - -// OMASA 2Dir2TC 4ISM at 13.2 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met 13200 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_MONO_13200_48-48.tst - -// OMASA 2Dir1TC 4ISM at 24.4 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA1TC48c.met 24400 48 testv/stvOMASA_4ISM_2MASA1TC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stvOMASA_4ISM_2MASA1TC48c.wav_STEREO_24400_48-48.tst - -// OMASA 1Dir2TC 4ISM at 32 kbps, 48kHz in, 48kHz out, FOA out, FER at 5% -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA2TC48c.met 32000 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec FOA 48 bit_error testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_32000_48-48_FER5.tst - -// OMASA 1Dir1TC 4ISM at 48 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met 48000 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_ROOM_REVERB_48000_48-48.tst - -// OMASA 2Dir2TC 4ISM at 64 kbps, 48kHz in, 48kHz out, HOA2 out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv NULL NULL testv/stvISM4.csv testv/stv2MASA2TC48c.met 64000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec HOA2 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_HOA2_64000_48-48.tst - -// OMASA 1Dir2TC 4ISM at 80 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA2TC48c.met 80000 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOMASA_4ISM_1MASA2TC48c.wav_MONO_80000_48-48.tst - -// OMASA 2Dir2TC 4ISM at 192 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met 192000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec STEREO 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_STEREO_192000_48-48.tst - -// OMASA 2Dir2TC 4ISM at 384 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met 384000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_384000_48-48.tst - - -// OMASA 2Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA2TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_sw_48-48.tst - -// OMASA 2Dir1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, FER at 10% -../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvOMASA_3ISM_2MASA1TC48c.wav_STEREO_sw_48-32_FER10.tst - -// OMASA 1Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.4 out -../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/stvOMASA_3ISM_1MASA2TC32c.wav bit -../IVAS_dec 5_1_4 48 bit testv/stvOMASA_3ISM_1MASA2TC32c.wav_5_1_4_sw_32-48.tst - -// OMASA 1Dir1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, FER at 5% -../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_sw_48-48_FER5.tst - -// OMASA 1Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, HOA3 out -../IVAS_cod -ism_masa 4 2 NULL testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit -../IVAS_dec HOA3 48 bit testv/stvOMASA_4ISM_1MASA2TC48c.wav_HOA3_sw_48-48.tst - -// OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_ROOM_REVERB_sw_48-48.tst - -// OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 384 kbps, 48kHz in, 16kHz out, BINAURAL out (Model from file) -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_sw_48-16.tst - -// OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv NULL testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit -../IVAS_dec EXT 48 bit testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_sw_48-48.tst - - - -// OSBA FOA 1ISM at 32 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 1 1 testv/stvISM1.csv 32000 48 testv/stvOSBA_1ISM_FOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOSBA_1ISM_FOA48c.wav_BINAURAL_32000_48-48.tst - -// OSBA FOA 1ISM at 48 kbps, 16kHz in, 16kHz out, BINAURAL_ROOM_REVERB (Model from file) out -../IVAS_cod -ism_sba 1 1 testv/stvISM1.csv 32000 16 testv/stvOSBA_1ISM_FOA16c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL_ROOM_REVERB 16 bit testv/stvOSBA_1ISM_FOA16c.wav_BINAURAL_ROOM_REVERB_32000_16-16.tst - -// OSBA FOA 2ISM at 64 kbps, 48kHz in, 48kHz out, HOA3 out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism_sba 2 1 testv/stvISM1.csv testv/stvISM2.csv 64000 48 testv/stvOSBA_2ISM_FOA48c.wav bit -../IVAS_dec HOA3 48 bit testv/stvOSBA_2ISM_FOA48c.wav_HOA3_64000_48-48.tst - -// OSBA FOA 3ISM at 128 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -ism_sba 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 128000 48 testv/stvOSBA_3ISM_FOA48c.wav bit -../IVAS_dec 7_1_4 48 bit testv/stvOSBA_3ISM_FOA48c.wav_7_1_4_128000_48-48.tst - -// OSBA FOA 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_sba 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 256000 48 testv/stvOSBA_4ISM_FOA48c.wav bit -../IVAS_dec EXT 48 bit testv/stvOSBA_4ISM_FOA48c.wav_EXT_256000_48-48.tst - -// OSBA FOA 4ISM at 512 kbps, 48kHz in, 48kHz out, BINAURAL (Model from file) out -../IVAS_cod -ism_sba 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 512000 48 testv/stvOSBA_4ISM_FOA48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stvOSBA_4ISM_FOA48c.wav_BINAURAL_512000_48-48.tst - -// OSBA FOA 4ISM at 384 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR (Model from file) out -../IVAS_cod -ism_sba 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 384000 32 testv/stvOSBA_4ISM_FOA32c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL_ROOM_IR 32 bit testv/stvOSBA_4ISM_FOA32c.wav_BINAURAL_384000_32-32.tst - -// OSBA 2OA 1ISM at 24.4 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -ism_sba 1 2 testv/stvISM1.csv 24400 48 testv/stvOSBA_1ISM_2OA48c.wav bit -../IVAS_dec FOA 48 bit testv/stvOSBA_1ISM_2OA48c.wav_FOA_24400_48-48.tst - -// OSBA 2OA 2ISM at 48 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_sba 2 2 testv/stvISM1.csv testv/stvISM2.csv 48000 48 testv/stvOSBA_2ISM_2OA48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOSBA_2ISM_2OA48c.wav_MONO_48000_48-48.tst - -// OSBA 2OA 2ISM at 64 kbps, 32kHz in, 16kHz out, BINAURAL ROOM REVERB out -../IVAS_cod -ism_sba 2 2 testv/stvISM1.csv testv/stvISM2.csv 48000 32 testv/stvOSBA_2ISM_2OA32c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 16 bit testv/stvOSBA_2ISM_2OA32c.wav_MONO_64000_32-16.tst - -// OSBA 2OA 3ISM at 96 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 96000 48 testv/stvOSBA_3ISM_2OA48c.wav bit -../IVAS_dec STEREO 48 bit testv/stvOSBA_3ISM_2OA48c.wav_STEREO_96000_48-48.tst - -// OSBA 2OA 4ISM at 384 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 384000 48 testv/stvOSBA_4ISM_2OA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOSBA_4ISM_2OA48c.wav_BINAURAL_384000_48-48.tst - -// OSBA 3OA 1ISM at 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_sba 1 3 testv/stvISM1.csv 512000 48 testv/stvOSBA_1ISM_3OA48c.wav bit -../IVAS_dec EXT 48 bit testv/stvOSBA_1ISM_3OA48c.wav_EXT_512000_48-48.tst - -// OSBA 3OA 2ISM at 256 kbps, 48kHz in, 48kHz out, 7_1 out -../IVAS_cod -ism_sba 2 3 testv/stvISM1.csv testv/stvISM2.csv 256000 48 testv/stvOSBA_2ISM_3OA48c.wav bit -../IVAS_dec 7_1 48 bit testv/stvOSBA_2ISM_3OA48c.wav_7_1_256000_48-48.tst - -// OSBA 3OA 3ISM at 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 3 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 128000 48 testv/stvOSBA_3ISM_3OA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOSBA_3ISM_3OA48c.wav_BINAURAL_128000_48-48.tst - -// OSBA 3OA 3ISM at 160 kbps, 16kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism_sba 3 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 160000 16 testv/stvOSBA_3ISM_3OA16c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stvOSBA_3ISM_3OA416c.wav_BINAURAL_ROOM_IR_160000_16-48.tst - -// OSBA 3OA 4ISM at 16.4 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 16400 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec 5_1 48 bit testv/stvOSBA_4ISM_3OA48c.wav_5_1_16400_48-48.tst - -// OSBA 3OA 4ISM bitrate switching 13.2 to 512, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_sw_13k2_512k_48-48.tst - -// OSBA 3OA 4ISM bitrate switching 16.4 to 512, 48kHz in, 48kHz out, BINAURAL out, headtracking -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_16k4_512k_50fr.bin 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_sw_16k4_512k_48-48.tst - -// OSBA 3OA 2ISM at 256 kbps, 32kHz in, 32kHz out, HOA3 out -../IVAS_cod -ism_sba 2 3 testv/stvISM1.csv testv/stvISM2.csv 256000 32 testv/stvOSBA_2ISM_3OA32c.wav bit -../IVAS_dec HOA3 32 bit testv/stvOSBA_2ISM_3OA32c.wav_HOA3_256000_32-32.tst - -// OSBA 2OA 3ISM at 384 kbps, 16kHz in, 16kHz out, MONO out -../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 384000 16 testv/stvOSBA_3ISM_2OA16c.wav bit -../IVAS_dec MONO 16 bit testv/stvOSBA_3ISM_2OA16c.wav_MONO_256000_16-16.tst - -// OSBA FOA 4ISM at 512 kbps, 32kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_sba 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 512000 32 testv/stvOSBA_4ISM_FOA32c.wav bit -../IVAS_dec STEREO 48 bit testv/stvOSBA_4ISM_FOA32c.wav_STEREO_512000_32-48.tst - -// OSBA 3OA 4ISM bitrate switching 13.2 to 512, 32kHz in, 48kHz out, EXT out -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_13k2_512k.bin 32 testv/stvOSBA_4ISM_3OA32c.wav bit -../IVAS_dec EXT 48 bit testv/stvOSBA_4ISM_3OA32c.wav_EXT_sw_13k2_512k_32-48.tst - -// OSBA FOA 4ISM at br sw 13.2 to 512 kbps, 48kHz in, 16kHz out, BINAURAL out (Model from file), FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -ism_sba 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_4ISM_FOA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit_error testv/stvOSBA_4ISM_FOA48c.wav_BINAURAL_sw_48-16_FER5.tst - -// OSBA 3ISM 2OA at bitrate switching 13.2 to 512 kbps, 48kHz in, 32kHz out, STEREO out, FER at 10% -../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_3ISM_2OA48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/stvOSBA_3ISM_2OA48c.wav_STEREO_sw_48-32_FER10.tst - -// OSBA 3ISM 3OA at bitrate switching 13.2 to 512 kbps, 48kHz in, 32kHz out, BINAURAL ROOM REVERB out -../IVAS_cod -ism_sba 3 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_3ISM_3OA48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 32 bit testv/stvOSBA_3ISM_3OA48c.wav_BINAURAL_ROOM_REVERB_sw_48-32.tst - -// OSBA planar FOA 1ISM at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism_sba 1 -1 testv/stvISM1.csv 256000 48 testv/stvOSBA_1ISM_FOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOSBA_1ISM_pFOA48c.wav_BINAURAL_256000_48-48.tst - -// OSBA planar FOA 2ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism_sba 2 -1 testv/stvISM1.csv testv/stvISM2.csv 512000 48 testv/stvOSBA_2ISM_FOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/stvOSBA_2ISM_pFOA48c.wav_BINAURAL_512000_48-48.tst - -// OSBA planar 3OA 4ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism_sba 4 -3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 512000 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stvOSBA_4ISM_p3OA48c.wav_BINAURAL_ROOM_IR_512000_48-48.tst - -// OSBA planar 2OA 4ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM REVERB (Model from file) out -../IVAS_cod -ism_sba 4 -2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 512000 48 testv/stvOSBA_4ISM_2OA48c.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL_ROOM_REVERB 48 bit testv/stvOSBA_4ISM_p3OA48c.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// OSBA 3OA 4ISM at 48 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 48000 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg BINAURAL_ROOM_REVERB 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_ROOM_REVERB_48000_48-48_custom_configuration.tst - -// OSBA 3OA 4ISM at 64 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 64000 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg BINAURAL_ROOM_REVERB 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_ROOM_REVERB_64000_48-48_custom_configuration.tst - -// OSBA 3OA 4ISM at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_sba 4 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 512000 48 testv/stvOSBA_4ISM_3OA48c.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/stvOSBA_4ISM_3OA48c.wav_BINAURAL_ROOM_REVERB_512000_48-48_custom_configuration.tst diff --git a/scripts/config/self_test_evs.prm b/scripts/config/self_test_evs.prm deleted file mode 100644 index ec611fee2a551ea95e9a7a1086cbd2fd9631e432..0000000000000000000000000000000000000000 --- a/scripts/config/self_test_evs.prm +++ /dev/null @@ -1,263 +0,0 @@ -// Self-test parameter file -// -// - each test must have a tag (unique name) which must be entered as a comment (you can use // /* or rem comment) -// - the following line must be the encoder command line -// - the following line must be the decoder command line -// - if the name of the local synthesis file and/or the output file are exactly the same as -// the name of the test vector located in ./testv directory, these files will be compared for bit-exactness -// (the easiest way how to achieve this is to use the name of the test vector itself, as shown below) - - - - - - -// Codec A at 5.90 kbps, 8kHz in, 8kHz out, VBR -../IVAS_cod -dtx 5900 8 testv/stv8c.wav bit -../IVAS_dec 8 bit testv/stv8c_5k90_8-8_VBR.tst - -// Codec A at 7.20 kbps, 8kHz in, 8kHz out -../IVAS_cod 7200 8 testv/stv8c.wav bit -../IVAS_dec 8 bit testv/stv8c_7k20_8-8.tst - -// Codec A at 8.00 kbps, 8kHz in, 8kHz out, fixed DTX -../IVAS_cod -dtx 8000 8 testv/stv8n.wav bit -../IVAS_dec 8 bit testv/stv8n_8k00_8-8_DTX20.tst - -// Codec B at 9.60 kbps, 8kHz in, 8kHz out, adaptive DTX -../IVAS_cod -dtx 0 9600 8 testv/stv8n.wav bit -../IVAS_dec 8 bit testv/stv8n_9k60_8-8_DTX20.tst - -// Codec B at 9.60 kbps, 8kHz in, 8kHz out, fixed DTX, random FER at 5% -../IVAS_cod -dtx 9600 8 testv/stv8n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 8 bit_error testv/stv8n_9k60_8-8_DTX20_FER5.tst - -// Codec A at 13.20 kbps, 8kHz in, 8kHz out, random FER at 5% -../IVAS_cod 13200 8 testv/stv8c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 8 bit_error testv/stv8c_13k20_8-8_FER5.tst - -// Codec A at 13.20 kbps, 8kHz in, 8kHz out, fixed DTX, random FER at 5% -../IVAS_cod -dtx 20 13200 8 testv/stv8c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 8 bit_error testv/stv8c_13k20_8-8_DTX20_FER5.tst - -// Codec A at 32 kbps, 32kHz in, 8kHz out, random FER at 5% -../IVAS_cod 32000 32 testv/stv32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 8 bit_error stv32c_32k_32-8_FER5.tst - - -// Codec A at 5.90 kbps, 16kHz in, 16kHz out, VBR -../IVAS_cod -dtx 5900 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_5k90_8-8_VBR.tst - -// Codec A at 7.20 kbps, 16kHz in, 16kHz out -../IVAS_cod 7200 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_7k20_16-16.tst - -// Codec A at 8 kbps, 16kHz in, 16kHz out -../IVAS_cod 8000 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_8k00_16-16.tst - -// Codec B at 9.60 kbps, 16kHz in, 16kHz out -../IVAS_cod 9600 16 testv/stv16n.wav bit -../IVAS_dec 16 bit testv/stv16n_9k60_16-16.tst - -// Codec B at 9.60 kbps, 16kHz in, 16kHz out, random FER at 5% -../IVAS_cod 9600 16 testv/stv16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 16 bit_error testv/stv16n_9k60_16-16_FER5.tst - -// Codec A at 13.20 kbps, 16kHz in, 16kHz out, adaptive DTX -../IVAS_cod -dtx 0 13200 16 testv/stv16n.wav bit -../IVAS_dec 16 bit testv/stv16n_13k20_16-16_DTX.tst - -// Codec A at 13.20 kbps, 16kHz in, 16kHz out, fixed DTX, random FER at 5% -../IVAS_cod -dtx 13200 16 testv/stv16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 16 bit_error testv/stv16n_13k20_16-16_DTX_FER5.tst - -// Codec B at 16.40 kbps, 16kHz in, 16kHz out, random FER at 5% -../IVAS_cod 16400 16 testv/stv16c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 16 bit_error testv/stv16c_16k40_16-16_FER5.tst - -// Codec B at 24.40 kbps, 16kHz in, 16kHz out, fixed DTX -../IVAS_cod -dtx 24400 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_24k40_16-16_DTX.tst - -// Codec A at 32 kbps, 16kHz in, 16kHz out -../IVAS_cod 32000 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_32k_16-16.tst - -// Codec B at 48 kbps, 16kHz in, 16kHz out -../IVAS_cod 48000 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_48k_16-16.tst - -// Codec A at 64 kbps, 16kHz in, 16kHz out -../IVAS_cod 64000 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_64k_16-16.tst - -// Codec A at 64 kbps, 16kHz in, 16kHz out, random FER at 5% -../IVAS_cod 64000 16 testv/stv16c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 16 bit_error testv/stv16c_64k_16-16_FER5.tst - -// Codec B at 96 kbps, 16kHz in, 16kHz out -../IVAS_cod 96000 16 testv/stv16c.wav bit -../IVAS_dec 16 bit testv/stv16c_96k_16-16.tst - -// Codec B at 96 kbps, 16kHz in, 16kHz out, random FER at 5% -../IVAS_cod 96000 16 testv/stv16c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 16 bit_error testv/stv16c_96k_16-16_FER5.tst - - - -// Codec A at 7.20 kbps, 32kHz in, 32kHz out -../IVAS_cod 7200 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_7k20_32-32.tst - -// Codec A at 8 kbps, 32kHz in, 32kHz out, fixed DTX -../IVAS_cod -dtx 8000 32 testv/stv32n.wav bit -../IVAS_dec 32 bit testv/stv32n_8k00_32-32_DTX.tst - -// Codec B at 9.60 kbps, 32kHz in, 32kHz out -../IVAS_cod 9600 32 testv/stv32n.wav bit -../IVAS_dec 32 bit testv/stv32n_9k60_32-32.tst - -// Codec A at 13.20 kbps, 32kHz in, 32kHz out -../IVAS_cod 13200 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_13k20_32-32.tst - -// Codec A at 13.20 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod 13200 32 testv/stv32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 32 bit_error testv/stv32c_13k20_32-32_FER5.tst - -// Codec B at 16.40 kbps, 32kHz in, 32kHz out, DTX -../IVAS_cod -dtx 16400 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_16k40_32-32_DTX.tst - -// Codec B at 16.40 kbps, 32kHz in, 32kHz out, fixed DTX, random FER at 5% -../IVAS_cod -dtx 16400 32 testv/stv32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 32 bit_error testv/stv32c_16k40_32-32_DTX_FER5.tst - -// Codec B at 24.40 kbps, 32kHz in, 32kHz out -../IVAS_cod 24400 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_24k40_32-32.tst - -// Codec A at 32 kbps, 32kHz in, 32kHz out -../IVAS_cod 32000 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_32k_32-32.tst - -// Codec B at 48 kbps, 32kHz in, 32kHz out -../IVAS_cod 48000 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_48k_32-32.tst - -// Codec B at 48 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod 48000 32 testv/stv32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 32 bit_error testv/stv32c_48k_32-32_FER5.tst - -// Codec A at 64 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod 64000 32 testv/stv32c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 32 bit_error testv/stv32c_64k_32-32_FER5.tst - -// Codec B at 96 kbps, 32kHz in, 32kHz out -../IVAS_cod 96000 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_96k_32-32.tst - -// Codec A at 13.20 kbps, 32kHz in, 48kHz out -../IVAS_cod 13200 32 testv/stv32c.wav bit -../IVAS_dec 48 bit testv/stv32c_13k20_32-48.tst - - - - -// Codec A at 13.2 kbps, 48kHz in, 48kHz out -../IVAS_cod 13200 48 testv/stv48c.wav bit -../IVAS_dec 48 bit testv/stv48c_13k20_48-48.tst - -// Codec B at 16.40 kbps, 48kHz in, 48kHz out -../IVAS_cod 16400 48 testv/stv48c.wav bit -../IVAS_dec 48 bit testv/stv48c_16k40_48-48.tst - -// Codec B at 24.40 kbps, 48kHz in, 48kHz out, random FER at 5% -../IVAS_cod 24400 48 testv/stv48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 48 bit_error testv/stv48c_24k40_48-48_FER5.tst - -// Codec A at 32 kbps, 48kHz in, 48kHz out, FB -../IVAS_cod -max_band FB 32000 48 testv/stv48c.wav bit -../IVAS_dec 48 bit testv/stv48c_32k_48-48.tst - -// Codec B at 48 kbps, 48kHz in, 48kHz out, FB -../IVAS_cod -max_band FB 48000 48 testv/stv48c.wav bit -../IVAS_dec 48 bit testv/stv48c_48k_48-48.tst - -// Codec A at 64 kbps, 48kHz in, 48kHz out, FB -../IVAS_cod -max_band FB 64000 48 testv/stv48c.wav bit -../IVAS_dec 48 bit testv/stv48c_64k_48-48.tst - -// Codec B at 96 kbps, 48kHz in, 48kHz out, FB -../IVAS_cod -max_band FB 96000 48 testv/stv48c.wav bit -../IVAS_dec 48 bit testv/stv48c_96k_48-48.tst - - - -// Codec switching A-B between 7.2 and 16.4 kbps, 16kHz in, 16kHz out -../IVAS_cod ../scripts/switchPaths/wb_low1.bin 16 testv/stv16n.wav bit -../IVAS_dec 16 bit testv/stv16n_07_16k_16-16.tst - -// Codec switching A-B between 13.2 and 64 kbps, 16kHz in, 16kHz out -../IVAS_cod ../scripts/switchPaths/wb_high1.bin 16 testv/stv16n.wav bit -../IVAS_dec 16 bit testv/stv16n_13_64k_16-16.tst - -// Codec switching A-B between 5.9 and 64 kbps, 16kHz in, 16kHz out -../IVAS_cod ../scripts/switchPaths/sw_wb5.bin 16 testv/stv16n.wav bit -../IVAS_dec 16 bit testv/stv16n_05_64k_16-16.tst - -// Codec switching A-B between 13 and 128 kbps, 32kHz in, 32kHz out -../IVAS_cod ../scripts/switchPaths/sw_swb1.bin 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_13_128k_32-32.tst - -// Codec switching EVS - AMR-WB IO between 5.9 and 128 kbps, 48kHz in, 32kHz out -../IVAS_cod ../scripts/switchPaths/sw_amrwb_evs2.bin 48 testv/stv48c.wav bit -../IVAS_dec 32 bit testv/stv48c_59_128k_48-32.tst - - - -// AMR-WB IO at 12.65 kbps, 16kHz in, 16kHz out, fixed DTX -../IVAS_cod -dtx 12650 16 testv/stv16n.wav bit -../IVAS_dec 16 bit testv/stv16n_AMR_WB_12k65_16-16_DTX.tst - -// AMR-WB IO at 23.85 kbps, 16kHz in, 16kHz out, adaptive DTX, random FER at 5% -../IVAS_cod -dtx 0 23850 16 testv/stv16n.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 16 bit_error testv/stv16n_AMR_WB_23k85_16-16_DTX_FER5.tst - -// AMR-WB IO at 19.85 kbps, 32kHz in, 32kHz out -../IVAS_cod 19850 32 testv/stv32c.wav bit -../IVAS_dec 32 bit testv/stv32c_AMR_WB_19k85_32-32.tst - - - -// Codec A at 13.20 kbps, 32kHz in, 32kHz out, DTX, JBM Prof 5 -../IVAS_cod -dtx 13200 32 testv/stv32c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_32-32_DTX_JBM5.tst - -// Codec B at 16.40 kbps, 32kHz in, 32kHz out, DTX, JBM Prof 5 -../IVAS_cod -dtx 16400 32 testv/stv32c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_16k40_32-32_DTX_JBM5.tst - -// Codec B at 13.20 kbps, 32kHz in, 32kHz out, JBM Prof 9, Channel aware -../IVAS_cod -rf 13200 32 testv/stv32c.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_CA_32-32_JBM9.tst diff --git a/scripts/config/self_test_ltv.prm b/scripts/config/self_test_ltv.prm deleted file mode 100644 index 68279e45fb5e31b421b8d0e82b750e811a1ec6d7..0000000000000000000000000000000000000000 --- a/scripts/config/self_test_ltv.prm +++ /dev/null @@ -1,1966 +0,0 @@ -// Self-test parameter file -// -// - each test must have a tag (unique name) which must be entered as a comment (you can use // /* or rem comment) -// - the following line must be the encoder command line -// - the following line must be the decoder command line -// - if the name of the output file are exactly the same as -// the name of the test vector located in ./testv directory, these files will be compared for bit-exactness -// (the easiest way how to achieve this is to use the name of the test vector itself, as shown below) - - -// stereo at 13.2 kbps, 16kHz in, 16kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 13200 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv16_STEREO.wav_stereo_13200_16-16_DTX_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, DTX on -../IVAS_cod -stereo -dtx 16400 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv32_STEREO.wav_stereo_16400_32-16_DTX.tst - -// stereo at 32 kbps, 32kHz in, 48kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv32_STEREO.wav_stereo_32000_32-48_MONO_FER5.tst - -// stereo at 13.2 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 13200 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_13200_16-16.tst - -// stereo at 16.4 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 16400 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_16400_16-16.tst - -// stereo at 24.4 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 24400 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_24400_16-16.tst - -// stereo at 32 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 32000 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_32000_16-16.tst - -// stereo at 13.2 kbps, 16kHz in, 16kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 13200 16 testv/ltv16_STEREO.wav bit -../IVAS_dec MONO 16 bit testv/ltv16_STEREO.wav_stereo_13200_16-16_DTX_MONO.tst - -// stereo at 16.4 kbps, 16kHz in, 16kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 16400 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv16_STEREO.wav_stereo_16400_16-16_DTX_FER5.tst - -// stereo at 24.4 kbps, 16kHz in, 16kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 24400 16 testv/ltv16_STEREO.wav bit -../IVAS_dec MONO 16 bit testv/ltv16_STEREO.wav_stereo_24400_16-16_DTX_MONO.tst - -// stereo at 24.4 kbps, 16kHz in, 32kHz out, DTX on -../IVAS_cod -stereo -dtx 24400 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv16_STEREO.wav_stereo_24400_16-32_DTX.tst - -// stereo at 32 kbps, 16kHz in, 16kHz out, random FER at 5%, DTX on -../IVAS_cod -stereo -dtx 32000 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv16_STEREO.wav_stereo_32000_16-16_FER5_DTX.tst - -// stereo at 32 kbps, 16kHz in, 48kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 32000 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv16_STEREO.wav_stereo_32000_16-48_MONO_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 13200 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_13200_32-32.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out, DTX on -../IVAS_cod -stereo -dtx 13200 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_13200_32-32_DTX.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out, DTX on, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -stereo -dtx 13200 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv32_STEREO.wav_stereo_13200_32-32_DTX_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 32kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 13200 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/ltv32_STEREO.wav_stereo_13200_32-32_DTX_MONO_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 16kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 13200 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv32_STEREO.wav_stereo_13200_32-16_DTX_FER5.tst - -// stereo at 13.2 kbps, 32kHz in, 48kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 13200 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv32_STEREO.wav_stereo_13200_32-48_DTX_MONO_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 16400 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_16400_32-32.tst - -// stereo at 16.4 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 16400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv32_STEREO.wav_stereo_16400_32-32_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, random FER at 5% -../IVAS_cod -stereo 16400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv32_STEREO.wav_stereo_16400_32-16_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 16400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/ltv32_STEREO.wav_stereo_16400_32-16_MONO_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 16kHz out, random FER at 5%, DTX on -../IVAS_cod -stereo -dtx 16400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv32_STEREO.wav_stereo_16400_32-16_DTX_FER5.tst - -// stereo at 16.4 kbps, 32kHz in, 48kHz out, random FER at 5%, MONO out, DTX on -../IVAS_cod -stereo -dtx 16400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv32_STEREO.wav_stereo_16400_32-48_DTX_MONO_FER5.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 24400 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_24400_32-32.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out, DTX on -../IVAS_cod -stereo -dtx 24400 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_24400_32-32_DTX.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 24400 32 testv/ltv32_STEREO.wav bit -../IVAS_dec MONO 32 bit testv/ltv32_STEREO.wav_stereo_24400_32-32_DTX_MONO.tst - -// stereo at 24.4 kbps, 32kHz in, 32kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 24400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/ltv32_STEREO.wav_stereo_24400_32-32_DTX_MONO_FER5.tst - -// stereo at 24.4 kbps, 32kHz in, 16kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 24400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/ltv32_STEREO.wav_stereo_24400_32-16_DTX_MONO_FER5.tst - -// stereo at 24.4 kbps, 32kHz in, 48kHz out, DTX on, random FER at 5% -../IVAS_cod -stereo -dtx 24400 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/ltv32_STEREO.wav_stereo_24400_32-48_DTX_FER5.tst - -// stereo at 24.4 kbps, 48kHz in, 48kHz out, DTX on -../IVAS_cod -stereo -dtx 24400 48 testv/ltv48_STEREO.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_STEREO.wav_24400_48_48_DTX.txt - -// stereo at 32 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 32000 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_32000_32-32.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, NOOP -../IVAS_cod -stereo 32000 32 testv/stvST32noop.wav bit -../IVAS_dec STEREO 32 bit testv/stvST32noop.wav_stereo_32000_32-32.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv32_STEREO.wav_stereo_32000_32-32_FER5.tst - -// stereo at 32 kbps, 32kHz in, 48kHz out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/ltv32_STEREO.wav_stereo_32000_32-48_FER5.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, MONO out, random FER at 5% -../IVAS_cod -stereo 32000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/ltv32_STEREO.wav_stereo_32000_32-32_MONO_FER5.tst - -// stereo at 32 kbps, 32kHz in, 32kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/ltv32_STEREO.wav_stereo_32000_32-32_DTX_MONO_FER5.tst - -// stereo at 32 kbps, 32kHz in, 16kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/ltv32_STEREO.wav_stereo_32000_32-16_DTX_MONO_FER5.tst - -// stereo at 32 kbps, 48kHz in, 48kHz out, bandwidth switching -../IVAS_cod -stereo -max_band testv/bwidth_cntl.txt 32000 48 testv/ltv48_STEREO.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_STEREO.wav_stereo_32000_48-48_bandwidth_sw.tst - -// stereo at 32 kbps, 48kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 32000 48 testv/ltv48_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv48_STEREO.wav_stereo_32000_48-32_FER5.tst - -// stereo at 32 kbps, 48kHz in, 48kHz out, DTX on, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -stereo -dtx 32000 48 testv/ltv48_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/ltv48_STEREO.wav_stereo_32000_48-48_DTX_FER5.tst - -// stereo at 32 kbps, 48kHz in, 48kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 48 testv/ltv48_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv48_STEREO.wav_stereo_32000_48-48_DTX_MONO_FER5.tst - -// stereo at 32 kbps, 48kHz in, 16kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 32000 48 testv/ltv48_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/ltv48_STEREO.wav_stereo_32000_48-16_DTX_MONO_FER5.tst - -// stereo at 48 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 48000 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_48000_16-16.tst - -// stereo at 64 kbps, 16kHz in, 16kHz out, random FER at 10% -../IVAS_cod -stereo 64000 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv16_STEREO.wav_stereo_64000_16-16_FER10.tst - -// stereo at 96 kbps, 16kHz in, 16kHz out -../IVAS_cod -stereo 96000 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_96000_16-16.tst - -// stereo at 128 kbps, 16kHz in, 16kHz out, random FER at 10% -../IVAS_cod -stereo 128000 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec STEREO 16 bit_error testv/ltv16_STEREO.wav_stereo_128000_16-16_FER10.tst - -// stereo at 48 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 48000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv32_STEREO.wav_stereo_48000_32-32_FER5.tst - -// stereo at 64 kbps, 32kHz in, 32kHz out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -stereo 64000 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_64000_32-32.tst - -// stereo at 96 kbps, 32kHz in, 32kHz out, random FER at 5% -../IVAS_cod -stereo 96000 32 testv/ltv32_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv32_STEREO.wav_stereo_96000_32-32_FER5.tst - -// stereo at 128 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo 128000 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_128000_32-32.tst - -// stereo at 48 kbps, 32kHz in, 32kHz out, MONO out -../IVAS_cod -stereo 48000 32 testv/ltv32_STEREO.wav bit -../IVAS_dec MONO 32 bit testv/ltv32_STEREO.wav_stereo_48000_32-32_MONO.tst -// stereo at 13.2 kbps, 48kHz in, 48kHz out -../IVAS_cod -stereo 13200 48 testv/ltv48_STEREO.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_STEREO.wav_stereo_13200_48-48.tst - -// stereo at 128 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -stereo 128000 48 testv/ltv48_STEREO.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_STEREO.wav_stereo_128000_48-48_MONO.tst - -// stereo at 48 kbps, 48 kHz in, 48 kHz out, DTX on, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -stereo -dtx 48000 48 testv/ltv48_STEREO.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_STEREO.wav_stereo_48000_48-48_DTX.tst - -// stereo at 48 kbps, 32 kHz in, 32 kHz out, DTX on -../IVAS_cod -stereo -dtx 48000 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_48000_32-32_DTX.tst - -// stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on -../IVAS_cod -stereo -dtx 48000 16 testv/ltv16_STEREO.wav bit -../IVAS_dec STEREO 16 bit testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX.tst - -// stereo at 48 kbps, 48 kHz in, 48 kHz out, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 48000 48 testv/ltv48_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv48_STEREO.wav_stereo_48000_48-48_DTX_MONO_FER5.tst - -// stereo at 48 kbps, 48 kHz in, 48 kHz out, DTX on, FER with burst error before SID -../IVAS_cod -stereo -dtx 48000 48 testv/ltv48_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct_burst.g192 bit_error -../IVAS_dec stereo 48 bit_error testv/ltv48_STEREO.wav_stereo_48000_48-48_DTX_stereo_FER5_burst.tst - -// stereo at 48 kbps, 32 kHz in, 32 kHz out, DTX on, MONO out -../IVAS_cod -stereo -dtx 48000 32 testv/ltv32_STEREO.wav bit -../IVAS_dec MONO 32 bit testv/ltv32_STEREO.wav_stereo_48000_32-32_DTX_MONO.tst - -// stereo at 48 kbps, 16 kHz in, 16 kHz, DTX on, MONO out, random FER at 5% -../IVAS_cod -stereo -dtx 48000 16 testv/ltv16_STEREO.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 16 bit_error testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX_MONO_FER5.tst - -// stereo bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/ltv32_STEREO.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_STEREO.wav_stereo_sw_32-32.tst - -// stereo bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, MONO out -//../IVAS_cod -dtx -stereo ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_STEREO.wav bit -//../IVAS_dec MONO 48 bit testv/ltv48_STEREO.wav_stereo_sw_48-48_DTX_MONO.tst - -// stereo bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, EXT out -//../IVAS_cod -dtx -stereo ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_STEREO.wav bit -//../IVAS_dec EXT 48 bit testv/ltv48_STEREO.wav_stereo_sw_48-48_DTX_EXT.tst - - -// 1 ISM with metadata at 13.2 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 1 testv/ltvISM1.csv 13200 48 testv/ltv48_1ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_1ISM.wav_13200_48-48_EXT.tst - -// 1 ISM with metadata at 13.2 kbps, 48 kHz in, 48 kHz out, MONO out -../IVAS_cod -ism 1 testv/ltvISM1.csv 13200 48 testv/ltv48_1ISM.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_1ISM.wav_13200_48-48_MONO.tst - -// 1 ISM with metadata at 13.2 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -dtx -ism 1 testv/ltvISM1.csv 13200 48 testv/ltv48_1ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/ltv48_1ISM.wav_1ISM_13200_48-48_DTX_FER5_BINAURAL.tst - -// 1 ISM with metadata at 16.4 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism 1 testv/ltvISM1.csv 16400 48 testv/ltv48_1ISM.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_1ISM.wav_16400_48-48_binaural_room.tst - -// 1 ISM with metadata at 32 kbps, 32 kHz in, 32 kHz out, DTX on, MONO out -../IVAS_cod -dtx -ism 1 testv/ltvISM1.csv 32000 32 testv/ltv32_1ISM.wav bit -../IVAS_dec MONO 32 bit testv/ltv32_1ISM.wav_1ISM_32000_32-32_DTX_MONO.tst - -// 1 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, HR, random FER at 5% -../IVAS_cod -ism 1 testv/ltvISM1.csv 48000 48 testv/ltv48_1ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 48 bit_error testv/ltv48_1ISM.wav_64000_48-48_binaural_room_HR.tst - -// 1 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, random FER at 5% -../IVAS_cod -ism 1 testv/ltvISM1.csv 48000 48 testv/ltv48_1ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL 48 bit_error testv/ltv48_1ISM.wav_64000_48-48_binaural_HR.tst - -// 1 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, HR, exo, random FER at 5% -../IVAS_cod -ism 1 testv/ltvISM1.csv 48000 48 testv/ltv48_1ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit_error testv/ltv48_1ISM.wav_64000_48-48_binaural_room_HR_EXOF.tst - -// 1 ISM with metadata at 80 kbps, 48 kHz in, 16 kHz out, BINAURAL out (Model from file), HR, random FER at 5% -../IVAS_cod -ism 1 testv/ltvISM1.csv 80000 48 testv/ltv48_1ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit_error testv/ltv48_1ISM.wav_80000_48-16_binaural_file_TDHR_FER5.tst - -// 1 ISM with metadata at 80 kbps, 48 kHz in, 16 kHz out, BINAURAL out (Model from file), HR, exo, random FER at 5% -../IVAS_cod -ism 1 testv/ltvISM1.csv 80000 48 testv/ltv48_1ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit_error testv/ltv48_1ISM.wav_80000_48-16_binaural_file_TDHR_EXOF_FER5.tst - -// 1 ISM with metadata at 96 kbps, 48 kHz in, 16 kHz out, EXT out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -ism 1 testv/ltvISM1.csv 96000 48 testv/ltv48_1ISM.wav bit -../IVAS_dec EXT 16 bit testv/ltv48_1ISM.wav_96000_48-16_EXT.tst - -// 1 ISM with metadata bitrate switching from 13.2 kbps to 128 kbps, 32 kHz in, 32 kHz out, EXT out, DTX on -../IVAS_cod -dtx -ism 1 testv/ltvISM1.csv ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/ltv32_1ISM.wav bit -../IVAS_dec EXT 32 bit testv/ltv32_1ISM.wav_1ISM_brate_sw_32-32_EXT_dtx.tst - - -// 2 ISM with metadata at 16.4 kbps, 48 kHz in, 48 kHz out, STEREO out -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 16400 48 testv/ltv48_2ISM.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_2ISM.wav_16400_48-48_STEREO.tst - -// 2 ISM with metadata at 16.4 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 16400 48 testv/ltv48_2ISM.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_2ISM.wav_16400_48-48_binaural.tst - -// 2 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, DTX on, HOA2 out -../IVAS_cod -dtx -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 32000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec HOA2 48 bit testv/ltv48_2ISM.wav_2ISM_32000_48-48_DTX_HOA2.tst - -// 2 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, DTX on, EXTERNAL out -../IVAS_cod -dtx -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 32000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_2ISM.wav_2ISM_32000_48-48_DTX_external.tst - -// 2 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, EXT out, random FER at 5% -../IVAS_cod -ism 2 testv/ltvISM3.csv testv/ltvISM4.csv 48000 48 testv/ltv48_2ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/ltv48_2ISM.wav_48000_48-48_EXT_FER5.tst - -// 2 ISM with metadata at 64 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism 2 testv/ltvISM3.csv testv/ltvISM4.csv 64000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_2ISM.wav_64000_48-48_binaural_room.tst - -// 2 ISM with metadata at 64 kbps, 48 kHz in, 32 kHz out, 5_1 out -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 64000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec 5_1 32 bit testv/ltv48_2ISM.wav_64000_48-32_5_1.tst - -// 2 ISM with metadata at 64 kbps, 48 kHz in, 32 kHz out, EXT out -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 64000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec EXT 32 bit testv/ltv48_2ISM.wav_64000_48-32_EXT.tst - -// 2 ISM with metadata at 80 kbps, 48 kHz in, 48 kHz out, DTX on, stereo out -../IVAS_cod -dtx -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 80000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_2ISM.wav_2ISM_80000_48-48_DTX_STEREO.tst - -// 2 ISM with metadata at 128 kbps, 48 kHz in, 32 kHz out, BINAURAL out (Model from file), HR -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 128000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec -t testv/headrot_case01_3000_q.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL 32 bit testv/ltv48_2ISM.wav_128000_48-32_binaural_file_TDHR.tst - -// 2 ISM with metadata at 128 kbps, 48 kHz in, 32 kHz out, BINAURAL out (Model from file), HR, exo -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 128000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec -t testv/headrot_case01_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL 32 bit testv/ltv48_2ISM.wav_128000_48-32_binaural_file_TDHR_EXOF.tst - -// 2 ISM with metadata at 160 kbps, 48 kHz in, 32 kHz out, BINAURAL out -../IVAS_cod -ism 2 testv/ltvISM1.csv testv/ltvISM2.csv 160000 48 testv/ltv48_2ISM.wav bit -../IVAS_dec BINAURAL 32 bit testv/ltv48_2ISM.wav_160000_48-32_binaural.tst - - -// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, 7_1 out -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 24400 48 testv/ltv48_3ISM.wav bit -../IVAS_dec 7_1 48 bit testv/ltv48_3ISM.wav_24400_48-48_7_1.tst - -// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, MONO out, random FER at 5% -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 24400 48 testv/ltv48_3ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv48_3ISM.wav_24400_48-48_MONO_FER5.tst - -// 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 24400 48 testv/ltv48_3ISM.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_3ISM.wav_24400_48-48_binaural.tst - -// 3 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 48000 48 testv/ltv48_3ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_3ISM.48000_48-48_MONO.tst - -// 3 ISM with metadata at 64 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 64000 48 testv/ltv48_3ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_3ISM.64000_48-48_EXT.tst - -// 3 ISM with metadata at 96 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 96000 48 testv/ltv48_3ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_3ISM.96000_48-48_EXT.tst - -// 3 ISM with metadata at 128 kbps, 48 kHz in, 32 kHz out, HOA3 out, random FER at 5% -../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 128000 48 testv/ltv48_3ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA3 32 bit_error testv/ltv48_3ISM.wav_128000_48-32_HOA3_FER5.tst - -// 3 ISM with metadata at 192 kbps, 48 kHz in, 48 kHz out, BINAURAL out (Model from file) -../IVAS_cod -ism 3 testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 192000 48 testv/ltv48_3ISM.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/ltv48_3ISM.wav_192000_48-48_binauralfile.tst - -// 3 ISM with metadata at 192 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, random FER at 5% -../IVAS_cod -ism 3 testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 192000 48 testv/ltv48_3ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -t testv/headrot_case02_3000_q.csv BINAURAL 48 bit_error testv/ltv48_3ISM.wav_192000_48-48_binaural_file_TDHR_FER5.tst - -// 3 ISM with metadata at 384 kbps, 48 kHz in, 32 kHz out, 7_1_4 out -../IVAS_cod -ism 3 testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 384000 48 testv/ltv48_3ISM.wav bit -../IVAS_dec 7_1_4 32 bit testv/ltv48_3ISM.wav_384000_48-32_7_1_4.tst - - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_4ISM.wav_32000_48-48_FOA.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, STEREO out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_4ISM.wav_32000_48-48_STEREO.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_4ISM.wav_32000_48-48_binaural.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_4ISM.wav_32000_48-48_DTX_BINAURAL.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, exo -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -t testv/headrot_case03_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_4ISM.wav_32000_48-48_binaural_file_TDHR_EXOF.tst - -// 4 ISM with metadata at 32 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out, random FER at 5% -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_IR 48 bit_error testv/ltv48_4ISM.wav_32000_48-48_binaural_room_FER5.tst - -// 4 ISM with metadata at 48 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL ROOM IR out, random FER at 5% -../IVAS_cod -dtx -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 48000 48 testv/ltv48_4ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_IR 48 bit_error testv/ltv48_4ISM.wav_48000_48-48_DTX_TD_binaural_room_FER5.tst - -// 4 ISM with metadata at 64 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 64000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_4ISM.wav_64000_48-48_binaural_room.tst - -// 4 ISM with metadata at 80 kbps, 48 kHz in, 48 kHz out, HOA2 out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 80000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec HOA2 48 bit testv/ltv48_4ISM.wav_80000_48-48_HOA2.tst - -// 4 ISM with metadata at 96 kbps, 48 kHz in, 48 kHz out, Custom LS setup out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 96000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec testv/ls_setup_16ch_8+4+4.txt 48 bit testv/ltv48_4ISM.wav_96000_48-48_MC_custom_setup.tst - -// 4 ISM with metadata at 96 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 96000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_4ISM.wav_96000_48-48_EXT.tst - -// 4 ISM with metadata at 128 kbps, 48 kHz in, 48 kHz out, EXT out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 128000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_4ISM.wav_128000_48-48_EXT.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_4ISM.wav_256000_48-48_EXT.tst - -// 4 ISM with metadata at 160 kbps, 48 kHz in, 48 kHz out, STEREO out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 160000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_4ISM.wav_160000_48-48_STEREO.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_4ISM.wav_256000_48-48_binaural.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -t testv/headrot_case03_3000_q.csv BINAURAL 48 bit testv/ltv48_4ISM.wav_256000_48-48_binaural_file_TDHR.tst - -// 4 ISM with metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, exo -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -t testv/headrot_case03_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_4ISM.wav_256000_48-48_binaural_file_TDHR_EXOF.tst - -// 4 ISM with metadata at 512 kbps, 48 kHz in, 48 kHz out, 5_1 -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 512000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_4ISM.wav_512000_48-48_5_1.tst - -// 4 ISm with metadata at 256 kbps, 48 kHz in, 48 kHz out, TD BINAURAL out, HR, OT -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL 48 bit testv/ltv48_4ISM.wav_256000_48-48_TDHR_OtrAvg.tst - -// 4 ISm with metadata at 256 kbps, 48 kHz in, 48 kHz out, TD BINAURAL out, HR, exo, OT -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL 48 bit testv/ltv48_4ISM.wav_256000_48-48_TDHR_EXOF_OtrAvg.tst - -// 4 ISM with metadata bitrate switching from 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, EXT out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_4ISM.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_4ISM.wav_brate_sw_48-48_EXT.tst - -// 4 ISM with and without metadata bitrate switching from 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, DTX on, HOA3 out -../IVAS_cod -dtx -ism 4 testv/ltvISM1.csv NULL NULL testv/ltvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_4ISM.wav bit -../IVAS_dec HOA3 48 bit testv/ltv48_4ISM.wav_brate_sw_48-48_DTX_hoa3.tst - -// 4 ISM w and wo md br switching 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL_ROOM_IR out (Model from file) -../IVAS_cod -dtx -ism 4 testv/ltvISM1.csv NULL NULL testv/ltvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL_ROOM_IR 48 bit testv/ltv48_4ISM.wav_brate_sw_48-48_DTX_hoa3.tst - -// 4 ISM with extended metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, directivity configuration, random FER at 5% -../IVAS_cod -ism +4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -render_config testv/config_directivity_txt.cfg -t testv/headrot_case04_3000_q.csv BINAURAL 48 bit_error testv/stv+4ISM48s.wav_256000_48-48_binaural_file_TDHR_DirConfig_FER5.tst - -// 4 ISM with extended metadata at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out, HR, exo, directivity configuration, random FER at 5% -../IVAS_cod -ism +4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -render_config testv/config_directivity.cfg -t testv/headrot_case04_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit_error testv/stv+4ISM48s.wav_256000_48-48_binaural_file_TDHR_EXOF_DirConfig_FER5.tst - -// 4 ISM with and without extended metadata bitrate switching from 24.4 kbps to 256 kbps, 48 kHz in, 48 kHz out, DTX on, EXT out -../IVAS_cod -dtx -ism +4 testv/ltvISM1.csv NULL testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_4ISM.wav bit -../IVAS_dec EXT 48 bit testv/stv+4ISM48s.wav_brate_sw_48-48_DTX_EXT.tst - -// 4 ISM with extended metadata and non diegetic pan object switching bitrate 256 kbps, 48 kHz in, 48 kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -ism +4 testv/ltvISM1.csv NULL testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_4ISM_non_diegetic_pan.wav_brate_256000-48_DTX_binaural.tst - -// 4 ISM with extended metadata at 128 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out, rendconf dir w id -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 128000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -dpid 0 0 0 0 BINAURAL_ROOM_REVERB 48 bit testv/ltv48_4ISM+combined_render_config_brate_128000-48-binaural_room_reverb.wav - -// 4 ISM with extended metadata at 128 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 128000 48 testv/ltv48_4ISM.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_4ISM.wav_BINAURAL_ROOM_REVERB_128000-48-48.tst - - -// SBA at 13.2 kbps, 32kHz in, 32kHz out, HOA3 out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -sba 3 13200 32 testv/ltv32_HOA3.wav bit -../IVAS_dec HOA3 32 bit testv/ltv32_HOA3.wav_SBA_13200_32-32_HOA3.tst - -// SBA at 13.2 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 3 13200 32 testv/ltv32_HOA3.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_HOA3.wav_SBA_13200_32-32_stereo.tst - -// SBA at 16.4 kbps, 32kHz in, 32kHz out, 7_1_4 out -../IVAS_cod -sba 3 16400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec 7_1_4 32 bit testv/ltv32_HOA3.wav_SBA_16400_32-32_7_1_4.tst - -// SBA at 16.4 kbps, 32kHz in, 32kHz out, BINAURAL out -../IVAS_cod -sba 3 16400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_16400_32-32_Binaural.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_stereo.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_Binaural.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/ltv32_HOA3.wav_SBA_24400_32-32_Binaural_Subframe_FER5.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_Binaural_Headrot.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, exo -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_Binaural_Headrot_EXOF.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, OT -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_Binaural_Headrot_OtrAvg.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, exo, OT -../IVAS_cod -sba 3 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_Binaural_Headrot_EXOF_OtrAvg.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 -dtx 24400 32 testv/ltv32_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_FER5.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR -../IVAS_cod -sba 3 -dtx 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_Headrot.tst - -// SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR, exo -../IVAS_cod -sba 3 -dtx 24400 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_Headrot_EXOF.tst - -// SBA at 32 kbps, 32kHz in, 32kHz out, FOA out -../IVAS_cod -sba 1 32000 32 testv/ltv32_FOA.wav bit -../IVAS_dec FOA 32 bit testv/ltv32_FOA.wav_SBA_32000_32-32_FOA.tst - -// SBA at 32 kbps, 32kHz in, 32kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -sba 1 32000 32 testv/ltv32_FOA.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/ltv32_FOA.wav_SBA_32000_32-32_BINAURAL_FER5.tst - -// SBA at 32 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM out -../IVAS_cod -sba 1 32000 32 testv/ltv32_FOA.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/ltv32_FOA.wav_SBA_32000_32-32_BINAURAL_ROOM.tst - -// SBA at 32 kbps, 48kHz in, 48kHz out, MONO out, DTX, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -dtx -sba 1 32000 48 testv/ltv48_FOA.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_FOA.wav_SBA_32000_48-48_DTX_MONO.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, MONO out, random FER at 5% -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 32 bit_error testv/ltv32_HOA3.wav_SBA_48000_32-32_MONO_FER5.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_stereo.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_BinauralRoom.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_BinauralRoom_Subframe.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_BinauralRoom_Headrot.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_BinauralRoom_Headrot_EXOF.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_OtrAvg.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_EXOF_OtrAvg.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-4s.csv -rvf ../scripts/trajectories/full-circle-4s-Vector3.csv -otr ref_vec BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_OtrRefPos.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking, exo -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-4s.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -rvf ../scripts/trajectories/full-circle-4s-Vector3.csv -otr ref_vec BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_EXOF_OtrRefPos.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking in level mode -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-with-up-and-down-4s.csv -rvf ../scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv -otr ref_vec_lev BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_OtrRefPosLev.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, reference vector tracking in level mode, exo -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t ../scripts/trajectories/full-circle-with-up-and-down-4s.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -rvf ../scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv -otr ref_vec_lev BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_48000_32-32_BinauralRoom_Headrot_EXOF_OtrRefPosLev.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 -dtx 48000 32 testv/ltv32_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/ltv32_HOA3.wav_SBA_48000_32-32_DTX_Binaural_FER5.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR -../IVAS_cod -sba 3 -dtx 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_DTX_Binaural_Headrot.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, DTX on, HR, exo -../IVAS_cod -sba 3 -dtx 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_48000_32-32_DTX_Binaural_Headrot_EXOF.tst - -// SBA at 48 kbps, 48kHz in, 48kHz out, 5_1_2 out -../IVAS_cod -sba 3 48000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec 5_1_2 48 bit testv/ltv48_HOA3.wav_SBA_48000_48-48_5_1_2.tst - -// SBA at 64 kbps, 32kHz in, 32kHz out, FOA out, DTX, random FER at 5% -../IVAS_cod -dtx -sba 1 64000 32 testv/ltv32_FOA.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec FOA 32 bit_error testv/ltv32_FOA.wav_SBA_64000_32-32_DTX_FOA.tst - -// SBA at 64 kbps, 48kHz in, 48kHz out, 5_1_4 out -../IVAS_cod -sba 1 64000 48 testv/ltv48_FOA.wav bit -../IVAS_dec 5_1_4 48 bit testv/ltv48_FOA.wav_SBA_64000_48-48_5_1_4.tst - -// SBA at 64 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -sba 1 64000 48 testv/ltv48_FOA.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_FOA.wav_SBA_64000_48-48_7_1_4.tst - -// SBA at 64 kpbs, 48kHz in, 48kHz out, BINAURAL out, DTX -../IVAS_cod -dtx -sba 1 64000 48 testv/ltv48_FOA.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_FOA.wav_SBA_64000_48-48_DTX_BINAURAL.tst - -// SBA at 64 kpbs, 48kHz in, 48kHz out, BINAURAL_ROOM out, DTX -../IVAS_cod -dtx -sba 1 64000 48 testv/ltv48_FOA.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_FOA.wav_SBA_64000_48-48_DTX_BINAURAL_ROOM.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out -../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec HOA3 32 bit testv/ltv32_HOA3.wav_SBA_80000_32-32_HOA3.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 32 bit_error testv/ltv32_HOA3.wav_SBA_80000_32-32_Binaural_FER5.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, BINAURAL out, HR -../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_80000_32-32_Binaural_Headrot.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, BINAURAL out, HR, exo -../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 32 bit testv/ltv32_HOA3.wav_SBA_80000_32-32_Binaural_Headrot_EXOF.tst - -// SBA at 96 kbps, 32kHz in, 32kHz out, STEREO out -../IVAS_cod -sba 1 96000 32 testv/ltv32_FOA.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_FOA.wav_SBA_96000_32-32_STEREO.tst - -// SBA at 96 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 1 96000 48 testv/ltv48_FOA.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_FOA.wav_SBA_96000_48-48_FOA.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -sba 3 128000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 32 bit testv/ltv32_HOA3.wav_SBA_128000_32-32_Binaural_room_Headrot.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -sba 3 128000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 32 bit testv/ltv32_HOA3.wav_SBA_128000_32-32_Binaural_room_Headrot_EXOF.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -sba 3 128000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_Binaural_room_Headrot_OtrAvg.tst - -// SBA at 128 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -sba 3 128000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_Binaural_room_Headrot_EXOF_OtrAvg.tst - -// SBA at 192 kbps, 48kHz in, 48kHz out, HOA2 out, random FER at 5% -../IVAS_cod -sba 3 192000 48 testv/ltv48_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA2 48 bit_error testv/ltv48_HOA3.wav_SBA_192000_48-48_HOA2_FER5.tst - -// SBA at 48 kbps, 48kHz in, 48kHz out, DTX on, 5_1 out -../IVAS_cod -sba 3 -dtx 48000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_HOA3.wav_SBA_48000_48-48_DTX_5_1.tst - -// SBA at 160 kbps, 32kHz in, 32kHz out, FOA out -../IVAS_cod -sba 1 160000 32 testv/ltv32_FOA.wav bit -../IVAS_dec FOA 32 bit testv/ltv32_FOA.wav_SBA_160000_32-32_FOA.tst - -// SBA at 160 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out, random FER at 5% -../IVAS_cod -sba 1 160000 48 testv/ltv48_FOA.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_IR 48 bit_error testv/ltv48_FOA.wav_SBA_160000_48-48_BINAURAL_ROOM_FER5.tst - -// SBA at 160 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -sba 1 160000 48 testv/ltv48_FOA.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_FOA.wav_SBA_160000_48-48_5_1.tst - -// SBA at 192 kbps, 48kHz in, 48kHz out, Custom LS setup out -../IVAS_cod -sba 1 192000 48 testv/ltv48_FOA.wav bit -../IVAS_dec testv/ls_setup_16ch_8+4+4.txt 48 bit testv/ltv48_FOA.wav_SBA_192000_48-48_MC_custom_setup.tst - -// SBA at 256 kbps, 32kHz in, 32kHz out, FOA out -../IVAS_cod -sba 1 256000 32 testv/ltv32_FOA.wav bit -../IVAS_dec FOA 32 bit testv/ltv32_FOA.wav_SBA_256000_32-32_FOA.tst - -// SBA at 256 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM out -../IVAS_cod -sba 1 256000 32 testv/ltv32_FOA.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/ltv32_FOA.wav_SBA_256000_32-32_BINAURAL_ROOM.tst - -// SBA at 256 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -sba 1 256000 32 testv/ltv32_FOA.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 32 bit testv/ltv32_FOA.wav_SBA_256000_32-32_BinauralRoom_Headrot_EXOF.tst - -// SBA at 256 kbps, 48kHz in, 48kHz out, 7_1 out, random FER at 5% -../IVAS_cod -sba 1 256000 48 testv/ltv48_FOA.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1 48 bit_error testv/ltv48_FOA.wav_SBA_256000_48-48_7_1_FER5.tst - -// SBA 2OA at 384 kbps, 32kHz in, 32kHz out, STEREO out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -sba 2 384000 32 testv/ltv32_HOA2.wav bit -../IVAS_dec STEREO 32 bit testv/ltv32_HOA2.wav_SBA_384000_32-32_stereo.tst - -// SBA 3OA at 512 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -sba 3 512000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_HOA3.wav_SBA_512000_48-48_binaural.tst - -// SBA 3OA at 512 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -sba 3 512000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_HOA3.wav_SBA_512000_48-48_Binaural_Headrot_EXOF.tst - -// SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -sba 1 ../scripts/switchPaths/sw_13k2_192k_50fr.bin 48 testv/ltv48_FOA.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_FOA.wav_sw_48-48_BINAURAL.tst - -// SBA 2OA bitrate switching from 16.4 kbps to 512 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 2 ../scripts/switchPaths/sw_16k4_512k_50fr.bin 48 testv/ltv48_HOA2.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_HOA2.wav_sw_48-48_FOA.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, HOA3 out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_HOA3.wav bit -../IVAS_dec HOA3 48 bit testv/ltv48_HOA3.wav_sw_48-48_HOA3.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_HOA3.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_HOA3.wav_sw_48-48_MONO.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_HOA3.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_HOA3.wav_sw_48-48_STEREO.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_HOA3.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/ltv48_HOA3.wav_sw_48-48_BINAURAL.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_HOA3.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_HOA3.wav_sw_48-48_FOA.tst - -// SBA planar 3OA bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -sba -3 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_HOA3.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_HOA3.wav_sw_48-48_7_1_4.tst - -// SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -sba 1 ../scripts/switchPaths/sw_13k2_192k_50fr.bin 32 testv/ltv32_FOA.wav bit -../IVAS_dec BINAURAL 32 bit testv/ltv32_FOA.wav_sw_32-32_DTX_BINAURAL.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out, DTX on, HOA3 out -../IVAS_cod -dtx -sba 3 ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/ltv32_HOA3.wav bit -../IVAS_dec HOA3 32 bit testv/ltv32_HOA3.wav_sw_32-32_DTX_HOA3.tst - -// SBA FOA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -sba 1 -max_band fb ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_FOA.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_FOA.wav_sw_48-48_FOA.tst - -// SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, HR -../IVAS_cod -sba 3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_REVERB 32 bit testv/ltv32_HOA3.pcm_SBA_48000_32-32_BinauralRoomReverb_Headrot.tst - -// Planar SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, Config renderer, HR -../IVAS_cod -sba -2 48000 32 testv/ltv32_HOA2.wav bit -../IVAS_dec -t testv/headrot.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/ltv32_HOA2.pcm_planarSBA_48000_32-32_BinauralRoomReverb_Config_renderer_Headrot.tst - -// SBA at 48 kbps, 32kHz in, 48kHz out, BINAURAL_ROOM_REVERB out (Model from file), HR -../IVAS_cod -sba 1 48000 32 testv/ltv32_FOA.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin -t testv/headrot.csv BINAURAL_ROOM_REVERB 48 bit testv/ltv32_FOA.pcm_SBA_48000_32-48_BinauralRoomReverb_Headrot_BinauralFile.tst - -// Planar SBA at 48 kbps, 32kHz in, 32kHz out, BINAURAL_ROOM_REVERB out (Model from file), Config renderer, HR -../IVAS_cod -sba -3 48000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin -t testv/headrot.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/ltv32_HOA3.pcm_planarSBA_48000_32-32_BinauralRoomReverb_Config_renderer_Headrot_BinauralFile.tst - -// SBA at 128 kbps, 32kHZ in, 32kHz out, BINAURAL_ROOM_REVERB out HR -../IVAS_cod -sba 3 128000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_REVERB 32 bit testv/ltv32_HOA3.pcm_SBA_128000_32-32_BinauralRoomReverb_Headrot.tst - -// SBA at 128 kbps, 32kHZ in, 32kHz out, BINAURAL_ROOM_REVERB out, Config renderer, HR -../IVAS_cod -sba 3 128000 32 testv/ltv32_HOA3.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/ltv32_HOA3.pcm_SBA_128000_32-32_BinauralRoomReverb_Config_renderer_Headrot.tst - -// SBA at 128 kbps, 32kHZ in, 16kHz out, BINAURAL_ROOM_REVERB out (Model from file), HR -../IVAS_cod -sba 2 128000 32 testv/ltv32_HOA2.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_REVERB 16 bit testv/ltv32_HOA2.pcm_SBA_128000_32-16_BinauralRoomReverb_Headrot_BinauralFile.tst - -// Planar SBA at 128 kbps, 48kHZ in, 32kHz out, BINAURAL_ROOM_REVERB out (Model from file), Config renderer, HR -../IVAS_cod -sba -1 128000 48 testv/ltv48_FOA.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin -t testv/headrot_case00_3000_q.csv -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 32 bit testv/ltv48_FOA.pcm_planarSBA_128000_48-32_BinauralRoomReverb_Config_renderer_Headrot_BinauralFile.tst - -// SBA 3OA at 128 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB rendconf sel acoustic env -../IVAS_cod -sba 3 128000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid 1 BINAURAL_ROOM_REVERB 48 bit testv/ltv48_HOA3.pcm_SBA_128000_48-48_BinauralRoomReverb_Config_renderer_combined_AEID_1.tst - -// SBA at 256 kbps, 48kHz in, 48kHz out, PCA, BINAURAL out -../IVAS_cod -pca -sba 1 256000 48 testv/ltv48_FOA.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_FOA.wav_SBA_PCA_256000_48-48_BINAURAL.tst - -// SBA FOA bitrate switching from 13.2 kbps to 192 kbps, 32kHz in, 32kHz out, DTX on, EXT out -../IVAS_cod -dtx -sba 1 ../scripts/switchPaths/sw_13k2_192k_50fr.bin 32 testv/ltv32_FOA.wav bit -../IVAS_dec EXT 32 bit testv/ltv32_FOA.wav_sw_32-32_DTX_EXT.tst - -// SBA planar 2OA bitrate switching from 13.2 kbps to 128 kbps, 32kHz in, 32kHz out, DTX on, EXT out -../IVAS_cod -dtx -sba -2 ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 32 testv/ltv32_HOA2.wav bit -../IVAS_dec EXT 32 bit testv/ltv32_HOA2.wav_sw_32-32_DTX_EXT.tst - -// SBA 3OA bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, DTX on, random FER at 5%, EXT out -../IVAS_cod -dtx -sba 3 ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/ltv48_HOA3.wav_sw_48-48_DTX_EXT_FER5.tst - -// SBA planar FOA bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 32kHz out, EXT out -../IVAS_cod -sba -1 ../scripts/switchPaths/sw_13k2_512k.bin 32 testv/ltv32_FOA.wav bit -../IVAS_dec EXT 32 bit testv/ltv32_FOA.wav_sw_32-32_DTX_EXT.tst - -// SBA 2OA bitrate switching from 13.2 kbps to 512 kbps, 32kHz in, 32kHz out, EXT out -../IVAS_cod -sba 2 ../scripts/switchPaths/sw_13k2_512k.bin 32 testv/ltv32_HOA2.wav bit -../IVAS_dec EXT 32 bit testv/ltv32_HOA2.wav_sw_32-32_DTX_EXT.tst - -// SBA planar 3OA bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, random FER at 5%, EXT out -../IVAS_cod -sba -3 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_HOA3.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/ltv48_HOA3.wav_sw_48-48_DTX_EXT_FER5.tst - -// SBA 3OA at 96 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -sba 3 512000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_HOA3.wav_BINAURAL_ROOM_REVERB_96000_48-48.tst - -// SBA 3OA 4ISM at 96 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -sba 3 96000 48 testv/ltv48_HOA3.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_HOA3.wav_BINAURAL_ROOM_REVERB_96000_48-48_custom_configuration.tst - -// MASA 1TC at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -masa 1 testv/ltv48_MASA1TC.met 13200 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MASA1TC.wav_13200_48-48_BINAURAL.tst - -// MASA 1TC at 16.4 kbps, 48kHz in, 48kHz out, HOA3 out, random FER at 5% -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 16400 48 testv/ltv48_MASA1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA3 48 bit_error testv/ltv48_MASA1TC.wav_16400_48-48_HOA3_FER5.tst - -// MASA 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 24400 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA1TC.wav_24400_48-48_BinauralRoom.tst - -// MASA 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 24400 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA1TC.wav_24400_48-48_BinauralRoom_Subframe.tst - -// MASA 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 24400 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA1TC.wav_24400_48-48_BinauralRoom_Headrot.tst - -// MASA 1TC at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 24400 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA1TC.wav_24400_48-48_BinauralRoom_Headrot_EXOF.tst - -// MASA 1TC at 32 kbps, 48kHz in, 48kHz out, 7_1_4, random FER at 5% -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 32000 48 testv/ltv48_MASA1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1_4 48 bit_error testv/ltv48_MASA1TC.wav_32000_48-48_7_1_4_FER5.tst - -// MASA 1TC at 48 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 48000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MASA1TC.wav_48000_48-48_MONO.tst - -// MASA 1TC at 64 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 64000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_MASA1TC.wav_64000_48-48_STEREO.tst - -// MASA 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 128000 48 testv/ltv48_MASA1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/ltv48_MASA1TC.wav_128000_48-48_BINAURAL_FER5.tst - -// MASA 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 128000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MASA1TC.wav_128000_48-48_BINAURAL_Subframe.tst - -// MASA 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 128000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltv48_MASA1TC.wav_128000_48-48_BINAURAL_Headrot.tst - -// MASA 1TC at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 128000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_MASA1TC.wav_128000_48-48_BINAURAL_Headrot_EXOF.tst - -// MASA 2TC at 13.2 kbps, 48kHz in, 48kHz out, 5_1 out, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -masa 2 testv/ltv48_MASA2TC.met 13200 48 testv/ltv48_MASA2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/ltv48_MASA2TC.wav_13200_48-48_5_1_FER5.tst - -// MASA 2TC at 16.4 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 16400 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MASA2TC.wav_16400_48-48_5_1.tst - -// MASA 2TC at 24.4 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 24400 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_MASA2TC.wav_24400_48-48_STEREO.tst - -// MASA 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA2TC.wav_32000_48-48_BinauralRoom.tst - -// MASA 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA2TC.wav_32000_48-48_BinauralRoom_Headrot.tst - -// MASA 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA2TC.wav_32000_48-48_BinauralRoom_Headrot_EXOF.tst - -// MASA 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv_IVASMASA_1dir2TC.pcm_32000_48-48_BinauralRoom_Headrot_OtrAvg.tst - -// MASA 2TC at 32 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv_IVASMASA_1dir2TC.pcm_32000_48-48_BinauralRoom_Headrot_EXOF_OtrAvg.tst - -// MASA 2TC at 48 kbps, 48kHz in, 48kHz out, 7_1_4 out, random FER at 5% -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 48000 48 testv/ltv48_MASA2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1_4 48 bit_error testv/ltv48_MASA2TC.wav_48000_48-48_7_1_4_FER5.tst - -// MASA 2TC at 80 kbps, 32kHz in, 16kHz out, STEREO out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 80000 32 testv/ltv32_MASA2TC.wav bit -../IVAS_dec STEREO 16 bit testv/ltv32_MASA2TC.wav_80000_32-16_STEREO.tst - -// MASA 2TC at 96 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 96000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MASA2TC.wav_96000_48-48_MONO.tst - -// MASA 2TC at 160 kbps, 48kHz in, 48kHz out, HOA3 out, random FER at 5% -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 160000 48 testv/ltv48_MASA2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec HOA3 48 bit_error testv/ltv48_MASA2TC.wav_160000_48-48_HOA3_FER5.tst - -// MASA 2TC at 256 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 256000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MASA2TC.wav_256000_48-48_5_1.tst - -// MASA 2TC at 48 kbps, 48kHz in, 48kHz out, 5_1 out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -masa 2 testv/ltv48_MASA2TC.met 48000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MASA2TC.wav_48000_48-48_5_1.tst - -// MASA 2TC at 64 kbps, 48kHz in, 48kHz out, EXTERNAL out, random FER at 5% -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 64000 48 testv/ltv48_MASA2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec EXT 48 bit_error testv/ltv48_MASA2TC.wav_64000_48-48_external_FER5.tst - -// MASA 2TC at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 64000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltv48_MASA2TC.wav_64000_48-48_BINAURAL_Headrot.tst - -// MASA 2TC at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 64000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_MASA2TC.wav_64000_48-48_BINAURAL_Headrot_EXOF.tst - -// MASA 2TC at 128 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 128000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_MASA2TC.wav_128000_48-48_FOA.tst - -// MASA 2TC at 192 kbps, 48kHz in, 48kHz out, 5_1_4 out, random FER at 5% -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 192000 48 testv/ltv48_MASA2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1_4 48 bit_error testv/ltv48_MASA2TC.wav_192000_48-48_5_1_4_FER5.tst - -// MASA 2dir 2TC at 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 384000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA2TC.wav_384000_48-48_BinauralRoom.tst - -// MASA 2dir 2TC at 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM IR out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -masa 2 testv/stv2MASA2TC48c.met 384000 48 testv/stv2MASA2TC48c.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/stv2MASA2TC48c.wav_384000_48-48_BinauralRoom_Subframe.tst - -// MASA 2TC at 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 384000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA2TC.wav_384000_48-48_BinauralRoom_Subframe.tst - -// MASA 2TC at 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM IR out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -masa 2 testv/ltv48_MASA2TC.met 384000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MASA2TC.wav_384000_48-48_BinauralRoom.tst - -// MASA 2TC at 512 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 512000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MASA2TC.wav_512000_48-48_5_1.tst - -// MASA 1TC at 13.2 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 13200 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA1TC.wav_13200_48-48_EXT.tst - -// MASA 2TC at 16.4 kbps, 16kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 16400 16 testv/ltv16_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv16_MASA2TC.wav_16400_16-48_EXT.tst - -// MASA 1TC at 24.4 kbps, 48kHz in, 32kHz out, EXT out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 24400 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec EXT 32 bit testv/ltv48_MASA1TC.wav_24400_48-32_EXT.tst - -// MASA 2TC at 32 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_32000_48-48_EXT.tst - -// MASA 1TC at 48 kbps, 32kHz in, 48kHz out, EXT out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 48000 32 testv/ltv32_MASA1TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv32_MASA1TC.wav_48000_32-48_EXT.tst - -// MASA 2TC at 64 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 64000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_64000_48-48_EXT.tst - -// MASA 1TC at 80 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 80000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA1TC.wav_80000_48-48_EXT.tst - -// MASA 2TC at 96 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 96000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_96000_48-48_EXT.tst - -// MASA 2TC at 128 kbps, 48kHz in, 48kHz out, DTX on, EXT out -../IVAS_cod -dtx -masa 2 testv/ltv48_MASA2TC.met 128000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_128000_48-48_DTX_EXT.tst - -// MASA 2TC at 160 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 160000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_160000_48-48_EXT.tst - -// MASA 2TC at 192 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 192000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_192000_48-48_EXT.tst - -// MASA 2TC at 256 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 256000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_256000_48-48_EXT.tst - -// MASA 2TC at 384 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 384000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_384000_48-48_EXT.tst - -// MASA 2TC at 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met 512000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MASA2TC.wav_512000_48-48_EXT.tst - -// MASA 1TC at 13.2 kbps, 48kHz in, 48kHz out, DTX on, 7_1_4 out -../IVAS_cod -dtx -masa 1 testv/ltv48_MASA1TC.met 13200 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_MASA1TC.wav_13200_48-48_DTX_7_1_4.tst - -// MASA 1TC at 24.4 kbps, 48kHz in, 48kHz out, DTX on, BINAURAL out -../IVAS_cod -dtx -masa 1 testv/ltv48_MASA1TC.met 24400 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MASA1TC.wav_24400_48-48_DTX_BINAURAL.tst - -// MASA 2TC at 16.4 kbps, 48kHz in, 48kHz out, DTX on, FOA out -../IVAS_cod -dtx -masa 2 testv/ltv48_MASA2TC.met 16400 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_MASA2TC.wav_16400_48-48_DTX_FOA.tst - -// MASA 2TC at 32.0 kbps, 48kHz in, 48kHz out, DTX on, 5_1 out -../IVAS_cod -dtx -masa 2 testv/ltv48_MASA2TC.met 32000 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MASA2TC.wav_32000_48-48_DTX_5_1.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MASA1TC.wav_sw_48-48_5_1.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_MASA1TC.wav_sw_48-48_STEREO.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MASA1TC.wav_sw_48-48_BINAURAL.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_MASA1TC.wav_sw_48-48_FOA.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/ltv48_MASA2TC.wav_sw_48-48_BINAURAL.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MASA2TC.wav_sw_48-48_MONO.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, 7_1 out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 7_1 48 bit testv/ltv48_MASA2TC.wav_sw_48-48_7_1.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MASA2TC.wav_sw_48-48_MONO.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, 7_1 out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec 7_1 48 bit testv/ltv48_MASA2TC.wav_sw_48-48_7_1.tst - -// MASA 1TC at 256kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 256000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MASA1TC.wav_BINAURAL_ROOM_REVERB_256000_48-48.tst - -// MASA 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 256000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MASA1TC.wav_BINAURAL_ROOM_REVERB_256000_48-48_custom_config.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MASA2TC.wav_sw_48-48_BINAURAL.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, DTX on, BINAURAL out, random FER at 5% -../IVAS_cod -dtx -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/ltv48_MASA2TC.wav_sw_48-48_DTX_BINAURAL_FER5.tst - - -// MASA 1TC at 256kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration, random FER at 5% -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 256000 48 testv/ltv48_MASA1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit_error testv/ltv48_MASA1TC.wav_256000_48-48_BINAURAL_ROOM_REVERB_FER5.tst - -// MASA 1TC at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, HR deafult configuration -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 256000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MASA1TC.wav_BINAURAL_ROOM_REVERB_256000_48-48_Headrot.tst - -// MASA 1dir 1TC at 256 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, HR custom configuration -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met 256000 48 testv/ltv48_MASA1TC.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -t testv/headrot.csv BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MASA1TC.wav_BINAURAL_ROOM_REVERB_256000_48-48_Headrot_custom_config.tst - - - -// Multi-channel 5_1 at 13.2 kbps, 48kHz in, 48kHz out -../IVAS_cod -mc 5_1 13200 48 testv/ltv48_MC51.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MC51.wav_MC51_13200_48-48_5_1.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL out, random FER at 5% -../IVAS_cod -mc 5_1 24400 48 testv/ltv48_MC51.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/ltv48_MC51.wav_MC51_24400_48-48_Binaural_FER5.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -mc 5_1 24400 48 testv/ltv48_MC51.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_24400_48-48_Binaural_bwsw.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, HR -../IVAS_cod -mc 5_1 24400 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MC51.wav_MC51_24400_48-48_BinauralRoom_Headrot.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -mc 5_1 24400 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_24400_48-48_Binaural_Headrot_EXOF.tst - -// Multi-channel 5_1 at 48 kbps, 48kHz in, 48kHz out, random FER at 5% -../IVAS_cod -mc 5_1 48000 48 testv/ltv48_MC51.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/ltv48_MC51.wav_MC51_48000_48-48_5_1_FER5.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -mc 5_1 64000 48 testv/ltv48_MC51.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_64000_48-48_Binaural.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -mc 5_1 64000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_64000_48-48_Binaural_Headrot.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -mc 5_1 64000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_64000_48-48_Binaural_Headrot_EXOF.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -mc 5_1 64000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MC51.wav_MC51_64000_48-48_Binaural_room_Headrot.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -mc 5_1 64000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MC51.wav_MC51_64000_48-48_Binaural_room_Headrot_EXOF.tst - -// Multi-channel 5_1 at 96 kbps, 48kHz in, 48kHz out, random FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_FB.txt -mc 5_1 96000 48 testv/ltv48_MC51.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/ltv48_MC51.wav_MC51_96000_48-48_5_1_FER5.tst - -// Multi-channel 5_1 at 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -mc 5_1 128000 48 testv/ltv48_MC51.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_128000_48-48_Binaural.tst - -// Multi-channel 5_1 at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -mc 5_1 128000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_128000_48-48_Binaural_Headrot.tst - -// Multi-channel 5_1 at 128 kbps, 48kHz in, 48kHz out, BINAURAL out, HR, exo -../IVAS_cod -mc 5_1 128000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_128000_48-48_Binaural_Headrot_EXOF.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, STEREO out, random FER at 5% -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/ltv48_MC51.wav_MC51_256000_48-48_stereo_FER5.tst - -// Multi-channel 5_1 at 192 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -mc 5_1 192000 48 testv/ltv48_MC51.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_MC51.wav_MC51_192000_48-48_BinauralRoom.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MC51.wav_MC51_256000_48-48_mono.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MC51.wav_MC51_256000_48-48_BinauralRoom_Headrot.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, exo -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot_case00_3000_q.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MC51.wav_MC51_256000_48-48_BinauralRoom_Headrot_EXOF.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.pcm_MC51_256000_48-48_BinauralRoom_Headrot_OtrAvg.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, BINAURAL ROOM IR out, HR, OT, exo -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 48 bit testv/stv51MC48c.pcm_MC51_256000_48-48_BinauralRoom_EXOF_OtrAvg.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out -../IVAS_cod -mc 5_1 384000 48 testv/ltv48_MC51.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MC51.wav_MC51_384000_48-48_5_1.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -mc 5_1 384000 48 testv/ltv48_MC51.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_384000_48-48_Binaural.tst - -// Multi-channel 5_1 at 192 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -mc 5_1 192000 48 testv/ltv48_MC51.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_MC51.wav_MC51_192000_48-48_stereo.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -mc 5_1 384000 48 testv/ltv48_MC51.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_MC51.wav_MC51_384000_48-48_7_1_4.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -mc 5_1 24400 48 testv/ltv48_MC51.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MC51.wav_MC51_24400_48-48_MONO.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 5_1 512000 48 testv/ltv48_MC51.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// Multi-channel 5_1_4 at 48 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, HR -../IVAS_cod -mc 5_1_4 48000 48 testv/ltv48_MC514.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL_ROOM_IR 48 bit testv/ltv48_MC514.wav_MC514_48000_48-48_BinauralRoom_Headrot.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 5_1_4 512000 48 testv/ltv48_MC514.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_5148.wav_MC514_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 7_1_4 160000 48 testv/ltv48_MC714.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC714.wav_BINAURAL_ROOM_REVERB_160000_48-48.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48 kHz out, BINAURAL_ROOM_REVERB out default configuration -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC714.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - - - -// Multi-channel 7_1_4 at 48 kbps, 48kHz in, 48kHz out, MONO out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -mc 7_1_4 48000 48 testv/ltv48_MC714.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_MC714.wav_MC714_48000_48-48_Mono_bwsw.tst - -// Multi-channel 7_1_4 at 64 kbps, 48kHz in, 48kHz out, MONO out, random FER at 5% -../IVAS_cod -mc 7_1_4 64000 48 testv/ltv48_MC714.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec MONO 48 bit_error testv/ltv48_MC714.wav_MC714_64000_48-48_MONO_FER5.tst - -// Multi-channel 5_1 at 24.4 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -mc 5_1 24400 48 testv/ltv48_MC51.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_MC51.wav_MC51_24400_48-48_Stereo.tst - -// Multi-channel 7_1_4 at 96 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -mc 7_1_4 96000 48 testv/ltv48_MC714.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_MC714.wav_MC714_96000_48-48_Stereo.tst - -// Multi-channel 7_1_4 at 96 kbps, 48kHz in, 48kHz out, 5_1 out, random FER at 5% -../IVAS_cod -mc 7_1_4 96000 48 testv/ltv48_MC714.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 5_1 48 bit_error testv/ltv48_MC714.wav_MC714_96000_48-48_5_1_FER5.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48kHz out, BINAURAL out, bandwidth switching, HR -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -mc 7_1_4 160000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltv48_MC714.wav_MC714_160000_48-48_MC_binaural_bwsw.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM_IR out, HR -../IVAS_cod -mc 7_1_4 160000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 16 bit testv/ltv48_MC714.wav_MC714_160000_48-16_MC_binaural_hrot.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -mc 7_1_4 160000 48 testv/ltv48_MC714.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_MC714.wav_MC714_160000_48-48_MC714.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL out, HR -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltv48_MC714.wav_MC714_512000_48-48_MC_binaural_hrot.tst - -// Multi-channel 5_1_2 at 32 kbps, 48kHz in, 48kHz out, STEREO out, random FER at 5% -../IVAS_cod -mc 5_1_2 32000 48 testv/ltv48_MC512.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/ltv48_MC512.wav_MC512_32000_48-48_Stereo_FER5.tst - -// Multi-channel 5_1_2 at 80 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -mc 5_1_2 80000 48 testv/ltv48_MC512.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_MC512.wav_MC512_80000_48-48_5_1.tst - -// Multi-channel 5_1_2 at 160 kbps, 48kHz in, 48kHz out, 5_1_2 out -../IVAS_cod -mc 5_1_2 160000 48 testv/ltv48_MC512.wav bit -../IVAS_dec 5_1_2 48 bit testv/ltv48_MC512.wav_MC512_160000_48-48_5_1_2.tst - -// Multi-channel 5_1 at 256 kbps, 48kHz in, 48kHz out, Custom LS setup out -../IVAS_cod -mc 5_1 256000 48 testv/ltv48_MC51.wav bit -../IVAS_dec testv/ls_setup_16ch_8+4+4.txt 48 bit testv/ltv48_MC51.wav_MC51_256000_48-48_MC_custom_setup.tst - -// Multi-channel 7_1 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer -../IVAS_cod -mc 7_1 512000 48 testv/ltv48_MC71.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC71.wav_MC71_512000_48-48_MC_Config_renderer.tst - -// Multi-channel 5_1 at 80 kbps, 48kHz in, 32kHz out, BINAURAL_ROOM_REVERB out Config renderer, HR -../IVAS_cod -mc 5_1 80000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg -t ../scripts/trajectories/full-circle-4s.csv BINAURAL_ROOM_REVERB 32 bit testv/ltv48_MC51.wav_MC51_80000_48-32_MC_Config_renderer.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM_REVERB out Config renderer -../IVAS_cod -mc 5_1 512000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 16 bit testv/ltv48_MC51.wav_MC51_512000_48-16_MC_Config_renderer.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (CREND) -../IVAS_cod -mc 5_1 512000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid testv/aeid1.txt BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51wav_MC51_512000_48-48_MC_reverb_sequence.tst - -// Multi-channel 5_1 at 64 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (FastConv) -../IVAS_cod -mc 5_1 64000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid testv/aeid2.txt BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51.wav_MC51_64000_48-48_MC_reverb_sequence.tst - -// Multi-channel 5_1 at 32 kbps, 48kHz in 48kHz out, BINAURAL_ROOM_REVERB out custom acoustic environment with a sequence (ParamBin) -../IVAS_cod -mc 5_1 32000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_combined.cfg -aeid testv/aeid3.txt BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51.wav_MC51_32000_48-48_MC_reverb_sequence.tst - -// Multi-channel 5_1 at 32 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config hospital_patientroom -../IVAS_cod -mc 5_1 32000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51.wav_MC51_80000_48-48_MC_Config_hospital_patientroom.tst - -// Multi-channel 7_1_4 at 160 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config recreation, HR -../IVAS_cod -mc 5_1 160000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg -t ../scripts/trajectories/full-circle-with-up-and-down-4s.csv BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51.wav_M714_160000_48-48_MC_Config_recreation.tst - -// Multi-channel 5_1_2 at 64 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer, HR -../IVAS_cod -mc 5_1_2 64000 48 testv/ltv48_MC512.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg -t testv/headrot_case04_3000_q.csv BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC512.wav_MC512_64000_48-48_MC_Config_renderer.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -mc 5_1_4 512000 48 testv/ltv48_MC514.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC514.wav_MC514_512000_48-48_MC_Config_renderer.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config renderer -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -render_config testv/rend_config_renderer.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC714.wav_MC714_512000_48-48_MC_Config_renderer.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config early reflections -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v1.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC714.wav_MC714_512000_48-48_ER_v1.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config early reflections, listener origin -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v2.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC714.wav_MC714_512000_48-48_MC_ER_v2.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Conf early refl, low complexity, listener origin -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v3.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC714.wav_MC714_512000_48-48_MC_ER_v3.tst - -// Multi-channel 5_1 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out Config early reflections, HR -../IVAS_cod -mc 5_1 512000 48 testv/ltv48_MC51.wav bit -../IVAS_dec -render_config testv/rend_config_ER_v1.cfg -t testv/headrot_case00_3000_q.csv BINAURAL_ROOM_REVERB 48 bit testv/ltv48_MC51.wav_MC51_512000_48-48_MC_ER_v1_hrot.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/ltv48_MC51.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_MC51.wav_sw_48-48_7_1_4.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/stv51MC48c.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 16 bit testv/stv51MC48c.wav_sw_48-16_Binaural_room.tst - -// Multi-channel 5_1 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, BINAURAL out, FER at 10%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -mc 5_1 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_MC51.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/ltv48_MC51.wav_sw_48-48_binaural_FER10.tst - -// Multi-channel 5_1_2 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM out -../IVAS_cod -mc 5_1_2 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MC512.wav bit -../IVAS_dec BINAURAL_ROOM_IR 16 bit testv/ltv48_MC512.wav_sw_48-16_Binaural_room.tst - -// Multi-channel 7_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (model from file), head rotation -../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MC71.wav bit -../IVAS_dec -t testv/headrot.csv -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/stv71C48c.wav_sw_48-48_Binaural_model_file_headrot.tst - -// Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, HOA3 out -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/ltv48_MC714.wav bit -../IVAS_dec HOA3 48 bit testv/ltv48_MC51.wav_sw_48-48_HOA3.tst - -// Multi-channel 7_1_4 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 32kHz out, STEREO out, FER at 5% -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_MC714.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv48_MC714.wav_sw_48-32_stereo_FER5.tst - -// Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/ltv48_MC714.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/ltv48_MC51.wav_sw_48-48_BINAURAL.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 16kHz out, BINAURAL_ROOM out (Model from file) -../IVAS_cod -mc 5_1_4 512000 48 testv/ltv48_MC514.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL_ROOM_IR 16 bit testv/ltv48_MC51.wav_MC51_512000_48-16_MC_binaural_room.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 32kHz out, BINAURAL out (Model from file) -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL 32 bit testv/ltv48_MC714.wav_MC714_512000_48-32_MC_binaural.tst - -// Multi-channel 5_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL out (Model from file) -../IVAS_cod -mc 5_1_4 512000 48 testv/ltv48_MC514.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/ltv48_MC51.wav_MC51_512000_48-48_MC_binaural.tst - -// Multi-channel 7_1_4 at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM out (Model from file) -../IVAS_cod -mc 7_1_4 512000 48 testv/ltv48_MC714.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL_ROOM_IR 48 bit testv/ltv48_MC714.wav_MC714_512000_48-48_MC_binaural_room.tst - -// Multi-channel 5_1 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -mc 5_1 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/ltv48_MC51.wav bit -../IVAS_dec HOA3 48 bit testv/ltv48_MC51.wav_sw_48-48_EXT.tst - -// Multi-channel 5_1_2 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -mc 5_1_2 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_MC512.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MC512.wav_sw_48-48_EXT.tst - -// Multi-channel 5_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, EXT out -../IVAS_cod -mc 5_1_4 ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MC514.wav bit -../IVAS_dec EXT 32 bit testv/ltv48_MC514.wav_sw_48-32_EXT.tst - -// Multi-channel 7_1 bitrate switching from 24.4 kbps to 256 kbps, 48kHz in, 16kHz out, EXT out -../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_24k4_256k.bin 48 testv/ltv48_MC71.wav bit -../IVAS_dec EXT 16 bit testv/ltv48_MC71.wav_sw_48-16_EXT.tst - -// Multi-channel 7_1_4 bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_mctech_5fr.bin 48 testv/ltv48_MC714.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_MC714.wav_sw_48-48_EXT.tst - - -// Stereo downmix to bit-exact EVS at 13200 kbps, 32kHz in, 32kHz out -../IVAS_cod -stereo_dmx_evs 13200 32 testv/ltv32_STEREO.wav bit -../IVAS_dec 32 bit testv/ltv32_STEREO.wav_StereoDmxEVS_13200_32-32.tst - -// Stereo downmix to bit-exact EVS at 24400 kbps, 48kHz in, 48kHz out -../IVAS_cod -stereo_dmx_evs 24400 48 testv/ltv48_STEREO.wav bit -../IVAS_dec 48 bit testv/ltv48_STEREO.wav_StereoDmxEVS_24400_48-48.tst - - - -// stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on, JBM Prof 5 -../IVAS_cod -stereo -dtx 48000 16 testv/ltv16_STEREO.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX_JBM5.tst - -// 4 ISm with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out, JBM Prof 5 -../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_4ISM.wav_32000_48-48_FOA_JBM5.tst - -// SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out, JBM Prof 5 -../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/ltv32_HOA3.wav_SBA_80000_32-32_HOA3_JBM5.tst - -// SBA at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -sba 1 13200 48 testv/ltv48_FOA.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_FOA.wav_SBA_13200_48-48_BINAURAL_JBM5.tst - -// Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 -../IVAS_cod -mc 5_1 384000 48 testv/ltv48_MC51.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC51.wav_MC51_384000_48-48_7_1_4_JBM5.tst - -// Multi-channel 7_1_$ at 256 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 -../IVAS_cod -mc 7_1_4 256000 48 testv/ltv48_MC714.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC714.wav_MC714_256000_48-48_7_1_4_JBM5.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 32kHz out, 5_1 out, JBM Prof 5 -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-32_5_1_JBM5.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out, JBM Prof 5 -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_STEREO_JBM5.tst - -// MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 -../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_FOA_JBM5.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-16_BINAURAL_JBM5.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, MONO out, JBM Prof 5 -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-32_MONO_JBM5.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-16_BINAURAL_JBM5.tst - -// MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 -../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-48_EXT_JBM5.tst - -// OMASA 2Dir2TC 1ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, JBM Prof 5 -../IVAS_cod -ism_masa 1 2 testv/ltv48_OMASA_1ISM_2TC_ISM1.csv testv/ltv48_OMASA_1ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin 48 testv/ltv48_OMASA_1ISM_2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/ltv48_OMASA_1ISM_2TC.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst - -// OMASA 2Dir2TC 2ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, 7.1 out, JBM Prof 5 -../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv NULL testv/ltv48_OMASA_2ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/ltv48_OMASA_2ISM_2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_7_1_sw_48-48_JBM5.tst - -// OMASA 2Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out, JBM Prof 5 -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/ltv48_OMASA_3ISM_2TC.wav_MONO_sw_48-48_JBM5.tst - -// OMASA 2Dir1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, JBM Prof 5 -../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_1TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_OMASA_3ISM_1TC.wav_STEREO_sw_48-32_JBM5.tst - -// OMASA 1Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.2 out, JBM Prof 5 -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/ltv32_OMASA_3ISM_2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/ltv32_OMASA_3ISM_2TC.wav_5_1_2_sw_32-48_JBM5.tst - -// OMASA 1Dir1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 -../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_1TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_sw_48-48_JBM5.tst - -// OMASA 1Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 -../IVAS_cod -ism_masa 4 2 NULL testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_FOA_sw_48-48_JBM5.tst - -// OMASA 2Dir2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv NULL testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 256000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_EXT_256000_48-48_JBM5.tst - - -// OMASA 1Dir1TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met 48000 48 testv/ltv48_OMASA_4ISM_1TC.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_ROOM_REVERB_48000_48-48_custom_configuration.tst - -// OMASA 2Dir2TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 48000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_ROOM_REVERB_48000_48-48_custom_configuration.tst - -// EVS non-diegetic panning at 64 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod 64000 48 testv/ltv48_MONO.wav bit -../IVAS_dec -non_diegetic_pan -50 48 bit testv/ltv48_MONO.pcm_EVS_64000_48-48_STEREO_NON-DIEGETIC-PAN_-50.tst - -// 1 ISM non-diegetic panning at 32 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism 1 testv/ltvISM1.csv 32000 48 testv/ltv48_1ISM.wav bit -../IVAS_dec -non_diegetic_pan 80 STEREO 48 bit testv/ltv48_1ISM.pcm_ISM_32000_48-48_STEREO_NON-DIEGETIC-PAN_80.tst - - - -// OMASA 2Dir2TC 1ISM at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_masa 1 2 NULL testv/ltv48_OMASA_1ISM_2TC.met 13200 48 testv/ltv48_OMASA_1ISM_2TC.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OMASA_1ISM_2TC.wav_BINAURAL_13200_48-48.tst - -// OMASA 1Dir2TC 1ISM at 128 kbps, 48kHz in, 48kHz out, EXT out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_SWB.txt -ism_masa 1 2 testv/ltv48_OMASA_1ISM_2TC_ISM1.csv testv/ltv48_OMASA_1ISM_2TC.met 128000 48 testv/ltv48_OMASA_1ISM_2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_OMASA_1ISM_2TC.wav_EXT_128000_48-48.tst - -// OMASA 2Dir1TC 1ISM at 512 kbps, 32kHz in, 48kHz out, 7.1.4 out, FER at 5% -../IVAS_cod -ism_masa 1 1 testv/ltv48_OMASA_1ISM_1TC_ISM1.csv testv/ltv48_OMASA_1ISM_1TC.met 512000 32 testv/ltv32_OMASA_1ISM_1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec 7_1_4 48 bit_error testv/ltv32_OMASA_1ISM_1TC.wav_7_1_4_512000_32-48.tst - - -// OMASA 1Dir1TC 2ISM at 16.4 kbps, 16kHz in, 48kHz out, 5.1 out -../IVAS_cod -ism_masa 2 1 testv/ltv48_OMASA_2ISM_1TC_ISM1.csv testv/ltv48_OMASA_2ISM_1TC_ISM2.csv testv/ltv48_OMASA_2ISM_1TC.met 16400 16 testv/ltv16_OMASA_2ISM_1TC.wav bit -../IVAS_dec 5_1 48 bit testv/ltv16_OMASA_2ISM_1TC.wav_5_1_16400_16-48.tst - -// OMASA 2Dir2TC 2ISM at 32 kbps, 48kHz in, 48kHz out, STEREO out, FER at 5% -../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv testv/ltv48_OMASA_2ISM_2TC_ISM2.csv testv/ltv48_OMASA_2ISM_2TC.met 32000 48 testv/ltv48_OMASA_2ISM_2TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec STEREO 48 bit_error testv/ltv48_OMASA_2ISM_2TC.wav_STEREO_32000_48-48.tst - -// OMASA 1Dir2TC 2ISM at 256 kbps, 48kHz in, 32kHz out, BINAURAL_ROOM_IR out -../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv NULL testv/ltv48_OMASA_2ISM_2TC.met 256000 48 testv/ltv48_OMASA_2ISM_2TC.wav bit -../IVAS_dec BINAURAL_ROOM_IR 32 bit testv/ltv48_OMASA_2ISM_2TC.wav_BINAURAL_ROOM_IR_256000_48-32.tst - - -// OMASA 2Dir1TC 3ISM at 24.4 kbps, 48kHz in, 16kHz out, FOA out, FER at 10% -../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met 24400 48 testv/ltv48_OMASA_3ISM_1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec FOA 16 bit_error testv/ltv48_OMASA_3ISM_1TC.wav_FOA_24400_48-16.tst - -// OMASA 1Dir2TC 3ISM at 32 kbps, 48kHz in, 16kHz out, STEREO out -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met 32000 48 testv/ltv48_OMASA_3ISM_2TC.wav bit -../IVAS_dec STEREO 16 bit testv/ltv48_OMASA_3ISM_2TC.wav_STEREO_32000_48-16.tst - -// OMASA 2Dir2TC 3ISM at 32 kbps, 48kHz in, 48kHz out, 5.1.2 out -../IVAS_cod -ism_masa 3 2 NULL NULL NULL testv/ltv48_OMASA_3ISM_2TC.met 32000 48 testv/ltv48_OMASA_3ISM_2TC.wav bit -../IVAS_dec 5_1_2 48 bit testv/ltv48_OMASA_3ISM_2TC.wav_5_1_2_32000_48-48.tst - -// OMASA 2Dir2TC 3ISM at 48 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met 48000 48 testv/ltv48_OMASA_3ISM_2TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_OMASA_3ISM_2TC.wav_MONO_48000_48-48.tst - -// OMASA 1Dir1TC 3ISM at 64 kbps, 32kHz in, 32kHz out, BINAURAL out -../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met 64000 32 testv/ltv32_OMASA_3ISM_1TC.wav bit -../IVAS_dec BINAURAL 32 bit testv/ltv32_OMASA_3ISM_1TC.wav_BINAURAL_64000_32-32.tst - -// OMASA 2Dir2TC 3ISM at 80 kbps, 32kHz in, 16kHz out, 5.1.4 out -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met 80000 32 testv/ltv32_OMASA_3ISM_2TC.wav bit -../IVAS_dec 5_1_4 16 bit testv/ltv32_OMASA_3ISM_2TC.wav_5_1_4_80000_32-16.tst - -// OMASA 2Dir1TC 3ISM at 96 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met 96000 48 testv/ltv48_OMASA_3ISM_1TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_OMASA_3ISM_1TC.wav_MONO_96000_48-48.tst - -// OMASA 1Dir2TC 3ISM at 160 kbps, 16kHz in, 32kHz out, HOA3 out -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met 160000 16 testv/ltv16_OMASA_3ISM_2TC.wav bit -../IVAS_dec HOA3 32 bit testv/ltv16_OMASA_3ISM_2TC.wav_HOA3_160000_16-32.tst - - -// OMASA 2Dir2TC 4ISM at 13.2 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 13200 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_MONO_13200_48-48.tst - -// OMASA 2Dir1TC 4ISM at 24.4 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met 24400 48 testv/ltv48_OMASA_4ISM_1TC.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_OMASA_4ISM_1TC.wav_STEREO_24400_48-48.tst - -// OMASA 1Dir2TC 4ISM at 32 kbps, 48kHz in, 48kHz out, FOA out, FER at 5% -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/stv1MASA2TC48c.met 32000 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec FOA 48 bit_error testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_32000_48-48_FER5.tst - -// OMASA 1Dir1TC 4ISM at 48 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met 48000 48 testv/ltv48_OMASA_4ISM_1TC.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_ROOM_REVERB_48000_48-48.tst - -// OMASA 2Dir2TC 4ISM at 64 kbps, 48kHz in, 48kHz out, HOA2 out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv NULL NULL testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 64000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec HOA2 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_HOA2_64000_48-48.tst - -// OMASA 1Dir2TC 4ISM at 80 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/stv1MASA2TC48c.met 80000 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit -../IVAS_dec MONO 48 bit testv/stvOMASA_4ISM_1MASA2TC48c.wav_MONO_80000_48-48.tst - -// OMASA 2Dir2TC 4ISM at 192 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 192000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_STEREO_192000_48-48.tst - -// OMASA 2Dir2TC 4ISM at 384 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 384000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_EXT_384000_48-48.tst - - -// OMASA 2Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_2TC.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_OMASA_3ISM_2TC.wav_MONO_sw_48-48.tst - -// OMASA 2Dir1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, FER at 10% -../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv48_OMASA_3ISM_1TC.wav_STEREO_sw_48-32.tst - -// OMASA 1Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.4 out -../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/ltv32_OMASA_3ISM_2TC.wav bit -../IVAS_dec 5_1_4 48 bit testv/ltv32_OMASA_3ISM_2TC.wav_5_1_4_sw_32-48.tst - -// OMASA 1Dir1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, FER at 5% -../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_1TC.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec BINAURAL 48 bit_error testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_sw_48-48_FER5.tst - -// OMASA 1Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, HOA3 out -../IVAS_cod -ism_masa 4 2 NULL testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec HOA3 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_HOA3_sw_48-48.tst - -// OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 384 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_ROOM_REVERB_sw_48-48.tst - -// OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 384 kbps, 48kHz in, 16kHz out, BINAURAL out (Model from file) -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_sw_48-16.tst - -// OMASA 2Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv NULL testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit -../IVAS_dec EXT 48 bit testv/ltvOMASA_4ISM_2MASA2TC48c.wav_EXT_sw_48-48.tst - - - -// OSBA FOA 1ISM at 32 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 1 1 testv/ltvISM1.csv 32000 48 testv/ltv48_OSBA_1ISM_FOA.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OSBA_1ISM_FOA.wav_BINAURAL_32000_48-48.tst - -// OSBA FOA 1ISM at 48 kbps, 16kHz in, 16kHz out, BINAURAL_ROOM_REVERB (Model from file) out -../IVAS_cod -ism_sba 1 1 testv/stvISM1.csv 32000 16 testv/ltv16_OSBA_1ISM_FOA.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL_ROOM_REVERB 16 bit testv/ltv16_OSBA_1ISM_FOA.wav_BINAURAL_ROOM_REVERB_32000_16-16.tst - -// OSBA FOA 2ISM at 64 kbps, 48kHz in, 48kHz out, HOA3 out, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism_sba 2 1 testv/ltvISM1.csv testv/ltvISM2.csv 64000 48 testv/ltv48_OSBA_2ISM_FOA.wav bit -../IVAS_dec HOA3 48 bit testv/ltv48_OSBA_2ISM_FOA.wav_HOA3_64000_48-48.tst - -// OSBA FOA 3ISM at 128 kbps, 48kHz in, 48kHz out, 7_1_4 out -../IVAS_cod -ism_sba 3 1 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 128000 48 testv/ltv48_OSBA_3ISM_FOA.wav bit -../IVAS_dec 7_1_4 48 bit testv/ltv48_OSBA_3ISM_FOA.wav_7_1_4_128000_48-48.tst - -// OSBA FOA 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_sba 4 1 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 256000 48 testv/ltv48_OSBA_4ISM_FOA.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_OSBA_4ISM_FOA.wav_EXT_256000_48-48.tst - -// OSBA FOA 4ISM at 512 kbps, 48kHz in, 48kHz out, BINAURAL (Model from file) out -../IVAS_cod -ism_sba 4 1 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 512000 48 testv/ltv48_OSBA_4ISM_FOA.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL 48 bit testv/ltv48_OSBA_4ISM_FOA.wav_BINAURAL_512000_48-48.tst - -// OSBA FOA 4ISM at 384 kbps, 32kHz in, 32kHz out, BINAURAL ROOM IR (Model from file) out -../IVAS_cod -ism_sba 4 1 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 384000 32 testv/ltv32_OSBA_4ISM_FOA.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_32kHz.bin BINAURAL_ROOM_IR 32 bit testv/ltv32_OSBA_4ISM_FOA.wav_BINAURAL_384000_32-32.tst - -// OSBA 2OA 1ISM at 24.4 kbps, 48kHz in, 48kHz out, FOA out -../IVAS_cod -ism_sba 1 2 testv/ltvISM1.csv 24400 48 testv/ltv48_OSBA_1ISM_HOA2.wav bit -../IVAS_dec FOA 48 bit testv/ltv48_OSBA_1ISM_HOA2.wav_FOA_24400_48-48.tst - -// OSBA 2OA 2ISM at 48 kbps, 48kHz in, 48kHz out, MONO out -../IVAS_cod -ism_sba 2 2 testv/ltvISM1.csv testv/ltvISM2.csv 48000 48 testv/ltv48_OSBA_2ISM_HOA2.wav bit -../IVAS_dec MONO 48 bit testv/ltv48_OSBA_2ISM_HOA2.wav_MONO_48000_48-48.tst - -// OSBA 2OA 2ISM at 64 kbps, 32kHz in, 16kHz out, BINAURAL ROOM REVERB out -../IVAS_cod -ism_sba 2 2 testv/ltvISM1.csv testv/ltvISM2.csv 48000 32 testv/ltv32_OSBA_2ISM_HOA2.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 16 bit testv/ltv32_OSBA_2ISM_HOA2.wav_MONO_64000_32-16.tst - -// OSBA 2OA 3ISM at 96 kbps, 48kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_sba 3 2 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 96000 48 testv/ltv48_OSBA_3ISM_HOA2.wav bit -../IVAS_dec STEREO 48 bit testv/ltv48_OSBA_3ISM_HOA2.wav_STEREO_96000_48-48.tst - -// OSBA 2OA 4ISM at 384 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 4 2 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 384000 48 testv/ltv48_OSBA_4ISM_HOA2.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OSBA_4ISM_HOA2.wav_BINAURAL_384000_48-48.tst - -// OSBA 3OA 1ISM at 512 kbps, 48kHz in, 48kHz out, EXT out -../IVAS_cod -ism_sba 1 3 testv/ltvISM1.csv 512000 48 testv/ltv48_OSBA_1ISM_HOA3.wav bit -../IVAS_dec EXT 48 bit testv/ltv48_OSBA_1ISM_HOA3.wav_EXT_512000_48-48.tst - -// OSBA 3OA 2ISM at 256 kbps, 48kHz in, 48kHz out, 7_1 out -../IVAS_cod -ism_sba 2 3 testv/ltvISM1.csv testv/ltvISM2.csv 256000 48 testv/ltv48_OSBA_2ISM_HOA3.wav bit -../IVAS_dec 7_1 48 bit testv/ltv48_OSBA_2ISM_HOA3.wav_7_1_256000_48-48.tst - -// OSBA 3OA 3ISM at 128 kbps, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 3 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 128000 48 testv/ltv48_OSBA_3ISM_HOA3.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OSBA_3ISM_HOA3.wav_BINAURAL_128000_48-48.tst - -// OSBA 3OA 3ISM at 160 kbps, 16kHz in, 48kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism_sba 3 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 160000 16 testv/ltv16_OSBA_3ISM_HOA3.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv16_OSBA_3ISM_HOA3.wav_BINAURAL_ROOM_IR_160000_16-48.tst - -// OSBA 3OA 4ISM at 16.4 kbps, 48kHz in, 48kHz out, 5_1 out -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 16400 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec 5_1 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_5_1_16400_48-48.tst - -// OSBA 3OA 4ISM bitrate switching 13.2 to 512, 48kHz in, 48kHz out, BINAURAL out -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_BINAURAL_sw_13k2_512k_48-48.tst - -// OSBA 3OA 4ISM bitrate switching 16.4 to 512, 48kHz in, 48kHz out, BINAURAL out, headtracking -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_16k4_512k_50fr.bin 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec -t testv/headrot.csv BINAURAL 48 bit testv/ltvOSBA_4ISM_3OA48c.wav_BINAURAL_sw_16k4_512k_48-48.tst - -// OSBA 3OA 2ISM at 256 kbps, 32kHz in, 32kHz out, HOA3 out -../IVAS_cod -ism_sba 2 3 testv/ltvISM1.csv testv/ltvISM2.csv 256000 32 testv/ltv32_OSBA_2ISM_HOA3.wav bit -../IVAS_dec HOA3 32 bit testv/ltv32_OSBA_2ISM_HOA3.wav_HOA3_256000_32-32.tst - -// OSBA 2OA 3ISM at 384 kbps, 16kHz in, 16kHz out, MONO out -../IVAS_cod -ism_sba 3 2 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 384000 16 testv/ltv16_OSBA_3ISM_HOA2.wav bit -../IVAS_dec MONO 16 bit testv/ltv16_OSBA_3ISM_HOA2.wav_MONO_256000_16-16.tst - -// OSBA FOA 4ISM at 512 kbps, 32kHz in, 48kHz out, STEREO out -../IVAS_cod -ism_sba 4 1 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 512000 32 testv/ltv32_OSBA_4ISM_FOA.wav bit -../IVAS_dec STEREO 48 bit testv/ltv32_OSBA_4ISM_FOA.wav_STEREO_512000_32-48.tst - -// OSBA 3OA 4ISM bitrate switching 13.2 to 512, 32kHz in, 48kHz out, EXT out -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_13k2_512k.bin 32 testv/ltv32_OSBA_4ISM_HOA3.wav bit -../IVAS_dec EXT 48 bit testv/ltv32_OSBA_4ISM_HOA3.wav_EXT_sw_13k2_512k_32-32.tst - -// OSBA FOA 4ISM at br sw 13.2 to 512 kbps, 48kHz in, 16kHz out, BINAURAL out (Model from file), FER at 5%, bandwidth switching -../IVAS_cod -max_band testv/ivas_bws_20fr_start_WB.txt -ism_sba 4 1 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_OSBA_4ISM_FOA.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_16kHz.bin BINAURAL 16 bit_error testv/ltv48_OSBA_4ISM_FOA.wav_BINAURAL_sw_48-16_FER5.tst - -// OSBA 3ISM 2OA at bitrate switching 13.2 to 512 kbps, 48kHz in, 32kHz out, STEREO out, FER at 10% -../IVAS_cod -ism_sba 3 2 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_OSBA_3ISM_HOA2.wav bit -eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g192 bit_error -../IVAS_dec STEREO 32 bit_error testv/ltv48_OSBA_3ISM_2OA.wav_STEREO_sw_48-32_FER10.tst - -// OSBA 3ISM 3OA at bitrate switching 13.2 to 512 kbps, 48kHz in, 32kHz out, BINAURAL ROOM REVERB out -../IVAS_cod -ism_sba 3 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_OSBA_3ISM_HOA3.wav bit -../IVAS_dec BINAURAL_ROOM_REVERB 32 bit testv/ltv48_OSBA_3ISM_HOA3.wav_BINAURAL_ROOM_REVERB_sw_48-32.tst - -// OSBA planar FOA 1ISM at 256 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism_sba 1 -1 testv/ltvISM1.csv 256000 48 testv/ltv48_OSBA_1ISM_FOA.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OSBA_4ISM_pFOA.wav_BINAURAL_256000_48-48.tst - -// OSBA planar FOA 2ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL out -../IVAS_cod -ism_sba 2 -1 testv/ltvISM1.csv testv/ltvISM2.csv 512000 48 testv/stvOSBA_2ISM_FOA48c.wav bit -../IVAS_dec BINAURAL 48 bit testv/ltv48_OSBA_4ISM_pHOA2.wav_BINAURAL_512000_48-48.tst - -// OSBA planar 3OA 4ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM IR out -../IVAS_cod -ism_sba 4 -3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 512000 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec BINAURAL_ROOM_IR 48 bit testv/ltv48_OSBA_4ISM_pHOA3.wav_BINAURAL_ROOM_IR_512000_48-48.tst - -// OSBA planar 2OA 4ISM at 512 kbps, 48 kHz in, 48 kHz out, BINAURAL ROOM REVERB (Model from file) out -../IVAS_cod -ism_sba 4 -2 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 512000 48 testv/ltv48_OSBA_4ISM_HOA2.wav bit -../IVAS_dec -hrtf ../scripts/binauralRenderer_interface/binaural_renderers_hrtf_data/ivas_binaural_48kHz.bin BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OSBA_4ISM_pHOA2.wav_BINAURAL_ROOM_REVERB_512000_48-48.tst - -// OSBA 3OA 4ISM at 48 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 48000 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_BINAURAL_ROOM_REVERB_48000_48-48_custom_configuration.tst - -// OSBA 3OA 4ISM at 64 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 64000 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec -render_config testv/rend_config_recreation.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_BINAURAL_ROOM_REVERB_64000_48-48_custom_configuration.tst - -// OSBA 3OA 4ISM at 512 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out -../IVAS_cod -ism_sba 4 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 512000 48 testv/ltv48_OSBA_4ISM_HOA3.wav bit -../IVAS_dec -render_config testv/rend_config_hospital_patientroom.cfg BINAURAL_ROOM_REVERB 48 bit testv/ltv48_OSBA_4ISM_HOA3.wav_BINAURAL_ROOM_REVERB_512000_48-48_custom_configuration.tst - diff --git a/scripts/dly_error_profiles/dly_error_profile_0.dat b/scripts/dly_error_profiles/dly_error_profile_0.dat deleted file mode 100644 index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_0.dat +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/scripts/dly_error_profiles/dly_error_profile_1.dat b/scripts/dly_error_profiles/dly_error_profile_1.dat deleted file mode 100644 index bc9f23add05e4e3932fd3cbf2d0c43149392d0bf..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_1.dat +++ /dev/null @@ -1,7500 +0,0 @@ -118 -100 -116 -100 -100 -116 -128 -108 -128 -118 -100 -116 -100 -118 -118 -116 -100 -116 -100 -100 -100 -112 -100 -100 -116 -100 -116 -118 -116 -116 -100 -102 -100 -116 -116 -128 -108 -128 -118 -116 -100 -116 -100 -100 -100 -100 -100 -116 -100 -128 -116 -116 -116 -116 -100 -116 -116 -118 -116 -100 -100 -128 -112 -116 -100 -118 -130 -118 -100 -118 -116 -100 -118 -116 -116 -116 -100 -116 -118 -118 -118 -100 -100 -118 -100 -100 -116 -116 -116 -128 -112 -118 -100 -116 -102 -118 -100 -116 -116 -128 -128 -116 -100 -100 -100 -100 -118 -118 -112 -118 -116 -100 -112 -100 -118 -116 -130 -110 -100 -118 -116 -128 -108 -116 -112 -118 -116 -100 -116 -116 -116 -116 -118 -100 -116 -118 -100 -102 -112 -116 -100 -118 -118 -116 -118 -130 -116 -128 -108 -100 -100 -118 -118 -112 -118 -116 -116 -118 -100 -100 -112 -118 -116 -100 -118 -100 -100 -100 -102 -118 -102 -100 -118 -102 -118 -116 -118 -100 -112 -118 -118 -116 -112 -100 -112 -118 -128 -108 -116 -116 -100 -100 -116 -102 -100 -104 -100 -116 -116 -118 -122 -102 -124 -118 -100 -118 -124 -118 -100 -102 -104 -116 -128 -118 -132 -112 -100 -116 -116 -142 -132 -112 -120 -116 -130 -118 -102 -102 -100 -122 -102 -112 -116 -124 -104 -116 -116 -124 -116 -122 -102 -100 -116 -104 -114 -102 -116 -116 -116 -116 -118 -104 -100 -118 -116 -116 -116 -102 -116 -118 -120 -100 -100 -116 -116 -100 -100 -100 -100 -118 -118 -128 -108 -100 -116 -118 -128 -116 -132 -120 -120 -118 -116 -102 -116 -116 -100 -112 -118 -118 -118 -100 -116 -112 -118 -118 -116 -120 -118 -116 -116 -100 -116 -100 -100 -100 -116 -128 -116 -116 -100 -100 -100 -116 -100 -116 -100 -116 -116 -100 -100 -116 -116 -100 -116 -100 -116 -100 -116 -100 -118 -100 -116 -116 -116 -100 -116 -118 -116 -116 -102 -100 -100 -118 -100 -100 -116 -116 -116 -118 -116 -116 -116 -118 -100 -128 -112 -100 -100 -116 -100 -100 -100 -118 -118 -100 -116 -112 -118 -100 -100 -100 -118 -100 -102 -118 -118 -116 -118 -100 -102 -100 -116 -100 -122 -106 -116 -100 -110 -100 -100 -116 -102 -100 -116 -100 -102 -100 -100 -116 -116 -102 -100 -100 -110 -128 -126 -118 -118 -110 -100 -116 -100 -110 -100 -126 -128 -108 -118 -100 -116 -118 -118 -116 -116 -116 -118 -102 -116 -116 -100 -120 -116 -100 -120 -128 -108 -130 -110 -100 -118 -100 -116 -116 -100 -118 -116 -116 -118 -116 -118 -116 -102 -116 -116 -118 -116 -120 -100 -118 -110 -116 -102 -128 -108 -116 -118 -100 -102 -118 -116 -116 -100 -126 -116 -116 -100 -118 -100 -116 -100 -126 -106 -120 -126 -106 -100 -102 -100 -104 -100 -116 -100 -102 -116 -100 -116 -116 -100 -100 -102 -100 -100 -102 -100 -102 -102 -118 -122 -118 -118 -102 -118 -102 -100 -116 -100 -102 -116 -102 -100 -112 -102 -122 -102 -118 -116 -116 -118 -118 -100 -118 -120 -128 -116 -104 -100 -100 -118 -116 -104 -116 -100 -100 -100 -116 -116 -118 -116 -108 -100 -102 -128 -108 -118 -102 -100 -118 -100 -116 -118 -100 -112 -116 -118 -100 -116 -116 -102 -116 -100 -102 -116 -100 -116 -118 -102 -116 -102 -110 -100 -118 -102 -100 -110 -100 -100 -100 -100 -102 -100 -116 -100 -110 -116 -102 -100 -118 -100 -102 -100 -116 -116 -122 -102 -116 -100 -116 -100 -116 -102 -100 -100 -100 -130 -110 -104 -102 -100 -116 -120 -120 -116 -116 -102 -122 -116 -118 -118 -116 -112 -102 -100 -118 -100 -100 -100 -116 -130 -110 -118 -116 -100 -100 -118 -102 -116 -116 -120 -102 -110 -116 -118 -118 -100 -116 -102 -118 -110 -102 -100 -122 -118 -116 -100 -102 -100 -100 -100 -100 -100 -100 -102 -116 -100 -110 -100 -116 -100 -120 -116 -100 -116 -116 -102 -100 -116 -116 -116 -100 -100 -116 -100 -126 -116 -116 -116 -102 -102 -116 -100 -116 -100 -118 -116 -100 -130 -118 -116 -118 -100 -100 -100 -102 -116 -100 -116 -100 -128 -108 -100 -116 -116 -128 -108 -100 -102 -118 -128 -108 -102 -116 -114 -116 -110 -130 -120 -120 -100 -118 -104 -104 -102 -128 -108 -100 -100 -100 -102 -118 -100 -128 -116 -118 -102 -102 -118 -118 -118 -116 -104 -112 -116 -116 -116 -118 -116 -116 -100 -100 -116 -110 -116 -116 -116 -100 -102 -116 -116 -116 -118 -116 -100 -120 -118 -100 -116 -116 -112 -102 -102 -116 -116 -116 -118 -102 -118 -100 -100 -116 -118 -120 -116 -100 -102 -100 -116 -118 -118 -116 -102 -100 -100 -118 -116 -116 -100 -112 -100 -116 -100 -118 -116 -116 -102 -116 -100 -118 -102 -100 -118 -100 -116 -116 -128 -118 -118 -102 -100 -100 -100 -102 -126 -116 -102 -118 -100 -116 -100 -100 -116 -116 -122 -128 -118 -118 -100 -126 -106 -116 -130 -110 -116 -116 -100 -116 -118 -102 -118 -100 -116 -116 -102 -118 -118 -122 -122 -120 -100 -118 -116 -100 -102 -102 -116 -126 -110 -116 -102 -100 -126 -106 -102 -120 -116 -102 -116 -110 -116 -118 -102 -100 -100 -120 -100 -128 -116 -116 -100 -102 -116 -110 -116 -132 -112 -118 -102 -128 -108 -102 -100 -116 -128 -120 -120 -118 -124 -118 -102 -118 -110 -100 -118 -100 -100 -128 -126 -106 -102 -100 -116 -102 -100 -120 -100 -100 -116 -118 -102 -102 -110 -130 -110 -102 -122 -128 -108 -116 -110 -100 -100 -116 -118 -118 -116 -100 -120 -130 -110 -116 -128 -120 -116 -102 -100 -100 -100 -116 -100 -100 -130 -120 -126 -118 -100 -102 -118 -100 -116 -120 -116 -100 -104 -100 -100 -128 -116 -100 -102 -116 -118 -116 -102 -100 -100 -102 -118 -126 -118 -100 -116 -118 -126 -106 -100 -116 -116 -100 -116 -116 -116 -110 -116 -130 -116 -100 -116 -100 -118 -116 -116 -116 -124 -104 -100 -100 -100 -118 -116 -118 -118 -116 -116 -116 -100 -100 -100 -116 -128 -108 -116 -116 -112 -116 -116 -116 -100 -118 -116 -118 -116 -100 -116 -130 -110 -116 -116 -116 -116 -128 -112 -116 -116 -100 -116 -116 -116 -118 -116 -116 -112 -100 -100 -100 -116 -116 -116 -100 -100 -128 -116 -116 -116 -100 -116 -116 -100 -116 -116 -116 -100 -100 -116 -100 -116 -116 -116 -116 -100 -118 -118 -100 -116 -112 -118 -100 -118 -100 -116 -118 -128 -108 -116 -100 -116 -118 -116 -116 -116 -116 -112 -100 -116 -116 -116 -116 -116 -100 -100 -100 -100 -116 -116 -100 -100 -116 -116 -100 -118 -100 -100 -116 -116 -100 -100 -116 -116 -128 -108 -116 -100 -116 -116 -116 -116 -100 -100 -116 -116 -100 -112 -116 -116 -100 -100 -116 -100 -116 -116 -100 -100 -100 -116 -100 -100 -130 -116 -116 -116 -100 -116 -112 -100 -100 -116 -116 -100 -118 -116 -116 -116 -116 -116 -116 -116 -116 -118 -116 -128 -116 -116 -118 -116 -130 -110 -100 -116 -128 -108 -118 -100 -100 -116 -116 -116 -118 -100 -116 -116 -100 -116 -118 -100 -116 -100 -116 -116 -100 -100 -122 -102 -116 -116 -100 -118 -100 -100 -116 -116 -116 -116 -116 -118 -118 -116 -128 -116 -116 -100 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -128 -116 -116 -116 -116 -100 -116 -112 -116 -116 -100 -100 -100 -116 -100 -100 -116 -116 -116 -116 -112 -116 -116 -116 -116 -116 -100 -116 -100 -116 -116 -116 -112 -100 -116 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -100 -116 -112 -100 -116 -100 -116 -100 -116 -100 -100 -116 -100 -116 -116 -116 -100 -100 -100 -116 -100 -116 -116 -100 -100 -116 -100 -132 -114 -116 -116 -116 -100 -112 -116 -104 -116 -116 -116 -104 -116 -116 -104 -116 -116 -104 -118 -104 -116 -116 -116 -104 -116 -116 -116 -104 -116 -116 -104 -102 -100 -116 -116 -116 -116 -116 -104 -116 -116 -116 -116 -104 -118 -104 -118 -116 -116 -116 -116 -118 -104 -100 -116 -100 -118 -100 -116 -100 -100 -116 -116 -116 -116 -116 -116 -128 -118 -116 -100 -132 -120 -118 -116 -118 -116 -100 -116 -120 -100 -116 -116 -116 -100 -118 -116 -116 -116 -116 -118 -100 -118 -116 -112 -112 -116 -102 -128 -116 -116 -112 -100 -100 -100 -118 -116 -118 -116 -116 -116 -116 -116 -128 -116 -116 -116 -130 -116 -100 -116 -116 -102 -118 -116 -116 -100 -100 -100 -118 -112 -100 -102 -118 -100 -118 -118 -118 -116 -100 -118 -116 -100 -100 -100 -120 -116 -100 -116 -116 -116 -116 -116 -100 -100 -118 -120 -100 -118 -100 -116 -100 -116 -116 -100 -100 -102 -100 -118 -100 -128 -108 -128 -112 -128 -108 -118 -116 -116 -116 -118 -116 -116 -118 -132 -120 -118 -116 -116 -116 -116 -102 -100 -116 -100 -112 -118 -100 -132 -120 -118 -116 -116 -116 -118 -116 -118 -100 -118 -116 -118 -116 -118 -102 -100 -118 -116 -102 -116 -128 -116 -116 -118 -100 -118 -100 -118 -128 -116 -118 -102 -102 -102 -118 -118 -116 -128 -116 -120 -132 -112 -100 -116 -116 -118 -104 -118 -118 -100 -102 -120 -100 -132 -118 -116 -102 -100 -118 -118 -102 -100 -118 -116 -112 -116 -116 -118 -118 -118 -116 -116 -100 -116 -130 -116 -116 -100 -112 -100 -100 -116 -100 -100 -118 -116 -130 -118 -118 -116 -120 -118 -100 -118 -102 -116 -118 -100 -102 -116 -132 -112 -100 -100 -100 -116 -116 -116 -118 -116 -116 -118 -118 -116 -100 -116 -118 -130 -110 -102 -102 -116 -116 -100 -116 -100 -116 -100 -100 -100 -118 -102 -100 -114 -132 -116 -102 -116 -100 -100 -116 -116 -112 -116 -118 -100 -112 -100 -116 -110 -116 -100 -100 -116 -116 -116 -118 -116 -116 -118 -100 -118 -118 -100 -116 -118 -100 -116 -116 -102 -102 -118 -118 -100 -100 -116 -118 -116 -100 -130 -126 -116 -116 -118 -130 -110 -118 -116 -116 -100 -118 -116 -116 -116 -118 -100 -116 -100 -116 -100 -118 -118 -116 -130 -128 -116 -116 -100 -116 -116 -100 -116 -116 -100 -116 -100 -116 -118 -118 -118 -116 -100 -100 -116 -116 -118 -118 -116 -100 -100 -118 -100 -100 -128 -116 -118 -118 -116 -116 -126 -116 -100 -100 -116 -100 -116 -116 -118 -116 -100 -118 -130 -118 -116 -118 -116 -100 -118 -100 -118 -100 -120 -116 -100 -118 -116 -116 -130 -118 -120 -130 -118 -116 -100 -130 -110 -116 -100 -126 -132 -130 -110 -116 -116 -118 -100 -102 -128 -120 -102 -118 -126 -116 -118 -102 -100 -116 -118 -116 -118 -104 -100 -116 -116 -102 -100 -102 -100 -118 -116 -116 -102 -100 -118 -120 -132 -118 -102 -128 -128 -108 -116 -132 -116 -102 -116 -116 -116 -130 -116 -116 -130 -110 -116 -116 -116 -100 -116 -116 -132 -122 -116 -120 -128 -118 -118 -116 -132 -120 -118 -126 -106 -118 -116 -118 -116 -100 -116 -100 -116 -118 -118 -118 -102 -116 -116 -116 -100 -100 -100 -110 -116 -100 -100 -100 -116 -116 -116 -116 -118 -102 -102 -120 -116 -116 -100 -116 -120 -116 -100 -116 -116 -116 -100 -116 -102 -116 -100 -118 -116 -116 -116 -100 -120 -100 -118 -100 -118 -116 -110 -100 -100 -128 -108 -100 -116 -102 -130 -118 -100 -100 -104 -128 -118 -118 -102 -118 -116 -110 -100 -102 -116 -118 -132 -120 -102 -116 -116 -116 -120 -118 -116 -118 -118 -116 -116 -104 -100 -116 -128 -118 -118 -116 -124 -128 -124 -118 -102 -128 -108 -116 -102 -118 -102 -118 -116 -102 -118 -120 -102 -102 -118 -102 -116 -116 -124 -116 -102 -116 -102 -116 -102 -116 -116 -116 -118 -100 -118 -102 -116 -116 -110 -110 -116 -128 -118 -118 -116 -118 -120 -118 -118 -126 -118 -100 -118 -132 -122 -116 -132 -114 -132 -118 -120 -122 -118 -116 -116 -116 -118 -104 -116 -116 -116 -118 -118 -132 -132 -116 -116 -132 -118 -104 -116 -118 -116 -116 -116 -116 -118 -116 -116 -118 -116 -116 -104 -118 -132 -132 -114 -132 -112 -102 -100 -132 -114 -116 -118 -120 -100 -118 -118 -104 -118 -104 -118 -116 -120 -104 -118 -116 -104 -116 -104 -118 -116 -104 -116 -116 -118 -116 -118 -118 -104 -100 -118 -116 -116 -118 -116 -116 -116 -104 -116 -104 -100 -118 -116 -122 -116 -116 -118 -116 -126 -116 -104 -118 -118 -116 -100 -118 -100 -116 -118 -118 -116 -116 -100 -102 -116 -118 -116 -116 -116 -116 -132 -120 -116 -116 -100 -116 -118 -116 -116 -114 -100 -100 -116 -116 -100 -116 -116 -116 -116 -100 -116 -116 -116 -100 -116 -116 -116 -128 -108 -100 -100 -100 -100 -116 -132 -120 -102 -100 -102 -116 -116 -118 -116 -128 -118 -116 -116 -116 -116 -104 -116 -116 -116 -104 -116 -118 -104 -116 -118 -104 -100 -116 -116 -104 -102 -100 -102 -104 -104 -118 -104 -118 -104 -120 -128 -116 -118 -116 -118 -116 -104 -102 -116 -116 -104 -120 -104 -116 -104 -118 -104 -118 -100 -126 -122 -116 -118 -118 -116 -116 -104 -104 -100 -118 -102 -118 -100 -120 -118 -118 -120 -102 -116 -102 -100 -120 -118 -116 -134 -122 -118 -102 -102 -100 -118 -118 -116 -116 -118 -118 -122 -124 -104 -124 -116 -122 -110 -116 -116 -118 -100 -102 -118 -122 -116 -122 -124 -124 -132 -124 -104 -116 -100 -102 -100 -116 -118 -116 -128 -108 -128 -120 -116 -102 -110 -100 -118 -116 -116 -116 -116 -122 -118 -122 -118 -100 -128 -120 -118 -102 -118 -100 -100 -100 -118 -118 -102 -100 -116 -118 -118 -100 -102 -126 -118 -100 -102 -136 -116 -116 -118 -122 -120 -118 -116 -102 -124 -118 -110 -134 -114 -116 -122 -102 -116 -102 -102 -122 -102 -100 -104 -102 -116 -116 -116 -116 -122 -116 -122 -116 -104 -122 -118 -100 -110 -100 -100 -116 -102 -130 -112 -118 -118 -100 -128 -116 -120 -100 -148 -128 -116 -128 -108 -118 -116 -118 -104 -100 -118 -116 -114 -102 -102 -116 -118 -116 -116 -120 -104 -100 -128 -108 -100 -116 -116 -118 -104 -100 -100 -116 -126 -106 -102 -116 -122 -116 -118 -116 -118 -100 -100 -116 -112 -100 -112 -118 -116 -100 -116 -116 -100 -100 -118 -116 -116 -128 -108 -116 -116 -120 -128 -108 -130 -118 -118 -100 -118 -104 -118 -100 -116 -116 -116 -104 -130 -116 -116 -116 -118 -100 -118 -120 -100 -116 -116 -116 -102 -100 -116 -100 -100 -118 -116 -122 -102 -100 -112 -116 -100 -118 -118 -130 -118 -120 -130 -116 -100 -118 -118 -116 -100 -100 -100 -100 -116 -116 -102 -116 -118 -118 -102 -102 -116 -100 -120 -100 -116 -102 -100 -102 -116 -116 -100 -102 -118 -118 -100 -118 -118 -122 -102 -118 -116 -102 -130 -120 -116 -118 -102 -112 -116 -100 -102 -118 -112 -116 -116 -102 -102 -124 -114 -118 -118 -116 -134 -116 -116 -100 -100 -100 -102 -124 -104 -102 -118 -122 -116 -104 -100 -132 -112 -102 -116 -132 -112 -116 -118 -100 -118 -102 -116 -100 -102 -116 -110 -100 -100 -100 -104 -118 -116 -100 -110 -116 -128 -108 -100 -102 -100 -104 -102 -116 -100 -104 -100 -108 -100 -122 -102 -102 -116 -116 -110 -110 -100 -126 -106 -102 -118 -102 -118 -116 -100 -116 -118 -118 -100 -122 -102 -110 -100 -116 -116 -116 -112 -102 -100 -100 -118 -100 -122 -102 -100 -100 -116 -102 -118 -100 -116 -100 -110 -118 -100 -118 -116 -100 -102 -100 -116 -100 -100 -118 -102 -116 -100 -116 -118 -116 -112 -116 -100 -116 -104 -116 -116 -116 -100 -118 -116 -100 -102 -126 -106 -100 -128 -116 -100 -118 -116 -118 -104 -112 -102 -100 -118 -118 -100 -102 -130 -110 -100 -116 -100 -112 -100 -100 -100 -118 -116 -118 -100 -116 -118 -116 -110 -100 -116 -118 -116 -116 -118 -100 -128 -108 -126 -116 -116 -128 -116 -116 -102 -116 -116 -116 -118 -118 -100 -100 -112 -116 -116 -116 -100 -100 -118 -100 -100 -100 -128 -118 -118 -116 -100 -110 -116 -118 -100 -116 -100 -108 -100 -118 -112 -118 -128 -108 -116 -118 -130 -118 -118 -116 -116 -100 -116 -116 -118 -100 -116 -132 -112 -116 -116 -116 -116 -100 -116 -102 -128 -108 -118 -116 -116 -100 -118 -100 -110 -118 -100 -116 -100 -102 -120 -100 -116 -116 -100 -102 -118 -116 -100 -116 -112 -116 -110 -116 -132 -120 -116 -102 -116 -118 -102 -128 -118 -118 -118 -116 -118 -100 -116 -100 -116 -100 -116 -100 -118 -116 -116 -102 -118 -112 -116 -116 -102 -130 -112 -116 -116 -102 -120 -118 -116 -116 -104 -116 -116 -102 -118 -100 -100 -118 -112 -102 -116 -116 -116 -116 -100 -100 -116 -100 -116 -118 -116 -116 -118 -116 -116 -130 -116 -102 -116 -102 -110 -100 -102 -116 -100 -116 -128 -108 -116 -102 -116 -116 -122 -102 -100 -116 -116 -116 -100 -100 -100 -118 -102 -118 -100 -116 -116 -100 -118 -114 -122 -102 -116 -116 -122 -102 -100 -104 -116 -100 -102 -118 -116 -116 -130 -118 -102 -100 -104 -116 -116 -116 -118 -116 -118 -116 -102 -116 -100 -100 -100 -100 -116 -116 -100 -102 -100 -100 -100 -116 -100 -100 -100 -102 -100 -116 -116 -100 -122 -102 -130 -110 -100 -120 -122 -118 -112 -116 -100 -100 -116 -118 -116 -118 -116 -116 -110 -118 -100 -118 -116 -116 -100 -132 -116 -104 -118 -120 -120 -118 -116 -116 -122 -104 -100 -116 -120 -116 -110 -120 -100 -124 -130 -116 -102 -116 -116 -100 -122 -118 -120 -100 -116 -116 -116 -100 -120 -120 -100 -116 -100 -118 -114 -116 -116 -118 -116 -116 -118 -122 -116 -116 -120 -100 -120 -122 -102 -116 -118 -116 -122 -102 -100 -118 -116 -100 -110 -120 -120 -100 -116 -120 -100 -116 -118 -100 -100 -122 -124 -118 -100 -128 -118 -120 -120 -100 -130 -110 -124 -104 -120 -116 -116 -116 -112 -118 -116 -100 -116 -116 -118 -116 -102 -128 -124 -116 -116 -130 -110 -100 -100 -118 -100 -118 -116 -116 -116 -100 -116 -118 -116 -100 -102 -116 -116 -100 -116 -102 -116 -116 -116 -116 -100 -102 -116 -100 -100 -106 -118 -116 -100 -116 -116 -120 -132 -112 -104 -116 -100 -116 -104 -134 -124 -116 -132 -132 -112 -118 -116 -118 -118 -116 -100 -122 -118 -116 -116 -118 -118 -116 -116 -100 -116 -128 -120 -100 -100 -118 -126 -116 -116 -100 -116 -116 -128 -126 -106 -116 -100 -100 -116 -100 -100 -116 -116 -116 -116 -116 -100 -100 -132 -120 -116 -116 -100 -100 -116 -116 -100 -100 -100 -116 -128 -116 -100 -100 -112 -100 -118 -116 -116 -116 -116 -100 -112 -116 -116 -128 -116 -100 -116 -100 -116 -100 -116 -100 -100 -100 -100 -100 -100 -100 -100 -116 -100 -116 -116 -116 -112 -116 -116 -100 -100 -100 -116 -128 -116 -100 -116 -116 -100 -100 -116 -116 -116 -100 -116 -100 -100 -116 -100 -100 -116 -116 -128 -108 -116 -116 -116 -116 -116 -100 -100 -100 -100 -116 -116 -116 -116 -128 -118 -116 -118 -112 -116 -100 -100 -100 -116 -100 -112 -112 -116 -116 -100 -118 -116 -116 -100 -100 -100 -116 -116 -116 -128 -116 -100 -128 -108 -116 -116 -116 -100 -118 -128 -108 -100 -116 -100 -116 -112 -116 -116 -100 -128 -116 -100 -100 -100 -116 -116 -116 -100 -118 -100 -100 -100 -116 -100 -100 -116 -116 -116 -116 -100 -112 -100 -128 -116 -100 -100 -116 -116 -100 -116 -116 -100 -100 -100 -116 -116 -116 -116 -116 -116 -116 -102 -100 -116 -116 -100 -116 -100 -100 -100 -118 -116 -116 -100 -100 -116 -116 -116 -100 -116 -100 -112 -118 -128 -116 -118 -100 -116 -116 -112 -100 -116 -116 -116 -116 -128 -108 -116 -116 -132 -116 -100 -116 -116 -116 -118 -116 -116 -100 -112 -128 -118 -112 -116 -112 -100 -100 -128 -112 -116 -116 -116 -100 -116 -100 -100 -116 -100 -100 -116 -118 -116 -128 -116 -128 -116 -112 -118 -100 -100 -116 -116 -116 -112 -116 -116 -100 -116 -116 -116 -128 -116 -116 -116 -116 -100 -116 -100 -100 -100 -116 -112 -112 -112 -116 -118 -116 -100 -116 -100 -100 -116 -112 -116 -118 -116 -100 -116 -116 -100 -116 -100 -100 -100 -116 -100 -100 -100 -100 -116 -100 -132 -114 -116 -112 -116 -100 -100 -116 -100 -116 -100 -116 -116 -100 -116 -116 -100 -116 -116 -116 -116 -116 -120 -100 -116 -118 -118 -128 -108 -116 -100 -116 -116 -116 -100 -100 -118 -116 -100 -118 -100 -100 -128 -118 -116 -116 -116 -116 -118 -100 -116 -100 -116 -128 -118 -132 -116 -116 -118 -128 -116 -100 -116 -100 -118 -116 -116 -100 -116 -100 -100 -100 -100 -118 -116 -128 -108 -100 -118 -100 -118 -116 -100 -116 -116 -100 -100 -100 -116 -128 -116 -116 -116 -116 -132 -122 -102 -118 -116 -116 -116 -128 -116 -102 -100 -116 -102 -118 -102 -100 -116 -116 -118 -128 -128 -108 -116 -102 -118 -132 -122 -116 -102 -100 -116 -128 -118 -116 -116 -102 -116 -130 -116 -102 -100 -116 -116 -116 -116 -132 -112 -100 -130 -110 -100 -116 -102 -116 -102 -116 -116 -118 -118 -118 -128 -108 -102 -116 -116 -100 -100 -116 -116 -100 -118 -100 -100 -116 -100 -100 -116 -118 -118 -128 -116 -100 -100 -116 -116 -116 -118 -112 -100 -112 -100 -118 -100 -116 -118 -116 -116 -128 -108 -100 -100 -116 -100 -118 -118 -118 -102 -118 -104 -128 -118 -118 -128 -120 -100 -118 -118 -132 -112 -118 -116 -118 -116 -128 -128 -116 -100 -100 -116 -116 -118 -132 -118 -100 -118 -118 -102 -100 -132 -114 -112 -100 -100 -118 -128 -118 -118 -116 -116 -106 -116 -118 -106 -118 -106 -132 -112 -100 -100 -132 -118 -118 -116 -116 -116 -116 -108 -118 -128 -118 -116 -116 -118 -106 -116 -116 -116 -106 -116 -116 -122 -118 -118 -116 -106 -102 -118 -116 -118 -120 -116 -120 -118 -114 -116 -102 -122 -102 -132 -118 -118 -116 -116 -116 -116 -112 -116 -114 -118 -100 -118 -120 -116 -116 -100 -100 -116 -118 -100 -116 -116 -100 -124 -116 -102 -118 -100 -118 -118 -118 -100 -118 -132 -114 -120 -100 -118 -100 -116 -118 -116 -116 -118 -118 -120 -108 -120 -118 -116 -118 -116 -118 -108 -112 -116 -118 -108 -118 -108 -120 -120 -124 -116 -108 -100 -124 -112 -118 -108 -100 -116 -122 -110 -118 -116 -122 -122 -102 -116 -110 -100 -120 -108 -116 -118 -116 -124 -104 -100 -106 -112 -132 -120 -120 -122 -102 -106 -116 -120 -116 -100 -118 -100 -116 -130 -118 -118 -116 -116 -132 -116 -100 -116 -132 -134 -132 -120 -130 -118 -128 -108 -102 -118 -116 -128 -118 -116 -116 -118 -122 -126 -116 -130 -112 -118 -110 -116 -100 -116 -126 -106 -116 -116 -100 -116 -102 -116 -116 -100 -116 -100 -128 -116 -116 -100 -100 -118 -116 -116 -116 -130 -112 -118 -116 -116 -118 -100 -116 -100 -128 -116 -116 -100 -100 -100 -100 -100 -132 -116 -116 -126 -112 -116 -116 -128 -112 -116 -102 -100 -100 -118 -118 -116 -100 -128 -116 -128 -120 -118 -116 -118 -116 -116 -130 -110 -116 -130 -116 -118 -116 -116 -116 -126 -116 -116 -116 -100 -118 -102 -116 -128 -118 -120 -116 -102 -102 -100 -102 -100 -100 -116 -118 -116 -128 -116 -118 -124 -118 -102 -102 -102 -116 -116 -102 -118 -104 -100 -116 -130 -116 -118 -116 -118 -116 -132 -120 -118 -116 -116 -102 -110 -118 -102 -102 -116 -120 -118 -100 -118 -100 -116 -118 -102 -100 -118 -122 -102 -112 -100 -100 -100 -116 -116 -100 -100 -116 -116 -118 -100 -116 -100 -118 -100 -100 -100 -100 -100 -100 -116 -116 -116 -116 -116 -100 -116 -100 -116 -118 -116 -116 -100 -116 -116 -116 -116 -100 -128 -132 -114 -116 -100 -116 -116 -116 -118 -116 -116 -116 -118 -116 -116 -104 -100 -118 -104 -116 -116 -104 -116 -116 -116 -116 -116 -116 -104 -128 -108 -112 -128 -108 -100 -116 -116 -104 -100 -100 -116 -116 -118 -104 -100 -116 -104 -116 -118 -104 -100 -116 -116 -116 -100 -100 -118 -100 -116 -116 -116 -116 -116 -100 -100 -100 -116 -116 -100 -100 -118 -100 -116 -116 -116 -118 -100 -116 -100 -116 -116 -116 -118 -100 -116 -118 -116 -116 -112 -116 -128 -116 -112 -116 -100 -118 -116 -116 -116 -100 -112 -116 -116 -112 -100 -116 -100 -100 -100 -100 -116 -116 -116 -116 -116 -100 -118 -100 -116 -118 -118 -116 -116 -100 -116 -112 -116 -116 -116 -116 -118 -116 -132 -120 -102 -100 -118 -116 -116 -118 -116 -118 -116 -118 -128 -118 -102 -100 -116 -130 -120 -116 -116 -116 -116 -116 -104 -116 -100 -100 -116 -100 -116 -102 -116 -100 -100 -128 -116 -112 -116 -116 -118 -116 -116 -118 -116 -100 -100 -120 -116 -122 -102 -116 -100 -116 -102 -116 -116 -116 -116 -116 -116 -100 -100 -116 -118 -116 -116 -116 -116 -100 -116 -116 -116 -116 -100 -116 -116 -116 -100 -116 -116 -116 -100 -116 -100 -118 -118 -100 -116 -116 -116 -116 -116 -100 -120 -120 -100 -116 -118 -100 -100 -116 -118 -100 -112 -122 -118 -100 -130 -116 -116 -132 -114 -118 -102 -100 -120 -100 -116 -116 -116 -122 -116 -116 -118 -132 -116 -116 -106 -116 -116 -106 -116 -118 -116 -118 -128 -108 -116 -108 -100 -116 -116 -106 -118 -116 -106 -118 -118 -116 -132 -116 -118 -118 -106 -100 -130 -118 -116 -128 -130 -116 -108 -116 -108 -116 -118 -118 -100 -116 -116 -118 -130 -112 -116 -116 -118 -128 -116 -120 -116 -116 -118 -122 -102 -100 -116 -116 -116 -118 -116 -116 -100 -102 -100 -116 -120 -116 -116 -100 -118 -100 -100 -118 -100 -100 -116 -118 -116 -116 -116 -100 -118 -102 -116 -100 -132 -122 -102 -116 -100 -120 -116 -100 -116 -116 -118 -118 -118 -116 -116 -102 -116 -118 -116 -116 -118 -102 -116 -118 -118 -102 -132 -112 -100 -100 -100 -110 -116 -128 -108 -100 -116 -116 -118 -118 -104 -116 -116 -118 -120 -118 -104 -100 -116 -100 -118 -102 -118 -116 -104 -100 -116 -118 -100 -116 -100 -128 -118 -128 -118 -116 -102 -118 -118 -102 -118 -100 -100 -102 -116 -116 -102 -100 -116 -120 -100 -118 -118 -118 -100 -100 -116 -118 -100 -116 -118 -120 -116 -118 -120 -118 -100 -116 -116 -118 -120 -100 -116 -132 -112 -100 -116 -100 -116 -128 -118 -116 -116 -102 -118 -116 -116 -116 -100 -100 -118 -116 -110 -120 -126 -116 -102 -118 -100 -118 -102 -118 -100 -100 -118 -118 -116 -116 -132 -130 -116 -110 -118 -126 -106 -128 -116 -116 -100 -100 -116 -100 -118 -116 -118 -118 -116 -100 -118 -100 -126 -116 -116 -116 -100 -100 -100 -116 -116 -100 -118 -116 -118 -118 -100 -120 -118 -116 -116 -100 -100 -116 -118 -100 -116 -102 -118 -116 -102 -116 -116 -118 -100 -100 -116 -116 -118 -128 -108 -100 -100 -118 -102 -102 -118 -116 -118 -116 -130 -116 -100 -122 -116 -128 -118 -132 -112 -100 -116 -100 -116 -104 -116 -116 -116 -122 -102 -116 -120 -116 -118 -100 -118 -118 -116 -100 -118 -102 -118 -102 -118 -104 -116 -118 -120 -118 -116 -116 -116 -110 -118 -100 -118 -118 -130 -110 -118 -116 -118 -118 -126 -106 -100 -116 -116 -120 -100 -110 -116 -120 -120 -118 -116 -100 -102 -116 -100 -100 -116 -102 -100 -100 -100 -116 -100 -100 -102 -130 -110 -118 -116 -118 -132 -120 -118 -116 -116 -130 -110 -120 -118 -118 -120 -116 -100 -132 -120 -116 -100 -100 -116 -118 -118 -100 -128 -118 -102 -118 -118 -118 -118 -118 -100 -116 -104 -118 -118 -132 -114 -118 -116 -120 -116 -118 -116 -132 -116 -104 -118 -116 -104 -100 -100 -116 -116 -116 -116 -104 -132 -116 -118 -104 -100 -116 -118 -132 -116 -104 -132 -132 -116 -104 -116 -104 -118 -118 -126 -118 -104 -120 -116 -104 -118 -128 -118 -104 -116 -104 -128 -118 -116 -100 -100 -116 -116 -128 -116 -116 -100 -100 -116 -116 -100 -128 -118 -100 -116 -132 -120 -118 -116 -116 -118 -100 -116 -100 -100 -116 -128 -108 -128 -118 -100 -116 -100 -118 -118 -116 -100 -116 -100 -100 -100 -112 -100 -100 -116 -100 -116 -118 -116 -116 -100 -102 -100 -116 -116 -128 -108 -128 -118 -116 -100 -116 -100 -100 -100 -100 -100 -116 -100 -128 -116 -116 -116 -116 -100 -116 -116 -118 -116 -100 -100 -128 -112 -116 -100 -118 -130 -118 -100 -118 -116 -100 -118 -116 -116 -116 -100 -116 -118 -118 -118 -100 -100 -118 -100 -100 -116 -116 -116 -128 -112 -118 -100 -116 -102 -118 -100 -116 -116 -128 -128 -116 -100 -100 -100 -100 -118 -118 -112 -118 -116 -100 -112 -100 -118 -116 -130 -110 -100 -118 -116 -128 -108 -116 -112 -118 -116 -100 -116 -116 -116 -116 -118 -100 -116 -118 -100 -102 -112 -116 -100 -118 -118 -116 -118 -130 -116 -128 -108 -100 -100 -118 -118 -112 -118 -116 -116 -118 -100 -100 -112 -118 -116 -100 -118 -100 -100 -100 -102 -118 -102 -100 -118 -102 -118 -116 -118 -100 -112 -118 -118 -116 -112 -100 -112 -118 -128 -108 -116 -116 -100 -100 -116 -102 -100 -104 -100 -116 -116 -118 -122 -102 -124 -118 -100 -118 -124 -118 -100 -102 -104 -116 -128 -118 -132 -112 -100 -116 -116 -142 -132 -112 -120 -116 -130 -118 -102 -102 -100 -122 -102 -112 -116 -124 -104 -116 -116 -124 -116 -122 -102 -100 -116 -104 -114 -102 -116 -116 -116 -116 -118 -104 -100 -118 -116 -116 -116 -102 -116 -118 -120 -100 -100 -116 -116 -100 -100 -100 -100 -118 -118 -128 -108 -100 -116 -118 -128 -116 -132 -120 -120 -118 -116 -102 -116 -116 -100 -112 -118 -118 -118 -100 -116 -112 -118 -118 -116 -120 -118 -116 -116 -100 -116 -100 -100 -100 -116 -128 -116 -116 -100 -100 -100 -116 -100 -116 -100 -116 -116 -100 -100 -116 -116 -100 -116 -100 -116 -100 -116 -100 -118 -100 -116 -116 -116 -100 -116 -118 -116 -116 -102 -100 -100 -118 -100 -100 -116 -116 -116 -118 -116 -116 -116 -118 -100 -128 -112 -100 -100 -116 -100 -100 -100 -118 -118 -100 -116 -112 -118 -100 -100 -100 -118 -100 -102 -118 -118 -116 -118 -100 -102 -100 -116 -100 -122 -106 -116 -100 -110 -100 -100 -116 -102 -100 -116 -100 -102 -100 -100 -116 -116 -102 -100 -100 -110 -128 -126 -118 -118 -110 -100 -116 -100 -110 -100 -126 -128 -108 -118 -100 -116 -118 -118 -116 -116 -116 -118 -102 -116 -116 -100 -120 -116 -100 -120 -128 -108 -130 -110 -100 -118 -100 -116 -116 -100 -118 -116 -116 -118 -116 -118 -116 -102 -116 -116 -118 -116 -120 -100 -118 -110 -116 -102 -128 -108 -116 -118 -100 -102 -118 -116 -116 -100 -126 -116 -116 -100 -118 -100 -116 -100 -126 -106 -120 -126 -106 -100 -102 -100 -104 -100 -116 -100 -102 -116 -100 -116 -116 -100 -100 -102 -100 -100 -102 -100 -102 -102 -118 -122 -118 -118 -102 -118 -102 -100 -116 -100 -102 -116 -102 -100 -112 -102 -122 -102 -118 -116 -116 -118 -118 -100 -118 -120 -128 -116 -104 -100 -100 -118 -116 -104 -116 -100 -100 -100 -116 -116 -118 -116 -108 -100 -102 -128 -108 -118 -102 -100 -118 -100 -116 -118 -100 -112 -116 -118 -100 -116 -116 -102 -116 -100 -102 -116 -100 -116 -118 -102 -116 -102 -110 -100 -118 -102 -100 -110 -100 -100 -100 -100 -102 -100 -116 -100 -110 -116 -102 -100 -118 -100 -102 -100 -116 -116 -122 -102 -116 -100 -116 -100 -116 -102 -100 -100 -100 -130 -110 -104 -102 -100 -116 -120 -120 -116 -116 -102 -122 -116 -118 -118 -116 -112 -102 -100 -118 -100 -100 -100 -116 -130 -110 -118 -116 -100 -100 -118 -102 -116 -116 -120 -102 -110 -116 -118 -118 -100 -116 -102 -118 -110 -102 -100 -122 -118 -116 -100 -102 -100 -100 -100 -100 -100 -100 -102 -116 -100 -110 -100 -116 -100 -120 -116 -100 -116 -116 -102 -100 -116 -116 -116 -100 -100 -116 -100 -126 -116 -116 -116 -102 -102 -116 -100 -116 -100 -118 -116 -100 -130 -118 -116 -118 -100 -100 -100 -102 -116 -100 -116 -100 -128 -108 -100 -116 -116 -128 -108 -100 -102 -118 -128 -108 -102 -116 -114 -116 -110 -130 -120 -120 -100 -118 -104 -104 -102 -128 -108 -100 -100 -100 -102 -118 -100 -128 -116 -118 -102 -102 -118 -118 -118 -116 -104 -112 -116 -116 -116 -118 -116 -116 -100 -100 -116 -110 -116 -116 -116 -100 -102 -116 -116 -116 -118 -116 -100 -120 -118 -100 -116 -116 -112 -102 -102 -116 -116 -116 -118 -102 -118 -100 -100 -116 -118 -120 -116 -100 -102 -100 -116 -118 -118 -116 -102 -100 -100 -118 -116 -116 -100 -112 -100 -116 -100 -118 -116 -116 -102 -116 -100 -118 -102 -100 -118 -100 -116 -116 -128 -118 -118 -102 -100 -100 -100 -102 -126 -116 -102 -118 -100 -116 -100 -100 -116 -116 -122 -128 -118 -118 -100 -126 -106 -116 -130 -110 -116 -116 -100 -116 -118 -102 -118 -100 -116 -116 -102 -118 -118 -122 -122 -120 -100 -118 -116 -100 -102 -102 -116 -126 -110 -116 -102 -100 -126 -106 -102 -120 -116 -102 -116 -110 -116 -118 -102 -100 -100 -120 -100 -128 -116 -116 -100 -102 -116 -110 -116 -132 -112 -118 -102 -128 -108 -102 -100 -116 -128 -120 -120 -118 -124 -118 -102 -118 -110 -100 -118 -100 -100 -128 -126 -106 -102 -100 -116 -102 -100 -120 -100 -100 -116 -118 -102 -102 -110 -130 -110 -102 -122 -128 -108 -116 -110 -100 -100 -116 -118 -118 -116 -100 -120 -130 -110 -116 -128 -120 -116 -102 -100 -100 -100 -116 -100 -100 -130 -120 -126 -118 -100 -102 -118 -100 -116 -120 -116 -100 -104 -100 -100 -128 -116 -100 -102 -116 -118 -116 -102 -100 -100 -102 -118 -126 -118 -100 -116 -118 -126 -106 -100 -116 -116 -100 -116 -116 -116 -110 -116 -130 -116 -100 -116 -100 -118 -116 -116 -116 -124 -104 -100 -100 -100 -118 -116 -118 -118 -116 -116 -116 -100 -100 -100 -116 -128 -108 -116 -116 -112 -116 -116 -116 -100 -118 -116 -118 -116 -100 -116 -130 -110 -116 -116 -116 -116 -128 -112 -116 -116 -100 -116 -116 -116 -118 -116 -116 -112 -100 -100 -100 -116 -116 -116 -100 -100 -128 -116 -116 -116 -100 -116 -116 -100 -116 -116 -116 -100 -100 -116 -100 -116 -116 -116 -116 -100 -118 -118 -100 -116 -112 -118 -100 -118 -100 -116 -118 -128 -108 -116 -100 -116 -118 -116 -116 -116 -116 -112 -100 -116 -116 -116 -116 -116 -100 -100 -100 -100 -116 -116 -100 -100 -116 -116 -100 -118 -100 -100 -116 -116 -100 -100 -116 -116 -128 -108 -116 -100 -116 -116 -116 -116 -100 -100 -116 -116 -100 -112 -116 -116 -100 -100 -116 -100 -116 -116 -100 -100 -100 -116 -100 -100 -130 -116 -116 -116 -100 -116 -112 -100 -100 -116 -116 -100 -118 -116 -116 -116 -116 -116 -116 -116 -116 -118 -116 -128 -116 -116 -118 -116 -130 -110 -100 -116 -128 -108 -118 -100 -100 -116 -116 -116 -118 -100 -116 -116 -100 -116 -118 -100 -116 -100 -116 -116 -100 -100 -122 -102 -116 -116 -100 -118 -100 -100 -116 -116 -116 -116 -116 -118 -118 -116 -128 -116 -116 -100 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -128 -116 -116 -116 -116 -100 -116 -112 -116 -116 -100 -100 -100 -116 -100 -100 -116 -116 -116 -116 -112 -116 -116 -116 -116 -116 -100 -116 -100 -116 -116 -116 -112 -100 -116 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -100 -116 -112 -100 -116 -100 -116 -100 -116 -100 -100 -116 -100 -116 -116 -116 -100 -100 -100 -116 -100 -116 -116 -100 -100 -116 -100 -132 -114 -116 -116 -116 -100 -112 -116 -104 -116 -116 -116 -104 -116 -116 -104 -116 -116 -104 -118 -104 -116 -116 -116 -104 -116 -116 -116 -104 -116 -116 -104 -102 -100 -116 -116 -116 -116 -116 -104 -116 -116 -116 -116 -104 -118 -104 -118 -116 -116 -116 -116 -118 -104 -100 -116 -100 -118 -100 -116 -100 -100 -116 -116 -116 -116 -116 -116 -128 -118 -116 -100 -132 -120 -118 -116 -118 -116 -100 -116 -120 -100 -116 -116 -116 -100 -118 -116 -116 -116 -116 -118 -100 -118 -116 -112 -112 -116 -102 -128 -116 -116 -112 -100 -100 -100 -118 -116 -118 -116 -116 -116 -116 -116 -128 -116 -116 -116 -130 -116 -100 -116 -116 -102 -118 -116 -116 -100 -100 -100 -118 -112 -100 -102 -118 -100 -118 -118 -118 -116 -100 -118 -116 -100 -100 -100 -120 -116 -100 -116 -116 -116 -116 -116 -100 -100 -118 -120 -100 -118 -100 -116 -100 -116 -116 -100 -100 -102 -100 -118 -100 -128 -108 -128 -112 -128 -108 -118 -116 -116 -116 -118 -116 -116 -118 -132 -120 -118 -116 -116 -116 -116 -102 -100 -116 -100 -112 -118 -100 -132 -120 -118 -116 -116 -116 -118 -116 -118 -100 -118 -116 -118 -116 -118 -102 -100 -118 -116 -102 -116 -128 -116 -116 -118 -100 -118 -100 -118 -128 -116 -118 -102 -102 -102 -118 -118 -116 -128 -116 -120 -132 -112 -100 -116 -116 -118 -104 -118 -118 -100 -102 -120 -100 -132 -118 -116 -102 -100 -118 -118 -102 -100 -118 -116 -112 -116 -116 -118 -118 -118 -116 -116 -100 -116 -130 -116 -116 -100 -112 -100 -100 -116 -100 -100 -118 -116 -130 -118 -118 -116 -120 -118 -100 -118 -102 -116 -118 -100 -102 -116 -132 -112 -100 -100 -100 -116 -116 -116 -118 -116 -116 -118 -118 -116 -100 -116 -118 -130 -110 -102 -102 -116 -116 -100 -116 -100 -116 -100 -100 -100 -118 -102 -100 -114 -132 -116 -102 -116 -100 -100 -116 -116 -112 -116 -118 -100 -112 -100 -116 -110 -116 -100 -100 -116 -116 -116 -118 -116 -116 -118 -100 -118 -118 -100 -116 -118 -100 -116 -116 -102 -102 -118 -118 -100 -100 -116 -118 -116 -100 -130 -126 -116 -116 -118 -130 -110 -118 -116 -116 -100 -118 -116 -116 -116 -118 -100 -116 -100 -116 -100 -118 -118 -116 -130 -128 -116 -116 -100 -116 -116 -100 -116 -116 -100 -116 -100 -116 -118 -118 -118 -116 -100 -100 -116 -116 -118 -118 -116 -100 -100 -118 -100 -100 -128 -116 -118 -118 -116 -116 -126 -116 -100 -100 -116 -100 -116 -116 -118 -116 -100 -118 -130 -118 -116 -118 -116 -100 -118 -100 -118 -100 -120 -116 -100 -118 -116 -116 -130 -118 -120 -130 -118 -116 -100 -130 -110 -116 -100 -126 -132 -130 -110 -116 -116 -118 -100 -102 -128 -120 -102 -118 -126 -116 -118 -102 -100 -116 -118 -116 -118 -104 -100 -116 -116 -102 -100 -102 -100 -118 -116 -116 -102 -100 -118 -120 -132 -118 -102 -128 -128 -108 -116 -132 -116 -102 -116 -116 -116 -130 -116 -116 -130 -110 -116 -116 -116 -100 -116 -116 -132 -122 -116 -120 -128 -118 -118 -116 -132 -120 -118 -126 -106 -118 -116 -118 -116 -100 -116 -100 -116 -118 -118 -118 -102 -116 -116 -116 -100 -100 -100 -110 -116 -100 -100 -100 -116 -116 -116 -116 -118 -102 -102 -120 -116 -116 -100 -116 -120 -116 -100 -116 -116 -116 -100 -116 -102 -116 -100 -118 -116 -116 -116 -100 -120 -100 -118 -100 -118 -116 -110 -100 -100 -128 -108 -100 -116 -102 -130 -118 -100 -100 -104 -128 -118 -118 -102 -118 -116 -110 -100 -102 -116 -118 -132 -120 -102 -116 -116 -116 -120 -118 -116 -118 -118 -116 -116 -104 -100 -116 -128 -118 -118 -116 -124 -128 -124 -118 -102 -128 -108 -116 -102 -118 -102 -118 -116 -102 -118 -120 -102 -102 -118 -102 -116 -116 -124 -116 -102 -116 -102 -116 -102 -116 -116 -116 -118 -100 -118 -102 -116 -116 -110 -110 -116 -128 -118 -118 -116 -118 -120 -118 -118 -126 -118 -100 -118 -132 -122 -116 -132 -114 -132 -118 -120 -122 -118 -116 -116 -116 -118 -104 -116 -116 -116 -118 -118 -132 -132 -116 -116 -132 -118 -104 -116 -118 -116 -116 -116 -116 -118 -116 -116 -118 -116 -116 -104 -118 -132 -132 -114 -132 -112 -102 -100 -132 -114 -116 -118 -120 -100 -118 -118 -104 -118 -104 -118 -116 -120 -104 -118 -116 -104 -116 -104 -118 -116 -104 -116 -116 -118 -116 -118 -118 -104 -100 -118 -116 -116 -118 -116 -116 -116 -104 -116 -104 -100 -118 -116 -122 -116 -116 -118 -116 -126 -116 -104 -118 -118 -116 -100 -118 -100 -116 -118 -118 -116 -116 -100 -102 -116 -118 -116 -116 -116 -116 -132 -120 -116 -116 -100 -116 -118 -116 -116 -114 -100 -100 -116 -116 -100 -116 -116 -116 -116 -100 -116 -116 -116 -100 -116 -116 -116 -128 -108 -100 -100 -100 -100 -116 -132 -120 -102 -100 -102 -116 -116 -118 -116 -128 -118 -116 -116 -116 -116 -104 -116 -116 -116 -104 -116 -118 -104 -116 -118 -104 -100 -116 -116 -104 -102 -100 -102 -104 -104 -118 -104 -118 -104 -120 -128 -116 -118 -116 -118 -116 -104 -102 -116 -116 -104 -120 -104 -116 -104 -118 -104 -118 -100 -126 -122 -116 -118 -118 -116 -116 -104 -104 -100 -118 -102 -118 -100 -120 -118 -118 -120 -102 -116 -102 -100 -120 -118 -116 -134 -122 -118 -102 -102 -100 -118 -118 -116 -116 -118 -118 -122 -124 -104 -124 -116 -122 -110 -116 -116 -118 -100 -102 -118 -122 -116 -122 -124 -124 -132 -124 -104 -116 -100 -102 -100 -116 -118 -116 -128 -108 -128 -120 -116 -102 -110 -100 -118 -116 -116 -116 -116 -122 -118 -122 -118 -100 -128 -120 -118 -102 -118 -100 -100 -100 -118 -118 -102 -100 -116 -118 -118 -100 -102 -126 -118 -100 -102 -136 -116 -116 -118 -122 -120 -118 -116 -102 -124 -118 -110 -134 -114 -116 -122 -102 -116 -102 -102 -122 -102 -100 -104 -102 -116 -116 -116 -116 -122 -116 -122 -116 -104 -122 -118 -100 -110 -100 -100 -116 -102 -130 -112 -118 -118 -100 -128 -116 -120 -100 -148 -128 -116 -128 -108 -118 -116 -118 -104 -100 -118 -116 -114 -102 -102 -116 -118 -116 -116 -120 -104 -100 -128 -108 -100 -116 -116 -118 -104 -100 -100 -116 -126 -106 -102 -116 -122 -116 -118 -116 -118 -100 -100 -116 -112 -100 -112 -118 -116 -100 -116 -116 -100 -100 -118 -116 -116 -128 -108 -116 -116 -120 -128 -108 -130 -118 -118 -100 -118 -104 -118 -100 -116 -116 -116 -104 -130 -116 -116 -116 -118 -100 -118 -120 -100 -116 -116 -116 -102 -100 -116 -100 -100 -118 -116 -122 -102 -100 -112 -116 -100 -118 -118 -130 -118 -120 -130 -116 -100 -118 -118 -116 -100 -100 -100 -100 -116 -116 -102 -116 -118 -118 -102 -102 -116 -100 -120 -100 -116 -102 -100 -102 -116 -116 -100 -102 -118 -118 -100 -118 -118 -122 -102 -118 -116 -102 -130 -120 -116 -118 -102 -112 -116 -100 -102 -118 -112 -116 -116 -102 -102 -124 -114 -118 -118 -116 -134 -116 -116 -100 -100 -100 -102 -124 -104 -102 -118 -122 -116 -104 -100 -132 -112 -102 -116 -132 -112 -116 -118 -100 -118 -102 -116 -100 -102 -116 -110 -100 -100 -100 -104 -118 -116 -100 -110 -116 diff --git a/scripts/dly_error_profiles/dly_error_profile_10.dat b/scripts/dly_error_profiles/dly_error_profile_10.dat deleted file mode 100644 index ffff5554aa92540ff713ee8d0b00cd0be6818c24..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_10.dat +++ /dev/null @@ -1,8000 +0,0 @@ -160 -161 -161 -161 -163 -163 -163 -163 -164 -164 -165 -165 -165 -168 -168 -168 -150 -153 -153 -153 --1 -153 -153 -153 -153 -153 -154 -154 -154 -155 -160 -160 -161 --1 --1 -163 -163 -163 -163 -164 -164 -166 -166 -166 -168 -168 -168 -168 -169 -168 -169 -169 -169 -171 -171 --1 -173 -173 -173 -193 -194 -194 -196 -196 -196 -196 -196 --1 --1 -198 -198 -199 -199 -199 -199 -201 -181 -163 -143 -153 -153 -154 -154 -155 -156 -155 -155 -156 --1 --1 --1 -158 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -165 -166 -166 -166 -168 -168 -168 --1 -169 -169 -170 -170 -170 -171 -173 -173 -173 -174 -174 -175 -175 -176 -176 -178 --1 --1 -183 -179 -179 -180 -180 -196 -180 -181 -181 -183 -184 -184 -184 -185 -185 -153 -153 -153 -154 -155 -155 --1 --1 --1 -158 -163 -164 -164 -165 -165 -164 -165 -166 -166 -168 -168 -168 --1 --1 --1 -169 -170 -170 -171 -171 -173 -173 -173 -173 -174 -183 -174 -175 -175 -176 -176 -178 -178 -178 -178 -179 -179 -179 -180 -180 -181 -181 --1 --1 --1 -184 -185 -186 -186 -186 -188 -186 -186 -188 -188 -188 -188 -196 -189 -189 -190 -198 -191 -191 -191 --1 --1 --1 --1 -193 -194 -198 -195 -195 -198 -196 -198 -198 -198 -199 --1 --1 -201 -201 -201 -201 -203 -183 -163 -143 -153 -153 -153 -154 -154 -155 -155 -156 -158 -158 -158 -158 --1 --1 --1 -183 -153 -153 -153 -154 -154 -155 -156 -156 -163 -163 -163 -164 -164 --1 --1 -166 -166 -168 -168 -168 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -174 -174 -175 -176 -176 --1 --1 --1 -178 -179 -179 -179 -180 -181 -181 -181 -183 -183 -183 -183 -184 -193 -203 -185 -194 -188 -188 -188 --1 -189 -189 -190 -191 -191 -193 -193 -193 -201 -194 -194 -195 -198 -206 -198 -208 -200 -200 -200 -201 --1 -203 -213 -193 -173 -154 -154 -153 -153 -154 -155 -163 -163 -163 -163 -163 -223 -203 -183 -168 -168 --1 -168 -168 -168 -169 -171 -170 -134 -149 -150 -150 -151 -153 -153 -153 -155 -154 -154 -153 -155 -155 --1 --1 --1 -158 -158 -158 -158 -159 -159 -160 -160 -160 -161 -161 -163 -163 --1 --1 --1 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 --1 -174 -175 -173 -174 -174 -175 -175 -176 -176 -178 -178 -178 -179 -179 -180 -180 -181 -181 -183 -183 --1 --1 -183 -184 -184 -185 -185 -186 -186 -186 -188 -188 -188 -188 -189 -190 -191 -191 -193 -193 -193 -193 -194 -194 -195 -195 -196 -196 -198 -196 -176 --1 --1 --1 -149 -149 -150 -150 -151 -151 -151 -153 -153 -149 -158 -158 -158 -158 -159 -160 -160 -161 -163 -163 --1 -163 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -171 -171 -171 --1 --1 --1 --1 -174 -174 -175 -175 -176 -176 -176 -178 -178 -178 -178 -179 -179 -180 -180 -181 -181 --1 --1 --1 -184 -184 -184 -185 -185 -186 -186 -188 -188 -188 -188 -188 -189 -189 -189 -190 -190 -191 -191 -193 --1 --1 -194 -194 -194 -194 -195 -195 -196 -196 -196 -198 -198 -198 -198 -199 -199 -200 -200 -200 -201 -201 -203 --1 --1 -203 -203 -204 -204 -205 -205 -205 -206 -206 -208 -208 -208 -208 -208 -209 -208 -188 -169 -149 -150 --1 --1 --1 --1 -153 -153 -153 -153 -153 -154 -154 -155 -155 -155 -156 -156 -158 -158 --1 -158 -158 -159 -159 -160 -160 -160 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 --1 --1 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -173 -174 -174 -175 --1 --1 --1 -176 -178 -178 -178 -178 -178 -179 -179 -179 -179 -180 -180 -181 -181 -183 -183 -183 -184 -184 -185 -185 -186 -186 -186 -186 -186 -188 -188 -188 -188 -188 -190 -190 -191 -191 -191 -193 -193 -193 -193 -194 -194 -195 -156 -158 -158 -158 -158 -159 -160 --1 -161 -161 -163 -163 -163 -163 -163 -163 -163 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 --1 --1 --1 -169 -170 -170 -171 -171 -171 -173 -173 -173 -173 -173 -174 -175 --1 --1 -178 -178 -178 -178 -178 -179 -179 -179 -180 -180 -180 -181 -181 -183 -183 -183 -183 -183 -184 -184 --1 -185 -185 -186 -186 -186 -188 -188 -188 -188 -188 -189 -189 -190 -190 -190 -191 -191 -193 -193 -193 -193 -193 -194 -194 -195 -195 -195 -196 -196 -143 -149 -149 -150 -150 -151 -151 -151 -153 -153 -153 -153 -154 -154 -154 -155 -155 -156 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -164 -164 -164 -165 -165 -165 -166 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -173 -171 -173 -173 -173 -174 -174 -175 -175 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 -180 -180 -181 -181 --1 --1 -183 -183 -183 -184 -184 -184 -185 -185 -186 -186 -186 -188 -188 -188 -188 -188 -189 -189 -189 -190 --1 --1 --1 -193 -193 -158 -158 -158 -159 -159 -131 -143 -149 -149 -150 -150 -151 -151 -151 -153 -153 -153 -154 --1 --1 --1 -155 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 -165 -166 -166 -168 --1 --1 --1 --1 -169 -169 -170 -170 -170 -171 -171 -171 -173 -173 -173 -174 -173 --1 --1 --1 --1 -176 -176 -178 -178 -178 -178 -178 -179 -179 -179 -180 -180 -181 -181 -181 -183 -183 -183 -183 -183 --1 --1 --1 -185 -186 -186 -186 -188 -188 -188 -188 -189 -189 -190 -190 -190 -191 -191 -193 -193 -193 -193 -194 -194 -194 -195 -195 -195 -196 --1 --1 --1 -198 -199 -199 -199 -179 -159 -149 -150 -150 -150 -151 -151 -151 -153 -153 -154 -154 -154 -154 --1 --1 --1 --1 -158 -158 -158 -158 -159 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -164 -165 --1 -166 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -171 -173 -173 -173 -173 -174 --1 --1 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 -180 -181 -181 -181 -183 -183 -183 --1 --1 -185 -185 -185 -186 -186 -186 -188 -188 -188 -188 --1 --1 --1 -190 -190 -191 -191 -193 -193 -193 -194 -194 -194 -194 -195 -195 -196 -196 -198 -198 -198 -198 -198 --1 -199 -200 -201 -201 -203 -203 -203 -203 -203 -204 -204 -205 -205 -205 -149 -150 -150 -151 -151 -151 --1 --1 --1 -153 -153 -154 -154 -155 -163 -156 -156 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 --1 --1 -180 -180 -189 -189 -181 -183 -183 -175 -175 -176 -175 -176 -178 -178 -178 -178 -179 -179 -179 -180 --1 --1 --1 --1 -183 -183 -183 -183 -184 -184 -184 -185 -185 -186 -186 -188 -188 -188 -188 -188 -189 --1 --1 --1 -190 -193 -149 -149 -150 -150 -151 -151 -153 -153 -154 -153 -154 -154 -155 -155 -159 -159 -160 -160 --1 --1 -169 -163 -163 -163 -173 -164 -173 -165 -213 -193 -173 -168 -168 -168 -168 --1 --1 -169 -169 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -173 -174 -174 -174 -175 -175 -193 -193 --1 -194 -195 -195 -195 -195 -196 -196 -198 -198 -198 -198 -199 -200 -200 -200 -201 -201 -203 -203 -203 --1 --1 --1 -204 -204 -205 -185 -166 -146 -145 -146 -146 -148 -148 -148 -148 -148 -149 -149 -149 -150 -150 -151 --1 -154 -153 -153 -154 -153 -154 -154 -154 -155 -156 -156 -156 -156 -158 -158 -158 -158 -163 -163 --1 -163 -145 -146 -146 -155 -155 -156 -158 -158 -158 -158 -158 -158 -159 -159 -160 -160 -161 -161 -163 --1 -163 -163 -163 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -171 --1 -171 -173 -173 -173 -173 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 --1 --1 -181 -181 -183 -183 -183 -183 -184 -184 -185 -185 -186 -186 -188 -188 -188 -188 -188 -189 -189 -190 --1 -191 -191 -193 -193 -193 -193 -193 -194 -194 -194 -195 -196 -196 -196 -196 -198 -198 -199 -179 -160 --1 --1 --1 -146 -155 -156 -156 -156 -158 -158 -158 -158 -158 -159 -159 -138 -145 -146 -146 -146 -148 -148 -148 --1 --1 --1 -158 -158 -158 -158 -158 -159 -159 -160 -160 -160 -161 -161 -163 -163 -163 -163 -163 -164 -164 -164 --1 --1 -166 -166 -168 -168 -168 -168 -168 -176 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -173 -173 --1 -174 -175 -175 -175 -176 -176 -178 -178 -178 -179 -178 -179 -188 -180 -180 -181 -181 -181 -183 -183 --1 --1 -184 -184 -184 -185 -185 -186 -186 -188 -188 -188 -188 -188 -189 -189 -189 -190 -190 -191 -191 -191 -193 -193 -193 -145 -146 -146 -146 -148 -148 -148 -148 -148 -148 -149 -149 -149 -150 -150 -151 --1 --1 -153 -153 -153 -153 -154 -154 -155 -155 -156 -156 -156 -158 -158 -158 -158 -159 -159 -159 --1 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 -165 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -171 --1 --1 -173 -173 -173 -173 -174 -174 -174 -175 -176 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 -180 -180 -181 -181 -183 -183 -183 -183 -184 -184 -184 -185 -185 --1 --1 -188 -188 -188 -189 -189 -190 -190 -191 -191 -191 -193 -194 -193 -193 -193 --1 --1 -195 -195 -196 -145 -154 -146 -146 -148 -148 -148 -148 -148 -149 -138 -145 --1 --1 -148 -148 -148 -148 -148 -149 -149 -150 -150 -150 -151 -151 -153 -153 -153 -153 -153 -154 -154 -155 --1 --1 --1 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -164 -164 -164 --1 --1 --1 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 -173 -173 --1 -175 -176 -176 -178 -178 -178 -178 -178 -178 -179 -179 -180 -180 -181 -145 -146 -146 -148 -148 -148 --1 --1 -156 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 -160 -161 -161 -163 -163 -163 -163 -164 -164 --1 --1 --1 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -173 -173 -174 -173 -173 -173 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 -181 -181 -183 -183 -183 -183 -183 -184 -184 -184 -185 -185 -186 -186 -186 --1 -188 -188 -188 -188 -189 -189 -189 -190 -190 -191 -191 -193 -193 -193 -194 -194 -194 -194 -194 -195 -196 -176 -158 -138 -148 -148 -155 -155 -156 -156 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 -146 -155 -158 --1 --1 --1 -158 -159 -159 -160 -160 -160 -161 -161 -163 -163 -163 --1 --1 --1 -165 -165 -165 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 -174 --1 --1 --1 --1 --1 -175 -176 -176 -178 -178 -178 -178 -178 -179 -179 -179 -180 -180 -181 -181 -181 -183 -183 -183 -183 --1 --1 --1 -186 -186 -186 -188 -188 -188 -188 -188 -189 -189 -189 -190 -190 -191 -191 -193 -193 -193 -194 -194 --1 --1 --1 -195 -195 -196 -196 -198 -198 -198 -178 -158 -138 -146 -146 -156 -158 -158 -158 -158 -158 -159 -159 --1 -160 -161 -163 -163 -163 -163 -163 -164 -164 -164 -165 -164 -166 -166 --1 --1 --1 -168 -168 -169 -169 -170 -171 -171 -173 -173 -174 -174 -174 -174 -174 -175 -175 -176 -176 -176 -178 --1 -178 -178 -179 -179 -179 -180 -180 -181 -181 -181 -183 -183 -183 -183 -184 -184 -185 -186 -188 -188 --1 --1 --1 -189 -189 -190 -190 -190 -191 -191 -193 -193 -193 -194 -194 -194 -194 -195 -195 -194 -196 -196 -198 --1 -198 -198 -179 -159 -146 -148 -148 -148 -140 -156 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 --1 --1 --1 -163 -163 -163 -163 -163 -164 -164 -164 -165 -165 -166 -166 -168 -168 -168 -168 -169 -169 -170 -170 --1 -171 -173 -173 -173 -174 -174 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 --1 --1 --1 -180 -180 -180 -181 -181 -181 -183 -183 -183 -183 -183 -184 -184 -185 -185 -185 -186 -186 -188 -188 --1 --1 --1 -189 -189 -190 -190 -190 -191 -191 -193 -193 -194 -194 -194 -195 -195 -195 -196 -196 -198 -198 -198 --1 --1 -199 -179 -160 -140 -146 -148 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 -154 -154 -155 -155 --1 -156 -156 -158 -158 -158 -158 -158 -159 -159 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 --1 --1 --1 -166 -168 -168 -168 -168 -168 -168 -169 -169 -170 -170 -171 -171 -171 -173 -173 -174 -174 -174 -174 -174 -175 -175 -178 -176 -178 -178 -178 -178 -178 -178 -179 -179 -180 -180 -180 -181 -181 -183 -183 --1 -183 -183 -184 -184 -184 -185 -185 -186 -186 -186 --1 --1 --1 -188 -189 -189 -189 -190 -190 -191 -191 -193 -193 -193 -194 -194 -194 -194 -194 -194 -195 -195 -196 --1 --1 --1 -158 -158 -158 -158 -159 -159 -160 -160 -160 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 --1 --1 -166 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 -174 -174 -174 -174 -174 -175 --1 --1 --1 -176 -178 -178 -178 -178 -178 -179 -179 -180 -180 -180 -181 -181 -183 -183 -183 -183 -183 -183 -184 --1 --1 -185 -186 -186 -186 -188 -188 -188 -188 -189 -189 -190 -190 -190 -191 -191 -193 -193 -194 -194 -194 --1 --1 -194 -195 -195 -196 -196 -196 -198 -198 -198 -198 -198 -199 -199 -199 -148 -148 -148 -148 -148 -149 --1 --1 -150 -151 -151 -153 -153 -153 -154 -154 -154 -155 -155 -155 -156 -158 -158 -158 -158 --1 --1 --1 -160 -160 -161 -161 -161 -163 -163 -164 -163 -163 -164 -164 -165 -165 -166 -166 -168 -168 -168 -168 --1 -169 -169 -170 -170 -173 -173 -174 -174 -174 -174 -175 -175 --1 --1 --1 -178 -178 -178 -178 -178 -179 -179 -180 -180 -180 -181 -183 -183 -183 -183 -183 -184 -184 -185 -185 --1 --1 --1 -186 -188 -188 -189 -189 -190 -190 -191 -146 -156 --1 --1 --1 -158 -158 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -163 -164 -165 -165 -165 -165 -166 -166 --1 --1 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 -173 -174 -174 -174 -174 -174 -175 -175 -176 -176 -178 -178 -178 -178 -178 --1 --1 --1 -180 -181 -181 -181 -183 -183 -183 -183 -183 -184 -184 -185 -185 -185 -186 -186 -188 -188 -188 -188 --1 --1 -189 -190 -191 -191 -193 -193 -193 -194 -194 -194 -194 -195 -195 -195 -196 -196 -198 -198 -198 -146 -148 -148 -148 -148 -148 -149 -149 -150 -150 -151 -151 -153 -153 -153 -154 --1 -154 -154 -155 -155 -155 -156 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -146 -148 -148 -148 -148 -148 -149 -149 -150 -150 -151 -151 -153 -153 -154 -154 -154 -154 -155 -155 -155 -156 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 -160 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 -166 --1 --1 --1 -168 -168 -168 -169 -169 -170 -170 -171 -171 -173 -173 -143 --1 -148 -148 -156 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 --1 --1 --1 -168 -168 -168 -168 -168 -169 -169 -170 -170 -171 -171 -173 -173 -174 -174 -174 -174 -174 -175 -175 --1 --1 --1 -178 -178 -178 -178 -179 -179 -180 -180 -181 -181 -183 -183 -183 -183 -183 -184 -184 -185 -185 -185 -186 -186 -188 -188 -188 -188 -188 -189 -189 -190 -190 --1 --1 -191 -193 -193 -194 -194 -194 -194 -195 -195 -196 -198 -198 -198 -198 -198 -199 -199 -200 -200 -201 --1 --1 -203 -204 -138 -148 -146 -148 -156 -156 -158 -158 --1 --1 --1 -159 -160 -160 -160 -161 -161 -163 -163 -163 -163 -164 -164 -165 --1 --1 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 --1 --1 --1 -171 -173 -173 -174 -174 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -179 -180 -180 --1 --1 --1 -181 -183 -183 -183 -183 -183 -184 -184 -185 -185 -186 -188 -188 -188 -188 -188 -189 -189 -190 -190 --1 --1 --1 -193 -193 -194 -194 -194 -194 -194 -195 -195 -196 -196 -198 -198 -198 -198 -198 -199 -208 -199 -200 --1 --1 --1 -141 -146 -146 -156 -156 -158 -158 -158 -158 -166 -159 -159 -160 -160 -146 -146 -154 -156 -156 -158 --1 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -163 -163 -163 -164 -164 -165 -165 -165 -166 -166 --1 --1 --1 -169 -169 -170 -170 -171 -171 -173 -173 -173 -174 -174 -174 -174 -175 -176 -176 -178 -178 -178 -178 --1 --1 --1 -180 -180 -180 -181 -181 -190 -190 -183 -183 -184 -193 -184 -185 -185 -186 -186 -188 -195 -188 -188 --1 --1 --1 -190 -190 -191 -191 -194 -193 -193 -193 -194 -194 -194 -195 -195 -196 -196 -198 -198 -198 -198 -198 -199 -199 -200 -200 -201 -201 -203 -203 -203 -203 -204 -204 -204 -205 -205 -146 -148 -158 -158 -158 -158 -158 -159 -159 -160 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -165 -164 -165 -165 -165 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 -174 -174 -174 -174 -174 -175 -175 -175 -176 -176 -178 -178 --1 -178 -178 -179 -179 -180 -180 -181 -181 -181 -183 -183 -183 -183 -183 -184 -184 -185 -185 -186 -186 --1 --1 --1 -188 -188 -188 -189 -189 -190 -190 -191 -191 -193 -193 -194 -194 -194 -194 -194 -195 -195 -196 -196 --1 --1 -198 -198 -198 -199 -199 -199 -200 -200 -201 -201 -203 -203 -203 -203 -203 -204 -204 -204 -205 -205 --1 --1 --1 -168 -148 -148 -146 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 --1 --1 --1 -163 -163 -163 -163 -163 -164 -173 -165 -165 -166 -166 -166 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -173 -173 -173 -174 -174 -174 -174 --1 --1 --1 -176 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 -180 -181 -181 -183 -183 -183 --1 --1 -184 -185 -185 -185 -186 -186 -188 -188 -188 -188 -188 -189 --1 -190 -190 -190 -145 -145 -145 -145 -148 -146 -146 --1 -148 -148 -148 -148 -148 -148 -150 -151 -151 -153 -151 -153 -153 -153 -153 -154 -154 -154 -154 -155 --1 --1 --1 -156 -158 -158 -158 -158 -158 -158 -159 -159 -159 -159 -160 --1 --1 --1 -161 -163 -163 -163 -163 -163 -163 -163 -164 -164 -165 -165 -165 -166 -166 -166 --1 --1 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -171 -173 -173 -173 -174 -173 -174 -174 -174 -175 --1 --1 --1 -176 -178 -178 -185 -178 -178 -179 -179 -143 -143 -143 -144 -144 -144 -145 -145 -145 -146 -146 -146 --1 --1 --1 -148 -148 -149 -150 -159 -151 -151 -153 -153 -153 -153 -153 -154 -153 -153 -154 -153 -153 -154 -154 --1 --1 --1 -155 -155 -155 -156 -156 -156 -158 -158 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 --1 -169 -169 -169 -170 -170 -173 -171 -173 -173 -173 --1 -174 -173 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -178 -179 -143 -143 -143 -144 --1 --1 -145 -145 -146 -146 -146 -148 -148 -150 -150 -151 -151 -151 -151 -153 --1 --1 --1 -153 -154 -154 -154 -155 -155 -155 -156 -156 -158 -158 -158 -158 -158 -159 -159 -159 -160 -160 -160 --1 --1 --1 -161 -163 -163 -164 -164 -164 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 --1 -170 -170 -171 -171 -173 -173 -173 -174 -173 -173 -174 -174 -174 -175 -175 -176 -176 -176 -178 -178 --1 -178 -178 -178 -179 -143 -151 -151 -144 -153 -144 -145 -145 -146 -146 -154 -148 -155 -148 -148 -150 --1 --1 -151 -153 -153 -153 -153 -153 -155 -154 -143 -143 -143 -143 -144 -144 -145 -145 -145 -146 -146 --1 --1 -151 -153 -153 -153 -154 -153 -153 -154 -154 -155 -155 -155 -156 -156 -156 -156 -158 -165 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -174 -166 -165 -166 --1 --1 --1 -174 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -170 -178 -170 -179 -171 -171 -173 -173 -173 --1 --1 --1 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -178 -179 --1 --1 --1 -180 -181 -181 -181 -181 -181 -183 -183 -183 -183 -183 -184 -184 -185 -186 -143 -143 -143 -143 -143 --1 -143 -144 -144 -145 -145 -145 -146 -150 -159 -151 -153 -153 -153 -153 -153 -153 -154 -154 -155 -155 -155 -156 -156 -158 -158 -158 -158 -158 -158 -159 -168 -159 -159 -160 -168 -163 -163 -163 -163 -163 -164 -164 -164 -164 -164 -165 -165 -166 -166 -168 -168 -168 -168 -168 -168 -169 -169 -170 -170 --1 -171 -171 -171 -173 -173 -173 -174 -174 -175 -174 -175 -175 -176 -176 -178 -178 -178 -178 -179 -179 -180 -180 -188 -180 -180 -189 -183 -183 -183 -183 -183 -183 -183 -184 -184 -186 -186 -186 -188 -188 -189 -189 -189 -143 -143 -143 -143 -144 -150 -150 -150 -150 -151 -151 -151 -151 -151 -151 -153 -153 -153 --1 --1 --1 -154 -163 -155 -156 -156 -156 -158 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 -160 -161 -161 --1 -163 -163 -163 -163 -163 -164 -164 -164 -165 -165 -166 -166 -168 -168 -168 -168 -168 -169 -169 -169 --1 --1 --1 -171 -171 -171 -173 -173 -173 -173 -173 -173 -183 -174 -175 -175 --1 --1 -176 -185 -178 -178 -178 -178 -179 -178 -179 -180 -180 -181 -181 -181 -181 -183 -183 -183 -183 -184 --1 -185 -194 -185 -186 -186 -188 -195 -188 -188 -196 -188 -188 -189 --1 --1 -190 -190 -191 -193 -200 -193 -200 -193 -193 -193 --1 --1 --1 -135 -143 -144 -144 -159 -144 -144 -145 -154 -163 -154 -148 -163 -148 -148 -148 -148 -148 -149 -158 --1 -158 -150 -150 -150 -151 -159 -160 -153 -159 -153 -159 -153 -153 -153 -161 -154 -154 -163 -154 -163 --1 -154 -158 -163 -156 -156 -165 -165 -166 -166 -159 -166 -166 -160 -160 -168 -160 -169 -161 -163 -163 -171 -179 -170 -164 -173 -174 -174 -165 -174 -183 -183 -168 -166 -168 -168 -176 -178 -169 -178 -170 -170 -171 -179 -170 -180 -173 -183 -183 -183 -183 -174 -174 -175 -175 -175 -176 -176 -176 -178 -178 -178 -178 -188 -195 -178 -188 -188 -188 -195 -195 -204 -188 -196 -198 -196 -189 -189 -183 -183 -190 -191 -183 -193 -184 -185 -193 -185 -144 -148 -153 -155 -154 -154 -154 -154 -155 -155 -156 -156 -158 -158 -158 -158 -158 -158 -159 -159 -160 -163 -163 -163 -163 -163 -164 -164 -164 -164 -164 -165 -165 -166 -166 -168 -168 -168 -168 -168 --1 --1 --1 -169 -170 -170 -170 -170 -171 -171 -171 -171 -171 --1 --1 --1 -173 -173 -173 -174 -173 -173 -174 -174 -175 -175 -175 -178 -176 -176 -178 -178 -178 -178 -178 -178 --1 --1 --1 -180 -180 -181 -181 -181 -183 -183 -193 -183 -193 -183 -184 -184 -184 -185 -185 -185 -185 -188 -186 -188 -188 -188 -188 -188 -188 -188 -188 -188 -188 -188 -188 -189 -189 -189 -189 -190 -208 -190 -190 -198 -190 -154 -155 --1 --1 --1 --1 -185 -165 -145 -143 -144 -144 -144 -144 -145 -145 -146 -146 -146 -148 -148 -148 -148 -148 -148 -148 --1 --1 --1 -149 -150 -150 -150 -151 -151 -151 -153 -153 -153 -153 --1 --1 --1 -154 -154 -154 -155 -155 -155 -156 -155 -164 -156 -158 -158 -158 -158 --1 -159 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -163 -164 -164 -164 -164 -164 -166 -165 --1 --1 --1 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -173 --1 -171 -173 -173 -173 -173 -173 -173 -173 -173 -174 -173 -173 -173 -174 -174 -174 -176 -176 -176 -178 --1 --1 --1 -178 -178 -178 -178 -143 -143 -143 -144 -150 -151 -151 -153 -153 -153 -153 -153 -153 -154 -154 -154 --1 --1 --1 -156 -156 -158 -158 -158 -158 -158 -159 -159 -160 -160 -160 --1 --1 --1 -163 -163 -163 -163 -163 -163 -163 -164 -164 -164 -165 -165 -166 -166 -166 -168 -168 -168 -168 --1 --1 --1 -170 -170 -170 -170 -171 -171 -173 -173 -173 -173 -173 -173 -174 -174 -174 -175 -175 -175 -175 -174 -176 -176 --1 --1 --1 -178 -178 -178 -179 -179 -179 -180 -180 -180 -181 -181 -181 -183 -183 -183 -183 -183 --1 -184 -185 -185 -185 -186 -186 -188 -188 -188 -188 -188 -188 -189 -150 -151 -151 --1 -153 -153 -153 -153 -153 -153 -154 -154 -154 -155 -155 -155 -156 -158 -158 -156 -158 -158 -158 -158 --1 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -163 -163 --1 --1 --1 -164 -164 -164 -164 -165 -165 -165 -165 -165 -166 -166 --1 --1 -168 -168 -168 -169 -169 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -174 -174 -175 -175 -176 --1 --1 --1 --1 -176 -178 -178 -178 -178 -178 -178 -178 -178 -178 -178 -178 -178 -179 -200 -181 -184 -180 -180 -180 -180 -180 -181 -181 -183 -183 -143 -156 -158 -158 -158 -158 -158 -159 -159 -159 -160 -160 -160 -161 -163 -161 -163 -163 --1 --1 -163 -164 -164 -164 -165 -165 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -171 -173 -173 -173 -173 -173 -174 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -179 -179 -179 --1 --1 -181 -181 -181 -183 -183 -183 -183 -184 -184 -184 -184 -185 -185 -185 --1 -185 -185 -185 -186 -188 -186 -186 -186 -186 -186 -188 --1 -188 -188 -188 -189 -189 -189 -190 -190 -190 -191 -191 -193 -193 -193 -193 -138 -148 -149 -149 -149 --1 -150 -150 -151 -151 -153 -153 -153 -153 -153 -154 -154 -154 -155 -155 -155 -155 -156 -158 --1 -156 -158 -158 -158 -158 -159 -159 -159 -160 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -163 --1 --1 --1 --1 -165 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -169 -169 -170 -170 -170 -173 -171 -171 --1 --1 --1 -173 -173 -173 -174 -174 -174 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -188 --1 --1 --1 -180 -180 -181 -181 -181 -183 -183 -183 -183 -183 -184 -184 -184 -185 -185 -185 -186 -186 -186 --1 --1 -188 -188 -189 -189 -189 -189 -190 -190 -190 -143 -148 -149 -149 -150 -150 -150 -150 -151 -151 -153 -151 -153 -153 -153 -153 -153 -154 -154 -154 -155 -155 -155 -156 -156 --1 --1 -158 -158 -159 -159 -159 -160 -160 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 --1 --1 --1 --1 --1 --1 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -171 -171 -173 -173 -173 --1 --1 -174 -174 -175 -175 -175 -176 -176 -176 -178 -178 -178 -178 -178 -179 -179 -179 -180 -180 -181 -181 --1 -183 -183 -183 -183 -183 -183 -183 -184 -184 -185 -185 -185 -186 -186 -188 -148 -149 --1 --1 --1 -150 -151 -151 -151 -153 -153 -153 -154 -153 -154 -154 -154 --1 --1 --1 -158 -158 -158 -159 -159 -160 -160 -160 -161 -161 -161 -161 -163 -163 -163 -163 -163 -164 -164 -164 -164 --1 --1 --1 -165 -166 -166 -166 -166 -166 -166 -166 -168 -168 -168 --1 -168 -168 -168 -168 -168 -168 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -173 -173 -174 -174 --1 -175 -175 -176 -176 -176 -178 -178 -178 -178 -178 -179 -179 -180 -180 --1 -181 -181 -181 -183 -183 -183 -183 -183 -184 -184 -184 -185 -185 -186 -186 -188 -188 -188 -188 -188 --1 --1 --1 -149 -158 -149 -149 -150 -150 -151 -151 -159 -153 -153 -153 -153 -154 -154 -155 -155 -155 -155 -155 --1 --1 -156 -158 -158 -158 -158 -158 -159 -159 -159 -160 -160 -160 -161 -161 -161 -163 -163 -163 -163 -164 --1 --1 -166 -165 -165 -166 -166 -168 -168 -168 -168 -168 -168 -168 -168 -168 -168 -168 -168 -169 -168 -169 -169 -171 -170 -170 -171 -171 -171 -173 -173 -173 -173 -173 -174 -174 -175 -175 -175 -175 -176 -176 -176 -178 -178 -178 -178 -178 -179 -179 -179 -180 -180 -180 --1 -181 -183 -183 -183 -183 -183 -183 -184 -184 -185 -185 -185 -186 -186 -186 -186 -188 -188 -148 -149 --1 --1 --1 -150 -151 -151 -153 -153 -153 -153 -154 -154 -154 -155 -155 -155 -156 -156 -156 -158 -158 -158 -158 --1 --1 -159 -160 -160 -161 -161 -161 -163 -161 -163 -163 -163 -163 -163 -163 -164 -164 -165 -165 -165 -166 --1 --1 --1 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 -173 --1 --1 --1 -174 -174 -174 -174 -175 -175 -175 -175 -176 -176 -178 -178 -178 -178 -178 -178 -178 -178 -179 -179 --1 -179 -180 -180 -181 -181 -181 -181 -183 -183 -183 -183 -183 -183 -184 -184 --1 --1 --1 -149 -149 -149 -150 -150 -150 -151 -151 -153 -153 -153 -153 -153 -153 -154 -154 -155 -155 -155 -156 --1 --1 --1 -158 -158 -158 -158 -159 -159 -159 -160 -160 -161 -161 -161 -163 --1 -163 -163 -163 -163 -164 -164 -165 -165 -165 -168 -166 -168 -168 -168 -168 -168 -168 -168 -169 -169 --1 -170 -170 -170 -171 -171 -173 -173 -173 -173 -174 -173 -173 -174 -174 -175 -175 -175 -176 -176 -178 --1 --1 -178 -178 -178 -143 -149 -149 -149 -150 -150 -150 -151 -151 -153 --1 -153 -153 -153 -153 -153 -153 -154 -154 -155 -155 -155 --1 --1 --1 -158 -158 -158 -158 -158 -159 -159 -159 -160 -160 -160 -160 -160 -160 -160 -161 -161 -161 -161 -161 --1 --1 --1 -163 -163 -164 -164 -164 -165 -165 -166 -168 -166 -168 -168 -168 -168 -169 -168 -169 -169 -170 -170 --1 --1 -171 -173 -173 -173 -173 -173 -173 -174 -174 -174 -175 -175 -176 -178 -176 -176 -178 -178 -178 -178 --1 -178 -179 -179 -179 -180 -180 -181 -181 -181 -183 -183 -183 -184 -184 -184 -184 -185 -186 -186 -188 --1 -188 -140 -149 -150 -149 -150 -150 -150 -150 -153 -153 -153 -153 -153 -153 -153 -153 -154 -153 -154 --1 --1 -158 -158 -158 -158 -158 -158 -158 -158 -158 -158 -158 -159 -158 -158 -159 -159 -160 -160 -160 -161 --1 --1 --1 --1 -163 -163 -163 -163 -165 -164 -165 -165 -165 -166 -166 -166 -168 -168 -168 -169 -168 -169 -170 --1 --1 --1 -173 -171 -173 -173 -173 -173 -173 -173 -175 -174 -174 -174 -176 -175 -176 -178 -176 -178 -178 -178 --1 --1 -179 -179 -180 -180 -180 -183 -183 -181 -183 -183 -183 -183 -183 -183 -184 -184 -186 -186 -188 -186 --1 --1 -188 -148 -150 -149 -150 -158 -158 -153 -151 -153 -153 -153 --1 --1 --1 -155 -154 -155 -155 -155 -158 -156 -156 -158 -158 -158 -159 -159 -160 -160 -160 -160 -161 -161 -160 --1 --1 --1 -163 -164 -164 -164 -165 -165 -166 -165 -166 -168 -166 -168 -168 -168 -169 -169 -169 -170 -170 -178 --1 -170 -171 -171 -180 -173 -173 -173 -174 -174 -174 -174 -174 -175 -175 -175 -176 -176 -176 -178 -178 --1 -178 -178 -178 -179 -179 -179 -180 -180 -180 -181 -181 -183 -183 -183 -183 -191 -183 -184 -184 -185 -185 -185 -186 -186 -188 -188 -188 -188 -189 -188 -189 -189 -189 --1 -190 -191 -193 -149 -150 -150 -150 -151 -151 -153 -153 -153 -153 -154 -153 -154 -163 -154 -155 -155 --1 --1 --1 -156 -158 -158 -158 -158 -158 -168 -159 -159 -160 -160 -161 -169 -161 -169 -163 -163 -163 -163 -171 --1 --1 --1 -165 -165 -165 -168 -166 -168 -168 -168 -168 -168 -168 -169 -169 -170 -170 -170 -171 -171 -173 -173 --1 -173 -174 -173 -174 -174 -175 -175 -175 -176 -176 -176 -178 -178 -178 --1 --1 --1 -179 -180 -180 -180 -181 -181 -183 -183 -183 -183 -183 -184 -184 -184 -185 -185 -185 -186 -186 -186 --1 -188 -188 -188 -188 -189 -189 -190 -198 -191 -191 -191 -191 -193 -193 -193 -193 -194 -194 -195 -195 --1 --1 --1 -173 -153 -143 -143 -143 -143 -143 -143 -143 -143 -153 -143 -144 -145 -154 -145 -145 -146 --1 --1 --1 -148 -148 -148 -149 -149 -149 -150 -150 -151 -151 -151 -153 -153 -153 -153 -153 -154 -154 -153 -155 --1 --1 --1 -156 -158 -158 -158 -158 -159 -159 -159 -159 -160 -160 --1 -160 -161 -161 -161 -163 -163 -163 -163 -163 -163 -163 -163 -163 -163 -163 -164 -164 -163 -165 -166 --1 -165 -166 -166 -168 -168 -168 -176 -168 -168 -169 -169 -170 -170 -170 -171 -171 -171 -173 -153 -154 --1 -154 -154 -154 -155 -155 -156 -156 -158 -143 -143 -143 -143 -143 -144 -144 -143 -143 -143 -143 -143 -143 -143 -143 -143 -143 -144 -144 -143 -145 -145 -144 -145 -146 -146 -148 -148 -148 -148 -148 -148 -148 -148 -149 -149 -149 -150 -150 -151 -153 -151 -153 -153 -153 -161 -153 -154 -154 -153 -155 -163 -156 -164 -156 -158 -158 -158 -158 -159 -158 -159 -159 -159 -159 -160 -160 -161 -161 -161 -163 -163 -163 -163 -163 -163 -163 -163 -164 -164 -163 -164 --1 --1 --1 -166 -166 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -170 -173 -173 -173 -173 -173 -173 --1 --1 --1 -144 -143 -145 -145 -144 -146 -146 -146 -146 -148 -148 -149 -148 -148 -148 -149 -149 -150 -150 -150 --1 --1 -151 -153 -151 -153 -153 -153 -154 -153 -153 -154 -153 -155 -154 -156 -156 -158 -158 -158 -158 -158 --1 --1 --1 --1 -160 -160 -161 -161 -170 -163 -163 -163 -163 -163 -163 -164 -165 -164 -165 -166 -166 -166 --1 --1 -175 -168 -168 -168 -169 -169 -169 -170 -170 -173 -171 -171 -173 -173 -173 -173 -174 -174 -173 -174 --1 --1 -175 -176 -176 -178 -185 -178 -179 -179 -188 -179 -179 --1 --1 --1 -180 -180 -180 -180 -181 -181 -183 -183 -183 -164 -163 -164 -164 --1 --1 --1 -153 -153 -153 -153 -153 -154 -156 -154 -155 -155 -155 -158 -159 -164 -156 -158 -159 -158 -158 -159 -160 -161 -161 -161 -163 -163 -163 -164 -164 -163 -165 --1 --1 --1 -166 -166 -168 -168 -166 -166 -168 -168 -168 -168 -168 -169 --1 --1 --1 -171 -173 -173 -171 -173 -173 -173 -173 -173 -173 -173 -173 -174 -174 -175 -175 -176 -178 -176 -178 --1 --1 --1 -179 -179 -179 -179 -180 -180 -180 -183 -181 -183 --1 --1 -183 -183 -183 -183 -183 -183 -183 -183 -183 -183 --1 --1 --1 -183 -184 -184 -183 -184 -184 -183 -184 -184 -184 -185 -186 -188 -140 -153 -153 -153 -153 -153 -153 --1 -154 -155 -155 -154 -163 -155 -164 -158 -158 -159 -159 -158 -159 -159 -159 -160 -160 -161 -161 -161 --1 -161 -163 -163 -163 -164 -163 -163 -164 -164 -165 -164 -165 -168 -168 -166 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -173 -173 -171 -171 -173 -173 -173 -174 -173 -174 -174 -174 -176 -175 -176 -176 -178 -179 -178 -178 -179 -179 -179 -179 -179 -180 -181 -143 -144 -144 -144 -144 -145 -146 -145 --1 -148 -145 -148 -148 -148 -146 -148 -148 -148 -148 -148 -148 -149 -149 -150 -150 -150 -153 -151 -151 --1 --1 --1 -153 -153 -154 -154 -154 -155 -154 -155 -156 -155 -156 -158 -158 -159 -159 -158 -159 -159 -160 -160 --1 --1 --1 --1 -161 -163 -163 -163 -163 -163 -164 -163 -165 -165 -164 -166 -168 -168 -168 -168 -168 -168 -168 -168 --1 --1 --1 -171 -170 -171 -173 -171 -173 -173 -173 -173 -174 -174 -174 -175 --1 --1 --1 -176 -178 -178 -178 -178 -179 -178 -179 -179 -179 -143 -143 -144 -144 -144 -144 -145 -145 -145 -148 -148 -148 -148 -148 -148 -148 -148 -158 -149 -149 -150 -150 -150 -150 -153 -153 -151 -154 -153 -154 -153 -153 -154 -154 -155 --1 --1 --1 -156 -158 -159 -159 -158 -159 -159 -160 -159 -159 -160 -160 --1 --1 --1 --1 -163 -163 -163 -163 -163 -163 -163 -164 -164 -164 -163 -168 -165 -166 -166 -168 -168 -168 -168 -168 --1 -168 -169 -169 -170 -170 -173 -173 -171 -173 -173 --1 -174 -173 -174 -174 -173 -174 -174 -173 -174 -173 -173 --1 --1 --1 -174 -175 -174 -175 -175 -176 -178 -178 -178 -178 -178 -178 -179 --1 --1 -179 -179 -179 -179 -180 -143 -144 -144 -144 -145 -146 -146 -146 -146 -148 -155 -148 -148 -148 -149 -149 -149 -150 -150 --1 --1 -153 -153 -153 -153 -154 -153 -154 -154 -154 -154 -154 -155 -156 -163 -156 -156 -158 -158 -158 -159 --1 -159 -159 -159 -160 -161 -161 -163 -169 -170 -163 -163 -163 -163 -164 -165 -164 -164 -165 -164 -166 --1 --1 --1 -168 -184 -169 -169 -169 -169 -170 -170 -173 -173 -171 -173 -180 -173 -173 -173 --1 --1 --1 --1 -173 -174 -173 -173 -174 -173 -183 -183 -183 -174 -175 -176 -175 -176 -178 -178 -178 -179 --1 -179 -179 -179 -179 -179 -179 -179 -180 -180 -181 -181 -183 -183 -183 -183 -183 -186 -144 -144 -145 -144 -146 -146 -145 -148 -148 -148 -148 -148 -149 -149 -149 -149 -149 -159 -151 -159 -159 -151 -151 -153 -153 -153 -154 -154 -154 -154 -154 -154 -156 -156 -163 -158 -158 -158 -158 -159 -159 -159 -159 -159 -159 -160 -160 -161 -161 -163 -163 -163 -163 -164 -164 -164 -165 -164 -165 -166 -175 -168 -168 -168 --1 --1 --1 -169 -170 -170 -170 -173 -173 -171 -173 -180 -173 -173 -173 -210 -190 -185 -185 -185 -186 -185 -188 --1 --1 --1 -188 -188 -188 -188 -189 -188 -189 -189 -189 -190 -190 -190 -193 -193 -193 -193 -193 -193 -194 -193 --1 --1 --1 --1 -195 -139 -140 -140 -140 -140 -141 -141 -143 -143 -143 -143 -143 -148 -148 -149 -149 -149 -150 -150 -150 -150 -153 -153 -153 -153 -154 -153 -154 -154 -154 -155 -155 -156 --1 --1 --1 -158 -158 -159 -158 -159 -160 -159 -160 -160 -160 -161 -161 -163 -163 -163 -163 -163 -163 -164 -164 --1 --1 --1 -165 -168 -168 -166 -168 -168 -168 -168 -175 -178 -168 -178 -170 -170 -173 -173 -173 -173 -173 -173 --1 -173 -174 -174 -174 -175 -175 -175 -176 -176 -176 -178 -178 -178 -178 -178 -179 -179 -188 -180 --1 -180 -183 -181 -183 -183 -183 -183 -183 -140 -141 -141 -143 -143 -143 -143 -143 -143 -143 -143 -143 --1 --1 -144 -146 -145 -145 -148 -148 -148 -148 -148 -148 -148 -149 -149 -148 -149 -149 -149 -148 -149 -149 --1 --1 -150 -150 -153 -153 -153 -153 -153 -153 -153 -153 --1 --1 --1 -153 -153 -153 -153 -153 -153 -153 -153 -153 -153 -154 -154 -154 -155 -155 -155 -155 -156 -156 -156 -158 -158 -158 -158 -158 -158 -158 -158 -159 -159 -160 -160 -160 -160 -160 -161 -161 -163 -163 -163 -163 -164 -164 --1 --1 -166 -166 -166 -168 -168 -168 -169 -168 -169 -169 -169 -170 -170 -170 -173 -173 -173 -173 -174 -173 -173 --1 --1 -139 -140 -140 -140 -140 -140 -140 -141 -141 -143 -141 -141 -140 -141 -141 -143 -144 -143 -143 -143 --1 -143 -144 -144 -144 -144 -144 -144 -145 -145 -146 -146 -148 -148 -148 -148 -148 -148 -148 --1 -150 -149 -149 -149 -149 -149 -149 -149 -149 -149 --1 --1 -151 -151 -150 -153 -153 -153 -153 -153 -154 -154 -153 -155 -154 -155 -155 -155 -156 --1 -158 -158 -158 -158 -158 -158 -159 -159 -159 -160 -161 -161 -161 -161 -163 -163 -163 -164 -163 -164 --1 --1 --1 -166 -168 -168 -166 -168 -168 -168 -168 -168 -168 -169 -169 -169 -170 -170 -171 -173 -173 --1 --1 -173 -174 -173 -174 -173 -174 -134 -140 -140 -140 -141 -141 -141 -143 -143 --1 --1 --1 --1 --1 -144 -145 -148 -146 -145 -148 -148 -148 -148 -148 -149 -148 -149 -148 -150 -149 -149 -150 -149 -149 -153 -150 -153 -153 -153 -153 -153 -154 -153 -153 -155 -154 -155 -156 -155 -156 -156 -156 -158 -158 -158 -168 -168 -160 -160 -160 -161 -163 -163 -163 -163 -163 -163 -165 -164 -164 -164 -165 -166 -165 --1 --1 -168 -168 -168 -169 -168 -178 -170 -170 -170 -173 -173 -173 -173 -173 -173 -173 -173 -173 --1 --1 --1 -174 -175 -175 -175 -176 -176 -178 -178 -185 -180 -139 -143 -141 -141 -143 -143 -143 -143 -144 -144 --1 --1 -201 -181 -161 -161 -161 -161 -161 -161 -161 -163 -163 -163 -163 -164 -163 -165 -164 -165 -165 -165 --1 -168 -168 -168 -169 -168 -169 -170 -170 -170 -169 -171 -170 -173 -173 -173 -173 -173 -173 -173 -173 --1 --1 --1 --1 -175 -176 -176 -178 -176 -178 -179 -178 -178 -178 -180 -180 -180 -180 -189 -183 -181 -183 -183 --1 -183 -184 -183 -183 -183 -184 -195 -185 -188 -188 -188 -188 -194 -188 -189 -196 -189 -188 -188 -140 -143 -141 -143 -143 -143 -143 -143 -143 -145 -144 -145 -146 -145 -145 -148 -148 -148 -148 -148 -148 -148 -148 -155 -148 -148 --1 -155 -148 -148 -148 -149 -148 -149 -150 -149 -149 -151 -150 -153 -153 -153 -153 -153 -153 -153 -153 --1 --1 -155 -154 -155 -155 -156 -156 -156 -165 -158 -158 -158 -159 -160 -160 -160 -160 -161 -161 -163 -163 --1 --1 --1 -165 -164 -164 -164 -165 -168 -168 -168 -168 -168 --1 --1 --1 -168 -169 -169 -170 -169 -169 -170 -170 -178 -173 -173 -173 -173 -173 -173 -173 -174 -174 -173 -141 --1 --1 -143 -143 -143 -143 -143 -143 -143 -143 -143 -143 -143 -144 -143 -143 -143 -144 -143 -143 -143 -143 --1 --1 --1 -144 -145 -144 -145 -144 -145 -145 -146 -146 -146 -148 -155 -148 -164 -174 -175 -175 -175 -176 -175 -176 -176 -184 -178 -178 -178 -178 -180 -179 -179 -180 -180 -181 -181 -181 -181 -183 -183 -183 -183 -184 -185 -184 -184 -185 -185 -188 -186 -186 -188 -188 --1 --1 --1 -189 -190 -190 -189 -190 -190 -190 -193 -191 -193 -193 -193 -194 -194 -193 -195 -194 -195 -195 -196 --1 -196 -198 -198 -198 -199 -198 -198 -199 -199 -201 -200 -201 -201 -200 -201 -143 -141 -143 -143 -143 --1 --1 -144 -144 -145 -145 -146 -146 -146 -148 -148 -148 -148 -148 -148 -149 -148 -150 -149 -150 -150 -151 --1 --1 -153 -153 -153 -153 -154 -154 -155 -155 -156 -156 -155 -158 -158 -158 -156 -158 -158 -158 -158 -158 --1 -159 -159 -168 -159 -161 -160 -160 -163 -161 -163 -163 -163 -163 -164 -165 -164 -164 -165 -166 -166 --1 --1 -166 -168 -168 -168 -169 -169 -169 -170 -170 -171 -171 -173 -173 -173 -173 -173 -173 -174 -174 -173 --1 --1 --1 -176 -176 -175 -178 -184 -178 -176 -178 -178 -179 -179 -179 -179 -180 -189 -180 -180 -183 -183 -183 --1 --1 -183 -184 -183 -184 -184 -183 -185 -185 -184 -185 -184 -185 -184 -184 -131 -140 -143 -143 -143 -143 --1 --1 --1 -144 -145 -144 -146 -146 -146 -145 -148 -146 -148 -148 -148 -149 -149 -149 -150 -150 -149 -151 -159 --1 --1 -153 -153 -161 -153 -154 -154 -154 -155 -154 -155 -156 -155 -158 -158 -158 -156 -158 -158 -158 -158 -159 -159 -159 -159 -159 --1 --1 --1 -161 -163 -163 -163 -163 -163 -163 -164 -164 -164 -165 -164 -166 -166 --1 --1 --1 -168 -168 -168 -168 -168 -168 -168 -168 -168 -169 -169 -170 -171 -173 -173 -180 -173 -173 -173 -174 --1 -183 -174 -174 -130 -141 -143 -143 -143 -143 -143 -143 -144 -145 -144 -145 -145 -144 -145 -146 -146 --1 -148 -148 -148 -148 -149 -149 -149 -149 -150 -151 -150 -150 -153 -153 -153 -153 -153 -154 -153 -154 --1 -163 -155 -154 -156 -155 -156 -158 -158 -158 -158 -158 -159 -159 -159 -159 -159 -161 -161 -161 -163 --1 --1 -163 -163 -163 -164 -163 -163 -164 -165 -166 -166 -166 -168 -166 -168 -168 -168 -168 -169 -169 -168 --1 --1 --1 -170 -173 -173 -173 -174 -173 -173 -174 -173 -175 -175 -174 -176 -175 -175 -178 -176 -178 -178 -178 --1 -179 -180 -181 -180 -181 -180 -183 -183 -183 -184 -184 -184 --1 --1 -184 -185 -131 -141 -143 -141 -143 -144 -144 -145 -145 --1 -146 -144 -146 -148 -146 -148 -148 -148 -148 -149 -149 -149 -150 -149 -150 -151 -150 -153 -153 -153 --1 -153 -154 -154 -154 -153 -154 -155 -155 -155 -155 -155 -158 -158 -158 -158 -158 -158 -159 -159 -160 -159 -159 -161 -159 -159 -161 -161 -161 -163 -163 -163 -163 -164 -164 --1 --1 --1 -166 -166 -168 -168 -168 -168 -168 -169 -178 -168 -169 -169 -169 -171 --1 -171 -179 -170 -173 -173 -173 -173 -173 -173 -175 -174 -199 -179 -193 -176 -198 -192 -197 -190 -181 --1 --1 --1 -196 -206 -188 -168 -148 -163 -163 -163 -163 -163 -164 -164 -163 -145 -145 -146 -146 -146 diff --git a/scripts/dly_error_profiles/dly_error_profile_10_smoke_test.dat b/scripts/dly_error_profiles/dly_error_profile_10_smoke_test.dat deleted file mode 100644 index f0c5f34d5fc17a07c7d6c19767f20e7f15ce0bf2..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_10_smoke_test.dat +++ /dev/null @@ -1,50 +0,0 @@ -160 -161 -161 -161 -163 -163 -163 -163 -164 -164 -165 -165 -165 -200 -168 -168 -150 -153 -153 -153 --1 -153 --1 -153 --1 -153 -154 -154 -154 -155 -160 -160 -161 --1 --1 --1 --1 --1 --1 --1 --1 -166 -200 -166 -168 -168 -168 -168 -169 --1 diff --git a/scripts/dly_error_profiles/dly_error_profile_11.dat b/scripts/dly_error_profiles/dly_error_profile_11.dat deleted file mode 100644 index 041551d7f2a13fa57d5903bffe143526043d6e82..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_11.dat +++ /dev/null @@ -1,15000 +0,0 @@ -110 -124 -120 -106 -111 -102 -101 -119 -107 -121 -109 -122 -113 -102 -138 -135 -133 -134 -107 -106 -120 -104 -134 -120 -104 -133 -109 -104 -102 -137 -100 -100 -135 -114 -123 -104 -124 -116 -112 -131 -131 -107 -105 -102 -130 -117 -120 -133 -110 -130 -127 -106 -111 -108 -107 -135 -129 -108 -122 -114 -115 -111 -130 -122 -106 -138 -114 -128 -122 -100 -117 -125 -102 -131 -112 -113 -113 -111 -127 -126 -128 -137 -134 -112 -105 -126 -121 -126 -130 -112 -120 -102 -127 -130 -136 -106 -124 -109 -130 -111 -121 -133 -106 -137 -132 -111 -135 -124 -128 -117 -124 -111 -124 -117 -122 -124 -115 -126 -140 -140 -110 -105 -117 -113 -111 -109 -138 -113 -130 -100 -125 -126 -100 -118 -124 -117 -125 -107 -108 -110 -125 -107 -122 -109 -101 -102 -140 -108 -106 -131 -126 -120 -105 -108 -130 -112 -136 -104 -119 -108 -126 -123 -112 -103 -123 -112 -122 -138 -107 -137 -132 -115 -136 -107 -103 -139 -136 -108 -137 -119 -131 -137 -117 -111 -116 -114 -109 -108 -111 -123 -107 -138 -113 -125 -121 -136 -123 -113 -115 -111 -118 -129 -138 -137 -105 -106 -107 -139 -139 -127 -124 -110 -131 -108 -126 -127 -116 -110 -105 -120 -136 -130 -132 -116 -125 -103 -139 -101 -112 -103 -109 -123 -124 -104 -135 -116 -115 -105 -130 -138 -114 -107 -119 -123 -133 -111 -104 -105 -114 -112 -100 -109 -105 -111 -137 -121 -128 -132 -131 -109 -105 -101 -133 -109 -111 -139 -113 -136 -116 -136 -101 -119 -126 -112 -139 -137 -127 -110 -117 -104 -104 -104 -112 -130 -123 --1 -115 -137 -123 -106 -120 -113 -134 -116 -109 -139 -102 -111 -100 -104 -133 -125 -120 -108 -105 -118 -112 -106 -126 -124 -134 -107 -140 -138 -111 -119 -106 -118 -106 -130 -123 -123 -107 -109 -134 -101 -127 -138 -131 -139 -113 -118 -136 -110 -122 -131 -119 -135 -118 -120 -103 -120 -104 -130 -126 -133 -129 -134 -112 -112 -101 -110 -140 -124 -107 -117 -101 -108 -140 -130 -130 -125 -134 -119 -137 -137 -119 -114 -110 -125 -133 -129 -119 -131 -101 -124 -139 -130 -135 -133 -103 -115 -127 -104 -131 -119 -132 -115 -112 -128 -122 -117 -130 -102 -115 -133 -108 -125 -133 -127 -115 -136 -137 -109 -130 -117 -120 -125 -102 -121 -108 -102 -127 -128 -104 -115 -105 -114 -131 -103 -114 -124 -102 -128 -128 -117 -110 -123 -125 -114 -126 -118 -128 -139 -133 -109 -101 -134 -102 -112 -128 -122 -122 -124 -115 -125 -136 -119 -129 -121 -104 -129 -134 -113 -116 -108 -107 -137 -104 -125 -133 -138 -140 -101 -108 -110 -123 -133 -120 -102 -118 -107 -136 -112 -132 -113 -110 -124 -139 -132 -105 -125 -106 -133 -135 -125 -103 -102 -113 -113 -133 -113 -101 -125 -132 -122 -121 -135 -116 -130 -10133 -10082 -10061 -10058 -10034 -10037 -9992 -9963 -9941 -9948 -9925 -9886 -9872 -9853 -9845 -9815 -9783 -9765 -9740 -9742 -9712 -9709 -9696 -9668 -9633 -9611 -9617 -9563 -9567 -9535 -9509 -9493 -9484 -9452 -9452 -9432 -9395 -9379 -9344 -9324 -9307 -9318 -9265 -9268 -9225 -9200 -9203 -9180 -9151 -9120 -9130 -9084 -9097 -9077 -9045 -9033 -8998 -8972 -8953 -8951 -8930 -8917 -8900 -8854 -8824 -8807 -8782 -8794 -8759 -8749 -8721 -8694 -8677 -8642 -8647 -8617 -8617 -8589 -8554 -8531 -8522 --1 -8485 -8480 -8458 -8430 -8385 -8376 -8357 -8333 -8310 -8292 -8267 -8241 -8221 -8201 -8199 -8180 -8164 -8159 -8134 -8107 -8069 -8070 -8021 -8011 -8018 -7962 -7977 -7921 -7905 -7881 -7866 -7873 -7832 -7810 -7810 -7765 -7766 -7755 -7706 -7697 -7669 -7647 -7657 -7613 -7581 -7578 -7552 -7556 -7513 -7498 -7481 -7480 -7446 -7408 -7405 -7384 -7380 -7355 -7308 -7294 -7279 -7247 -7256 -7213 -7199 -7170 -7149 -7138 -7106 -7115 -7065 -7073 -7035 -7027 -6982 -6970 -6948 -6956 -6927 -6885 -6878 -6869 -6847 -6832 -6806 -6779 -6777 -6758 -6705 -6680 -6679 -6668 -6651 -6617 -6601 -6598 -6557 -6524 -6536 -6510 -6482 -6447 -6426 -6406 -6419 -6360 -6346 -6320 -6327 -6299 -6269 -6256 -6240 -6226 -6188 -6180 -6144 -6131 -6106 -6102 -6071 -6047 -6040 -6007 -5985 -5994 -5962 -5930 -5923 -5890 -5862 -5866 -5838 --1 -5781 -5768 -5765 -5738 --1 -5712 -5697 -5672 -5638 -5611 -5604 -5564 -5562 -5534 -5515 -5508 -5494 -5474 -5424 -5426 -5380 -5399 -5356 -5332 -5318 -5284 -5263 -5278 -5260 -5204 -5186 -5165 -5141 -5149 -5137 -5116 -5062 -5053 -5059 -5029 -5008 -4973 -4940 -4925 -4909 -4916 -4879 -4842 -4849 -4808 -4790 -4794 -4776 -4740 -4734 -4693 -4678 -4648 -4633 -4637 -4616 -4574 -4577 -4552 -4524 -4484 -4461 -4463 -4439 -4438 -4403 -4387 -4356 -4328 -4315 -4313 -4272 -4280 -4234 -4230 -4192 -4188 -4179 -4153 -4107 -4101 -4068 -4065 -4025 -4015 -4005 -3990 -3953 -3923 -3907 -3892 -3895 -3850 -3843 -3800 -3795 -3799 -3778 -3722 -3709 -3705 -3673 -3665 -3649 -3634 -3614 -3595 -3577 -3547 -3526 -3483 -3486 -3475 -3453 -3400 -3386 -3371 -3347 -3343 -3331 -3306 -3289 -3278 -3242 -3206 -3214 -3180 -3158 -3154 -3128 -3101 -3083 -3077 -3034 -3016 -3008 -2982 -2947 -2950 -2930 --1 -2879 -2857 -2845 -2818 -2819 -2780 -2780 -2756 -2732 -2712 -2682 -2652 -2631 -2617 -2601 -2568 -2562 -2528 -2536 -2500 -2468 --1 -2431 -2438 -2407 -2391 -2360 -2323 -2336 -2312 -2277 -2250 -2220 -2238 -2184 -2186 -2170 -2135 -2104 -2092 -2082 -2069 -2059 -2028 -2007 -1999 -1957 -1920 -1925 -1910 -1871 -1863 -1860 -1807 -1796 -1775 -1747 -1734 -1712 -1700 -1676 -1664 -1646 -1625 -1613 -1573 -1546 -1553 -1538 -1495 -1464 -1469 -1424 -1413 -1391 -1363 -1344 -1341 -1301 -1309 -1290 -1273 -1245 -1218 -1184 -1170 -1162 -1133 -1123 -1083 -1094 -1070 -1042 -1013 -987 -978 -953 -943 -903 -882 -876 -855 -852 -806 -808 -791 -760 -722 -735 -688 -680 -642 -651 -606 -592 -593 -571 -521 -537 -514 -491 -440 -439 -403 -409 -394 -368 -358 -304 -313 -277 -270 -238 -229 -191 -196 -143 -136 -148 -174 -181 -208 -206 -257 -270 -296 -302 -301 -345 -371 -362 -399 -411 -451 -461 -482 -501 -515 -560 -560 -574 -616 -613 -632 -649 -698 -716 -705 -735 -750 -792 -816 -829 -851 -856 -873 -907 -910 -924 -950 -977 -1000 -1032 -1052 -1076 -1097 -1087 -1111 -1136 -1150 -1173 -1189 -1223 -1257 -1275 -1286 -1299 -1334 -1330 -1366 -1371 -1413 -1424 -1424 -1447 -1486 -1510 -1513 -1541 -1561 -1583 -1614 -1637 -1625 -1660 -1665 -1709 -1729 -1747 -1756 -1768 -1785 -1839 -1851 -1865 -1878 -1886 -1937 -1946 -1949 -1969 -2019 -2011 -2053 -2063 -2098 -2086 -2136 -2153 -2169 -2168 -2210 -2206 -2240 -2247 -2271 -2290 -2300 -2323 -2367 -2390 -2395 -2409 -2424 -2466 -2460 -2486 -2502 -2530 -2560 -2591 -2605 -2638 -2637 -2659 -2681 -2706 -2715 -2750 -2777 -2785 -2792 -2803 -2837 -2851 -2877 -2908 -2918 -2927 -2956 -2999 -2993 -3019 -3060 -3067 -3074 -3093 -3133 -3139 -3153 -3162 -3210 -3234 -3237 -3265 -3284 -3311 -3333 -3326 -3360 -3378 -3401 -3405 -3439 -3448 -3464 -3488 -3537 -3552 -3549 -3586 -3586 -3616 -3646 -3656 -3665 -3681 -3705 -3748 -3765 -3767 -3804 -3806 -3831 -3873 -3896 -3880 --1 -3946 -3941 -3987 -4001 -4001 -4035 -4053 -4073 -4100 -4138 -4143 -4143 -4198 -4193 -4207 -4257 -4271 -4280 -4303 -4314 -4344 -4355 -4365 -4408 -4425 -4459 -4461 -4471 -4501 -4534 -4525 -4545 -4561 -4603 -4612 -4643 -4657 -4695 -4719 -4714 -4755 -4780 -4789 -4793 -4809 -4830 -4850 -4892 -4892 -4923 -4939 -4948 -4982 -5020 -5020 -5036 -5063 -5090 -5105 -5138 -5130 -5163 -5161 -5208 -5231 -5259 -5248 -5300 -5295 -5311 -5347 -5360 -5364 -5392 -5417 -5427 -5468 -5494 -5484 -5518 -5529 -5574 -5583 -5584 -5608 -5624 -5642 -5674 -5685 -5729 -5760 -5742 -5783 -5820 -5827 -5830 -5852 -5874 -5901 -5931 -5943 -5951 --1 -5993 -6017 -6039 -6059 -6080 -6085 -6132 -6132 -6162 -6182 -6183 -6230 -6228 -6252 -6291 -6302 -6305 -6355 -6363 -6389 -6392 -6418 -6426 -6451 -6484 -6489 -6509 -6533 -6578 -6578 -6613 -6639 -6641 -6655 -6667 -6681 -6732 -6735 -6775 -6772 -6802 -6828 -6855 -6843 -6865 -6906 -6914 -6957 -6974 -6988 -6989 -7039 -7040 -7055 -7088 -7110 -7123 -7148 -7174 --1 -7185 -7212 -7243 -7279 -7276 -7299 -7338 -7331 -7352 -7376 -7394 -7404 -7447 -7459 -7460 -7484 -7525 -7551 -7569 -7590 -7599 -7613 -7652 -7670 -7693 -7694 -7728 -7741 -7762 -7786 -7818 -7836 -7846 -7847 -7894 -7881 -7937 -7925 -7966 -7973 -7986 -8001 -8039 -8072 -8088 -8109 -8109 -8154 -8175 -8199 -8218 -8224 -8228 -8262 -8274 -8288 -8315 -8348 -8372 -8379 -8403 -8401 -8430 -8478 -8469 -8488 -8522 -8543 -8548 -8593 -8607 -8610 -8656 -8669 -8682 -8694 -8705 -8725 -8745 -8790 -8793 -8836 -8827 -8867 -8888 -8902 -8903 -8936 -8971 -8966 -8997 -9038 -9020 -9072 -9066 -9089 -9104 -9159 -9154 -9177 -9181 -9233 -9231 -9278 -9273 -9298 -9319 -9349 -9359 -9390 -9380 -9407 -9432 -9449 -9475 -9513 -9520 -9531 -9553 -9581 -9597 -9614 -9637 -9642 -9681 -9700 -9722 -9723 -9752 -9784 -9795 -9840 -9860 -9858 -9888 -9891 -9930 -9939 -9951 -9983 -9988 -10031 -10022 -10078 -10093 -10087 -10108 -106 -139 -108 -138 -120 -121 -113 -104 -125 -100 -127 -112 -113 -104 -122 -133 -135 -102 -107 -110 -100 -120 -118 -119 -110 -137 -101 -101 -103 -105 -117 -136 -109 -138 -100 -132 -118 -127 -117 -108 -130 -110 -133 -138 -124 -138 -139 -103 -110 -133 -117 -112 -135 -119 -102 -104 -128 -123 -104 -107 -132 -121 -113 -105 -140 -129 -136 -113 -138 -113 -103 -109 -103 -109 -107 -112 -101 -121 -137 -123 -129 -118 -111 -109 -119 -108 -139 -118 --1 -105 -112 -102 -100 -140 -105 -108 -138 -117 -140 -114 -124 -118 -130 -119 -129 -129 -112 -108 -134 -113 -140 -100 -135 -138 -116 -137 -137 -120 -102 -135 -102 -140 -132 -126 -130 -116 -114 -101 -106 -124 -118 -132 -104 -105 -137 -140 -112 -127 -101 -103 -124 -138 -126 -112 -138 -126 -126 -138 -115 -108 -129 -133 -127 -137 -100 -135 -121 -115 -105 -115 -117 -112 -137 -104 -102 -135 -132 -119 -124 -100 -129 -108 -123 -104 -112 -105 -101 -108 -107 -124 -129 -127 -120 -138 -126 -131 -110 -125 -117 -102 -137 -123 -119 -112 -134 -112 -112 -134 -132 -136 -115 -107 -126 -107 -112 -124 -106 -100 -140 -103 -122 -135 -130 -125 -129 -116 -127 -116 -126 -102 -135 -107 -116 -111 -129 -135 -133 -120 -135 -135 -129 -124 -114 -111 -140 -103 -103 -109 -128 -102 -139 -106 -119 -119 -140 -130 -119 -120 -133 -101 -115 -109 -121 -122 -100 -112 -138 -129 -111 -135 -132 -133 -108 -139 -125 -124 -131 -106 -120 -106 -110 -106 -120 -120 -128 -130 -139 -139 -106 -116 -114 -133 -101 -102 -132 -139 -119 -135 -119 -122 -108 -132 -112 -100 -114 -111 -134 -116 -109 -106 -134 -126 -131 -108 -140 -138 -102 -125 -128 -124 -100 -108 -118 -109 -109 -131 -133 -120 -105 -120 -119 -127 -106 -127 -115 -112 -110 -126 -121 -100 -125 -126 -133 -139 -102 -118 -102 -132 -135 -135 -127 -125 -132 -119 -126 -121 -128 -122 -123 -112 -116 -125 -140 -104 -119 -102 -101 -104 -117 -110 -129 -117 -119 -135 -101 -124 -118 -137 -132 -114 -115 -122 -104 -124 -116 -128 -112 -105 -103 -107 -135 -128 -134 -114 -104 -112 -126 -126 -109 -113 -100 --1 -134 -105 -130 -114 -138 -106 -139 -126 -131 -131 -134 -121 -131 -109 -133 -140 -122 -134 -137 -103 -134 -128 -120 -103 -106 -128 -102 -101 -134 -140 -107 -126 -112 -130 -107 -139 -111 -137 -120 -108 -112 -124 -134 -130 -115 -128 -124 -117 -114 -113 -131 -108 -112 -140 -138 -123 -120 -139 -106 -102 -120 -102 -110 -115 -107 -104 -131 -131 -107 -100 -127 -122 -119 -134 -135 -117 -140 -128 -121 -110 -139 -131 -106 -111 -139 -137 -110 -109 -105 -119 -127 -129 -120 -132 -106 -112 -126 -128 -130 -102 -139 -137 -120 -111 -113 -127 -137 -118 -144 -140 -166 -206 -238 -259 -253 -271 -313 -310 -357 -359 -400 -400 -401 --1 -472 -485 -499 -533 -560 -566 -598 -592 -600 -626 -671 -694 -690 -716 -742 -747 -767 -795 -810 -844 -869 -861 -902 -939 -940 -968 -999 -983 -1014 -1025 -1064 -1090 -1107 -1117 -1120 -1154 -1174 -1182 -1238 -1240 -1262 -1284 -1315 -1305 -1323 -1347 -1385 -1390 -1427 -1423 -1453 -1485 -1485 -1517 -1544 -1568 -1570 -1606 -1612 -1622 -1679 -1687 -1689 -1723 -1736 -1764 -1793 -1815 -1805 -1851 -1845 -1884 -1908 -1918 -1946 --1 -1999 -1992 -2038 -2028 -2058 -2068 -2083 -2132 -2142 -2164 -2166 -2202 -2240 -2223 -2245 -2290 -2291 -2310 -2330 -2349 -2381 -2387 -2439 -2439 -2472 -2469 -2483 -2535 -2543 -2560 -2582 -2587 -2613 -2655 -2662 -2689 -2714 -2717 -2753 -2778 -2786 -2814 -2836 -2832 -2869 -2860 -2884 -2925 -2936 -2942 -2974 -3014 -3003 -3028 -3055 -3071 -3117 -3128 -3159 -3170 -3168 -3206 -3232 -3246 -3260 -3271 -3293 -3300 -3320 -3341 -3387 -3406 -3437 -3423 -3461 -3497 -3496 -3525 -3559 -3576 -3599 -3589 -3628 -3623 -3669 -3679 -3693 -3726 -3742 -3768 -3778 -3787 -3809 -3845 -3840 -3875 -3882 -3904 -3954 -3966 -3960 -4004 -4020 -4030 -4080 -4081 -4086 -4124 -4142 -4171 -4178 -4182 -4203 -4254 -4273 -4296 -4286 -4315 -4326 -4344 -4387 -4397 -4410 -4424 -4472 -4460 -4481 -4503 -4540 -4560 -4595 -4615 -4609 -4624 -4657 -4667 -4680 -4707 -4736 -4767 -4775 -4802 -4830 -4822 -4852 -4890 -4883 -4923 -4960 -4962 -4981 -5015 -5029 -5045 -5043 -5084 -5118 -5120 -5142 -5147 -5167 -5187 -5234 -5259 -5253 -5297 -5288 -5317 -5338 -5378 -5366 -5386 -5414 -5420 -5456 -5480 -5503 -5524 -5553 -5557 -5579 -5597 -5609 -5621 -5676 -5686 -5706 -5725 -5743 -5741 -5776 -5798 -5826 -5852 -5876 -5891 -5889 -5930 -5928 -5975 -5961 -6010 -6021 -6037 -6047 -6089 -6087 -6140 -6143 -6161 -6175 -6206 -6231 -6250 -6252 -6262 -6280 -6328 -6339 -6378 -6395 -6409 -6427 -6460 -6458 -6470 -6512 -6520 -6539 -6540 -6560 -6609 -6633 -6639 -6643 -6700 -6704 -6722 -6740 -6764 -6784 -6788 --1 -6835 -6843 -6884 -6895 -6929 -6931 -6941 -6973 -6994 -7009 -7021 -7071 -7061 -7118 -7121 -7148 -7140 -7161 -7208 -7203 -7234 -7269 -7269 -7292 -7300 -7360 -7355 -7390 -7414 -7400 -7458 -7474 -7462 -7499 -7522 -7526 -7543 -7575 -7586 -7620 -7652 -7662 -7691 -7701 -7737 -7731 -7746 -7760 -7801 -7801 -7843 -7871 -7885 -7880 -7928 -7946 -7969 -7983 -7993 -8002 -8031 -8050 -8061 -8118 -8126 -8148 -8180 -8183 -8181 -8202 -8228 -8258 -8300 -8288 -8329 -8326 -8369 -8371 -8402 -8418 -8425 -8444 -8492 -8498 -8525 -8535 -8552 -8560 -8619 -8640 -8653 -8656 -8663 -8684 -8736 -8741 -8771 -8788 -8795 -8817 -8846 -8865 -8866 -8906 -8922 -8951 -8941 -8978 -9011 -9035 -9049 -9079 -9066 -9092 -9117 -9146 -9177 -9195 -9208 -9205 -9222 -9253 -9269 -9317 -9316 -9350 -9378 -9399 -9398 -9420 -9428 -9457 -9470 -9490 -9506 -9524 -9576 -9578 -9611 -9628 -9655 -9661 -9679 -9710 -9701 -9730 -9748 -9800 -9788 -9833 -9823 -9848 -9895 -9885 -9908 -9955 -9959 -9962 -9982 -10029 -10038 -10062 -10071 -10092 -10113 -139 -125 -102 -123 -102 -109 -114 --1 -128 -114 -126 -122 -119 -116 -130 -115 -137 -137 -121 -123 -121 -104 -122 -127 -129 -111 -133 -107 -135 -132 -122 -108 -102 -122 -118 -133 -115 -121 -129 -136 -124 -121 -105 -102 -131 -132 -125 -120 -135 -136 -135 -112 -117 -120 -123 -102 -101 -130 -111 -140 -102 -101 -113 -123 -114 -130 -108 -105 -101 -119 -137 -124 -132 -113 -116 -106 -122 -121 -139 -134 -112 -113 -138 -106 -115 -100 -119 -114 -106 -121 -134 -139 -138 -106 -127 -110 -119 -103 -138 -123 -106 -113 -140 -130 -124 -139 -129 -135 -129 -126 -117 -114 -118 -119 -134 -139 -135 -108 -107 -132 -100 -121 -132 -107 -127 -116 -121 -115 -112 -132 -134 -116 -139 -124 -133 -134 -109 -127 -116 -130 -140 -128 -135 -116 -109 -102 -140 -136 -111 -101 -130 -137 -137 -137 -116 -114 -116 -127 -115 -107 -137 -110 -118 -123 -138 -133 -110 -129 -139 -107 -135 -116 -123 -123 -115 --1 -140 -114 -131 -117 -112 -130 -124 -124 -112 -128 -110 -103 -114 -129 -111 -100 -121 -133 -140 -117 -117 -124 -102 -106 -138 -105 -109 -118 -134 -134 -139 -114 -102 -106 -108 -135 -140 -117 -111 -112 -118 -114 -128 -110 -100 -136 -122 -127 -111 -116 -113 -132 -137 -109 -136 -120 -124 -114 -115 -103 -109 -103 -135 -131 -110 -132 -125 -128 -108 -139 -122 -135 -102 -116 -107 -134 -100 -123 -124 -105 -108 -103 -109 -126 -127 -100 -122 -127 -111 -128 -103 -106 -140 -125 -111 -105 -131 -106 -120 -116 -113 -139 -128 -102 -127 -118 -127 -117 -140 -121 -123 -112 -122 -125 -126 -117 -112 -108 -139 -134 -134 -114 -116 -115 -104 -104 -105 -104 -112 -127 -124 -131 -115 -134 -100 -113 -122 -124 -138 -130 -131 -137 -122 -118 -117 -109 -116 -108 -121 -118 -127 -108 -112 -120 -111 -120 -114 -127 -132 -134 -116 -117 -134 -108 -131 -138 -123 -109 -129 -138 -139 -112 -106 -131 -120 -103 -100 -116 --1 -100 -134 -125 -115 -131 -120 -140 -122 -124 -105 -124 -138 -135 -105 -106 -105 -106 -115 -112 -127 -110 -134 -102 -109 -129 -103 -136 -135 -125 -120 -113 -129 -118 -120 -130 -140 -128 -121 -102 -114 -123 -116 -128 -124 -100 -101 -136 -103 -108 -137 -130 -114 -136 -103 -125 -102 -121 -113 -104 -131 -120 -105 -107 -127 -112 -133 -114 -123 -122 -104 -139 -108 -115 -122 -133 -136 -124 -114 -130 -103 -130 -121 -122 -126 -104 -110 -140 -119 -136 -112 -105 -108 -118 -109 -122 -109 -129 -112 -119 -112 -120 -118 -116 -136 -112 -115 -115 -116 -111 -119 -120 -100 -122 -111 -118 -110 -130 -100 -108 -137 -132 -137 -134 -107 -101 -106 -127 -131 -132 -118 -111 -137 -137 -106 -113 -135 -101 -133 -118 -120 -102 -100 -111 -128 -134 -10110 -10096 -10097 -10079 -10027 -10007 -9982 -9984 -9953 -9935 -9928 -9900 -9872 -9870 -9833 -9810 -9811 -9791 -9777 -9749 -9733 -9706 -9699 -9674 -9655 -9600 -9620 -9581 -9578 -9543 -9501 -9504 -9468 -9478 -9443 -9429 -9405 -9400 -9354 -9347 -9338 -9290 -9278 -9252 -9255 -9206 -9185 -9170 -9167 -9149 -9104 -9111 -9081 -9080 -9055 -9010 -8984 -8962 -8958 -8934 -8908 -8894 -8885 -8843 -8825 -8833 -8792 -8795 -8779 -8732 -8714 -8702 -8691 -8678 -8637 -8634 -8601 -8565 -8553 -8533 -8507 -8520 -8495 -8467 -8455 -8433 -8385 -8384 -8372 -8347 -8301 -8305 -8293 -8243 -8246 -8240 -8181 -8182 -8173 -8150 -8107 -8108 -8096 -8078 -8056 -8008 -8006 -7963 -7980 -7946 -7940 -7907 -7870 -7871 -7824 -7818 -7809 -7767 -7746 -7720 -7731 -7701 -7698 -7664 -7634 -7610 -7583 -7574 -7563 -7521 -7535 -7505 -7472 -7462 -7450 -7425 -7420 -7379 -7380 -7346 -7325 -7320 -7279 -7253 -7243 -7235 -7219 -7195 -7146 -7158 -7119 -7088 -7082 -7046 -7045 -7019 -6984 -6967 -6967 -6951 -6907 -6889 -6884 -6868 -6855 -6811 -6787 -6771 -6774 -6757 -6734 -6712 -6672 -6657 -6647 -6610 -6607 -6567 -6569 -6552 -6519 -6489 -6474 -6478 -6426 -6414 -6400 -6378 -6357 -6340 -6309 -6299 -6276 -6245 -6246 -6204 -6211 -6178 -6180 -6122 -6105 -6109 -6060 -6077 -6036 -6034 -6004 -6000 -5971 -5951 -5923 -5906 -5887 -5868 -5827 -5836 -5785 -5787 -5748 -5751 -5723 -5707 -5682 -5651 -5650 -5619 -5614 -5599 -5541 -5535 -5527 -5495 -5462 -5469 -5457 -5403 -5405 -5395 -5380 -5349 -5327 -5302 -5287 -5261 -5234 -5200 -5186 -5174 -5165 -5160 -5140 -5083 -5075 -5070 -5049 -5017 -5006 -4971 -4940 -4933 -4937 -4911 -4867 -4850 -4827 -4838 -4796 -4783 -4749 -4726 -4727 -4710 -4691 -4678 -4632 -4615 -4598 -4570 -4541 -4538 -4511 -4518 -4464 -4480 -4439 -4420 -4396 -4380 -4350 -4338 -4304 -4294 -4297 -4240 -4241 -4232 -4207 -4197 -4148 -4134 -4117 -4092 -4061 -4051 -4049 -4021 -4009 -3996 -3949 -3920 -3900 -3899 -3885 -3866 -3849 -3838 -3817 -3799 -3774 -3746 -3702 -3698 -3679 -3665 -3627 -3607 -3616 -3577 -3551 -3527 -3509 -3494 -3492 -3472 -3422 -3439 -3409 -3376 -3373 -3352 -3301 -3290 -3288 -3242 -3221 -3233 -3196 -3173 -3159 -3142 -3118 -3118 -3090 -3045 -3059 -3019 -2999 -2974 -2974 -2953 -2901 -2888 -2881 -2852 -2841 -2833 -2790 -2799 -2751 -2757 -2726 -2712 -2682 -2649 -2626 -2606 -2589 -2560 -2570 -2548 -2514 -2519 -2487 -2465 -2459 -2429 --1 -2362 -2348 -2320 -2326 -2312 -2285 -2280 -2237 -2224 -2208 -2169 -2161 -2148 -2104 -2120 -2077 -2067 -2038 -2008 -2000 -1971 -1977 -1954 -1902 -1904 -1875 -1862 -1860 -1814 -1788 -1767 -1742 -1742 -1718 -1689 -1671 -1657 -1641 -1616 -1584 -1587 -1546 -1525 -1507 -1482 -1492 -1446 -1453 -1436 -1381 -1394 -1353 -1339 -1330 -1319 -1289 -1272 -1223 -1226 -1189 -1197 -1158 -1134 -1128 -1089 -1065 -1056 -1052 -1035 -1019 -964 -970 -948 -916 -885 -890 -854 -852 -802 -814 -767 -766 -727 -707 -701 -699 -643 -653 -616 -619 -571 -543 -532 -508 -491 -460 -465 -443 -405 -400 -377 -346 -340 -334 -319 -300 -248 -230 -201 -196 -180 -171 -137 -110 -123 -126 -127 -123 -103 -139 -130 -102 -121 -107 -104 -140 -118 -118 -119 -106 -126 -102 -110 -137 -138 -110 -109 -109 -114 -120 -136 -110 -131 -134 -105 -103 -134 -105 -111 -124 -138 -129 -126 -102 -112 -112 -131 -122 -108 -138 -130 -109 -106 -126 -106 -138 -109 -120 -128 -115 -116 -122 -133 -126 -103 -132 -121 -132 -121 -138 -135 -113 -134 -106 -125 -115 -136 -129 -122 -102 -140 -139 -115 -110 -104 -104 -128 -123 -108 -111 -125 -107 -133 -138 -103 -125 -106 -136 -113 -111 -117 -119 --1 -108 -120 -129 -136 -103 -136 -114 -115 -137 -119 -120 -109 -120 -138 -121 -137 -125 -121 -127 -103 -101 -136 -139 -139 -102 -121 -111 -125 -118 -125 -122 -103 -115 -130 -116 -136 -108 -124 -103 -135 -101 -131 -134 -119 -138 -130 -102 -123 -139 -130 -137 -109 -104 -101 -118 -119 -138 -124 -109 -122 -125 -115 -124 -117 -132 -104 --1 -106 -135 -131 -131 -110 -137 -110 -112 -123 -113 -126 -136 -108 -119 -120 -101 -125 -101 -115 -120 -112 -136 -120 -135 -114 -124 -101 -110 -125 -130 -131 -129 -134 -139 -101 -138 -138 -133 -126 -132 -101 -110 -119 -121 -108 -130 -111 -132 -136 -121 -136 -138 -100 -107 -140 -123 -102 -108 -101 -127 -116 -133 -105 -118 -111 -121 -121 -111 -105 -108 -136 -111 -131 -101 -138 -100 -136 -117 -105 -140 -138 -123 -140 -119 -115 -101 -107 -132 -104 -139 -120 -137 -135 -103 -118 -105 -130 -111 -117 -114 -116 -118 -138 -104 -109 -136 -125 -133 -106 -127 -123 -134 -115 -138 -130 -109 -114 -113 -116 -128 -116 -107 -130 -129 -109 -116 -114 -126 -116 -131 -140 -114 -114 -135 -134 -133 -139 -130 -119 -108 -128 -105 -116 -100 -102 -116 -111 -129 -135 -105 -104 -126 -103 -138 -134 -119 -125 -135 -139 -136 -137 -108 -102 -121 -128 -100 -138 -101 -107 -129 -139 -103 -125 -100 -140 -133 -104 -109 -104 -127 -120 -102 -112 -102 -133 -114 -104 -114 -126 -133 -127 -115 -120 -118 -132 -133 -105 -120 -112 -137 -120 -102 -126 -113 -110 -114 -137 -138 -101 -135 -102 -124 -126 -111 -126 -118 -139 -134 -120 -108 -103 -106 -128 -115 -129 -125 -126 -126 -103 -107 -139 -104 -101 -130 -110 -130 -131 -104 -130 -117 -139 -112 -103 -102 -106 -107 -136 -125 -131 -112 -123 -137 -123 -107 -126 -110 -112 -128 -124 -124 -134 -109 -108 -108 -114 -121 -118 -116 -127 -102 -115 -127 -119 -131 -127 -131 -137 -107 -112 -128 -109 -115 -106 -124 -101 -135 -108 -120 -110 -138 -138 -113 -123 -119 -130 -133 -140 -123 -100 -131 -131 -122 -100 -132 -108 -134 -122 -105 -125 -133 -137 -118 -119 -105 -125 -120 -104 -128 -109 -113 -101 -105 -105 -100 -117 -114 -101 -126 -110 -136 -106 -104 -121 -10103 -10118 -10060 -10050 -10057 -10024 -9996 -9961 -9959 -9949 -9905 -9897 -9895 -9851 -9851 -9810 -9812 -9788 -9745 -9752 -9735 -9692 -9696 -9651 -9658 -9611 -9612 -9572 -9553 -9528 -9520 -9494 -9477 -9440 -9457 -9416 -9392 -9377 -9356 -9320 -9304 -9293 -9264 -9274 -9255 -9207 -9202 -9163 -9146 -9138 -9124 -9080 -9090 -9074 -9032 -9011 -9002 -8970 -8971 -8952 -8930 -8889 -8898 -8877 -8844 -8824 -8816 -8767 -8765 -8741 -8711 -8684 -8666 -8649 -8653 -8628 -8587 -8590 -8580 -8546 -8513 -8518 -8484 -8440 -8459 -8412 -8384 -8385 -8365 -8349 -8338 -8312 -8268 -8240 -8234 -8204 -8205 -8194 -8159 -8145 -8136 -8109 -8077 -8050 -8029 -8008 -7989 -7981 -7961 -7936 -7924 -7894 -7872 -7867 -7854 -7812 -7800 -7768 -7774 -7741 -7717 -7704 -7668 -7652 -7650 -7617 -7612 -7595 -7577 -7542 -7502 -7483 -7498 -7440 -7434 -7421 -7417 -7361 -7363 -7342 -7336 -7288 -7261 -7252 -7220 -7209 -7181 -7173 -7152 -7149 -7125 -7085 -7081 -7048 -7045 -7001 -7015 -6963 -6976 -6945 -6911 -6881 -6865 -6880 -6821 -6829 -6806 -6792 -6747 -6735 -6714 -6695 -6693 -6671 -6627 -6604 -6605 -6565 -6547 -6534 -6513 -6497 -6477 -6468 -6453 -6423 -6419 -6399 -6362 -6334 -6340 -6302 -6270 -6273 -6222 -6235 -6202 -6164 -6147 -6137 -6104 -6088 -6071 -6073 -6020 -6018 -6017 -5969 -5980 -5929 -5907 -5899 -5882 -5873 -5822 -5804 -5797 -5786 -5743 -5750 -5701 -5685 -5669 -5653 -5638 -5614 -5612 -5592 -5575 -5550 -5529 -5519 -5463 -5474 -5459 -5419 -5399 -5393 -5347 -5339 -5316 -5300 -5264 -5271 -5241 -5240 -5202 -5169 -5141 -5148 -5118 -5100 -5079 -5058 -5028 -5021 -5011 -4980 -4957 -4960 -4939 -4886 -4887 -4870 -4849 -4811 -4789 -4780 -4773 -4731 -4736 -4712 -4689 -4646 -4633 -4638 -4599 -4598 -4570 -4541 -4522 -4501 -4476 -4456 -4428 -4418 -4394 -4394 -4365 -4350 -4329 -4280 -4278 -4280 -4221 -4237 -4198 -4180 -4142 -4139 -4139 -4093 -4080 -4050 -4046 -4003 -4018 -3974 -3941 -3960 -3930 -3901 -3897 -3868 -3824 -3804 -3781 -3761 -3766 -3736 -3735 -3688 -3700 -3672 -3656 -3612 -3611 -3585 -3562 -3546 -3531 -3480 -3484 -3451 -3458 -3429 -3412 -3369 -3363 -3342 -3315 -3318 -3297 -3240 -3259 -3230 -3182 -3191 -3152 -3152 -3112 -3110 -3064 -3065 -3053 -3027 -2985 -2962 -2966 -2925 -2929 -2912 -2895 -2861 -2846 -2824 -2781 -2779 -2745 -2737 -2710 -2712 -2690 -2661 -2652 -2634 -2585 -2598 -2553 -2553 -2515 -2520 -2497 -2477 -2448 -2413 -2411 -2360 -2360 -2327 -2312 -2289 -2282 -2264 -2246 -2228 -2200 -2189 -2144 -2122 -2131 -2096 -2074 -2076 -2049 -2038 -2018 -1980 -1971 -1925 -1905 -1888 -1874 -1840 -1820 -1827 -1797 -1784 -1749 -1752 -1727 -1703 -1686 -1645 -1649 -1614 -1616 -1599 -1574 -1547 -1508 -1499 -1497 -1470 -1434 -1419 -1416 -1360 -1373 -1324 -1316 -1316 -1262 -1247 -1228 -1229 -1205 -1196 --1 -1123 -1102 -1084 -1083 -1050 -1027 -1004 -1010 -969 -940 -940 -914 -911 -871 -859 -835 -829 -788 -778 -743 -753 -717 -691 -660 -667 -627 -634 -612 -570 -557 -531 -539 -501 -487 -452 -453 -430 -390 -394 -368 -337 -334 -284 -285 -259 -249 -218 -210 -178 -145 -136 -20101 -20082 -20048 -20012 -19963 -19913 -19895 -19823 -19809 -19761 -19717 -19670 -19660 -19584 -19543 -19525 -19488 -19441 -19393 -19350 -19331 -19282 -19225 -19188 -19171 -19103 -19080 -19047 -18985 -18978 -18917 -18872 -18828 -18810 -18747 -18705 -18691 -18626 -18592 -18553 -18508 -18468 -18452 -18416 -18351 -18332 -18274 -18257 -18185 -18147 -18129 -18095 -18057 -18014 -17957 -17939 -17898 -17838 -17792 -17767 -17706 -17689 -17644 -17601 -17546 -17522 -17471 -17425 -17413 -17376 -17325 -17276 -17246 -17212 -17158 -17119 -17096 -17023 -17012 -16947 -16931 -16882 -16858 -16784 -16767 -16719 -16691 -16659 -16615 -16553 -16518 -16480 -16443 -16404 -16369 -16338 -16278 -16243 -16203 -16170 -16106 -16072 -16024 -15981 -15969 -15920 -15887 -15849 -15793 -15762 -15713 -15676 -15620 -15595 -15558 -15520 -15470 -15434 -15408 -15366 -15334 -15267 -15246 -15199 -15163 -15107 -15067 -15044 -15016 -14940 -14907 -14860 -14829 -14802 -14771 -14733 -14685 -14638 -14608 -14554 -14509 -14471 -14452 -14384 -14351 -14334 -14287 -14225 -14220 -14173 -14116 -14078 -14060 -13997 -13970 -13913 -13872 -13835 -13808 -13780 -13700 -13690 -13651 -13602 -13556 -13507 -13489 -13434 -13395 -13371 -13312 -13297 -13228 -13217 -13168 -13139 -13097 -13024 -12980 -12952 -12924 -12898 -12843 -12804 -12764 -12739 -12688 -12623 -12585 -12552 -12518 -12473 -12434 -12388 -12345 -12304 -12280 -12249 -12206 -12180 -12111 -12075 -12059 -12016 -11972 -11902 -11899 -11830 -11788 -11765 -11716 -11681 -11649 -11608 -11579 -11526 -11490 -11453 -11382 -11343 -11301 -11281 -11235 -11212 -11168 -11133 -11095 -11032 -10997 -10968 -10904 -10898 -10844 -10804 -10756 -10722 -10668 -10644 -10613 -10561 -10521 -10468 -10459 -10413 -10367 -10322 -10267 -10235 -10182 -10170 -10139 -10078 -10036 -10000 -9951 -9924 -9867 -9827 -9791 -9766 -9707 -9672 -9628 -9605 -9555 -9516 -9473 -9445 -9380 -9363 -9303 -9286 -9238 -9198 -9180 -9102 -9099 -9055 -8994 -8975 -8935 -8876 -8851 -8810 -8766 -8716 -8682 -8653 -8586 -8574 -8515 -8476 -8434 -8408 -8359 -8308 -8282 -8260 -8217 -8147 -8119 -8074 -8052 -8007 -7958 -7925 -7860 -7860 -7805 -7752 -7733 -7673 -7647 -7617 -7553 -7506 -7461 -7425 -7404 -7367 -7307 -7274 -7237 -7180 -7142 -7105 -7094 -7021 -6983 -6980 -6912 -6878 -6846 -6796 -6750 -6725 -6686 -6657 -6615 -6565 -6504 -6487 -6443 -6415 -6359 -6331 -6298 -6230 -6180 -6173 -6108 -6091 -6040 -5993 -5950 -5921 -5884 -5829 -5819 -5758 -5733 -5696 -5652 -5603 -5579 -5521 -5480 -5425 -5390 -5379 -5306 -5297 -5238 -5205 -5177 -5127 -5079 -5027 -4997 -4948 -4923 -4865 -4826 -4816 -4765 -4740 -4699 -4622 -4581 -4559 -4512 -4475 -4455 -4388 -4355 -4332 -4296 -4241 -4193 -4142 -4116 -4077 -4048 --1 -3965 -3928 -3879 -3849 -3799 -3765 -3719 -3698 -3627 -3596 -3562 -3505 -3490 -3444 -3394 -3342 -3319 -3267 -3240 -3204 -3165 -3108 -3100 -3056 -3007 -2967 -2939 -2888 -2854 -2810 -2776 -2704 -2693 -2629 -2601 -2556 -2539 -2492 -2442 -2411 -2342 -2323 -2271 -2229 -2189 -2146 -2137 -2089 -2035 -1980 -1949 -1906 -1861 -1858 -1787 -1771 -1737 -1687 -1623 -1608 -1573 -1512 -1497 -1443 -1383 -1342 -1328 -1292 -1237 -1217 -1148 -1135 -1091 -1045 -1011 -976 -916 -870 -835 -797 -746 -738 -690 -640 -614 -555 -520 -498 -445 -405 -380 -320 -295 -256 -213 -174 -30109 -30061 -30003 -29957 -29865 -29817 -29767 -29699 -29633 -29593 -29533 -29472 -29415 -29351 -29271 -29200 -29148 -29094 -29038 -28985 -28923 -28859 -28814 -28751 -28693 -28618 -28550 -28480 -28429 -28368 -28323 -28263 -28185 -28153 -28075 -28032 -27943 -27888 -27860 -27771 -27729 --1 -27582 -27536 -27484 -27433 -27341 -27280 -27254 -27173 -27108 -27067 -26992 -26957 -26893 -26813 --1 -26711 -26649 -26573 -26515 -26451 -26397 -26326 -26265 -26210 -26174 -26114 -26052 -25975 -25907 -25844 -25800 -25759 -25689 -25606 -25575 -25489 -25435 -25367 -25340 -25254 -25202 -25158 -25065 -25024 -24941 -24917 -24828 -24762 -24726 -24650 -24599 -24536 -24472 -24424 -24354 -24312 -24244 -24195 -24116 -24060 -24004 -23933 -23877 -23832 -23774 -23714 -23648 -23598 -23540 -23450 -23396 -23324 -23293 -23215 -23173 -23115 -23030 -22974 -22937 -22861 -22801 -22739 -22668 -22612 -22554 -22517 -22441 -22363 -22322 -22263 -22197 -22133 -22061 -22028 -21966 -21907 -21830 -21768 -21703 -21644 -21607 -21540 -21481 -21435 -21343 -21317 -21222 -21172 -21134 -21049 -21016 -20926 -20898 -20812 -20766 -20698 -20650 -20562 -20501 -20449 -20398 -20330 -20280 -20213 -20165 -20107 -20056 -19980 -19910 -19844 -19787 -19723 -19674 -19624 -19543 -19481 -19459 -19378 -19307 -19272 -19188 -19137 -19092 -19000 -18974 -18908 -18828 -18797 -18708 -18649 -18613 -18558 -18468 -18420 -18364 -18292 -18240 -18190 -18135 -18064 -18012 -17924 -17892 -17839 -17756 -17684 -17621 -17600 -17516 -17459 -17403 -17330 -17270 -17202 -17157 -17088 -17060 -16962 -16917 -16863 -16784 -16737 -16698 -16624 -16563 -16488 -16423 -16388 -16332 -16256 -16216 -16149 -16084 -16036 -15977 -15913 -15855 -15768 -15722 -15652 -15582 -15555 -15479 -15408 -15375 -15311 -15227 -15172 -15114 -15043 -15014 -14927 -14898 -14814 -14760 -14701 -14642 -14593 -14510 -14462 -14383 -14359 -14290 -14210 -14173 -14112 -14021 -13966 -13916 -13858 -13798 -13730 -13665 -13640 -13557 -13494 -13446 -13399 -13303 -13252 -13181 -13160 -13095 -13000 -12962 -12901 -12829 -12793 -12723 -12664 -12615 -12536 -12500 -12433 -12344 -12307 -12251 -12186 -12132 -12079 -12017 -11939 -11888 -11838 -11780 -11697 -11633 -11600 -11519 -11462 -11410 -11351 -11299 -11240 -11176 -11101 -11046 -10966 -10913 -10880 -10788 -10740 -10661 -10635 -10572 -10500 -10446 -10397 -10307 -10270 -10220 -10158 -10073 -10027 -9943 -9905 -9857 -9777 -9719 -9657 -9598 -9535 -9475 -9411 -9363 -9313 -9258 -9160 -9127 -9053 -9000 -8950 -8885 -8826 -8765 -8683 -8654 -8600 -8505 -8463 -8391 -8331 -8277 -8202 -8168 -8120 -8022 -7976 -7937 -7850 -7781 -7727 -7698 -7622 -7573 -7486 -7430 -7395 -7328 -7244 -7197 -7132 -7082 -7040 -6960 -6896 -6830 -6797 -6717 -6653 -6612 -6522 -6467 -6425 -6370 -6320 -6241 -6164 -6135 -6041 -5981 -5932 -5886 -5823 -5753 -5697 -5642 -5588 -5527 -5441 -5399 -5322 -5282 -5237 -5145 -5109 -5055 -4991 -4934 -4863 -4782 -4742 -4682 -4636 -4557 -4519 -4420 -4372 -4325 -4250 -4180 -4137 -4099 -4013 -3966 -3905 -3858 -3775 -3716 -3665 -3615 -3554 -3481 -3429 -3369 -3283 -3225 -3168 -3128 -3076 -3018 -2930 -2883 -2818 -2761 -2685 -2637 -2587 -2535 -2474 -2389 -2336 -2271 -2207 -2165 -2103 -2034 -1981 -1924 -1874 -1798 -1748 -1670 -1632 -1554 -1503 -1446 -1369 -1335 -1263 -1186 -1136 -1066 -1005 -969 -883 -854 -791 -706 -658 -610 -534 -474 -405 -376 -320 -238 -180 -40140 -40037 -39973 -39882 -39806 -39710 -39660 -39550 -39471 -39396 -39304 -39252 -39151 -39097 -39004 -38940 -38852 -38740 -38688 -38611 -38531 -38431 -38343 -38282 -38215 -38139 -38033 -37947 -37874 --1 -37735 -37647 -37574 -37497 -37410 -37311 -37220 -37172 -37078 -37009 -36925 -36828 -36753 -36676 -36613 -36539 -36434 -36375 -36294 -36192 -36114 -36058 -35975 -35866 -35799 -35736 -35634 -35546 -35466 -35394 -35315 -35235 -35140 -35087 -34983 -34933 -34833 -34762 -34680 -34618 -34515 -34460 --1 -34282 -34194 -34111 -34060 -33956 -33870 -33807 -33709 -33653 -33571 -33462 -33387 -33330 -33233 -33178 -33093 -32991 -32928 -32838 -32749 -32676 -32581 -32525 -32440 -32349 -32296 -32186 -32126 -32057 -31965 -31868 -31786 -31725 -31640 -31572 -31491 -31398 -31309 -31246 -31155 -31100 -31020 -30936 -30830 -30767 -30682 -30580 -30514 -30426 -30348 -30300 -30189 -30108 -30026 -29949 -29885 -29788 -29729 -29644 -29545 -29488 -29388 -29311 -29249 -29171 -29099 -28988 -28913 -28838 -28751 -28691 -28586 -28510 -28453 -28359 -28287 -28204 -28125 -28051 -27968 -27868 -27795 -27727 -27655 -27546 -27482 -27397 -27321 -27242 -27140 -27064 -26998 -26925 -26849 -26753 -26665 -26603 -26522 -26423 -26361 -26288 -26217 -26109 -26021 -25942 -25878 -25804 -25734 -25660 -25580 -25483 -25382 -25340 -25257 -25158 -25066 -24983 -24908 -24833 -24757 -24693 -24595 -24539 -24441 -24351 -24278 -24201 -24106 -24048 -23960 -23882 -23800 -23718 -23646 -23547 -23468 -23420 -23324 -23231 -23164 -23079 -22984 -22901 -22857 -22770 -22672 -22587 -22502 -22431 -22353 -22287 -22219 -22135 -22049 -21958 -21861 -21814 -21733 -21629 -21579 -21477 -21390 -21329 -21255 -21147 -21099 -21011 -20926 -20832 -20758 -20695 -20598 -20508 -20450 -20361 -20289 -20217 -20139 -20043 -19962 -19896 -19810 -19719 -19625 -19557 -19482 -19414 -19335 -19231 -19146 -19085 -18990 -18912 -18827 -18777 -18685 -18600 -18529 -18459 -18350 -18262 -18190 -18121 -18034 -17941 -17866 -17783 -17720 -17623 -17565 -17463 -17403 -17335 -17239 -17160 -17075 -17000 -16913 -16848 -16741 -16685 -16593 -16533 -16428 -16358 -16289 -16189 -16131 -16060 -15944 -15880 -15785 -15720 -15637 -15541 -15475 -15395 -15336 -15231 -15173 -15069 -14998 -14938 -14859 -14764 -14665 -14607 -14521 -14440 -14369 -14297 -14184 -14110 -14024 -13962 -13889 -13793 -13706 -13635 -13543 -13475 -13387 -13338 -13253 -13175 -13061 -13004 -12904 -12829 -12744 -12663 -12603 -12540 -12439 -12379 -12290 -12219 -12129 -12037 -11980 -11889 -11805 -11707 -11620 -11549 -11489 -11419 -11319 -11226 -11177 -11089 -11003 -10926 -10845 -10745 -10683 -10589 -10512 -10448 -10360 -10277 -10182 -10131 -10040 -9970 -9892 -9792 -9710 -9655 -9548 -9461 -9384 -9312 -9257 -9163 -9090 -9004 -8934 -8822 -8749 -8664 -8607 -8509 -8459 -8360 -8281 -8220 -8135 -8029 -7947 -7880 -7781 -7715 -7653 -7570 -7470 -7389 -7309 -7237 -7179 -7100 -6985 -6931 -6845 -6765 -6676 -6595 -6508 -6460 -6351 -6291 -6180 -6122 -6054 -5958 --1 -5787 -5734 -5655 -5560 -5479 -5407 -5331 -5234 -5165 -5096 -4996 -4912 -4828 -4753 -4673 -4605 -4503 -4449 -4366 -4263 -4209 -4115 -4036 -3941 -3881 -3807 -3704 -3637 -3578 -3494 -3402 -3318 -3244 -3147 -3070 -3005 -2927 -2832 -2774 -2687 -2580 -2502 -2439 -2365 -2287 -2202 -2120 -2027 -1947 -1891 -1797 -1723 -1646 -1570 -1460 -1394 -1315 -1227 -1171 -1088 -1010 -919 -846 -753 -691 -587 -502 -447 -363 -297 -185 -50110 -50018 -49902 -49835 -49718 -49628 -49514 -49401 -49329 -49227 -49121 -49019 -48921 -48805 -48704 -48629 -48517 -48403 -48325 -48207 -48110 -48006 -47938 -47819 -47706 -47621 -47517 -47404 -47328 -47216 -47114 -47018 -46936 -46819 -46701 -46619 -46528 -46431 -46330 -46213 -46102 -46017 -45917 -45823 -45726 -45622 -45540 -45427 -45318 -45237 -45130 -45036 -44904 -44810 -44735 -44622 -44521 -44422 -44320 -44220 -44106 -44034 -43933 -43826 -43723 -43638 -43521 -43402 -43330 -43222 -43108 -43017 -42916 -42806 -42733 -42602 -42528 -42409 -42325 -42235 -42110 --1 -41931 -41819 -41719 -41626 -41531 -41401 -41334 -41238 -41105 -41031 -40919 -40818 -40739 -40639 -40540 -40400 -40325 -40228 -40106 -40029 -39918 -39806 -39726 -39603 -39510 -39410 -39319 -39206 -39119 -39011 -38933 -38808 -38706 -38633 -38504 -38409 -38320 -38208 -38120 -38040 -37930 -37834 -37723 -37609 -37531 -37440 -37331 -37217 -37133 -37028 -36932 -36809 -36733 -36613 -36515 -36412 -36329 -36239 -36130 -36027 -35917 -35805 -35707 -35630 -35527 -35436 -35330 -35215 -35102 -35019 -34936 -34828 -34708 -34612 -34538 -34426 -34306 -34225 -34100 -34006 -33909 -33835 -33700 -33632 -33539 -33417 -33313 -33214 -33122 -33013 -32909 -32836 -32732 -32616 -32526 -32415 -32311 -32215 -32105 -32002 -31909 -31834 -31721 -31631 -31528 -31435 -31303 -31210 -31138 -31016 -30923 -30801 -30731 -30622 -30506 -30418 -30316 -30225 -30119 -30036 -29917 -29813 -29704 -29612 -29526 -29420 -29336 -29224 -29129 -29022 -28940 -28802 -28709 -28639 -28512 -28421 -28320 -28218 -28126 -28030 -27937 -27819 -27739 -27635 -27521 -27427 -27340 -27206 -27134 -27032 -26902 -26812 -26732 -26634 -26526 -26417 -26320 -26202 -26112 -26009 -25910 -25810 -25714 -25630 -25525 -25416 -25339 -25204 -25124 -25013 -24915 -24820 -24717 -24636 -24533 -24403 -24331 -24232 -24108 -24018 -23932 -23806 -23712 -23625 -23523 -23431 -23334 -23235 -23126 -23005 -22926 -22817 -22720 -22605 -22526 -22427 -22318 -22207 -22111 -22032 -21914 -21828 -21709 -21611 -21534 -21423 -21338 -21233 -21121 -21014 -20908 -20816 -20738 -20610 -20506 -20416 -20327 -20222 -20103 -20023 -19918 -19834 -19708 -19625 -19530 -19408 -19309 -19225 -19131 -19029 -18927 -18814 -18717 -18605 -18508 -18427 -18316 -18225 -18128 -18017 -17940 -17824 -17716 -17639 -17534 -17424 -17304 -17213 -17136 -17034 -16939 -16838 -16726 -16610 -16510 -16431 -16309 -16200 -16112 -16006 -15924 -15829 -15709 -15628 -15508 -15420 -15328 -15234 -15131 -15003 -14906 -14807 -14732 -14604 -14513 -14439 -14318 --1 -14131 -14014 -13918 -13840 -13701 -13601 -13538 -13413 -13332 -13229 -13131 -13022 -12925 -12809 -12713 -12600 -12532 -12416 -12332 -12212 -12129 -12007 -11925 -11826 -11734 -11621 -11508 -11409 -11314 -11218 -11108 -11037 -10922 -10823 -10703 -10624 -10528 -10418 -10323 -10213 -10103 -10003 -9917 -9818 -9703 -9632 -9540 -9425 -9318 -9203 -9121 -9012 -8905 -8826 -8734 -8612 -8521 -8424 -8314 -8204 -8123 -8001 -7916 -7816 -7728 -7608 -7529 -7402 -7325 -7220 -7140 -7035 -6911 -6815 -6723 -6610 -6533 -6424 -6311 -6220 -6126 -6006 -5918 -5816 -5709 -5605 -5517 -5440 -5300 -5219 -5136 -5011 -4909 -4813 -4706 -4626 -4519 -4426 -4319 -4230 -4111 -4017 -3911 -3811 -3730 -3621 -3539 -3435 -3325 -3213 -3136 -3001 -2902 -2813 -2719 -2606 -2526 -2414 -2338 -2228 -2108 -2005 -1936 -1812 -1710 -1621 -1507 -1407 -1323 -1238 -1131 -1000 -901 -805 -716 -619 -526 -433 -326 -212 -100125 -99911 -99713 -99537 -99315 -99118 -98924 -98735 -98500 -98332 -98119 -97902 -97708 -97519 -97305 -97110 -96928 -96723 -96510 -96300 -96114 -95904 -95727 -95514 -95337 -95134 -94911 -94710 -94528 -94332 -94103 -93923 -93730 -93530 -93324 -93100 -92915 -92728 -92540 -92302 -92118 -91901 -91735 -91518 -91326 -91140 -90935 -90735 -90538 -90329 -90135 -89904 -89738 -89529 -89306 -89101 -88905 -88728 -88540 -88338 -88132 -87925 -87734 -87528 -87328 -87116 -86914 -86717 -86510 -86339 -86123 -85918 -85737 -85534 -85332 -85102 -84925 -84708 -84504 -84326 -84102 -83918 -83712 -83536 -83317 -83103 -82933 -82736 -82505 -82311 -82122 -81919 -81731 -81519 -81325 -81101 -80937 -80733 -80513 -80335 -80106 -79916 -79709 -79526 -79310 -79133 -78902 -78722 -78521 -78315 -78117 -77921 -77726 -77508 -77305 -77107 -76909 -76738 -76517 -76310 -76131 -75932 -75712 -75523 -75316 -75115 -74912 -74709 -74508 -74309 -74121 -73900 -73707 -73523 -73303 -73126 -72912 -72727 -72528 -72313 -72118 -71926 -71724 -71517 -71312 -71117 -70920 -70721 -70511 -70313 -70140 -69915 -69725 -69520 -69320 -69107 -68940 -68723 -68540 -68325 -68104 -67938 -67726 -67506 -67315 -67139 -66913 -66708 -66529 -66337 -66126 -65916 -65734 -65540 -65306 -65126 -64932 -64718 -64510 -64305 -64101 -63914 -63702 -63534 -63305 -63116 -62901 -62725 -62510 -62340 -62101 -61923 -61704 -61538 -61302 -61126 -60903 -60726 -60529 -60309 -60114 -59913 -59715 -59502 -59331 -59121 -58908 -58729 -58535 -58310 -58113 -57932 -57709 -57512 -57322 -57121 -56938 -56718 -56501 -56317 -56100 -55930 -55732 -55526 -55314 -55135 -54921 -54718 -54536 -54333 -54134 -53911 -53709 -53537 -53301 -53111 -52912 --1 -52527 -52329 -52123 -51932 -51709 -51534 -51327 -51107 -50921 -50701 -50512 -50312 -50102 -49906 -49706 -49534 -49326 -49126 -48902 -48717 -48500 -48335 -48131 -47919 -47722 -47532 -47335 -47136 -46935 -46739 -46528 -46314 -46101 -45902 -45721 -45539 -45306 -45102 -44925 -44728 -44508 -44318 -44102 -43900 -43726 -43532 -43319 -43109 -42919 -42703 -42520 -42331 -42132 -41923 -41728 -41518 -41317 -41120 -40933 -40717 -40526 -40301 -40128 -39900 -39719 -39505 -39316 -39113 -38926 -38712 -38533 -38332 -38100 -37937 -37730 -37500 -37333 -37140 -36907 -36728 -36522 -36305 -36106 -35931 -35730 -35525 -35308 -35120 -34909 -34738 -34502 -34328 -34124 -33931 -33737 -33529 -33311 -33137 -32916 -32736 -32506 -32337 -32129 -31901 -31702 -31506 -31300 -31123 -30939 -30733 -30537 -30322 -30127 -29940 -29711 -29528 -29336 -29109 -28930 -28705 -28540 -28310 -28100 -27910 -27720 -27509 -27317 -27125 -26922 -26723 -26501 -26318 -26106 -25922 -25703 -25505 -25324 -25126 -24936 -24701 -24521 -24336 -24101 -23936 -23706 -23516 -23334 -23135 -22918 -22733 -22540 -22330 -22118 -21902 -21735 -21508 -21302 -21102 -20922 -20732 -20531 -20314 -20104 -19933 -19728 -19519 -19303 -19110 -18904 -18730 -18537 -18328 -18138 -17900 -17712 -17532 -17325 -17123 -16919 -16718 -16525 -16310 -16115 -15915 -15717 -15518 -15317 -15124 -14904 -14730 -14536 -14328 -14119 -13928 -13705 -13520 -13306 -13105 -12928 -12715 -12514 -12307 -12105 -11922 -11713 -11534 -11321 -11112 -10917 -10734 -10518 -10312 -10118 -9940 -9734 -9501 -9325 -9102 -8913 -8740 -8529 -8332 -8137 -7905 -7715 -7532 -7329 -7130 -6937 -6732 -6531 -6310 -6103 -5922 -5739 -5533 -5326 -5126 -4900 -4700 -4537 -4310 -4110 -3932 -3724 -3511 -3314 -3110 -2919 -2725 -2524 -2330 -2114 -1908 -1736 -1517 -1319 -1135 -935 -730 -504 -322 -106 -120 -115 -121 -112 -120 -129 -113 -110 -119 -129 -130 -110 -107 -128 -112 -128 -120 -138 -101 -111 -129 -115 -139 -137 -122 -128 -139 -121 -117 -133 -137 -103 -106 -107 -115 -125 -134 -140 -134 -102 -109 -116 -118 -131 -127 -139 -112 -128 -134 -121 -133 -120 -121 -131 -114 -121 -120 -138 -137 -133 -109 -119 -127 -140 -117 -129 -128 -111 -137 -116 -105 -119 -109 -100 -118 -131 -134 -120 -138 -119 -111 -120 -139 -102 -106 -123 -137 -105 -131 -137 -122 -109 -133 -116 -131 -135 -115 -107 -116 -133 -118 -122 -120 -133 -128 -101 -110 -132 -129 -121 -140 -122 -131 -103 -129 -104 -117 -118 -112 -124 -103 -104 -116 -123 -117 -124 -108 -119 -116 -107 -128 -108 -131 -129 -103 -139 -137 -130 -131 -109 -100 -116 -130 -135 -113 -104 -126 -111 -107 -119 -134 -122 -117 -117 -137 -130 -138 -106 -136 -101 -124 -118 -133 -113 -128 -120 -114 -123 -111 -128 -100 -134 -128 -125 -113 -125 -125 -140 -104 -100 -127 -137 -125 -125 -134 -102 -140 -132 -136 -128 -129 -129 -111 -137 -103 -114 -139 -100 -122 -101 -121 -110 -134 -108 -117 -126 -105 -115 -131 -137 -108 -112 -102 -138 -140 -119 -110 -132 -107 -120 -114 -108 -115 -118 -109 -116 -119 -132 -115 -117 -135 -136 -101 -104 -122 -115 -135 -113 -105 -126 -108 -136 -104 -110 -130 -115 -114 -117 -128 -132 -107 -103 -112 -132 -110 -122 -108 -109 -134 -136 -106 -119 -108 -131 -133 -115 -136 -132 -106 -103 -110 -118 -135 -118 -124 -115 -100 -135 -133 -130 -107 -138 -108 -106 -117 -139 -119 -125 -104 -120 -134 -133 -127 -130 -121 -127 -114 -124 -137 -126 -102 -136 -126 -133 -115 -101 -132 -115 -108 -128 -104 -138 -109 -109 -106 -110 -134 -131 -111 -128 -103 -135 -137 -131 -105 -123 -118 -104 -129 -137 -103 -137 -106 -125 -116 -138 -119 -139 -118 -123 -109 -107 -113 -134 -128 -102 -139 -118 -121 -100 -116 -136 -106 -104 -123 -123 -107 -101 -105 -129 -105 -109 -112 -114 -133 -108 -110 -106 -137 -132 -116 -120 -138 -104 -109 -126 -123 -109 -131 -114 -135 -123 -134 -120 -111 -132 -119 -135 -103 -100 -129 -136 -135 -112 -121 -117 -106 -122 -124 -137 -105 -109 -100 -132 -114 -140 -126 -105 -114 -109 -105 -117 -124 -127 -133 -118 -104 -104 -104 -125 -134 -115 -138 -111 -140 -123 -139 -130 -125 -117 -108 -106 -117 -140 -134 -109 -122 -125 -100 -100 -123 -129 -125 -131 -105 -126 -133 -107 -134 -117 -118 -140 -133 -111 -128 -139 -103 -134 -116 -113 -113 -134 -115 -117 -125 -114 -106 -100 -118 -103 -123 -116 -123 -131 -101 -126 -121 -105 -129 -133 -101 -105 -122 --1 -104 -111 -115 -127 -137 -132 -106 -108 -102 -104 -109 -137 -119 -125 -115 -141 -164 -173 -184 -219 -242 -263 -274 -313 -311 -350 -371 -399 -415 -403 -446 -450 -473 -518 -523 -547 -563 -592 -604 -636 -642 -649 -665 -719 -714 -745 -772 -791 -820 -827 -843 -866 -889 -916 -938 -949 -955 -968 -991 -1011 -1036 -1048 -1078 -1119 -1132 -1131 -1174 -1194 -1185 -1227 -1246 -1251 -1298 -1320 -1334 -1359 -1342 -1391 -1389 -1417 -1441 -1456 -1465 -1493 -1501 -1558 -1572 -1566 -1606 -1629 -1622 -1670 -1696 -1701 -1708 -1727 -1764 -1781 -1797 -1836 -1820 -1849 -1864 -1917 -1916 -1925 -1948 -1964 -1983 -2020 -2036 -2043 -2093 -2111 -2108 -2130 -2156 -2180 -2195 -2234 -2231 -2270 -2272 -2290 -2337 -2343 -2360 -2399 -2411 -2413 -2460 -2457 -2480 -2492 -2530 -2550 -2563 -2585 -2605 -2613 -2650 -2647 -2670 -2720 -2728 -2720 -2759 -2762 -2787 -2806 -2856 -2879 -2887 -2892 -2928 -2950 -2940 -2960 -2984 -3016 -3023 -3051 -3066 -3100 -3113 -3134 -3168 -3194 -3218 -3215 -3227 -3253 -3264 -3303 -3327 -3329 -3356 -3384 -3385 -3431 -3422 -3453 -3465 -3490 -3526 -3533 -3578 -3573 -3588 -3627 -3640 -3661 -3690 -3692 -3737 -3738 -3762 -3787 -3786 -3818 -3860 -3875 -3885 -3903 -3918 -3937 -3962 -3990 -4011 -4028 -4042 -4068 -4073 -4104 -4111 -4149 -4140 -4170 -4208 -4207 -4228 -4240 -4289 -4293 -4332 -4347 -4340 -4363 -4414 -4417 -4445 -4470 -4462 -4482 -4530 -4527 -4556 -4597 -4589 -4602 -4626 -4664 -4688 -4719 -4713 -4741 -4768 -4768 -4809 -4804 -4849 -4872 -4893 -4891 -4915 -4924 -4940 -4991 -5012 -5037 -5048 -5070 -5091 -5098 -5100 -5154 -5159 -5200 -5181 -5228 -5239 -5277 -5276 -5293 -5326 -5342 -5371 -5361 -5380 -5435 -5420 -5457 -5487 -5492 -5521 -5529 -5576 -5563 -5588 -5633 -5660 -5650 -5666 -5688 -5711 -5724 -5744 -5765 -5797 -5802 -5853 -5849 -5891 -5881 -5902 -5945 -5976 -5980 -6006 -6035 -6020 -6078 -6064 -6110 -6126 -6129 -6170 -6190 -6205 -6224 -6245 -6240 -6280 -6307 -6324 -6351 -6343 -6365 -6418 -6427 -6431 -6457 -6480 -6500 -6502 -6542 -6545 -6586 -6593 -6601 -6642 -6645 -6694 -6707 -6735 -6731 -6759 -6799 -6819 -6838 -6845 -6869 -6898 -6887 -6905 -6935 -6954 -6960 -7008 -7016 -7021 -7067 -7076 -7081 -7101 -7129 -7147 -7189 -7210 -7207 -7237 -7257 -7283 -7316 -7319 -7334 -7343 -7383 -7412 -7426 -7450 -7445 -7492 -7501 -7512 -7539 -7559 -7561 -7589 -7612 -7622 -7657 -7683 -7720 -7716 -7731 -7760 -7776 -7792 -7835 -7837 -7847 -7874 -7894 -7922 -7952 -7952 -7972 -8005 -8011 -8058 -8043 -8093 -8081 -8100 -8141 -8173 -8199 -8213 -8222 -8235 -8245 -8271 -8282 -8310 -8330 -8377 -8372 -8397 -8425 -8440 -8471 -8465 -8494 -8509 -8532 -8570 -8563 -8581 -8615 -8653 -8680 -8682 -8685 -8735 -8733 -8773 -8793 -8799 -8823 -8837 -8867 -8860 -8881 -8908 -8943 -8977 -8984 -8983 -9016 -9031 -9066 -9082 -9107 -9104 -9139 -9151 -9178 -9207 -9213 -9252 -9260 -9269 -9289 -9330 -9352 -9358 -9386 -9400 -9402 -9435 -9441 -9462 -9481 -9514 -9526 -9547 -9568 -9583 -9627 -9624 -9652 -9661 -9714 -9723 -9736 -9766 -9782 -9813 -9829 -9835 -9866 -9882 -9900 -9910 -9950 -9961 -9970 -10003 -10001 -10054 -10062 -10099 -10083 -10138 -146 -181 -231 -298 -301 -360 -398 -421 -476 -502 -542 -611 -622 -672 -708 -753 -787 -840 -895 -924 -952 -985 -1030 -1099 -1137 -1146 -1180 -1244 -1290 -1307 -1374 -1420 -1427 -1466 -1518 -1579 -1597 -1641 -1695 -1713 -1751 -1809 -1842 -1888 -1903 -1942 -2015 -2044 -2060 -2135 -2179 -2181 -2244 -2270 -2318 -2349 -2403 -2450 -2478 -2509 -2550 -2603 -2632 -2677 -2723 -2753 -2801 -2835 -2882 -2921 -2970 -2986 -3031 -3076 -3135 -3169 -3213 -3239 -3261 -3305 -3373 -3410 -3423 -3496 -3523 -3563 -3610 -3657 -3698 -3717 -3747 -3783 -3842 -3889 -3906 -3975 -3984 -4054 -4074 -4100 -4163 -4217 -4235 -4299 -4333 -4353 -4386 -4428 -4495 -4523 -4555 -4616 -4637 -4696 -4715 -4778 -4808 -4820 -4861 -4910 -4941 -5010 -5047 -5065 -5124 -5149 -5192 -5227 -5267 -5307 -5346 -5396 -5436 -5482 -5523 -5542 -5582 -5651 -5673 -5728 -5760 -5809 -5839 -5887 -5916 -5976 -6017 -6046 -6070 -6115 -6165 -6210 -6253 -6261 -6300 -6342 -6382 -6459 -6491 -6537 -6543 -6602 -6658 -6700 -6731 -6757 -6796 -6859 -6880 -6935 -6967 -7009 -7049 -7068 -7104 -7169 -7192 -7236 -7300 -7337 -7356 -7406 -7456 -7479 -7504 -7552 -7609 -7625 -7660 -7718 -7742 -7797 -7852 -7866 -7923 -7943 -8017 -8054 -8100 -8107 -8175 -8200 -8244 -8276 -8323 -8376 -8404 -8449 -8500 -8526 -8545 -8617 -8636 -8681 -8718 -8764 -8820 -8832 -8893 -8916 -8947 -8986 -9030 -9095 -9123 -9154 -9187 -9231 -9283 -9315 -9371 -9381 -9436 -9493 -9516 -9575 -9602 -9638 -9680 -9726 -9776 -9795 -9831 -9889 -9933 -9957 -10008 -10055 -10094 -10134 -10157 --1 -10231 -10277 -10306 -10363 -10414 -10441 -10488 -10510 -10570 -10606 -10659 -10691 -10727 -10756 -10802 -10847 -10871 -10904 -10976 -11002 -11053 -11067 -11136 -11163 -11188 -11222 -11286 -11305 -11351 -11417 -11432 -11488 -11502 -11568 -11600 -11657 -11664 -11716 -11775 -11816 -11835 -11874 -11916 -11971 -12003 -12026 -12099 -12139 -12155 -12188 -12252 -12265 -12311 -12371 -12405 -12447 -12468 -12518 -12558 -12620 -12636 -12682 -12716 -12770 -12814 -12838 -12881 -12921 -12978 -12991 -13024 -13100 -13107 -13155 -13211 -13247 -13286 -13300 -13350 -13391 -13431 -13496 -13528 -13547 -13613 -13633 -13680 -13702 -13761 -13810 -13823 -13890 -13939 -13948 -13996 -14053 -14062 -14137 -14151 -14207 -14243 -14262 -14302 -14375 -14403 -14423 -14482 -14531 -14551 -14582 -14620 -14662 -14723 -14779 -14814 -14840 -14866 -14931 -14968 -15011 -15059 -15074 -15104 -15180 --1 --1 -15269 -15328 -15365 -15419 -15425 -15467 -15537 -15568 -15619 -15623 -15665 -15711 -15744 -15785 -15843 -15896 -15907 -15972 -15982 -16026 -16068 -16122 -16162 -16202 -16256 -16264 -16313 -16343 -16386 -16453 -16467 -16537 -16572 -16584 -16660 -16685 -16725 -16743 -16815 -16829 -16862 -16911 -16955 -16988 -17023 -17096 -17122 -17146 -17204 -17224 -17260 -17336 -17368 -17383 -17435 -17469 -17500 -17576 -17606 -17621 -17679 -17702 -17759 -17804 -17858 -17876 -17919 -17970 -18016 -18043 -18068 -18132 -18179 -18209 -18237 -18298 -18319 -18375 -18410 -18425 -18464 -18531 -18577 -18599 -18648 -18693 -18730 -18762 -18782 -18832 -18877 -18904 -18960 -19011 -19046 -19068 -19114 -19165 -19219 -19259 -19274 -19340 -19377 -19386 -19446 --1 -19520 -19550 -19581 -19632 -19685 -19718 -19742 -19805 -19829 -19860 -19930 -19976 -19989 -20058 -20065 -20106 -197 -242 -297 -356 -409 -493 -533 -614 -653 -706 -781 -855 -907 -958 -1029 -1076 -1122 -1187 -1244 -1329 -1371 -1450 -1506 -1547 -1633 -1686 -1737 -1785 -1872 -1900 -1991 -2021 -2112 --1 -2230 -2262 -2330 -2404 -2440 -2513 -2600 -2627 -2689 -2759 -2818 -2888 -2920 -2986 -3061 -3111 -3187 -3229 -3303 -3349 -3406 -3482 -3524 -3588 -3652 -3720 -3790 -3851 -3907 -3971 -4026 -4071 -4155 -4181 -4257 -4309 -4368 -4421 -4490 -4561 -4600 -4681 -4727 -4819 -4848 -4937 -4984 -5060 -5083 -5155 -5220 -5274 -5325 -5385 -5450 -5524 -5578 -5628 -5687 -5751 -5814 -5882 -5947 -5991 -6065 -6101 -6187 -6236 -6314 -6343 -6421 -6494 -6528 -6598 -6659 -6728 -6772 -6838 -6898 -6945 -7034 -7061 -7124 -7195 -7278 -7313 -7400 -7438 -7489 -7549 -7606 -7697 -7760 -7783 -7856 -7905 -7983 -8059 -8116 -8147 -8235 -8293 -8342 -8386 -8456 -8500 -8590 -8638 -8703 -8751 -8805 -8874 -8933 -8983 -9053 -9136 -9187 -9256 -9312 -9351 -9413 -9468 -9534 -9590 -9672 -9712 -9770 -9838 -9886 -9943 -10032 -10078 -10149 -10205 -10254 -10334 -10368 -10433 -10485 -10564 --1 -10699 -10746 -10804 -10843 -10916 -10998 -11041 -11106 -11144 -11212 -11263 -11320 -11405 -11477 -11512 -11588 -11641 -11695 -11756 -11812 -11868 -11928 -12004 -12045 -12103 -12169 -12240 -12319 -12374 -12426 -12466 -12558 -12597 -12670 -12720 -12793 -12822 -12920 -12954 -13009 -13099 -13138 -13190 -13259 -13307 -13367 -13437 -13518 -13549 -13601 -13668 -13757 -13790 -13869 -13903 -13996 -14025 -14089 -14180 -14216 -14263 -14348 -14413 -14468 -14524 -14569 -14646 -14693 -14778 -14820 -14890 -14956 -15007 -15065 -15104 -15189 -15232 -15291 -15348 -15412 -15486 -15524 -15580 -15680 -15735 -15799 -15833 -15895 -15970 -16029 -16077 -16125 -16184 -16262 -16304 -16396 -16438 -16484 -16545 -16632 -16683 -16736 -16790 -16842 -16934 -16980 -17048 -17119 -17145 -17209 -17274 -17329 -17384 -17479 -17533 -17587 -17625 -17713 -17780 -17803 -17869 -17955 -17995 -18065 -18114 -18163 -18226 -18290 -18364 -18400 -18479 -18550 -18619 -18664 -18700 -18781 -18831 -18891 -18973 -19026 -19091 -19146 -19183 -19275 -19301 -19378 -19444 -19518 -19551 -19639 -19696 -19752 -19791 -19879 -19928 -19988 -20058 -20098 -20167 -20216 -20293 -20339 -20404 -20460 -20525 -20561 -20660 -20714 -20762 -20814 -20868 -20958 -20993 -21059 -21112 -21188 -21231 -21302 -21369 -21416 -21479 -21540 -21583 -21656 -21719 -21765 -21856 -21893 -21964 -22001 -22097 -22131 -22200 -22265 -22332 -22394 -22439 -22507 -22556 -22622 -22675 -22727 -22787 -22859 -22931 -22977 -23027 -23110 -23161 -23232 -23298 -23357 -23399 -23467 -23520 -23591 -23645 -23684 -23757 -23805 -23885 -23954 -23999 -24059 -24125 -24194 -24255 -24292 -24375 -24416 -24495 -24532 -24602 -24642 -24729 -24796 -24860 -24886 -24974 -25014 -25082 -25144 -25189 -25244 -25327 -25382 -25433 -25485 -25577 -25614 -25667 -25751 -25784 -25847 -25902 -25978 -26051 -26095 -26159 -26203 -26300 -26321 -26404 -26446 -26511 -26588 -26630 -26681 -26773 -26820 -26861 -26953 -26992 -27042 -27128 -27182 -27251 -27291 -27361 -27425 -27471 -27558 -27583 -27656 -27700 -27763 -27844 -27886 -27942 -28017 -28098 -28124 -28215 -28279 -28333 -28393 -28445 -28505 -28556 -28634 -28665 -28732 -28788 -28875 -28920 -28979 -29040 -29117 -29165 -29209 -29285 -29338 -29416 -29443 -29505 -29568 -29624 -29710 -29772 -29827 -29881 -29926 -29985 -30059 -30129 -213 -278 -363 -460 -537 -586 -692 -748 -838 -928 -1016 -1086 -1151 -1246 -1313 -1414 -1487 -1549 -1645 -1740 -1791 -1869 -1949 -2051 -2111 -2219 -2282 -2378 -2437 -2538 -2604 -2670 -2743 -2845 -2930 -3000 -3100 -3145 -3228 -3336 -3411 -3491 -3554 -3647 -3715 -3784 -3860 -3977 -4035 -4100 -4215 -4278 -4367 -4438 -4501 -4602 -4691 -4762 -4832 -4914 -5003 -5080 -5176 -5257 -5307 -5387 -5465 -5567 -5643 -5730 -5815 -5894 -5956 -6041 -6118 -6204 -6269 -6351 -6438 -6521 -6581 -6679 -6775 -6854 -6903 -7019 -7086 -7175 -7249 -7323 -7384 -7464 -7560 -7641 -7707 -7806 -7889 -7972 -8035 -8118 -8200 -8277 -8376 -8451 -8502 -8588 -8683 -8773 -8846 -8937 -9003 -9069 -9149 -9246 -9319 -9404 -9498 -9562 -9635 -9713 -9785 -9889 -9961 -10029 -10116 -10204 -10269 -10369 -10440 -10510 -10592 -10671 -10750 -10830 -10920 -10999 -11061 -11164 -11235 -11339 -11381 -11491 -11571 -11652 -11707 -11817 -11897 -11961 -12022 -12103 -12186 -12296 -12343 -12424 -12511 -12596 -12660 -12768 -12857 -12936 -13003 -13098 -13175 -13221 -13325 -13391 -13478 -13546 -13642 -13734 -13796 -13895 -13966 -14045 -14108 -14209 -14283 -14372 -14451 -14524 -14615 -14673 -14764 -14852 -14901 -15016 -15086 -15161 -15233 -15310 -15410 -15494 -15577 -15641 -15705 -15796 -15878 -15966 -16047 -16137 -16180 -16267 -16363 -16424 -16519 -16581 -16681 -16756 -16851 -16915 -17020 -17079 -17172 -17224 -17328 -17407 -17494 -17572 -17629 -17700 -17782 -17873 -17951 -18040 -18111 -18204 -18272 -18350 -18444 -18536 -18603 -18669 -18763 -18853 -18916 -19003 -19079 -19171 -19247 -19315 -19399 -19499 -19543 -19649 -19723 -19792 -19885 -19971 -20054 -20116 -20185 -20282 -20343 -20434 -20503 -20585 -20699 -20749 -20833 -20938 -20998 -21088 -21161 -21238 -21326 -21411 -21463 -21565 -21623 -21703 -21781 -21879 -21960 -22042 -22119 -22199 -22285 -22351 -22438 -22518 -22585 -22685 -22770 -22828 -22930 -22994 -23071 -23143 -23221 -23321 -23398 -23468 -23568 -23645 -23717 -23818 -23872 -23947 -24050 -24111 -24205 -24279 -24352 -24444 -24532 -24616 -24684 -24769 -24854 -24919 -25014 -25073 -25141 -25248 -25314 -25419 -25476 -25570 -25640 -25700 -25783 -25881 -25962 -26038 -26104 -26195 -26285 -26372 -26438 -26536 -26614 -26692 -26771 -26839 -26927 -26994 -27091 -27142 -27222 -27304 -27404 -27480 -27566 -27647 -27711 -27789 -27875 -27949 -28048 -28102 -28187 -28279 -28360 -28432 -28514 -28581 -28699 -28755 -28827 -28901 -28988 -29067 -29157 -29250 -29307 -29415 -29465 -29557 -29630 -29702 -29787 -29876 -29959 -30032 -30117 -30186 -30288 -30351 -30436 -30508 -30588 -30674 -30760 -30857 -30904 -31009 -31085 -31159 -31260 -31327 -31415 -31484 -31543 -31654 -31719 -31800 -31887 -31957 -32059 -32128 -32206 -32277 -32343 -32430 -32512 -32580 -32680 -32741 -32830 -32926 -33013 -33093 -33174 -33244 -33324 -33397 -33462 -33552 -33658 -33711 -33786 -33893 -33963 -34039 -34126 -34200 -34294 -34359 -34420 -34532 -34597 -34677 -34747 -34839 -34910 -34982 -35083 -35140 -35242 -35312 -35418 -35498 -35565 -35626 -35732 -35798 -35875 -35957 -36035 -36101 -36209 -36292 -36367 -36447 -36526 -36601 -36666 -36751 -36839 -36917 -37008 -37099 -37152 -37255 -37312 -37397 -37476 -37560 -37654 -37709 -37782 -37870 -37957 -38036 -38135 -38209 -38290 -38348 -38423 -38504 -38609 -38685 -38777 -38829 -38930 -39017 -39066 -39176 -39257 -39316 -39399 -39463 -39550 -39620 -39724 -39796 -39873 -39943 -40032 -40135 -223 -339 -410 -520 -616 -717 -807 -936 -1013 -1104 -1237 -1334 -1432 -1524 -1631 -1713 -1828 -1914 -2031 -2128 -2223 -2334 -2433 -2511 -2608 -2724 -2808 -2913 -3023 -3101 -3220 -3306 -3418 -3515 -3635 -3732 -3806 -3918 -4024 -4109 -4219 -4306 -4419 -4521 -4608 -4737 -4824 -4930 -5019 -5100 -5239 -5314 -5437 -5536 -5637 -5716 -5801 -5911 -6011 -6108 -6240 -6324 -6414 -6515 -6602 -6722 -6840 -6901 -7012 -7126 -7211 -7320 -7430 -7518 -7603 -7709 -7839 -7917 -8005 -8112 -8227 -8302 -8412 -8512 -8626 -8736 -8812 -8911 -9034 -9139 -9235 -9314 -9435 -9524 -9625 -9706 -9838 -9911 -10038 -10119 -10207 -10301 -10434 -10502 -10611 -10710 -10811 -10930 -11000 -11117 -11200 -11325 -11405 -11515 -11609 -11703 -11827 -11937 -12015 -12135 -12208 -12302 -12423 -12528 -12610 -12739 -12822 -12905 -13005 -13133 -13225 -13323 -13407 -13504 -13605 -13703 -13828 -13937 -14027 -14125 -14223 -14319 -14404 -14514 -14605 -14734 -14820 -14902 -15025 -15138 -15217 -15325 -15421 --1 -15621 -15712 -15821 -15930 -16034 -16111 -16213 -16303 -16406 -16538 -16600 -16725 -16809 -16922 -17025 -17130 -17218 -17321 -17411 -17504 -17628 -17719 -17807 -17937 -18026 -18107 -18217 -18307 -18424 -18531 -18607 -18726 -18801 -18912 -19029 -19138 -19211 -19305 -19431 -19539 -19636 -19727 -19823 -19905 -20009 -20118 -20234 -20332 -20410 -20510 -20609 -20736 -20817 -20901 -21040 -21122 -21212 -21320 -21401 -21526 -21638 -21721 -21822 -21940 -22026 -22124 -22237 -22326 -22403 -22537 -22640 -22705 -22820 -22934 -23006 -23138 -23230 -23312 -23438 -23520 -23628 -23705 -23832 -23924 -24005 -24135 -24217 -24336 -24439 -24527 -24635 -24729 -24814 -24927 -25025 -25110 -25210 -25333 -25420 -25520 -25608 -25705 -25800 -25940 -26024 -26140 -26222 -26337 -26408 -26525 -26602 -26725 -26812 -26927 -27022 -27140 -27238 -27334 -27407 -27505 -27634 -27700 -27832 -27936 -28025 -28113 -28239 -28304 -28406 -28506 -28624 -28733 -28817 -28926 -29033 -29119 -29223 -29330 -29425 -29522 -29602 -29716 -29805 -29911 -30031 -30101 -30229 -30310 -30432 -30501 -30616 -30707 -30826 -30906 -31003 -31107 -31203 -31329 -31426 -31508 -31630 -31704 -31806 -31917 -32020 -32137 -32232 -32316 -32405 -32538 -32601 -32713 -32836 -32917 -33019 -33136 -33218 -33326 -33439 -33508 -33606 -33736 -33817 -33932 -34038 -34110 -34211 -34306 -34402 -34529 -34639 -34702 -34837 -34925 -35030 -35126 -35207 -35329 -35401 -35527 -35609 -35726 -35816 -35901 -36036 -36108 -36227 -36328 -36408 -36507 -36603 -36723 -36804 -36931 -37012 -37127 -37203 -37336 -37431 -37513 -37640 -37730 -37800 -37940 -38025 -38139 -38222 -38339 -38400 -38526 -38629 -38707 -38824 -38910 -39012 -39137 -39216 -39321 -39402 -39538 -39632 -39726 -39804 -39931 -40011 -40112 -40228 -40330 -40410 -40512 -40614 -40734 -40817 -40901 -41028 -41100 -41205 -41314 -41418 -41513 -41607 -41712 -41816 -41917 -42009 -42116 -42206 -42308 -42413 -42507 -42606 -42720 -42831 -42920 -43039 -43111 -43238 -43329 -43433 -43509 -43622 -43726 -43801 -43908 -44025 -44111 -44210 -44334 -44410 -44526 -44639 -44701 -44817 -44918 -45001 -45128 -45218 -45320 -45437 -45516 -45639 -45722 -45801 -45921 -46006 -46140 -46210 -46301 -46413 -46508 -46629 -46714 -46811 -46931 -47035 -47140 -47240 -47317 -47409 -47512 -47614 -47704 -47811 -47901 -48031 -48139 -48232 -48332 -48418 -48515 -48603 -48704 -48836 -48934 -49036 -49105 -49221 -49318 -49412 -49508 -49616 -49704 -49817 -49927 -50010 -50114 -323 -507 -714 -939 -1100 -1302 -1517 -1739 -1929 -2137 -2339 -2506 -2734 -2900 -3112 -3308 -3500 -3739 -3928 -4137 -4333 -4501 -4709 -4927 -5134 -5326 -5511 -5725 -5924 -6134 -6316 -6505 -6722 -6912 -7108 -7313 -7535 -7729 -7900 -8137 -8337 -8508 -8714 -8937 -9108 -9336 -9502 -9730 -9910 -10102 -10331 -10505 -10735 -10933 -11123 -11338 -11502 -11714 -11915 -12131 -12301 -12530 -12719 -12938 -13110 -13313 -13539 -13739 -13913 -14117 -14337 -14514 -14711 -14904 -15121 -15338 -15500 -15713 -15900 -16116 -16317 -16538 -16723 -16915 -17123 -17302 -17502 -17718 -17918 -18127 -18323 -18522 -18734 -18911 -19136 -19309 -19536 -19715 -19904 -20139 -20336 -20531 -20725 -20921 -21112 -21301 -21502 -21712 -21938 -22109 -22313 -22522 -22709 -22900 -23128 -23335 -23532 -23730 -23919 -24105 -24328 -24520 -24727 -24906 -25135 -25317 -25538 -25727 -25931 -26110 -26317 -26508 -26730 -26938 -27112 -27332 -27521 -27722 -27909 -28105 -28308 -28516 -28722 -28921 -29123 -29312 -29534 -29725 -29905 -30136 -30339 -30501 -30707 -30934 -31108 -31318 -31536 -31700 -31930 -32106 -32309 -32531 -32729 -32904 -33102 -33311 -33529 -33740 -33924 -34119 -34308 -34501 -34722 -34909 -35113 -35335 -35513 -35700 -35902 -36116 -36305 -36524 -36715 -36935 -37109 -37340 -37513 -37727 -37916 -38120 -38312 -38523 -38734 -38918 -39131 -39322 -39527 -39724 -39905 -40134 -40336 -40519 -40715 -40911 -41105 -41324 -41513 -41729 -41938 -42111 -42307 -42527 -42728 -42911 -43137 -43327 -43509 -43730 -43925 -44140 -44340 -44534 -44712 -44909 -45127 -45303 -45521 -45722 -45909 -46104 -46313 -46515 -46709 -46922 -47108 -47338 -47509 -47705 -47938 -48117 -48336 -48512 -48704 -48920 -49136 -49326 -49517 --1 -49902 -50119 -50310 -50501 -50725 -50923 -51133 -51324 -51532 -51731 -51900 -52109 -52335 -52503 -52711 -52922 -53103 -53309 -53505 -53720 -53911 -54123 -54339 -54512 -54710 -54933 -55120 -55304 -55506 -55731 -55938 -56140 -56317 -56509 -56737 -56926 -57126 -57324 -57527 -57717 -57910 -58109 -58309 -58516 -58737 -58940 -59132 -59338 -59534 -59713 -59933 -60119 -60327 -60536 -60700 -60933 -61104 -61340 -61511 -61707 -61909 -62138 -62300 -62501 -62704 -62940 -63125 -63332 -63521 -63703 -63901 -64135 -64339 -64523 -64700 -64923 -65122 -65336 -65531 -65734 -65917 -66115 -66325 -66509 -66732 -66906 --1 -67308 -67515 -67701 -67909 -68107 -68321 -68514 -68727 -68914 -69138 -69335 -69506 -69735 -69900 -70101 -70305 -70522 -70711 -70936 -71120 -71334 -71517 -71730 -71903 -72116 -72338 -72530 -72724 -72932 -73121 -73308 -73527 -73735 -73930 -74115 -74306 -74538 -74725 -74935 -75118 -75302 -75512 -75707 -75925 -76106 -76339 -76529 -76726 -76905 -77110 -77319 -77514 -77730 -77915 -78122 -78306 -78521 -78722 -78939 -79109 -79337 -79509 -79732 -79924 -80108 -80320 -80500 -80710 -80916 -81111 -81300 -81507 -81706 -81928 -82113 -82301 -82506 -82700 -82928 -83103 -83313 -83510 -83708 -83927 -84130 -84303 -84514 -84711 -84925 -85103 -85313 -85526 -85729 -85935 -86103 -86325 -86533 -86729 -86900 -87123 -87335 -87512 -87735 -87911 -88128 -88340 -88537 -88725 -88932 -89113 -89319 -89504 -89736 -89914 -90113 -90308 -90501 -90725 -90910 -91116 -91305 --1 -91712 -91910 -92122 -92338 -92528 -92727 -92918 -93131 -93318 -93508 -93727 -93939 --1 -94327 -94532 -94736 -94938 -95136 -95313 -95511 -95727 -95910 -96125 -96326 -96515 -96706 -96918 -97113 -97303 -97534 -97729 -97907 -98131 -98304 -98509 -98719 -98936 -99127 -99301 -99512 -99727 -99922 -100125 -111 -115 -119 -116 -113 -114 -125 -122 -138 -139 -117 -133 -130 -136 -136 -107 -112 -134 -124 -133 -117 -117 -132 -106 -114 -106 -102 -111 -100 -118 -115 -134 -111 -131 -123 -139 -124 -126 -127 -119 -117 -131 -128 -137 -138 -122 -115 -112 -109 -121 -127 -120 -118 -137 -126 -126 -138 -132 -101 -126 -106 -131 -115 -137 -134 -119 -108 -112 -133 -138 -114 -117 -109 -135 -139 -119 -124 -115 -109 -110 -111 -138 -108 -100 -116 -106 -122 -125 -107 -104 -134 -135 -110 -131 -112 -128 -135 -132 -124 -110 -107 -133 -102 -119 -124 -115 -126 -129 -132 -113 -124 -102 -128 -120 -126 -140 -114 -116 -115 -137 -139 -134 -102 -111 -133 -114 -136 -138 -127 -133 -136 -100 -110 -115 -101 -120 -136 -104 -131 -116 -120 -101 -135 -104 -111 -136 -105 -133 -113 -137 -102 -114 -128 -122 -115 -136 -123 -114 -115 -106 -108 -102 -120 -140 -111 -106 -125 -114 -134 -112 -112 -109 -114 -131 -105 -121 -131 -115 -129 -116 -115 -115 -113 -131 -108 -137 -129 -123 -117 -123 -138 -101 -129 -140 -124 -105 -105 -106 -103 -111 -114 -134 -123 -107 -123 -131 -128 -100 -139 -109 -121 -139 -106 -135 -126 -121 -123 -130 -119 -104 -102 -100 -137 -101 -116 -139 -130 -112 -110 -113 -115 -120 -127 -119 -100 -127 -137 -130 -105 -108 -114 -133 -101 -140 -100 -123 -103 -113 -129 -136 -116 -113 -118 -106 -105 -139 -138 -137 -126 -117 -126 -123 -113 -117 -136 -109 -104 -100 -133 -127 -140 -129 -137 -100 -129 -109 -137 -124 --1 -139 -140 -138 -103 -102 -113 -124 -124 -128 -109 -138 -108 -127 -103 -127 -109 -135 -121 -121 -123 -129 -136 -130 -138 -129 -132 -103 -140 -102 -138 -107 -126 -111 -102 -113 -103 -129 -107 -107 -138 -101 -121 -116 -101 -131 -138 -104 -136 -114 -107 -122 -137 -113 -113 -124 -110 -131 -109 -124 -103 -132 -136 -117 -131 -106 -139 -113 -124 -139 -105 -126 -140 -117 -136 -113 -101 -119 -118 -105 -133 -125 -131 -110 -104 -126 -109 -124 -135 -140 -120 -117 -118 -119 -133 -140 -110 -134 -111 -130 -113 -122 -107 -130 -129 -140 -123 -128 -106 --1 -114 -111 -117 -102 -132 -134 -112 -138 -102 -132 -118 -100 -140 -104 -114 -129 -116 -138 -121 -113 -107 -134 -127 -125 -103 -111 -115 -125 -101 -135 -111 -108 -129 -137 -136 -139 -111 -119 -111 -102 -117 -105 -128 -113 -115 -130 -126 -102 -122 -121 -138 -112 -124 -122 -135 -123 -130 -115 -105 -101 -100 -134 -109 -133 -133 -107 -110 -104 -109 -105 -140 -119 -103 -129 -126 -103 -105 -136 -139 -114 -110 -136 -113 -132 -118 -127 -109 -123 -120 -129 -124 -103 -102 -105 -128 -119 -111 -135 -120 -118 -124 -135 -123 -105 -126 -114 -137 -109 -121 -135 -107 -124 -175 -194 -144 -157 -115 -108 -105 -135 -174 -108 -186 -120 -111 -189 -131 -124 -140 -151 -143 -149 -142 -103 -123 -190 -187 -151 -182 -139 -200 -189 -153 -161 -127 -137 -144 -111 -104 -102 -115 -197 -133 -176 -126 -154 -159 -130 -134 -128 -197 -189 -124 -150 -189 -130 -151 -118 -135 -101 -129 -101 -153 -200 -196 -186 -196 -168 -148 -183 -133 -116 -156 -160 -200 -152 -150 -129 -167 -121 -133 -171 -115 -197 -105 -152 -108 -165 -158 -131 -154 -107 -166 -104 -111 -150 -107 -169 -193 -184 -101 -177 -164 -129 -193 -143 -100 -188 -105 -120 -137 -128 -193 -129 -132 -179 -121 -187 -115 -102 -179 -102 -129 -127 -162 -160 -114 -117 -119 -183 -152 -171 -166 -155 -167 -104 -199 -196 -162 -101 -164 -184 -168 -146 -187 -200 -118 -141 -112 -166 -127 -181 -177 -191 -192 -142 -190 -157 -194 -173 -181 -196 -143 -154 -117 -196 -163 -181 -193 -116 -129 -166 -163 -173 -189 -162 -155 -156 -161 -162 -113 -171 -178 -125 -159 -186 -186 -105 -165 -106 -171 -107 -172 -147 -122 -186 -158 -151 -107 -145 -150 -158 -178 -199 -169 -113 -116 -158 -133 -142 -150 -139 -189 -107 -180 -199 -136 -187 -104 -158 -101 -183 -111 -171 -162 -192 -163 -155 -159 -150 -145 -153 -151 -142 -124 -109 -199 -119 -169 -185 -102 -141 -128 -194 -155 -187 -133 -121 -129 -151 -134 -151 -173 -172 -107 -184 -183 -137 -176 -171 -166 -136 -150 -151 -118 -178 -169 -163 -106 -189 -143 -193 -131 -187 -120 -117 -123 -184 -137 -143 -140 -186 -164 -121 -165 -147 -129 -175 -118 -176 -188 -107 -119 -138 -118 -153 -106 -179 -145 -159 -101 -173 -181 -110 -109 -152 -140 -124 -123 -186 -124 -124 -190 -180 -151 -189 -114 -178 -199 -179 -169 -177 -106 -136 -192 -168 -144 -151 -184 -125 -113 -157 -120 -143 -154 -101 -135 -195 -179 -160 -140 -159 -191 -124 -169 -177 -174 -187 -192 -185 -124 -170 -148 -198 -133 -173 -123 -174 -124 -123 -153 -128 -121 -192 -196 -145 -196 -171 -200 -191 -182 -135 -102 -173 -160 -126 -112 -173 -157 -160 -146 -132 -164 -105 -125 -180 -187 -147 -200 -182 -139 -156 -196 -171 -131 -159 -107 -153 -198 -158 -136 -171 -174 -142 -104 -174 -144 -109 -123 -168 -159 -107 -111 -142 -190 -100 -156 -190 -135 -139 -150 -180 -111 -136 -185 -146 -198 -192 -137 -100 -187 -145 -130 -118 -166 -143 -177 -156 -155 -112 -103 -166 -150 -183 -111 -175 -165 -143 -156 -116 -133 -105 -143 -125 -150 -173 -129 -150 -187 -102 -141 -170 -126 -166 -117 -131 -145 -146 -122 -181 -177 -193 -105 -146 -156 -111 -160 -135 -180 -126 -110 -145 -151 -112 -143 -146 -198 -191 -147 -195 -180 -161 -192 -138 -142 -175 -192 -116 -146 -170 -200 -102 -126 -257 -295 -165 -113 -213 -119 -174 -286 -205 -164 -265 -168 -257 -269 -202 -233 -253 -225 -144 -119 -233 -144 -247 -175 -111 -127 -171 -148 -273 -188 -114 -145 -214 -141 -163 -167 -189 -250 -246 -106 -296 -265 -107 -236 -215 -227 -289 -196 -100 -257 -163 -158 -294 -300 -132 -278 -147 -153 -154 -290 -130 -181 -119 -253 -142 -282 -224 -253 -186 -144 -114 -116 -165 -195 -161 -216 -189 -102 -118 -273 -221 -252 -156 -231 -233 -243 -237 -232 -218 -223 -227 -257 -211 -286 -271 -188 -201 -171 -289 -202 -212 -201 -155 -225 -155 -165 -300 -290 -261 -255 -143 -271 -139 -246 -209 -205 -288 -145 -157 -155 -256 -255 -297 -242 -209 -144 -294 -130 -170 -130 -279 -186 -230 -295 --1 -223 -121 -181 -288 -147 -300 -220 -126 -209 -213 -161 -128 -252 -273 -283 -205 -256 -190 -129 -287 -284 -224 -250 -234 -123 -118 -253 -263 -104 -258 -169 -148 -205 -216 -124 -193 -204 -295 -205 -199 -254 -243 -129 -148 -129 -229 -289 -165 -106 -239 -177 -220 -203 -187 -222 -189 -247 -224 -103 -263 -156 -107 -253 -152 -209 -188 -205 -100 -113 -122 -110 -288 -254 -162 -239 -102 -233 -272 -263 -160 -251 -113 -288 -252 -284 -180 -161 -273 -178 -203 -197 -117 -169 -195 -129 -101 -293 -287 -293 -156 -136 -159 -169 -115 -142 -299 -100 -203 -256 -277 -261 -231 -256 -100 -181 -114 -159 -136 -185 -289 -193 -141 -252 -161 -277 -115 -161 -147 -295 -271 -266 -132 -161 -260 -168 -160 -262 -230 -155 -258 -131 -282 -103 -224 -282 -193 -218 -174 -214 -139 -268 -251 -118 -104 -165 -277 -117 -194 -202 -188 -171 -141 -145 -288 -289 -147 -253 -185 -111 -164 -172 -288 -285 -127 -159 -270 -207 -279 -182 -120 -211 -295 -163 -185 -155 -257 -246 -144 -189 -180 -251 -234 -118 -154 -274 -264 -283 -273 -119 -270 -219 -241 -259 -296 -117 -131 -265 -148 -271 -155 -122 -262 -295 -203 -255 -144 -120 -102 -227 -249 -295 -126 -135 -152 -115 -294 -206 -297 -297 -219 -279 -259 -221 -159 -189 -174 -151 -259 -172 -243 -188 -225 -272 -295 -198 -110 -125 -160 -162 -125 -185 -161 -288 -299 -232 -119 -259 -246 -104 -271 -166 -263 -203 -112 -253 -283 -243 -238 -177 -120 -227 -253 -156 -200 -249 -264 -148 -101 -112 -119 -218 -188 -178 -295 -217 -224 -165 -117 -256 -276 -243 -209 -188 -192 -134 -188 -143 -150 -192 -257 -212 -239 -224 -282 -290 -223 -234 -246 -144 -280 -198 -178 -103 -174 -107 -287 -261 -112 -267 -109 -242 -211 -136 -167 -210 -223 -220 -170 -235 -198 -255 -152 -148 -271 -257 -210 -268 -135 -292 -227 -181 -186 -299 -293 -138 -130 -281 -266 -221 -134 -245 -111 -103 -286 -160 -175 -219 -184 -111 -249 -182 -240 -248 -150 -286 -235 -316 -360 -317 -302 -238 -328 -198 -111 -265 -247 -154 -319 -235 -116 -256 -171 -333 -385 -297 -262 -351 -173 -123 -395 -280 -163 -187 -393 -214 -254 -113 -121 -182 -168 -184 -188 -201 -351 -147 -177 -230 -356 -224 -173 -217 -344 -257 -162 -328 -112 -303 -218 -208 -273 -296 -171 -367 -275 -100 -270 -316 -216 -214 -228 -368 -282 -323 -143 -272 -127 -135 -204 -396 -151 -198 -152 -164 -335 -172 -153 -119 -231 -179 -328 -174 -395 -295 -148 -164 -267 -224 -114 -188 -127 -324 -141 -342 -311 -102 -385 -175 -368 -177 -247 -337 -288 -129 -254 -283 -274 -206 -122 -388 -183 -103 -180 -131 -140 -333 -321 -130 -360 -224 -137 -191 -234 -247 -275 -178 -213 -179 -125 -275 -376 -399 -365 -318 -226 -255 -237 -252 -246 -250 -283 -316 -392 -351 -310 -221 -324 -242 -207 -165 -296 -162 -101 -275 -195 -250 -360 -393 -269 -214 -175 -261 -104 -390 -275 -204 -384 -153 -296 -105 -155 -143 -130 -326 -344 -126 -120 -225 -287 -377 -143 -235 -343 -168 -101 -155 -265 -136 -265 -335 -375 -301 -127 -143 -325 -261 -385 -117 -381 -313 -355 -392 -254 -287 -337 -357 -361 -164 -219 -176 -311 -343 -336 -117 -339 -139 -332 -181 -282 -345 -333 -152 -281 -184 -265 -318 -179 -142 -306 -138 -133 -114 -275 -180 -137 -153 -309 -114 -193 -372 -129 -345 -113 -246 -153 -140 -108 -154 -113 -147 -347 -268 -363 -322 -209 -215 -327 -207 -361 -204 -201 -139 -394 -286 -146 -152 -365 -324 -236 -229 -190 -367 -368 -186 -123 -334 -208 -332 -344 -382 -265 -219 -244 -207 -200 -185 -371 -263 -143 -238 -342 -271 -260 -328 -249 -273 -378 -278 -336 -262 -181 -221 -345 -344 -350 -132 -334 -295 -123 -380 -284 -103 -148 -283 -200 -243 -295 -333 -292 -280 -392 -309 -170 -301 -397 -204 -147 -160 -153 -297 -182 -296 -313 -343 -166 -392 -145 -327 -299 -394 -294 -232 -125 -168 -396 -216 -103 -125 -320 -322 -229 -344 -100 -144 -172 -364 -372 -156 -258 -214 -132 -284 -253 -252 -248 -327 -216 -285 -216 -249 -388 -273 -223 -279 -283 -197 -240 -127 -169 -135 -369 -209 -274 -168 -178 -243 -110 -387 -302 -349 -400 -356 -371 -194 -265 -168 -147 -220 -302 -160 -159 -324 -192 -105 -360 -242 -273 -123 -396 -258 -370 -129 -370 -174 -358 -207 -200 -367 -209 -159 -347 -323 -271 -235 -165 -337 -398 -125 -312 -372 -338 -317 -118 -298 -228 -352 -120 -271 -173 -317 -275 -234 -224 -270 -173 -248 -381 -103 -186 -273 -349 -309 -346 -254 -115 -292 -399 -319 -338 -361 -327 -237 -129 -248 -304 -211 -386 -261 -323 -176 -148 -271 -152 -141 -335 -158 -239 -332 -263 -373 -113 -100 -310 -105 -367 -331 -143 -331 -212 -332 -126 -286 -312 -231 -263 -421 -474 -351 -191 -228 -318 -434 -449 -471 -155 -129 -235 -422 -472 -450 -328 -393 -389 -298 -441 -244 -342 -403 -457 -468 -419 -112 -195 -251 -224 -353 -195 -332 -273 -364 -115 -120 -414 -169 -254 -384 -267 -316 -104 -499 -159 -286 -410 -236 -116 -332 -460 -271 -115 -483 -242 -352 -365 -434 -446 -168 -469 -402 -425 -292 -336 -311 -173 -102 -146 -225 -122 -451 -271 -392 -107 -102 -396 -377 -205 -411 -101 -119 -495 -402 -240 -101 -357 -318 -313 -137 -413 -500 -253 -222 -242 -140 -355 -261 -117 -375 -320 -251 -171 -384 -121 -150 -151 -391 -412 -417 -112 -153 -490 -415 -444 -207 -475 -205 -294 -411 -141 -271 -328 -317 -342 -219 -186 -189 -497 -286 -317 -258 -342 -334 -354 -311 -192 -159 -321 -258 -254 -340 -424 -414 -378 -128 -456 -414 -492 -220 -293 -459 -268 -168 -144 -178 -475 -488 -390 -190 -426 -396 -374 -424 -174 -272 -492 -142 -374 -228 -141 -355 -249 -319 -201 -104 -204 -397 -178 -272 -116 -463 -157 -360 -319 -311 -118 -443 -432 -343 -294 -346 -142 -353 -427 -370 -470 -179 -480 -199 -420 -104 -339 -330 -461 -334 -321 -385 -500 -191 -433 -401 -381 -135 -203 -390 -442 -300 -173 -115 -336 -143 -115 -139 -372 -370 -239 -486 -343 -499 -144 -454 -143 -104 -398 -169 -284 -231 -134 -217 -277 -302 -342 -144 -284 -223 -291 -295 -316 -239 -355 -111 -377 -371 -323 -217 -371 -210 -323 -341 -157 -489 -147 -417 -195 -107 -224 -140 -123 -288 -373 -350 -499 -405 -164 -481 -175 -222 -251 -457 -361 -100 -416 -264 -268 -232 -428 -497 -498 -413 -220 -270 -459 -131 -360 -246 -356 -399 -380 -287 -492 -387 -309 -172 -457 -155 -141 -408 -483 -186 -179 -347 -222 -493 -188 -394 -253 -243 -416 -482 -361 -373 -184 -408 -413 -359 -105 -401 -168 -500 -135 -253 -491 -496 -254 -348 -184 -237 -287 -368 -254 -205 -475 -129 -276 -121 -123 -168 -283 -353 -315 -220 -329 -252 -187 -467 -361 -434 -157 -262 -297 -152 -360 -420 -144 -409 -101 -180 -498 -107 --1 -395 -180 -359 -291 -281 -257 -224 -219 -364 -103 -166 -281 -307 -338 -329 -457 -464 -423 -112 -166 -327 -265 -142 -496 -307 -319 -123 -459 -326 -230 -400 -299 -339 -289 -371 -304 -349 -184 -401 -190 -101 -472 -339 -396 -229 -378 -119 -436 -224 -340 -430 -383 -310 -349 -349 -310 -214 -356 -162 -417 -370 -349 -471 -262 -210 -317 -165 -356 -223 -349 -411 -225 -177 -137 -128 -496 -146 -273 -331 -102 -271 -351 -371 -309 -304 -297 -443 -377 -312 -113 -348 -289 -480 -106 -386 -219 -350 -204 -477 -296 -450 -192 -373 -406 -277 -347 -177 -403 -105 -144 -322 -337 -439 -358 -228 -375 -397 -122 -280 -294 -185 -348 -332 -113 -217 -414 -454 -399 -189 -100 -167 -190 -105 -185 -170 -122 -160 -125 -188 -111 -180 --1 -105 -164 -112 -173 -160 -145 -111 -129 -143 -118 -106 -191 -195 -125 -143 -154 -106 -199 -159 -200 -121 -170 -148 -175 -133 -171 -195 -187 -179 -175 -138 -131 -113 -131 -164 -118 -127 -194 -188 -127 -128 -124 -159 -117 -135 -175 -116 -114 -162 -123 -175 -144 -108 -113 -176 -198 -159 -150 -137 -125 -182 -147 -138 -199 -103 -189 -127 -185 -121 -120 -183 --1 -183 -131 -149 -156 -176 -109 -127 -195 -156 -143 -119 -144 -195 -182 -185 -164 -131 -188 -135 -111 -181 -173 -144 -158 -195 -151 -114 -109 -128 -104 -121 -112 -153 -123 -154 -146 -125 --1 -122 -169 -169 -155 --1 -137 -159 -122 -171 -146 -123 -173 -139 -194 -129 -118 -178 -200 -149 -194 -175 -124 -121 -180 -129 -171 -142 -105 -147 -186 -125 -158 -144 -101 -120 -153 -119 -196 -139 -131 -145 -198 -200 -178 -126 -161 -108 -162 -156 -123 -160 -109 -118 -197 -174 -122 -177 -102 -183 -133 -128 -187 -107 -141 -187 -106 -128 -133 -185 -171 --1 -179 -188 -158 -145 -173 -190 -183 -108 -178 -197 -198 -153 -181 -155 -103 -142 -191 -200 -194 -174 -189 -116 -193 -134 -175 -177 -142 -103 -186 -181 -190 -157 -102 -148 -163 -156 -156 -195 -112 -133 -166 -118 -109 -146 -120 -137 -147 -119 -127 -187 -165 -101 -146 --1 -157 -104 -142 --1 -124 -174 -113 -111 -193 -109 -130 -144 -191 -176 -172 -130 -179 -145 -123 -110 -197 -159 -181 -194 -166 -191 -109 -155 -151 -141 -122 -169 -146 -119 -181 -151 -127 -199 -131 --1 -181 -150 -170 -137 -183 -160 -137 -163 -197 -186 -121 -149 -125 -123 -110 -106 -113 -153 -146 -149 -142 -162 -157 -143 -174 -133 -128 -117 -121 -124 -145 -173 -116 -133 -109 -139 -128 -101 -102 -181 -136 -157 -190 -183 -142 -200 -122 -175 -124 -144 -120 -178 -183 -133 -110 -168 -102 -183 -120 -173 -171 -151 -116 -179 -121 -130 -189 -173 -177 -135 -194 -164 -152 -106 -144 -127 -187 -145 -121 -134 -187 -163 -172 -137 -131 -102 -181 -162 -198 -125 -196 -102 --1 -140 -198 -181 -157 -144 -102 -134 -178 -181 -148 -141 -177 -157 -117 -113 -123 -189 -161 -114 -194 -116 -160 -148 -162 -189 -133 -167 -101 -132 -109 -163 -198 -180 -120 -158 -123 -158 -101 -170 -151 -179 -150 -117 -172 -138 -164 -116 -126 -193 -114 -137 -143 -179 -183 -186 -185 -191 -167 --1 -175 -114 -194 -153 -133 -185 -131 -149 -146 -102 -127 -151 -151 -100 -114 -168 -155 -163 -196 -181 -198 -145 -156 -150 -200 -122 -104 -168 -125 -146 -105 -125 -125 -131 -188 -159 -178 -187 -187 -125 -166 -182 -125 -119 -145 -107 -136 -114 -111 -189 -110 -113 -200 -101 -156 --1 -174 -119 -135 -123 -141 -159 -126 --1 -112 -181 -163 -127 -195 -103 -140 --1 -155 -163 -146 -135 -106 -134 -153 -110 -179 -160 -196 -151 -130 -100 -143 -117 -112 -169 -197 -157 -110 -193 -175 -146 -103 -162 -113 -108 -114 -172 -105 -108 -183 -166 -162 -133 --1 -143 -168 -108 -186 -191 -196 -192 -119 --1 -183 -154 -146 -138 -104 -190 -143 -152 -165 -142 -116 -193 -127 -162 -122 -137 -138 --1 -105 -161 -190 -197 -114 -104 -191 -110 -105 -138 -197 -179 -172 -147 -165 -200 -158 -126 -152 -196 -171 -149 --1 -110 -189 -186 -136 -181 -177 -173 -167 -141 -173 --1 -180 -192 -135 -187 -192 -147 -140 -129 -120 -182 -197 -153 -195 -112 -168 -134 -132 -178 -139 -107 -154 --1 -188 -136 -149 -152 -120 -102 -166 -164 -171 -180 -183 -191 -116 -122 -130 -182 -146 -177 -195 -131 -111 -179 -117 -111 -163 -142 -158 -168 -113 -115 -138 -155 -166 -156 -104 -199 -158 -126 -174 -188 -137 -103 -151 -172 -185 -149 -193 -190 -178 -182 -114 -198 -180 -193 -123 --1 -146 -103 -107 -199 --1 -170 -153 -125 -191 -145 -161 -105 --1 -159 -119 -126 -125 -147 -174 -109 -171 -167 -200 -188 -145 -165 -115 -178 -125 -193 -188 -149 -166 -114 -195 -151 -121 -107 -134 -138 -114 -156 -115 -116 -155 -107 -115 -145 -177 -105 -181 -169 -149 --1 -126 -129 -146 -147 -137 -165 -137 -189 -187 -179 -115 -163 -166 --1 -146 -115 -182 -156 -120 -147 -193 -171 -143 -157 -182 -116 --1 -188 -194 --1 -170 -167 -192 -122 -111 -162 -104 -133 -164 -174 --1 --1 --1 -106 -177 -165 -127 -104 -190 -159 -162 -133 -160 -192 -105 -157 -111 -159 -158 -152 -176 -116 --1 -139 -141 -145 --1 -133 -186 -133 -100 -168 -121 -151 -124 -161 -121 --1 -177 -101 -104 -163 -155 -185 -129 -130 -101 -134 -114 -187 -139 -109 -135 -133 -131 -145 -151 -178 -199 -157 -121 -162 -154 -171 -118 -135 -179 -178 -144 -123 -180 -190 -127 -118 -134 -157 -149 -187 -146 -190 -184 -183 -149 -111 -100 -184 -160 -116 -101 -144 -105 -169 -141 -176 -166 -134 -135 -157 -148 -132 -179 -185 -187 -165 -181 -186 -113 -191 -181 -175 -194 -167 -165 -137 -195 -158 -148 -106 -158 -133 -191 -101 -180 -122 -200 -106 -183 -139 -191 -146 -166 -158 -102 -114 -159 -111 -167 -124 -136 -173 -175 -102 -172 -156 -118 -139 -145 -123 -100 -162 -139 -107 -118 -173 -167 -199 -145 -136 -196 -197 -120 -182 -127 -135 -195 --1 -129 -108 -115 --1 -125 -185 -143 -170 -198 -174 -184 -150 -151 -196 -130 -164 -145 -149 -112 -133 -172 -113 -140 -188 -124 -112 -189 -198 -142 -158 -178 -177 -125 -129 -179 -103 -176 -137 -194 -186 -186 -128 -180 -137 -183 --1 -199 -154 -140 -111 -150 -100 -195 -149 -196 -131 -150 -174 -176 -182 -153 --1 -197 -179 -101 -106 --1 -105 -166 -134 -164 --1 -132 -166 -192 -109 -133 -193 -122 -149 -111 -160 -103 -126 -129 -181 -121 -131 -182 --1 -166 --1 -103 -150 -152 -166 -137 -129 -158 -114 --1 -115 -133 -192 -151 -151 --1 -146 -167 -170 -138 -166 -123 -181 -109 -180 -188 -108 -119 -136 -123 -148 -120 -100 -117 -197 -117 -162 -132 -127 -142 -145 -134 -115 -144 --1 -103 -190 -149 --1 -188 -124 -139 -135 -125 -115 -139 -155 -165 -137 -140 -151 -128 -139 --1 -165 -149 -102 -173 -119 --1 -194 -131 --1 -195 -147 -148 -189 --1 -154 -114 -168 -167 -163 --1 -153 -153 -173 -140 -195 -107 -170 -117 -197 -200 -137 -189 -195 --1 -181 -160 -117 -148 -156 -142 -152 -183 -124 -174 -153 --1 -131 -140 -116 -162 -194 -128 -160 -170 -197 -163 -131 -115 -170 -136 -100 -103 -133 -195 --1 -171 --1 -159 -164 -175 -104 -101 -113 -128 -158 -131 -188 -169 --1 -133 -184 -194 -132 -124 --1 -104 -146 -182 -174 -104 -186 -104 -104 -121 -134 -147 -133 -136 -178 -122 -103 -148 -147 -186 -157 --1 -139 -190 -124 -127 -161 -137 --1 --1 -192 -147 -174 --1 -112 -169 -165 --1 -175 -114 -116 -100 -132 -151 -182 -193 --1 --1 --1 -119 -155 -173 -119 -172 -153 -130 -140 -124 -101 -108 -113 -155 -121 -134 -128 -161 -114 -189 -157 --1 -132 --1 -175 --1 -177 -125 -111 -188 -154 -149 -127 --1 -101 --1 -161 -166 -181 -193 -180 -194 --1 -134 -141 -131 -117 -174 -166 -194 --1 -185 -159 -157 -178 -116 -107 -114 -112 -162 -110 -128 --1 -174 --1 --1 -149 -123 -104 -170 -165 -189 -131 -119 -162 -171 -151 -152 -129 -188 -159 -179 --1 -188 -101 -101 --1 -177 -142 -179 -137 -188 -134 -158 -183 -179 -108 -112 -119 -102 -155 --1 -136 -199 -145 -198 -153 -133 -113 -200 -181 --1 -102 -196 -126 -158 -149 -197 -132 -198 --1 -126 -190 -106 -180 -116 -157 -166 -163 -128 -113 -163 -111 -105 -107 --1 -195 --1 -159 -194 -169 -131 --1 -113 -109 --1 -174 -130 -157 -187 -192 -190 -150 -175 -186 -118 -138 -181 -134 -104 -137 -105 -143 -134 --1 -126 --1 -176 -150 -123 -177 -192 -154 -125 -156 -106 -129 -198 -173 -158 -179 -114 -188 -194 -183 -133 -142 -150 -149 -177 -143 -166 -167 -156 --1 -181 --1 -107 --1 -167 -160 -163 -148 -108 --1 -133 -159 -143 -101 -134 -100 -161 -191 -178 --1 -131 -144 -148 -104 -134 -160 -134 --1 -182 -132 -163 -153 -197 -189 -165 -124 -148 -192 -125 -118 -191 -199 -114 -183 -169 -162 -130 -200 -199 -137 -143 -123 -138 -165 -125 -191 -117 -176 -196 -153 -106 -144 -188 -151 -133 -167 -135 -122 --1 -107 -160 -139 -139 --1 -171 --1 -170 -180 -140 -126 -126 -146 -180 -179 -162 -187 -104 -129 -133 --1 -200 --1 -174 -138 --1 -102 -128 -143 -150 --1 -189 -113 --1 -188 --1 --1 -125 -193 -118 -158 --1 -127 --1 -117 -139 -157 --1 -135 -104 -135 -112 -188 -106 -119 -177 --1 -187 -177 -115 -177 -168 -160 -199 -106 -117 -107 -145 -168 -197 -192 -106 --1 --1 -199 -102 -163 --1 -179 -127 -106 -107 -169 --1 -129 -108 -110 -143 -198 -151 -101 -127 -149 -138 -195 -178 -118 -116 --1 -150 --1 -135 -157 -134 -159 -104 -145 -198 -115 -142 --1 --1 -171 -118 -151 -110 -190 --1 --1 -156 -199 -141 -198 -154 -163 -131 -192 -111 -110 -128 -129 -126 -115 -104 -181 -158 -152 -193 -188 -125 -151 -178 --1 -198 --1 -174 -190 -182 -148 -124 --1 -156 -179 -184 -160 --1 -117 -170 -160 -200 -187 -195 -144 -103 -130 -168 -133 --1 -189 -127 --1 --1 -163 -171 -106 -116 -118 -177 -132 -172 -198 -147 -165 -158 -159 -199 -153 -122 -167 --1 -142 -161 -129 -185 -138 -123 -182 -163 -192 -145 -115 -172 -190 -167 -100 -190 -100 -171 -123 -135 -112 -171 -189 --1 --1 -122 -160 -154 --1 --1 --1 -147 -154 -170 -136 -116 --1 -120 -104 -114 -166 -178 -120 -200 -107 --1 -150 -175 -164 -109 -136 -164 --1 --1 -184 --1 -157 -199 -110 --1 -113 -174 -100 -173 --1 --1 -146 -103 -110 --1 --1 -136 -185 -134 -178 -182 -176 -137 -170 -138 -183 --1 -120 -194 -113 -133 -114 -154 -149 -165 -125 -149 -121 -102 -179 -129 -157 -150 -171 -189 -149 -196 -154 --1 --1 -147 --1 -192 -130 -140 -104 -188 -169 -144 -177 -140 -115 -158 -190 -115 -197 --1 -134 -181 -183 -197 -103 --1 -137 -183 -132 -200 -135 -108 --1 -183 -109 -166 -181 -165 -195 --1 --1 --1 -121 -143 -136 -131 -154 -176 -143 --1 -136 -136 -169 -162 -134 -188 -121 -124 --1 --1 -188 -180 -142 -133 -127 --1 -151 -184 -166 -106 --1 -118 -124 --1 -102 -177 -156 -117 -135 -113 -199 --1 --1 -199 -119 -111 -116 -151 --1 -162 --1 --1 -109 -198 -105 -157 -188 -122 -151 --1 -178 -178 -173 -166 --1 -179 -174 -183 -114 --1 -158 -132 -120 -138 --1 -190 -139 --1 -167 -134 -122 --1 -127 -104 -141 --1 -190 -165 -185 -138 -129 -131 --1 -135 -101 -123 --1 -180 -150 -186 -182 -129 -158 -167 --1 --1 --1 -187 -150 -137 --1 -151 -103 -151 -143 -146 -184 -132 --1 -193 -149 -169 --1 -172 -145 -195 -121 -164 --1 -197 -171 -129 --1 -144 -182 -140 -165 --1 -163 -133 --1 -114 --1 -187 --1 -190 -189 -194 --1 -124 -158 -134 -101 --1 -155 -112 --1 -126 -198 -133 -115 --1 -126 -134 -101 -200 -133 -179 diff --git a/scripts/dly_error_profiles/dly_error_profile_2.dat b/scripts/dly_error_profiles/dly_error_profile_2.dat deleted file mode 100644 index 5e763334c55e3184cbf3daaa22ae20b48a050686..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_2.dat +++ /dev/null @@ -1,7500 +0,0 @@ -116 -116 -116 -116 -116 -126 -126 -110 -116 -116 -102 -100 -100 -110 -100 -100 -100 -100 -110 -100 -110 -102 -100 -110 -102 -100 -116 -116 -116 -132 -120 -116 -116 -100 -116 -116 -118 -116 -100 -116 -116 -116 -116 -100 -116 -116 -116 -116 -116 -100 -132 -120 -116 -100 -100 -116 -116 -118 -128 -116 -116 -128 -116 -100 -116 -116 -128 -116 -118 -116 -128 -108 -118 -116 -116 -128 -108 -132 -120 -102 -116 -100 -128 -116 -130 -116 -118 -116 -118 -116 -132 -122 -104 -118 -116 -116 -116 -102 -100 -116 -116 -116 -116 -104 -118 -104 -118 -104 -118 -116 -104 -112 -118 -104 -116 -116 -116 -118 -116 -116 -118 -128 -116 -132 -116 -116 -130 -110 -116 -104 -116 -130 -116 -116 -104 -116 -116 -104 -100 -132 -112 -118 -104 -100 -116 -116 -102 -116 -100 -116 -100 -118 -116 -132 -122 -116 -112 -118 -118 -112 -132 -120 -118 -116 -116 -100 -112 -122 -116 -118 -112 -118 -118 -116 -116 -132 -132 -132 -120 -114 -148 -132 -132 -112 -120 -116 -118 -128 -116 -116 -118 -130 -132 -126 -118 -132 -116 -132 -132 -132 -122 -106 -116 -148 -134 -120 -116 -118 -144 -124 -118 -104 -120 -116 -118 -132 -118 -132 -132 -132 -132 -132 -122 -116 -104 -116 -128 -118 -116 -118 -130 -116 -116 -116 -128 -116 -116 -134 -132 -132 -132 -132 -118 -116 -118 -116 -104 -116 -116 -116 -116 -104 -132 -132 -144 -148 -132 -132 -120 -116 -118 -144 -132 -120 -102 -118 -116 -148 -132 -114 -100 -118 -132 -132 -148 -134 -132 -118 -116 -132 -116 -104 -118 -104 -164 -154 -138 -118 -128 -116 -118 -100 -100 -116 -116 -118 -118 -102 -116 -116 -116 -132 -120 -116 -118 -118 -118 -132 -120 -114 -116 -116 -116 -118 -116 -116 -118 -100 -100 -118 -102 -102 -118 -116 -102 --1 -168 -148 -128 -116 -116 -116 -116 -118 -100 -116 -104 -116 -102 -100 -132 -120 -116 -152 -134 -120 -118 -118 -116 -116 -100 -118 -116 -132 -120 -120 -164 -154 -134 -116 -118 -132 -134 -118 -102 -132 -122 -104 -116 -134 -118 -100 -102 -128 -108 -100 -120 -116 -104 -104 -138 -122 -120 -116 -118 -104 -142 -122 -160 -140 -124 -106 -118 -102 -140 -120 -118 -118 -118 -116 -134 -132 -118 -118 -118 -118 -100 -116 -100 -116 -116 -116 -118 -100 -116 -112 -118 -132 -118 -122 -116 -132 -118 -134 -132 -144 -124 -118 -132 -132 -118 -118 -116 -118 -102 -118 -132 -148 -130 -110 -122 -118 -116 -132 -122 -118 -132 -132 -122 -116 -116 -132 -132 -132 -132 -122 -116 -102 -118 -102 -102 -124 -104 -104 -134 -148 -134 -120 -116 -100 -132 -132 -122 -116 -122 -102 -122 -116 -116 -116 -142 -124 -116 -124 -118 -116 -132 -114 -118 -118 -100 -134 -132 -118 -130 -132 -132 -116 -116 -102 -116 -116 -102 -100 -102 -120 -100 -104 -128 -108 -118 -100 -100 -120 -100 -118 -102 -112 -116 -102 -100 -116 -100 -130 -110 -118 -100 -102 -118 -102 -100 -116 -102 -118 -118 -100 -122 -118 -116 -100 -102 -102 -100 -116 -118 -102 -118 -116 -116 -100 -116 -102 -120 -118 -112 -116 -104 -102 -132 -112 -116 -100 -118 -116 -116 -118 -100 -104 -114 -116 -116 -100 -100 -102 -120 -116 -116 -118 -102 -118 -116 -118 -118 -118 -116 -104 -132 -134 -114 -118 -116 -132 -118 -164 -154 -148 -130 -116 -134 -132 -112 -124 -118 -132 -132 -132 -120 -132 -132 -124 -104 -118 -118 -116 -118 -116 -122 -124 -118 -118 -118 -104 -132 -116 -118 -132 -122 -104 -118 -132 -132 -132 -132 -116 -116 -104 -100 -144 -132 -114 -118 -116 -120 -100 -118 -118 -148 -134 -124 -116 -116 -106 -118 -132 -116 -116 -104 -116 -132 -132 -122 -132 -116 -132 -120 -118 -116 -124 -130 -132 -116 -132 -132 -116 -116 -116 -104 -132 -132 -132 -132 -118 -116 -132 -148 -128 -118 -102 -120 -100 -116 -116 -118 -132 -132 -118 -104 -132 -132 -118 -118 -116 -118 -118 -110 -108 -116 -116 -104 -118 -118 -104 -132 -124 -148 -134 -124 -116 -132 -122 -132 -134 -116 -104 -116 -132 -112 -132 -132 -134 -132 -124 -144 -132 -116 -148 -132 -112 -120 -100 -104 -132 -134 -120 -122 -132 -122 -132 -132 -134 -144 -124 -134 -132 -132 -124 -132 -134 -134 -124 -120 -100 -118 -118 -122 -132 -132 -120 -118 -122 -118 -132 -122 -124 -154 -134 -120 -104 -128 -134 -118 -116 -132 -122 -118 -134 -122 -104 -100 -132 -132 -132 -114 -118 -116 -118 -138 -152 -152 -138 -144 -124 -104 -100 -116 -118 -116 -116 -132 -132 -116 -124 -134 -116 -130 -122 -126 -116 -116 -124 -132 -118 -118 -132 -138 -120 -118 -116 -118 -118 -132 -132 -118 -118 -118 -124 -104 -116 -118 -118 -116 -134 -148 -134 -124 -124 -104 -102 -118 -134 -152 -132 -118 -118 -118 -132 -144 -132 -120 -118 -120 -120 -100 -116 -144 -126 -110 -100 -118 -102 -122 -118 -124 -104 -116 -126 -132 -132 -124 -104 -122 -116 -118 -120 -124 -118 -102 -120 -116 -106 -134 -132 -124 -108 -132 -134 -116 -132 -118 -134 -118 -124 -118 -132 -120 -122 -118 -132 -120 -122 -124 -122 -110 -112 -128 -116 -152 -142 -132 -132 -116 -130 -122 -118 -154 -134 -128 -132 -118 -134 -114 -110 -108 -150 -142 -122 -124 -104 -132 -134 -124 -144 -124 -132 -132 -114 -148 -148 -128 -118 -144 -156 -136 -134 -120 -130 -112 -112 -128 -124 -148 -166 -146 -126 -130 -132 -134 -150 -136 -116 -118 -118 -116 -116 -124 -120 -108 -116 -124 -124 -108 -132 -118 -126 -148 -156 -136 -128 -124 -124 -118 -112 -118 -134 -116 -118 -132 -132 -124 -108 -120 -124 -134 -122 -132 -128 -152 -132 -126 -132 -134 -128 -120 -116 -134 -148 -134 -120 -120 -118 -104 -102 -116 -132 -132 -132 -128 -148 -148 -130 -134 -114 -134 -122 -132 -124 -118 -104 -144 -124 -122 -124 -132 -130 -118 -124 -120 -118 -122 -118 -124 -148 -134 -128 -116 -120 -116 -132 -126 -106 -118 -118 -106 -118 -116 -106 -148 -130 -132 -124 -132 -132 -124 -132 -132 -144 -132 -134 -132 -144 -124 -120 -100 -122 -116 -118 -110 -104 -122 -104 -114 -120 -104 -132 -132 -132 -122 -116 -104 -118 -102 -130 -118 -132 -120 -122 -102 -116 -116 -118 -130 -110 -120 -100 -132 -120 -122 -102 -118 -132 -120 -116 -122 -124 -136 -116 -116 -118 -122 -102 -130 -124 -132 -120 -132 -114 -104 -102 -116 -118 -102 -148 -148 -134 -132 -114 -128 -108 -132 -116 -118 -104 -100 -164 -164 -148 -130 -118 -122 -102 -116 -118 -116 -120 -118 -102 -132 -132 -120 -120 -148 -132 -120 -116 -132 -132 -112 -102 -116 -132 -116 -122 -122 -132 -112 -116 -116 -116 -118 -116 -118 -132 -118 -124 -118 -122 -106 -116 -118 -132 -130 -118 -118 -104 -118 -116 -120 -132 -132 -116 -104 -132 -132 -114 -116 -116 -124 -132 -132 -134 -116 -132 -148 -134 -124 -124 -132 -124 -134 -132 -122 -120 -104 -124 -132 -132 -148 -134 -124 -110 -124 -122 -130 -110 -124 -104 -132 -124 -124 -122 -120 -120 -122 -130 -118 -124 -128 -118 -128 -116 -132 -148 -140 -120 -116 -116 -118 -116 -122 -116 -120 -100 -104 -118 -116 -120 -118 -116 -128 -116 -134 -118 -102 -132 -132 -124 -116 -140 -132 -132 -120 -116 -122 -116 -100 -118 -132 -122 -122 -118 -118 -132 -132 -134 -120 -130 -116 -118 -124 -104 -132 -128 -118 -122 -118 -124 -116 -130 -132 -120 -132 -132 -132 -132 -132 -120 -122 -118 -148 -184 -164 -144 -124 -104 -148 -148 -132 -122 -116 -132 -122 -132 -132 -122 -132 -122 -132 -122 -116 -122 -102 -116 -116 -132 -122 -118 -104 -116 -106 -116 -132 -122 -116 -118 -116 -132 -114 -120 -116 -118 -116 -118 -116 -116 -108 -118 -118 -120 -120 -132 -124 -116 -118 -118 -122 -132 -122 -120 -116 -104 -132 -132 -128 -116 -100 -118 -116 -130 -118 -100 -116 -100 -116 -100 -116 -100 -116 -100 -100 -128 -116 -100 -118 -116 -100 -116 -116 -100 -116 -128 -118 -116 -128 -112 -116 -118 -118 -116 -100 -116 -118 -100 -118 -128 -116 -116 -132 -132 -120 -116 -116 -132 -120 -102 -100 -116 -100 -116 -116 -116 -128 -108 -100 -112 -112 -118 -102 -132 -122 -104 -100 -102 -132 -112 -128 -108 -100 -118 -116 -116 -116 -116 -104 -102 -118 -116 -118 -118 -128 -108 -132 -116 -118 -118 -132 -132 -114 -116 -100 -118 -100 -100 -100 -116 -104 -100 -128 -116 -104 -132 -118 -104 -116 -116 -116 -128 -116 -118 -118 -116 -104 -118 -144 -134 -132 -128 -108 -102 -100 -116 -116 -118 -132 -118 -116 -116 -104 -100 -100 -118 -132 -116 -104 -100 -132 -116 -104 -100 -120 -100 -116 -130 -132 -132 -120 -102 -100 -132 -118 -100 -118 -118 -102 -100 -100 -100 -100 -100 -116 -102 -120 -102 -128 -130 -116 -132 -132 -122 -104 -116 -100 -100 -118 -118 -116 -118 -104 -102 -100 -132 -118 -104 -130 -110 -100 -116 -132 -118 -104 -112 -132 -128 -116 -116 -104 -118 -104 -116 -120 -116 -116 -132 -118 -128 -132 -118 -104 -112 -128 -120 -116 -106 -144 -124 -108 -132 -128 -132 -132 -116 -118 -132 -134 -114 -100 -100 -102 -116 -100 -116 -102 -108 -100 -130 -110 -100 -116 -118 -118 -116 -116 -102 -128 -108 -116 -116 -118 -102 -132 -122 -132 -118 -116 -100 -100 -100 -100 -132 -118 -116 -130 -136 -150 -152 -140 -120 -104 -104 -116 -118 -122 -104 -122 -116 -116 -118 -104 -108 -100 -120 -112 -100 -100 -132 -168 -148 -132 -118 -118 -104 -120 -116 -100 -100 -122 -142 -124 -120 -134 -132 -132 -118 -118 -118 -122 -102 -134 -122 -132 -132 -132 -120 -116 -116 -124 -116 -116 -118 -128 -108 -104 -132 -132 -132 -120 -130 -122 -102 -122 -118 -116 -122 -122 -130 -110 -118 -100 -102 -114 -116 -100 -120 -100 -100 -132 -114 -118 -116 -116 -102 -112 -100 -112 -116 -108 -100 -100 -100 -118 -132 -116 -118 -116 -116 -116 -122 -132 -118 -128 -128 -118 -122 -116 -116 -106 -116 -118 -128 -132 -118 -118 -134 -122 -134 -134 -132 -124 -198 -178 -158 -146 -126 -126 -118 -118 -118 -116 -118 -122 -134 -116 -130 -134 -134 -122 -138 -118 -118 -100 -118 -128 -152 -134 -118 -118 -106 -132 -166 -170 -150 -150 -130 -122 -116 -116 -102 -100 -100 -116 -116 -100 -100 -104 -100 -102 -134 -124 -118 -118 -144 -126 -120 -118 -112 -118 -100 -116 -116 -116 -118 -118 -116 -116 -118 -116 -120 -102 -128 -128 -116 -116 -132 -120 -118 -116 -116 -100 -112 -100 -128 -122 -112 -102 -116 -114 -130 -116 -132 -114 -112 -112 -100 -100 -120 -132 -118 -100 -132 -120 -132 -124 -130 -118 -130 -130 -132 -120 -116 -116 -102 -112 -132 -134 -132 -120 -118 -138 -132 -120 -138 -124 -132 -120 -116 -116 -132 -120 -102 -130 -118 -116 -116 -100 -116 -120 -116 -104 -100 -102 -110 -118 -118 -116 -160 -140 -124 -126 -118 -132 -134 -132 -116 -156 -190 -170 -156 -154 -138 -122 -108 -110 -116 -130 -132 -136 -116 -116 -118 -116 -134 -138 -124 -116 -106 -116 --1 -220 -200 -180 -160 -140 -120 -124 -116 -120 -132 -120 -122 -134 -132 -134 -148 -150 -130 -116 -126 -118 -132 -130 -136 -158 -150 -130 -116 -100 -110 -104 -118 -100 -128 -108 -116 -118 -102 -100 -100 -160 -140 -128 -126 -116 -132 -118 -118 -116 -120 -102 -118 --1 -142 -122 -116 -116 -134 -120 -118 -120 -132 -124 -126 -132 -122 -132 -122 -132 -118 -128 -116 -116 -136 -130 -116 -122 -120 -100 -118 -110 -100 -118 -120 -132 -132 -122 -118 -116 -118 -132 -128 -116 -118 -118 -118 -116 -118 -118 -116 -100 -100 -116 -100 -116 -116 -116 -100 -118 -118 -128 -116 -128 -118 -116 -116 -118 -100 -118 -116 -116 -100 -116 -108 -116 -130 -116 -116 -102 -102 -116 -100 -102 -142 -122 -116 -116 -102 -118 -100 -116 -100 -112 -100 -116 -102 -116 -100 -122 -102 -116 -112 -116 -100 -116 -118 -118 -118 -116 -132 -112 -118 -118 -116 -118 -128 -116 -118 -118 -116 -100 -118 -102 -118 -118 -116 -100 -122 -116 -114 -116 -100 -100 -116 -118 -116 -100 -118 -120 -120 -100 -122 -102 -100 -100 -100 -118 -116 -116 -120 -128 -130 -116 -118 -128 -116 -120 -100 -100 -100 -118 -118 -134 -116 -116 -116 -116 -118 -132 -118 -112 -118 -120 -116 -118 -102 -130 -116 -114 -130 -116 -116 -118 -128 -118 -116 -118 -130 -130 -116 -100 -102 -100 -142 -122 -110 -118 -130 -114 -116 -116 -102 -116 -118 -114 -100 -118 -100 -102 -118 -114 -102 -116 -118 -128 -140 -122 -102 -118 -120 -118 -116 -116 -116 -122 -102 -120 -116 -120 -118 -100 -116 -118 -118 -116 -122 -102 -134 -114 -118 -102 -102 -112 -116 -116 -116 -120 -116 -116 -118 -102 -116 -100 -118 -122 -102 -118 -142 -124 -120 -120 -118 -120 -102 -112 -118 -100 -118 -112 -116 -128 -116 -116 -102 -160 -140 -134 -114 -102 -118 -118 -116 -154 -150 -132 -116 -116 -100 -100 -116 -104 -102 -104 -102 -116 -120 -130 -110 -104 -102 -128 -120 -118 -116 -120 -116 -100 -112 -120 -110 -116 -128 -112 -118 -116 -118 -116 -118 -120 -100 -100 -118 -116 -104 -120 -124 -120 -116 -128 -130 -128 -116 -106 -118 -100 -138 -120 -100 -112 -132 -112 -106 -128 --1 --1 --1 -196 -176 -156 -164 -158 -138 -142 -132 -120 -108 -106 -144 -128 -114 -124 -116 -120 -128 -116 -116 -100 -122 -154 -134 -128 -116 -100 -116 -132 -112 -138 -122 -116 -112 -118 -100 -100 -134 -118 -150 -130 -116 -118 -100 -112 -126 -110 -118 -106 -132 -130 -134 -114 -100 -142 -132 -164 -144 -130 -120 -100 -144 -130 -116 -130 -112 -114 -120 -100 -114 -116 -132 --1 -192 --1 --1 -144 -136 -120 -116 -100 -118 -130 -116 -118 -102 -120 -116 -110 -102 -138 -126 -110 -100 -116 -118 -116 -116 -116 -118 -120 -100 -116 -116 -120 -118 -116 -116 -102 -100 -130 -116 -120 -116 -116 -130 -132 -116 -100 -100 -134 -114 -118 -120 -118 -116 -100 -100 -120 -100 -100 -118 -134 -130 -126 -116 -120 -120 -102 -100 -120 -118 -112 -118 -102 -136 -116 -102 -100 -116 -116 -102 -118 -116 -112 -118 -102 -120 -128 -116 -112 -120 -102 -102 -116 -116 -102 -118 -132 -120 -116 -120 -134 -118 -128 -116 -122 -122 -120 -116 -118 -102 -130 -142 -122 -102 -132 -130 -116 -116 -116 -114 -120 -116 -116 -100 -118 -100 -128 -116 -132 -118 -118 -116 -112 -120 -116 -118 -100 -118 -118 -112 -130 -128 -116 -102 -102 -116 -100 -100 -100 -118 -116 -128 -116 -116 -100 -100 -132 -116 -100 -116 -118 -128 -118 -130 -116 -116 -118 -122 -116 -116 -118 -100 -100 -116 -118 -130 -110 -102 -116 -118 -130 -120 -118 -132 -132 -128 -116 -120 -100 -116 -116 -116 -116 -100 -116 -140 -122 -104 -116 -112 -116 -100 -100 -118 -116 -132 -120 -114 -116 -118 -118 -114 -130 -110 -146 -166 -146 -130 -120 -116 -144 -124 -116 -102 -118 -116 -116 -100 -116 -100 -116 -100 -118 -116 -118 -116 -100 -116 -116 -110 -118 -100 -100 -118 -104 -104 -124 -118 -104 -118 -118 -116 -100 -116 -128 -128 -108 -118 -128 -116 -100 -118 -116 -100 -110 -100 -116 -116 -116 -118 -100 -104 -118 -120 -116 -102 -110 -118 -100 -116 -120 -100 -100 -118 -100 -104 -128 -116 -120 -118 -102 -100 -102 -116 -120 -100 -100 -116 -116 -118 -100 -118 -146 -126 -116 -116 -128 -118 -100 -116 -100 -102 -118 -128 -108 -116 -106 -104 -128 -110 -104 -116 -102 -118 -118 -120 -100 -118 -102 -118 -110 -100 -126 -118 -110 -110 -128 -118 -110 -116 -100 -116 -112 -118 -100 -118 -120 -116 -102 -102 -118 -128 -118 -120 -116 -100 -118 -102 -116 -100 -104 -120 -118 -116 -116 -126 -106 -126 -110 -118 -100 -116 -116 -128 -108 -110 -118 -102 -118 -118 -106 -118 -118 -116 -116 -128 -112 -126 -120 -126 -118 -116 -100 -130 -132 -114 -118 -100 -132 -118 -126 -106 -100 -110 -120 -118 -116 -120 -116 -120 -128 -118 -104 -118 -104 -118 -104 -116 -104 -116 -104 -116 -116 -118 -116 -116 -104 -100 -116 -104 -102 -120 -116 -116 -104 -118 -104 -116 -104 -104 -118 -116 -118 -116 -126 -106 -116 -116 -116 -100 -112 -116 -118 -100 -118 -118 -116 -110 -126 -106 -118 -102 -116 -116 -116 -116 -116 -132 -128 -116 -102 -118 -128 -138 -124 -122 -102 -102 -102 -116 -102 -118 -116 -118 -118 -100 -124 -118 -104 -118 -118 -128 -110 -116 -100 -128 -120 -118 -128 -128 -108 -116 -116 -116 -102 -100 -100 -104 -122 -116 -118 -134 -114 -134 -118 -118 -118 -116 -104 -100 -102 -102 -120 -132 -120 -118 -102 -100 -116 -116 -116 -122 -102 -120 -100 -120 -118 -116 -102 -118 -118 -116 -120 -148 -148 -148 -144 -132 -124 -164 -150 -144 -132 -122 -120 -100 -102 -116 -102 -132 -132 -132 -128 -116 -118 -144 -132 -132 -124 -116 -118 -104 -118 -120 -116 -116 -118 -118 -132 -120 -146 -126 -116 -132 -122 -104 -116 -116 -116 -132 -116 -122 -118 -132 -118 -104 -116 -116 -104 -100 -130 -122 -124 -122 -116 -124 -126 -122 -118 -124 -118 -130 -120 -104 -140 -150 -130 -110 -124 -112 -116 -116 -122 -118 -118 -100 -116 -118 -116 -118 -118 -112 -116 -118 -118 -132 -116 -116 -132 -120 -116 -116 -118 -118 -122 -118 -120 -116 -116 -118 -100 -120 -120 -120 -118 -100 -132 -130 -116 -116 -116 -128 -160 -140 -120 -130 -118 -116 -116 -116 -116 -118 -116 -132 -132 -120 -102 -100 -116 -102 -116 -118 -120 -104 -120 -118 -118 -112 -102 -116 -118 -116 -130 -134 -118 -128 -118 -134 -132 -132 -116 -120 -118 -116 -132 -124 -116 -116 -120 -104 -132 -126 -132 -120 -120 -116 -116 -132 -118 -104 -116 -116 -116 -118 -104 -100 -122 -104 -118 -116 -122 -126 -120 -118 -132 -132 -120 -118 -114 -118 -120 -100 -104 -102 -120 -122 -122 -102 -120 -126 -122 -124 -128 -132 -120 -116 -118 -102 -124 -116 -132 -122 -102 -120 -130 -112 -104 -104 -122 -118 -130 -110 -102 -122 -116 -102 -120 -132 -124 -118 -122 -122 -102 -102 -118 -128 -120 -118 -116 -132 -118 -122 -102 -124 -116 -118 -102 -116 -104 -112 -116 -132 -124 -116 -116 -102 -118 -130 -110 -100 -116 -116 -120 -120 -118 -114 -116 -104 -102 -120 -118 -120 -132 -126 -120 -120 -144 -134 -132 -124 -118 -136 -122 -128 -120 -118 -120 -120 -100 -160 -140 -122 -120 -118 -118 -104 -100 -118 -120 -132 -134 -120 -122 -102 -118 -132 -120 -102 -124 -116 -128 -116 -128 -108 -102 -100 -102 -132 -122 -118 -102 -118 -118 -120 -116 -102 -118 -116 -132 -122 -116 -128 -116 -120 -130 -110 -116 -124 -132 -132 -118 -102 -120 -118 -116 -118 -116 -118 -116 -124 -118 -116 -116 -116 -130 -120 -118 -116 -124 -118 -148 -132 -122 -102 -112 -112 -100 -116 -130 -118 -118 -132 -122 -124 -192 -172 -152 -132 -124 -124 -116 -132 -116 -122 -134 -122 -116 -118 -118 -118 -128 -116 -116 -122 -124 -116 -116 -140 -136 -122 -120 -122 -142 -126 -106 -116 -122 -134 -122 -118 -116 -134 -132 -126 -118 -122 -132 -124 -122 -134 -132 -132 -132 -124 -116 -116 -118 -132 -122 -116 -120 -132 -132 -132 -128 -116 -116 -116 -120 -128 -116 -120 -132 -122 -116 -120 -124 -128 -116 -104 -128 -120 -132 -130 -120 -116 -104 -132 -120 -116 -116 -132 -132 -122 -132 -132 -120 -164 -152 -142 -132 -120 -116 -116 -122 -138 -132 -122 -120 -122 -124 -132 -132 -132 -134 -132 -132 -132 -132 -130 -132 -122 -116 -142 -130 -116 -122 -132 -132 -132 -124 -120 -122 -120 -124 -118 -118 -116 -118 -132 -120 -134 -132 -134 -122 -116 -118 -122 -116 -118 -132 -132 -132 -122 -116 -142 -134 -132 -132 -142 -136 -132 -132 -132 -132 -132 -132 -122 -118 -132 -132 -132 -124 -118 -118 -124 -120 -134 -132 -132 -122 -128 -132 -132 -134 -120 -148 -132 -132 -140 -134 -132 -120 -116 -132 -132 -134 -120 -124 -118 -116 -116 -134 -122 -116 -134 -120 -122 -128 -132 -124 -116 -132 -134 -132 -122 -118 -126 -118 -116 -150 -148 -134 -124 -116 -116 -118 -134 -132 -132 -124 -118 -122 -124 -116 -134 -132 -124 -118 -116 -120 -132 -132 -132 -132 -132 -134 -124 -142 -124 -134 -134 -138 -120 -132 -132 -132 -122 -124 -116 -134 -132 -134 -154 -136 -122 -116 -120 -100 -120 -122 -120 -132 -132 -122 -116 -116 -116 -116 -116 -126 -126 -110 -116 -116 -102 -100 -100 -110 -100 -100 -100 -100 -110 -100 -110 -102 -100 -110 -102 -100 -116 -116 -116 -132 -120 -116 -116 -100 -116 -116 -118 -116 -100 -116 -116 -116 -116 -100 -116 -116 -116 -116 -116 -100 -132 -120 -116 -100 -100 -116 -116 -118 -128 -116 -116 -128 -116 -100 -116 -116 -128 -116 -118 -116 -128 -108 -118 -116 -116 -128 -108 -132 -120 -102 -116 -100 -128 -116 -130 -116 -118 -116 -118 -116 -132 -122 -104 -118 -116 -116 -116 -102 -100 -116 -116 -116 -116 -104 -118 -104 -118 -104 -118 -116 -104 -112 -118 -104 -116 -116 -116 -118 -116 -116 -118 -128 -116 -132 -116 -116 -130 -110 -116 -104 -116 -130 -116 -116 -104 -116 -116 -104 -100 -132 -112 -118 -104 -100 -116 -116 -102 -116 -100 -116 -100 -118 -116 -132 -122 -116 -112 -118 -118 -112 -132 -120 -118 -116 -116 -100 -112 -122 -116 -118 -112 -118 -118 -116 -116 -132 -132 -132 -120 -114 -148 -132 -132 -112 -120 -116 -118 -128 -116 -116 -118 -130 -132 -126 -118 -132 -116 -132 -132 -132 -122 -106 -116 -148 -134 -120 -116 -118 -144 -124 -118 -104 -120 -116 -118 -132 -118 -132 -132 -132 -132 -132 -122 -116 -104 -116 -128 -118 -116 -118 -130 -116 -116 -116 -128 -116 -116 -134 -132 -132 -132 -132 -118 -116 -118 -116 -104 -116 -116 -116 -116 -104 -132 -132 -144 -148 -132 -132 -120 -116 -118 -144 -132 -120 -102 -118 -116 -148 -132 -114 -100 -118 -132 -132 -148 -134 -132 -118 -116 -132 -116 -104 -118 -104 -164 -154 -138 -118 -128 -116 -118 -100 -100 -116 -116 -118 -118 -102 -116 -116 -116 -132 -120 -116 -118 -118 -118 -132 -120 -114 -116 -116 -116 -118 -116 -116 -118 -100 -100 -118 -102 -102 -118 -116 -102 --1 -168 -148 -128 -116 -116 -116 -116 -118 -100 -116 -104 -116 -102 -100 -132 -120 -116 -152 -134 -120 -118 -118 -116 -116 -100 -118 -116 -132 -120 -120 -164 -154 -134 -116 -118 -132 -134 -118 -102 -132 -122 -104 -116 -134 -118 -100 -102 -128 -108 -100 -120 -116 -104 -104 -138 -122 -120 -116 -118 -104 -142 -122 -160 -140 -124 -106 -118 -102 -140 -120 -118 -118 -118 -116 -134 -132 -118 -118 -118 -118 -100 -116 -100 -116 -116 -116 -118 -100 -116 -112 -118 -132 -118 -122 -116 -132 -118 -134 -132 -144 -124 -118 -132 -132 -118 -118 -116 -118 -102 -118 -132 -148 -130 -110 -122 -118 -116 -132 -122 -118 -132 -132 -122 -116 -116 -132 -132 -132 -132 -122 -116 -102 -118 -102 -102 -124 -104 -104 -134 -148 -134 -120 -116 -100 -132 -132 -122 -116 -122 -102 -122 -116 -116 -116 -142 -124 -116 -124 -118 -116 -132 -114 -118 -118 -100 -134 -132 -118 -130 -132 -132 -116 -116 -102 -116 -116 -102 -100 -102 -120 -100 -104 -128 -108 -118 -100 -100 -120 -100 -118 -102 -112 -116 -102 -100 -116 -100 -130 -110 -118 -100 -102 -118 -102 -100 -116 -102 -118 -118 -100 -122 -118 -116 -100 -102 -102 -100 -116 -118 -102 -118 -116 -116 -100 -116 -102 -120 -118 -112 -116 -104 -102 -132 -112 -116 -100 -118 -116 -116 -118 -100 -104 -114 -116 -116 -100 -100 -102 -120 -116 -116 -118 -102 -118 -116 -118 -118 -118 -116 -104 -132 -134 -114 -118 -116 -132 -118 -164 -154 -148 -130 -116 -134 -132 -112 -124 -118 -132 -132 -132 -120 -132 -132 -124 -104 -118 -118 -116 -118 -116 -122 -124 -118 -118 -118 -104 -132 -116 -118 -132 -122 -104 -118 -132 -132 -132 -132 -116 -116 -104 -100 -144 -132 -114 -118 -116 -120 -100 -118 -118 -148 -134 -124 -116 -116 -106 -118 -132 -116 -116 -104 -116 -132 -132 -122 -132 -116 -132 -120 -118 -116 -124 -130 -132 -116 -132 -132 -116 -116 -116 -104 -132 -132 -132 -132 -118 -116 -132 -148 -128 -118 -102 -120 -100 -116 -116 -118 -132 -132 -118 -104 -132 -132 -118 -118 -116 -118 -118 -110 -108 -116 -116 -104 -118 -118 -104 -132 -124 -148 -134 -124 -116 -132 -122 -132 -134 -116 -104 -116 -132 -112 -132 -132 -134 -132 -124 -144 -132 -116 -148 -132 -112 -120 -100 -104 -132 -134 -120 -122 -132 -122 -132 -132 -134 -144 -124 -134 -132 -132 -124 -132 -134 -134 -124 -120 -100 -118 -118 -122 -132 -132 -120 -118 -122 -118 -132 -122 -124 -154 -134 -120 -104 -128 -134 -118 -116 -132 -122 -118 -134 -122 -104 -100 -132 -132 -132 -114 -118 -116 -118 -138 -152 -152 -138 -144 -124 -104 -100 -116 -118 -116 -116 -132 -132 -116 -124 -134 -116 -130 -122 -126 -116 -116 -124 -132 -118 -118 -132 -138 -120 -118 -116 -118 -118 -132 -132 -118 -118 -118 -124 -104 -116 -118 -118 -116 -134 -148 -134 -124 -124 -104 -102 -118 -134 -152 -132 -118 -118 -118 -132 -144 -132 -120 -118 -120 -120 -100 -116 -144 -126 -110 -100 -118 -102 -122 -118 -124 -104 -116 -126 -132 -132 -124 -104 -122 -116 -118 -120 -124 -118 -102 -120 -116 -106 -134 -132 -124 -108 -132 -134 -116 -132 -118 -134 -118 -124 -118 -132 -120 -122 -118 -132 -120 -122 -124 -122 -110 -112 -128 -116 -152 -142 -132 -132 -116 -130 -122 -118 -154 -134 -128 -132 -118 -134 -114 -110 -108 -150 -142 -122 -124 -104 -132 -134 -124 -144 -124 -132 -132 -114 -148 -148 -128 -118 -144 -156 -136 -134 -120 -130 -112 -112 -128 -124 -148 -166 -146 -126 -130 -132 -134 -150 -136 -116 -118 -118 -116 -116 -124 -120 -108 -116 -124 -124 -108 -132 -118 -126 -148 -156 -136 -128 -124 -124 -118 -112 -118 -134 -116 -118 -132 -132 -124 -108 -120 -124 -134 -122 -132 -128 -152 -132 -126 -132 -134 -128 -120 -116 -134 -148 -134 -120 -120 -118 -104 -102 -116 -132 -132 -132 -128 -148 -148 -130 -134 -114 -134 -122 -132 -124 -118 -104 -144 -124 -122 -124 -132 -130 -118 -124 -120 -118 -122 -118 -124 -148 -134 -128 -116 -120 -116 -132 -126 -106 -118 -118 -106 -118 -116 -106 -148 -130 -132 -124 -132 -132 -124 -132 -132 -144 -132 -134 -132 -144 -124 -120 -100 -122 -116 -118 -110 -104 -122 -104 -114 -120 -104 -132 -132 -132 -122 -116 -104 -118 -102 -130 -118 -132 -120 -122 -102 -116 -116 -118 -130 -110 -120 -100 -132 -120 -122 -102 -118 -132 -120 -116 -122 -124 -136 -116 -116 -118 -122 -102 -130 -124 -132 -120 -132 -114 -104 -102 -116 -118 -102 -148 -148 -134 -132 -114 -128 -108 -132 -116 -118 -104 -100 -164 -164 -148 -130 -118 -122 -102 -116 -118 -116 -120 -118 -102 -132 -132 -120 -120 -148 -132 -120 -116 -132 -132 -112 -102 -116 -132 -116 -122 -122 -132 -112 -116 -116 -116 -118 -116 -118 -132 -118 -124 -118 -122 -106 -116 -118 -132 -130 -118 -118 -104 -118 -116 -120 -132 -132 -116 -104 -132 -132 -114 -116 -116 -124 -132 -132 -134 -116 -132 -148 -134 -124 -124 -132 -124 -134 -132 -122 -120 -104 -124 -132 -132 -148 -134 -124 -110 -124 -122 -130 -110 -124 -104 -132 -124 -124 -122 -120 -120 -122 -130 -118 -124 -128 -118 -128 -116 -132 -148 -140 -120 -116 -116 -118 -116 -122 -116 -120 -100 -104 -118 -116 -120 -118 -116 -128 -116 -134 -118 -102 -132 -132 -124 -116 -140 -132 -132 -120 -116 -122 -116 -100 -118 -132 -122 -122 -118 -118 -132 -132 -134 -120 -130 -116 -118 -124 -104 -132 -128 -118 -122 -118 -124 -116 -130 -132 -120 -132 -132 -132 -132 -132 -120 -122 -118 -148 -184 -164 -144 -124 -104 -148 -148 -132 -122 -116 -132 -122 -132 -132 -122 -132 -122 -132 -122 -116 -122 -102 -116 -116 -132 -122 -118 -104 -116 -106 -116 -132 -122 -116 -118 -116 -132 -114 -120 -116 -118 -116 -118 -116 -116 -108 -118 -118 -120 -120 -132 -124 -116 -118 -118 -122 -132 -122 -120 -116 -104 -132 -132 -128 -116 -100 -118 -116 -130 -118 -100 -116 -100 -116 -100 -116 -100 -116 -100 -100 -128 -116 -100 -118 -116 -100 -116 -116 -100 -116 -128 -118 -116 -128 -112 -116 -118 -118 -116 -100 -116 -118 -100 -118 -128 -116 -116 -132 -132 -120 -116 -116 -132 -120 -102 -100 -116 -100 -116 -116 -116 -128 -108 -100 -112 -112 -118 -102 -132 -122 -104 -100 -102 -132 -112 -128 -108 -100 -118 -116 -116 -116 -116 -104 -102 -118 -116 -118 -118 -128 -108 -132 -116 -118 -118 -132 -132 -114 -116 -100 -118 -100 -100 -100 -116 -104 -100 -128 -116 -104 -132 -118 -104 -116 -116 -116 -128 -116 -118 -118 -116 -104 -118 -144 -134 -132 -128 -108 -102 -100 -116 -116 -118 -132 -118 -116 -116 -104 -100 -100 -118 -132 -116 -104 -100 -132 -116 -104 -100 -120 -100 -116 -130 -132 -132 -120 -102 -100 -132 -118 -100 -118 -118 -102 -100 -100 -100 -100 -100 -116 -102 -120 -102 -128 -130 -116 -132 -132 -122 -104 -116 -100 -100 -118 -118 -116 -118 -104 -102 -100 -132 -118 -104 -130 -110 -100 -116 -132 -118 -104 -112 -132 -128 -116 -116 -104 -118 -104 -116 -120 -116 -116 -132 -118 -128 -132 -118 -104 -112 -128 -120 -116 -106 -144 -124 -108 -132 -128 -132 -132 -116 -118 -132 -134 -114 -100 -100 -102 -116 -100 -116 -102 -108 -100 -130 -110 -100 -116 -118 -118 -116 -116 -102 -128 -108 -116 -116 -118 -102 -132 -122 -132 -118 -116 -100 -100 -100 -100 -132 -118 -116 -130 -136 -150 -152 -140 -120 -104 -104 -116 -118 -122 -104 -122 -116 -116 -118 -104 -108 -100 -120 -112 -100 -100 -132 -168 -148 -132 -118 -118 -104 -120 -116 -100 -100 -122 -142 -124 -120 -134 -132 -132 -118 -118 -118 -122 -102 -134 -122 -132 -132 -132 -120 -116 -116 -124 -116 -116 -118 -128 -108 -104 -132 -132 -132 -120 -130 -122 -102 -122 -118 -116 -122 -122 -130 -110 -118 -100 -102 -114 -116 -100 -120 -100 -100 -132 -114 -118 -116 -116 -102 -112 -100 -112 -116 -108 -100 -100 -100 -118 -132 -116 -118 -116 -116 -116 -122 -132 -118 -128 -128 -118 -122 -116 -116 -106 -116 -118 -128 -132 -118 -118 -134 -122 -134 -134 -132 -124 -198 -178 -158 -146 -126 -126 -118 -118 -118 -116 -118 -122 -134 -116 -130 -134 -134 -122 -138 -118 -118 -100 -118 -128 -152 -134 -118 -118 -106 -132 -166 -170 -150 -150 -130 -122 -116 -116 -102 -100 -100 -116 -116 -100 -100 -104 -100 -102 -134 -124 -118 -118 -144 -126 -120 -118 -112 -118 -100 -116 -116 -116 -118 -118 -116 -116 -118 -116 -120 -102 -128 -128 -116 -116 -132 -120 -118 -116 -116 -100 -112 -100 -128 -122 -112 -102 -116 -114 -130 -116 -132 -114 -112 -112 -100 -100 -120 -132 -118 -100 -132 -120 -132 -124 -130 -118 -130 -130 -132 -120 -116 -116 -102 -112 -132 -134 -132 -120 -118 -138 -132 -120 -138 -124 -132 -120 -116 -116 -132 -120 -102 -130 -118 -116 -116 -100 -116 -120 -116 -104 -100 -102 -110 -118 -118 -116 -160 -140 -124 -126 -118 -132 -134 -132 -116 -156 -190 -170 -156 -154 -138 -122 -108 -110 -116 -130 -132 -136 -116 -116 -118 -116 -134 -138 -124 -116 -106 -116 --1 -220 -200 -180 -160 -140 -120 -124 -116 -120 -132 -120 -122 -134 -132 -134 -148 -150 -130 -116 -126 -118 -132 -130 -136 -158 -150 -130 -116 -100 -110 -104 -118 -100 -128 -108 -116 -118 -102 -100 -100 -160 -140 -128 -126 -116 -132 -118 -118 -116 -120 -102 -118 --1 -142 -122 -116 -116 -134 -120 -118 -120 -132 -124 -126 -132 -122 -132 -122 -132 -118 -128 -116 -116 -136 -130 -116 -122 -120 -100 -118 -110 -100 -118 -120 -132 -132 -122 -118 -116 -118 -132 -128 -116 -118 -118 -118 -116 -118 -118 -116 -100 -100 -116 -100 -116 -116 -116 -100 -118 -118 -128 -116 -128 -118 -116 -116 -118 -100 -118 -116 -116 -100 -116 -108 -116 -130 -116 -116 -102 -102 -116 -100 -102 -142 -122 -116 -116 -102 -118 -100 -116 -100 -112 -100 -116 -102 -116 -100 -122 -102 -116 -112 -116 -100 -116 -118 -118 -118 -116 -132 -112 -118 -118 -116 -118 -128 -116 -118 -118 -116 -100 -118 -102 -118 -118 -116 -100 -122 -116 -114 -116 -100 -100 -116 -118 -116 -100 -118 -120 -120 -100 -122 -102 -100 -100 -100 -118 -116 -116 -120 -128 -130 -116 -118 -128 -116 -120 -100 -100 -100 -118 -118 -134 -116 -116 -116 -116 -118 -132 -118 -112 -118 -120 -116 -118 -102 -130 -116 -114 -130 -116 -116 -118 -128 -118 -116 -118 -130 -130 -116 -100 -102 -100 -142 -122 -110 -118 -130 -114 -116 -116 -102 -116 -118 -114 -100 -118 -100 -102 -118 -114 -102 -116 -118 -128 -140 -122 -102 -118 -120 -118 -116 -116 -116 -122 -102 -120 -116 -120 -118 -100 -116 -118 -118 -116 -122 -102 -134 -114 -118 -102 -102 -112 -116 -116 -116 -120 -116 -116 -118 -102 -116 -100 -118 -122 -102 -118 -142 -124 -120 -120 -118 -120 -102 -112 -118 -100 -118 -112 -116 -128 -116 -116 -102 -160 -140 -134 -114 -102 -118 -118 -116 -154 -150 -132 -116 -116 -100 -100 -116 -104 -102 -104 -102 -116 -120 -130 -110 -104 -102 -128 -120 -118 -116 -120 -116 -100 -112 -120 -110 -116 -128 -112 -118 -116 -118 -116 -118 -120 -100 -100 -118 -116 -104 -120 -124 -120 -116 -128 -130 -128 -116 -106 -118 -100 -138 -120 -100 -112 -132 -112 -106 -128 --1 --1 --1 -196 -176 -156 -164 -158 -138 -142 -132 -120 -108 -106 -144 -128 -114 -124 -116 -120 -128 -116 -116 -100 -122 -154 -134 -128 -116 -100 -116 -132 -112 -138 -122 -116 -112 -118 -100 -100 -134 -118 -150 -130 -116 -118 -100 -112 -126 -110 -118 -106 -132 -130 -134 -114 -100 -142 -132 -164 -144 -130 -120 -100 -144 -130 -116 -130 -112 -114 -120 -100 -114 -116 -132 --1 -192 --1 --1 -144 -136 -120 -116 -100 -118 -130 -116 -118 -102 -120 -116 -110 -102 -138 -126 -110 -100 -116 -118 -116 -116 -116 -118 -120 -100 -116 -116 -120 -118 -116 -116 -102 -100 -130 -116 -120 -116 -116 -130 -132 -116 -100 -100 -134 -114 -118 -120 -118 -116 -100 -100 -120 -100 -100 -118 -134 -130 -126 -116 -120 -120 -102 -100 -120 -118 -112 -118 -102 -136 -116 -102 -100 -116 -116 -102 -118 -116 -112 -118 -102 -120 -128 -116 -112 -120 -102 -102 -116 -116 -102 -118 -132 -120 -116 -120 -134 -118 -128 -116 -122 -122 -120 -116 -118 -102 -130 -142 -122 -102 -132 -130 -116 -116 -116 -114 -120 -116 -116 -100 -118 -100 -128 -116 -132 -118 -118 -116 -112 -120 -116 -118 -100 -118 -118 -112 -130 -128 -116 -102 -102 -116 -100 -100 -100 -118 -116 -128 -116 -116 -100 -100 -132 -116 -100 -116 -118 -128 -118 -130 -116 -116 -118 -122 -116 -116 -118 -100 -100 -116 -118 -130 -110 -102 -116 -118 -130 -120 -118 -132 -132 -128 -116 -120 -100 -116 -116 -116 -116 -100 -116 -140 -122 -104 -116 -112 -116 -100 -100 -118 -116 -132 -120 -114 -116 -118 -118 -114 -130 -110 -146 -166 -146 -130 -120 -116 -144 -124 -116 -102 -118 -116 -116 -100 -116 -100 -116 -100 -118 -116 -118 -116 -100 -116 -116 -110 -118 -100 -100 -118 -104 -104 -124 -118 -104 -118 -118 -116 -100 -116 -128 -128 -108 -118 -128 -116 -100 -118 -116 -100 -110 -100 -116 -116 -116 -118 -100 -104 -118 -120 -116 -102 -110 -118 -100 -116 -120 -100 -100 -118 -100 -104 -128 -116 -120 -118 -102 -100 -102 -116 -120 -100 -100 -116 -116 -118 -100 -118 -146 -126 -116 -116 -128 -118 -100 -116 -100 -102 -118 -128 -108 -116 -106 -104 -128 -110 -104 -116 -102 -118 -118 -120 -100 -118 -102 -118 -110 -100 -126 -118 -110 -110 -128 -118 -110 -116 -100 -116 -112 -118 -100 -118 -120 -116 -102 -102 -118 -128 -118 -120 -116 -100 -118 -102 -116 -100 -104 -120 -118 -116 -116 -126 -106 -126 -110 -118 -100 -116 -116 -128 -108 -110 -118 -102 -118 -118 -106 -118 -118 -116 -116 -128 -112 -126 -120 -126 -118 -116 -100 -130 -132 -114 -118 -100 -132 -118 -126 -106 -100 -110 -120 -118 -116 -120 -116 -120 -128 -118 -104 -118 -104 -118 -104 -116 -104 -116 -104 -116 -116 -118 -116 -116 -104 -100 -116 -104 -102 -120 -116 -116 -104 -118 -104 -116 -104 -104 -118 -116 -118 -116 -126 -106 -116 -116 -116 -100 -112 -116 -118 -100 -118 -118 -116 -110 -126 -106 -118 -102 -116 -116 -116 -116 -116 -132 -128 -116 -102 -118 -128 -138 -124 -122 -102 -102 -102 -116 -102 -118 -116 -118 -118 -100 -124 -118 -104 -118 -118 -128 -110 -116 -100 -128 -120 -118 -128 -128 -108 -116 -116 -116 -102 -100 -100 -104 -122 -116 -118 -134 -114 -134 -118 -118 -118 -116 -104 -100 -102 -102 -120 -132 -120 -118 -102 -100 -116 -116 -116 -122 -102 -120 -100 -120 -118 -116 -102 -118 -118 -116 -120 -148 -148 -148 -144 -132 -124 -164 -150 -144 -132 -122 -120 -100 -102 -116 -102 -132 -132 -132 -128 -116 -118 -144 -132 -132 -124 -116 -118 -104 -118 -120 -116 -116 -118 -118 -132 -120 -146 -126 -116 -132 -122 -104 -116 -116 -116 -132 -116 -122 -118 -132 -118 -104 -116 -116 -104 -100 -130 -122 -124 -122 -116 -124 -126 -122 -118 -124 -118 -130 -120 -104 -140 -150 -130 -110 -124 -112 -116 -116 -122 -118 -118 -100 -116 -118 -116 -118 -118 -112 -116 -118 -118 -132 -116 -116 -132 -120 -116 -116 -118 -118 -122 -118 -120 -116 -116 -118 -100 -120 -120 -120 -118 -100 -132 -130 -116 -116 -116 -128 -160 -140 -120 -130 -118 -116 -116 -116 -116 -118 -116 -132 -132 -120 -102 -100 -116 -102 -116 -118 -120 -104 -120 -118 -118 -112 -102 -116 -118 -116 -130 -134 -118 -128 -118 -134 -132 -132 -116 -120 -118 -116 -132 -124 -116 -116 -120 -104 -132 -126 -132 -120 -120 -116 -116 -132 -118 -104 -116 -116 -116 -118 -104 -100 -122 -104 -118 -116 -122 -126 -120 -118 -132 -132 -120 -118 -114 -118 -120 -100 -104 -102 -120 -122 -122 -102 -120 -126 -122 -124 -128 -132 -120 -116 -118 -102 -124 -116 -132 -122 -102 -120 -130 -112 -104 -104 -122 -118 -130 -110 -102 -122 -116 -102 -120 -132 -124 -118 -122 -122 -102 -102 -118 -128 -120 -118 -116 -132 -118 -122 -102 -124 -116 -118 -102 -116 -104 -112 -116 -132 -124 -116 -116 -102 -118 -130 -110 -100 -116 -116 -120 -120 -118 -114 -116 -104 -102 -120 -118 -120 -132 -126 -120 -120 -144 -134 -132 -124 -118 -136 -122 -128 -120 -118 -120 -120 -100 -160 -140 -122 -120 -118 -118 -104 -100 -118 -120 -132 -134 -120 -122 -102 -118 -132 -120 -102 -124 -116 -128 -116 -128 -108 -102 -100 -102 -132 -122 -118 -102 -118 -118 -120 -116 -102 -118 -116 -132 -122 -116 -128 -116 -120 -130 -110 -116 -124 -132 -132 -118 -102 -120 -118 -116 -118 -116 -118 -116 -124 -118 -116 -116 -116 -130 -120 -118 -116 -124 -118 -148 -132 -122 -102 -112 -112 -100 -116 -130 -118 -118 -132 -122 -124 -192 -172 -152 -132 -124 -124 -116 -132 -116 -122 -134 -122 -116 -118 -118 -118 -128 -116 -116 -122 -124 -116 -116 -140 -136 -122 -120 -122 -142 -126 -106 -116 -122 -134 -122 -118 -116 -134 -132 -126 -118 -122 -132 -124 -122 -134 -132 -132 -132 -124 -116 -116 -118 -132 -122 -116 -120 -132 -132 -132 -128 -116 -116 -116 -120 -128 -116 -120 -132 -122 -116 -120 -124 -128 -116 -104 -128 -120 -132 -130 -120 -116 -104 -132 -120 -116 -116 -132 -132 -122 -132 -132 -120 -164 -152 -142 -132 -120 -116 -116 -122 -138 -132 -122 -120 -122 -124 -132 -132 -132 -134 -132 -132 -132 -132 -130 -132 -122 -116 -142 -130 -116 -122 -132 -132 -132 -124 -120 -122 -120 -124 -118 -118 -116 -118 -132 -120 -134 -132 -134 -122 -116 -118 -122 -116 -118 -132 -132 -132 -122 -116 -142 -134 -132 -132 -142 -136 -132 -132 -132 -132 -132 -132 -122 -118 -132 -132 -132 -124 -118 -118 -124 -120 -134 -132 -132 -122 -128 -132 -132 -134 -120 -148 -132 -132 -140 -134 -132 -120 -116 -132 -132 -134 -120 -124 -118 -116 -116 -134 -122 -116 -134 -120 -122 -128 -132 -124 -116 -132 -134 -132 -122 -118 -126 -118 -116 -150 -148 -134 -124 -116 -116 -118 -134 -132 -132 -124 -118 -122 -124 -116 -134 -132 -124 -118 -116 -120 -132 -132 -132 -132 -132 -134 -124 -142 -124 -134 -134 -138 -120 -132 -132 -132 -122 -124 -116 -134 -132 -134 -154 -136 -122 -116 -120 -100 -120 -122 -120 -132 -132 -122 -116 -116 -116 -116 -116 -126 -126 -110 -116 -116 -102 -100 -100 -110 -100 -100 -100 -100 -110 -100 -110 -102 -100 -110 -102 -100 -116 -116 -116 -132 -120 -116 -116 -100 -116 -116 -118 -116 -100 -116 -116 -116 -116 -100 -116 -116 -116 -116 -116 -100 -132 -120 -116 -100 -100 -116 -116 -118 -128 -116 -116 -128 -116 -100 -116 -116 -128 -116 -118 -116 -128 -108 -118 -116 -116 -128 -108 -132 -120 -102 -116 -100 -128 -116 -130 -116 -118 -116 -118 -116 -132 -122 -104 -118 -116 -116 -116 -102 -100 -116 -116 -116 -116 -104 -118 -104 -118 -104 -118 -116 -104 -112 -118 -104 -116 -116 -116 -118 -116 -116 -118 -128 -116 -132 -116 -116 -130 -110 -116 -104 -116 -130 -116 -116 -104 -116 -116 -104 -100 -132 -112 -118 -104 -100 -116 -116 -102 -116 -100 -116 -100 -118 -116 -132 -122 -116 -112 -118 -118 -112 -132 -120 -118 -116 -116 -100 -112 -122 -116 -118 -112 -118 -118 -116 -116 -132 -132 -132 -120 -114 -148 -132 -132 -112 -120 -116 -118 -128 -116 -116 -118 -130 -132 -126 -118 -132 -116 -132 -132 -132 -122 -106 -116 -148 -134 -120 -116 -118 -144 -124 -118 -104 -120 -116 -118 -132 -118 -132 -132 -132 -132 -132 -122 -116 -104 -116 -128 -118 -116 -118 -130 -116 -116 -116 -128 -116 -116 -134 -132 -132 -132 -132 diff --git a/scripts/dly_error_profiles/dly_error_profile_3.dat b/scripts/dly_error_profiles/dly_error_profile_3.dat deleted file mode 100644 index c1dddc49dd5086d9d1b40cb2742bc265e353f32f..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_3.dat +++ /dev/null @@ -1,7500 +0,0 @@ -116 -116 -116 -100 -100 -100 -116 -128 -108 -116 -116 -112 -116 -116 -116 -100 -118 -116 -118 -116 -100 -116 -130 -110 -116 -116 -116 -116 -128 -112 -116 -116 -100 -116 -116 -116 -118 -116 -116 -112 -100 -100 -100 -116 -116 -116 -100 -100 -128 -116 -116 -116 -100 -116 -116 -100 -116 -116 -116 -100 -100 -116 -100 -116 -116 -116 -116 -100 -118 -118 -100 -116 -112 -118 -100 -118 -100 -116 -118 -128 -108 -116 -100 -116 -118 -116 -116 -116 -116 -112 -100 -116 -116 -116 -116 -116 -100 -100 -100 -100 -116 -116 -100 -100 -116 -116 -100 -118 -100 -100 -116 -116 -100 -100 -116 -116 -128 -108 -116 -100 -116 -116 -116 -116 -100 -100 -116 -116 -100 -112 -116 -116 -100 -100 -116 -100 -116 -116 -100 -100 -100 -116 -100 -100 -130 -116 -116 -116 -100 -116 -112 -100 -100 -116 -116 -100 -118 -116 -116 -116 -116 -116 -116 -116 -116 -118 -116 -128 -116 -116 -118 -116 -130 -110 -100 -116 -128 -108 -118 -100 -100 -116 -116 -116 -118 -100 -116 -116 -100 -116 -118 -100 -116 -100 -116 -116 -100 -100 -122 -102 -116 -116 -100 -118 -100 -100 -116 -116 -116 -116 -116 -118 -118 -116 -128 -116 -116 -100 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -128 -116 -116 -116 -116 -100 -116 -112 -116 -116 -100 -100 -100 -116 -100 -100 -116 -116 -116 -116 -112 -116 -116 -116 -116 -116 -100 -116 -100 -116 -116 -116 -112 -100 -116 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -100 -116 -112 -100 -116 -100 -116 -100 -116 -100 -100 -116 -100 -116 -116 -116 -100 -100 -100 -116 -100 -116 -116 -100 -100 -116 -100 -132 -114 -116 -116 -116 -100 -112 -116 -104 -116 -116 -116 -104 -116 -116 -104 -116 -116 -104 -118 -104 -116 -116 -116 -104 -116 -116 -116 -104 -116 -116 -104 -102 -100 -116 -116 -116 -116 -116 -104 -116 -116 -116 -116 -104 -118 -104 -118 -116 -116 -116 -116 -118 -104 -100 -116 -100 -118 -100 -116 -100 -100 -116 -116 -116 -116 -116 -116 -128 -118 -116 -100 -132 -120 -118 -116 -118 -116 -100 -116 -120 -100 -116 -116 -116 -100 -118 -116 -116 -116 -116 -118 -100 -118 -116 -112 -112 -116 -102 -128 -116 -116 -112 -100 -100 -100 -118 -116 -118 -116 -116 -116 -116 -116 -128 -116 -116 -116 -130 -116 -100 -116 -116 -102 -118 -116 -116 -100 -100 -100 -118 -112 -100 -102 -118 -100 -118 -118 -118 -116 -100 -118 -116 -100 -100 -100 -120 -116 -100 -116 -116 -116 -116 -116 -100 -100 -118 -120 -100 -118 -100 -116 -100 -116 -116 -100 -100 -102 -100 -118 -100 -128 -108 -128 -112 -128 -108 -118 -116 -116 -116 -118 -116 -116 -118 -132 -120 -118 -116 -116 -116 -116 -102 -100 -116 -100 -112 -118 -100 -132 -120 -118 -116 -116 -116 -118 -116 -118 -100 -118 -116 -118 -116 -118 -102 -100 -118 -116 -102 -116 -128 -116 -116 -118 -100 -118 -100 -118 -128 -116 -118 -102 -102 -102 -118 -118 -116 -128 -116 -120 -132 -112 -100 -116 -116 -118 -104 -118 -118 -100 -102 -120 -100 -132 -118 -116 -102 -100 -118 -118 -102 -100 -118 -116 -112 -116 -116 -118 -118 -118 -116 -116 -100 -116 -130 -116 -116 -100 -112 -100 -100 -116 -100 -100 -118 -116 -130 -118 -118 -116 -120 -118 -100 -118 -102 -116 -118 -100 -102 -116 -132 -112 -100 -100 -100 -116 -116 -116 -118 -116 -116 -118 -118 -116 -100 -116 -118 -130 -110 -102 -102 -116 -116 -100 -116 -100 -116 -100 -100 -100 -118 -102 -100 -114 -132 -116 -102 -116 -100 -100 -116 -116 -112 -116 -118 -100 -112 -100 -116 -110 -116 -100 -100 -116 -116 -116 -118 -116 -116 -118 -100 -118 -118 -100 -116 -118 -100 -116 -116 -102 -102 -118 -118 -100 -100 -116 -118 -116 -100 -130 -126 -116 -116 -118 -130 -110 -118 -116 -116 -100 -118 -116 -116 -116 -118 -100 -116 -100 -116 -100 -118 -118 -116 -130 -128 -116 -116 -100 -116 -116 -100 -116 -116 -100 -116 -100 -116 -118 -118 -118 -116 -100 -100 -116 -116 -118 -118 -116 -100 -100 -118 -100 -100 -128 -116 -118 -118 -116 -116 -126 -116 -100 -100 -116 -100 -116 -116 -118 -116 -100 -118 -130 -118 -116 -118 -116 -100 -118 -100 -118 -100 -120 -116 -100 -118 -116 -116 -130 -118 -120 -130 -118 -116 -100 -130 -110 -116 -100 -126 -132 -130 -110 -116 -116 -118 -100 -102 -128 -120 -102 -118 -126 -116 -118 -102 -100 -116 -118 -116 -118 -104 -100 -116 -116 -102 -100 -102 -100 -118 -116 -116 -102 -100 -118 -120 -132 -118 -102 -128 -128 -108 -116 -132 -116 -102 -116 -116 -116 -130 -116 -116 -130 -110 -116 -116 -116 -100 -116 -116 -132 -122 -116 -120 -128 -118 -118 -116 -132 -120 -118 -126 -106 -118 -116 -118 -116 -100 -116 -100 -116 -118 -118 -118 -102 -116 -116 -116 -100 -100 -100 -110 -116 -100 -100 -100 -116 -116 -116 -116 -118 -102 -102 -120 -116 -116 -100 -116 -120 -116 -100 -116 -116 -116 -100 -116 -102 -116 -100 -118 -116 -116 -116 -100 -120 -100 -118 -100 -118 -116 -110 -100 -100 -128 -108 -100 -116 -102 -130 -118 -100 -100 -104 -128 -118 -118 -102 -118 -116 -110 -100 -102 -116 -118 -132 -120 -102 -116 -116 -116 -120 -118 -116 -118 -118 -116 -116 -104 -100 -116 -128 -118 -118 -116 -124 -128 -124 -118 -102 -128 -108 -116 -102 -118 -102 -118 -116 -102 -118 -120 -102 -102 -118 -102 -116 -116 -124 -116 -102 -116 -102 -116 -102 -116 -116 -116 -118 -100 -118 -102 -116 -116 -110 -110 -116 -128 -118 -118 -116 -118 -120 -118 -118 -126 -118 -100 -118 -132 -122 -116 -132 -114 -132 -118 -120 -122 -118 -116 -116 -116 -118 -104 -116 -116 -116 -118 -118 -132 -132 -116 -116 -132 -118 -104 -116 -118 -116 -116 -116 -116 -118 -116 -116 -118 -116 -116 -104 -118 -132 -132 -114 -132 -112 -102 -100 -132 -114 -116 -118 -120 -100 -118 -118 -104 -118 -104 -118 -116 -120 -104 -118 -116 -104 -116 -104 -118 -116 -104 -116 -116 -118 -116 -118 -118 -104 -100 -118 -116 -116 -118 -116 -116 -116 -104 -116 -104 -100 -118 -116 -122 -116 -116 -118 -116 -126 -116 -104 -118 -118 -116 -100 -118 -100 -116 -118 -118 -116 -116 -100 -102 -116 -118 -116 -116 -116 -116 -132 -120 -116 -116 -100 -116 -118 -116 -112 -116 -100 -112 -116 -116 -100 -102 -120 -100 -116 -102 -100 -118 -100 -102 -118 -116 -128 -128 -116 -116 -116 -100 -100 -118 -128 -108 -102 -102 -112 -100 -100 -120 -118 -116 -112 -116 -118 -100 -112 -100 -112 -128 -128 -108 -116 -116 -116 -116 -116 -100 -118 -112 -100 -116 -116 -100 -116 -100 -116 -100 -100 -100 -112 -100 -100 -100 -116 -116 -132 -112 -102 -112 -100 -116 -118 -100 -100 -116 -100 -100 -100 -108 -102 -100 -118 -116 -102 -100 -128 -108 -116 -100 -100 -116 -118 -100 -100 -118 -118 -100 -100 -120 -118 -118 -118 -116 -100 -102 -100 -116 -100 -118 -116 -100 -112 -128 -116 -100 -132 -116 -116 -100 -116 -118 -116 -100 -100 -120 -122 -102 -130 -120 -100 -128 -108 -118 -120 -132 -116 -114 -116 -118 -132 -114 -120 -116 -102 -116 -116 -100 -116 -116 -116 -100 -118 -116 -116 -116 -116 -118 -116 -132 -116 -116 -116 -116 -116 -132 -132 -134 -132 -120 -116 -132 -132 -132 -120 -116 -116 -116 -118 -116 -116 -116 -118 -116 -122 -118 -116 -116 -118 -128 -120 -118 -116 -120 -118 -118 -134 -132 -138 -120 -132 -120 -118 -116 -132 -118 -130 -116 -128 -130 -116 -120 -116 -118 -120 -116 -132 -132 -152 -132 -118 -116 -132 -122 -118 -118 -116 -118 -118 -116 -116 -118 -116 -130 -118 -120 -130 -116 -116 -118 -118 -118 -116 -118 -120 -118 -116 -100 -100 -116 -130 -116 -118 -100 -128 -116 -120 -100 -100 -132 -118 -102 -118 -120 -100 -144 -124 -116 -134 -120 -122 -104 -102 -116 -134 -120 -116 -116 -120 -132 -132 -118 -118 -134 -116 -116 -118 -116 -118 -118 -116 -118 -120 -132 -116 -118 -116 -116 -116 -116 -116 -118 -148 -128 -110 -144 -124 -104 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -118 -120 -118 -116 -118 -118 -116 -116 -120 -100 -116 -116 -116 -116 -116 -118 -102 -116 -130 -116 -116 -118 -116 -116 -100 -118 -116 -132 -120 -116 -116 -120 -116 -118 -118 -120 -134 -132 -120 -116 -116 -116 -118 -118 -116 -132 -132 -120 -116 -132 -134 -132 -132 -120 -134 -132 -120 -116 -116 -116 -128 -116 -132 -132 -120 -118 -116 -116 -132 -120 -134 -134 -134 -122 -116 -118 -116 -132 -132 -132 -132 -132 -120 -116 -116 -116 -116 -132 -120 -116 -118 -118 -132 -120 -118 -134 -132 -122 -116 -118 -118 -118 -132 -132 -120 -116 -132 -132 -120 -132 -132 -144 -132 -160 -140 -132 -134 -120 -132 -150 -148 -134 -132 -150 -132 -148 -132 -132 -132 -132 -132 -144 -124 -116 -116 -118 -116 -118 -116 -130 -116 -120 -132 -152 -148 -132 -144 -158 -138 -118 -120 -116 -116 -116 -132 -132 -132 -132 -120 -132 -132 -134 -132 -132 -134 -148 -156 -136 -134 -150 -134 -132 -132 -122 -134 -132 -132 -134 -122 -134 -132 -132 -132 -122 -116 -142 -122 -116 -116 -122 -132 -132 -132 -122 -118 -116 -134 -122 -116 -118 -134 -118 -118 -120 -134 -134 -132 -118 -116 -118 -118 -120 -132 -152 -132 -112 -118 -100 -132 -116 -130 -116 -100 -100 -116 -130 -114 -116 -118 -116 -128 -116 -116 -116 -118 -132 -120 -120 -116 -132 -116 -116 -116 -116 -116 -116 -136 -120 -118 -116 -122 -124 -134 -122 -120 -120 -116 -102 -118 -132 -120 -128 -116 -118 -120 -118 -120 -120 -118 -118 -118 -122 -132 -112 -114 -118 -134 -134 -122 -118 -116 -134 -132 -134 -128 -132 -132 -132 -122 -116 -134 -132 -134 -132 -116 -118 -134 -132 -124 -120 -120 -116 -134 -120 -116 -116 -116 -116 -116 -116 -116 -130 -116 -116 -116 -122 -132 -120 -116 -118 -118 -116 -116 -116 -116 -116 -116 -118 -118 -118 -120 -118 -130 -118 -116 -116 -120 -116 -118 -116 -118 -116 -118 -118 -118 -116 -118 -134 -134 -116 -128 -134 -150 -134 -132 -134 -134 -134 -132 -120 -126 -118 -130 -130 -134 -120 -116 -134 -132 -134 -116 -132 -136 -122 -132 -118 -116 -118 -120 -132 -130 -116 -116 -134 -132 -134 -120 -126 -132 -134 -136 -134 -122 -128 -120 -128 -134 -124 -134 -116 -116 -132 -124 -118 -124 -118 -130 -118 -116 -116 -132 -122 -116 -116 -118 -118 -116 -132 -132 -122 -116 -116 -134 -124 -116 -116 -134 -130 -110 -102 -132 -134 -116 -120 -132 -118 -116 -118 -118 -116 -118 -118 -116 -102 -102 -118 -116 -130 -118 -116 -116 -120 -116 -116 -126 -136 -130 -118 -116 -116 -118 -116 -116 -102 -116 -116 -116 -116 -118 -134 -116 -142 -122 -116 -118 -132 -120 -118 -116 -116 -132 -132 -130 -120 -116 -116 -116 -116 -116 -116 -128 -128 -118 -100 -118 -116 -134 -122 -116 -118 -134 -134 -132 -132 -120 -134 -120 -118 -148 -132 -132 -132 -122 -132 -132 -150 -150 -132 -132 -134 -132 -132 -132 -132 -132 -132 -160 -148 -132 -120 -118 -134 -134 -132 -132 -132 -132 -126 -118 -132 -134 -148 -148 -132 -132 -134 -132 -132 -132 -120 -128 -132 -120 -134 -122 -116 -132 -132 -132 -142 -122 -118 -118 -132 -132 -132 -132 -132 -134 -132 -132 -132 -148 -148 -132 -134 -150 -148 -132 -132 -132 -148 -148 -132 -132 -122 -116 -158 -148 -134 -148 -148 -160 -140 -148 -148 -148 -148 -160 -148 -150 -132 -134 -132 -132 -122 -132 -160 -140 -148 -148 -136 -132 -134 -132 -132 -132 -132 -164 -144 -132 -148 -150 -148 -164 -164 -150 -148 -148 -148 -148 -148 -158 -148 -132 -132 -148 -180 -174 -164 -164 -150 -142 -132 -132 -148 -158 -138 -132 -152 -148 -148 --1 --1 --1 --1 --1 --1 --1 --1 -214 -198 -178 -164 -164 -164 -164 -164 -182 -180 -180 -166 -156 -138 -134 -182 -180 -168 -164 -166 -150 -164 -164 -150 -164 -164 -162 -148 -148 -164 -148 -164 -148 -148 -148 -148 -148 -164 -188 -168 -164 -166 -168 -148 -148 -148 -164 -152 -148 -164 -164 -164 -152 -148 -148 -148 -148 -148 -164 -182 -164 -166 -164 -150 -182 --1 -230 -212 -192 -184 -166 -184 -164 -182 -164 -164 -154 -144 -148 -160 -140 -148 -148 -148 -148 -148 -164 -164 -164 -152 -148 -148 -148 -164 -184 -180 -164 -164 -152 -142 -132 -132 -164 -182 -184 -164 -162 -168 -184 --1 -214 -200 -180 -182 --1 -234 -214 -194 -174 -192 -180 -160 -164 -150 -166 -164 -164 -148 -148 -148 -148 -148 -164 -164 -152 -164 -164 -164 -166 -164 -164 -164 --1 -230 -212 -192 -172 -152 -150 -148 -148 -148 -164 -164 -164 -164 -180 -184 --1 -220 -200 -180 -160 -164 -164 -166 -154 -150 -132 -148 -148 -148 -168 -164 -166 -164 -164 -150 -148 -148 -148 -148 -148 -148 -148 -164 -164 -164 -164 -164 -164 -148 -148 -164 -164 -164 -148 -148 -182 -168 -164 -148 -150 -148 -164 -150 -148 -164 -148 -148 -148 -148 -150 -164 -148 -164 -148 -148 -148 -162 -148 -150 -132 -148 -162 -148 -132 -148 -148 -132 -148 -148 -148 -164 -164 -180 -164 -182 -164 -150 -164 -166 -182 -180 -164 -164 -150 -142 -164 --1 --1 --1 --1 -232 -214 -194 -174 -164 -148 -164 -148 -164 -160 -164 -164 -180 -168 -164 -164 -150 -150 -140 -132 -150 -148 -148 -164 -148 -148 -132 -134 -132 -132 -132 -132 -132 -132 -152 -148 -134 -132 -148 -148 -148 -148 -164 -150 -148 -132 -150 -164 -150 -162 -148 -148 -150 -132 -164 -152 -148 -132 -148 -148 -148 -158 -164 -164 -150 -148 -132 -132 -132 -132 -132 -132 -130 -132 -132 -132 -150 -148 -148 -132 -132 -148 -132 -134 -132 -132 -132 -132 -150 -148 -132 -132 -148 -148 -132 -132 -152 -132 -132 -148 -148 -132 -132 -130 -148 -148 -134 -148 -148 -148 -164 -164 -150 -164 -150 -148 -164 -164 -164 -164 -164 -150 -164 -164 -164 -150 -182 -162 -148 -158 -160 -164 -164 -152 -142 -148 -148 -148 -148 -148 -164 -164 -164 -164 -164 -182 -182 -164 -164 -152 -150 -148 -148 -150 -134 -148 -150 -182 --1 -214 -196 -182 -166 -164 -160 -164 -164 -150 -148 -164 -164 -164 -164 -164 -148 -164 -164 -180 -178 -164 -164 -150 -164 -180 -176 -164 -148 -138 -132 -148 -164 -182 -182 -162 -164 -166 -166 -174 -164 -182 -164 -164 -164 -146 -164 -148 -190 -180 -182 -166 -168 -182 -166 -164 -158 -158 -148 -148 -164 -164 -164 -180 -168 -164 -164 -150 -164 -164 -164 -148 -158 -164 -164 -164 -164 -164 -164 -164 -148 -180 -164 -154 -180 -164 -164 -152 -144 -150 -154 -148 -150 -148 -132 -134 -150 -148 -150 -148 -168 -164 -164 -164 -164 -150 -148 -132 -132 -152 -148 -182 -162 -152 -148 -164 -150 -152 -174 -168 --1 -214 -196 -176 -156 -184 -182 -166 -164 -166 -150 -148 -148 -160 -164 -148 -148 -154 -164 -168 -164 -148 -148 -154 -188 -168 -148 -150 -150 -148 -182 -182 -166 -168 -170 -150 -140 -132 -134 -134 -162 -164 -154 -148 -148 -148 -148 -164 -150 -164 -164 -152 -148 -132 -150 -148 -164 -166 -194 -174 -164 -152 -154 -148 -132 -148 -164 -184 -170 -182 -162 -182 -170 -170 -150 -164 -152 -168 -152 -164 -164 -164 -164 -152 -150 -132 -148 -148 -148 -148 -148 -164 -164 -164 -152 -164 -164 -152 -148 -148 -148 -148 -150 -164 -156 -164 -164 -174 -154 -168 -152 -168 -148 -132 -152 -164 -164 -180 -168 -164 -164 -146 -148 -132 -148 -140 -120 -132 -148 -148 -148 -148 -148 -136 -132 -132 -132 -132 -132 -152 -152 -150 -148 -152 -140 -132 -132 -132 -148 -154 -150 -152 -132 -132 -132 -132 -120 -132 -120 -132 -132 -132 -132 -134 -132 -132 -132 -132 -132 -134 -132 -132 -150 -148 -162 -148 -132 -132 -148 -132 -148 -164 -150 -148 --1 --1 --1 --1 --1 --1 --1 --1 -214 -198 -178 -164 -164 -164 -164 -164 -182 -180 -180 -166 -156 -138 -134 -182 -180 -168 -164 -166 -150 -164 -164 -150 -164 -164 -162 -148 -148 -164 -148 -164 -148 -148 -148 -148 -148 -164 -188 -168 -164 -166 -168 -148 -148 -148 -164 -152 -148 -164 -164 -164 -152 -148 -148 -148 -148 -148 -164 -182 -164 -166 -164 -150 -182 --1 -230 -212 -192 -184 -166 -184 -164 -182 -164 -164 -154 -144 -148 -160 -140 -148 -148 -148 -148 -148 -164 -164 -164 -152 -148 -148 -148 -164 -184 -180 -164 -164 -152 -142 -132 -132 -164 -182 -184 -164 -162 -168 -184 --1 -214 -200 -180 -182 --1 -234 -214 -194 -174 -192 -180 -160 -164 -150 -166 -164 -164 -148 -148 -148 -148 -148 -164 -164 -152 -164 -164 -164 -166 -164 -164 -164 --1 -230 -212 -192 -172 -152 -150 -148 -148 -148 -164 -164 -164 -164 -180 -184 --1 -220 -200 -180 -160 -164 -164 -166 -154 -150 -132 -148 -148 -148 -168 -164 -166 -164 -164 -150 -148 -148 -148 -148 -148 -148 -148 -164 -164 -164 -164 -164 -164 -148 -148 -164 -164 -164 -148 -148 -182 -168 -164 -148 -150 -148 -164 -150 -148 -164 -148 -148 -148 -148 -150 -164 -148 -164 -148 -148 -148 -162 -148 -150 -132 -148 -162 -148 -132 -148 -148 -132 -148 -148 -148 -164 -164 -180 -164 -182 -164 -150 -164 -166 -182 -180 -164 -164 -150 -142 -164 --1 --1 --1 --1 -232 -214 -194 -174 -164 -148 -164 -148 -164 -160 -164 -164 -180 -168 -164 -164 -150 -150 -140 -132 -150 -148 -148 -164 -148 -148 -132 -134 -132 -132 -132 -132 -132 -132 -152 -148 -134 -132 -148 -148 -148 -148 -164 -150 -148 -132 -150 -164 -150 -162 -148 -148 -150 -132 -164 -152 -148 -132 -148 -148 -148 -158 -164 -164 -150 -148 -132 -132 -132 -132 -132 -132 -130 -132 -132 -132 -150 -148 -148 -132 -132 -148 -132 -134 -132 -132 -132 -132 -150 -148 -132 -132 -148 -148 -132 -132 -152 -132 -132 -148 -148 -132 -132 -130 -148 -148 -134 -148 -148 -148 -164 -164 -150 -164 -150 -148 -164 -164 -164 -164 -164 -150 -164 -164 -164 -150 -182 -162 -148 -158 -160 -164 -164 -152 -142 -148 -148 -148 -148 -148 -164 -164 -164 -164 -164 -182 -182 -164 -164 -152 -150 -148 -148 -150 -134 -148 -150 -182 --1 -214 -196 -182 -166 -164 -160 -164 -164 -150 -148 -164 -164 -164 -164 -164 -148 -164 -164 -180 -178 -164 -164 -150 -164 -180 -176 -164 -148 -138 -132 -148 -164 -182 -182 -162 -164 -166 -166 -174 -164 -182 -164 -164 -164 -146 -164 -148 -190 -180 -182 -166 -168 -182 -166 -164 -158 -158 -148 -148 -164 -164 -164 -180 -168 -164 -164 -150 -164 -164 -164 -148 -158 -164 -164 -164 -164 -164 -164 -164 -148 -180 -164 -154 -180 -164 -164 -152 -144 -150 -154 -148 -150 -148 -132 -134 -150 -148 -150 -148 -168 -164 -164 -164 -164 -150 -148 -132 -132 -152 -148 -182 -162 -152 -148 -164 -150 -152 -174 -168 --1 -214 -196 -176 -156 -184 -182 -166 -164 -166 -150 -148 -148 -160 -164 -148 -148 -154 -164 -168 -164 -148 -148 -154 -188 -168 -148 -150 -150 -148 -182 -182 -166 -168 -170 -150 -140 -132 -134 -134 -162 -164 -154 -148 -148 -148 -148 -164 -150 -164 -164 -152 -148 -132 -150 -148 -164 -166 -194 -174 -164 -152 -154 -148 -132 -148 -164 -184 -170 -182 -162 -182 -170 -170 -150 -164 -152 -168 -152 -164 -164 -164 -164 -152 -150 -132 -148 -148 -148 -148 -148 -164 -164 -164 -152 -164 -164 -152 -148 -148 -148 -148 -150 -164 -156 -164 -164 -174 -154 -168 -152 -168 -148 -132 -152 -164 -164 -180 -168 -164 -164 -146 -148 -132 -148 -140 -120 -132 -148 -148 -148 -148 -148 -136 -132 -132 -132 -132 -132 -152 -152 -150 -148 -152 -140 -132 -132 -132 -148 -154 -150 -152 -132 -132 -132 -132 -120 -132 -120 -132 -132 -132 -132 -134 -132 -132 -132 -132 -132 -134 -132 -132 -150 -148 -162 -148 -132 -132 -148 -132 -148 -164 -150 -148 -150 -148 -150 -134 -150 -148 -150 -164 -152 -148 -164 -164 -150 -142 -148 -148 -150 -150 -148 -148 -150 -164 -152 -164 -150 -162 -148 -152 -132 -132 -132 -132 -132 -152 -148 -148 -164 -164 -150 -150 -148 -132 -134 -148 -150 -148 -132 -132 -134 -132 -132 -134 -134 -132 -132 -134 -138 -134 -132 -150 -162 -150 -136 -132 -132 -154 -148 -160 -142 -152 -132 -148 -132 -148 -136 -164 -158 -148 -138 -180 -160 -140 -140 -190 -174 -154 -158 -148 -152 -156 -136 -132 -144 -138 -134 -132 -132 -144 -150 -134 -134 -122 -134 -148 -132 -120 -116 -152 -132 -134 -148 -132 -134 -122 -132 -142 -142 -134 -138 -132 -120 -132 -150 -148 -164 -150 -148 -134 -132 -154 -162 -142 -134 -150 -152 -164 -164 -154 -150 -164 -152 -148 -148 -148 -150 -144 -132 -132 -134 -132 -132 -132 -148 -150 -148 -148 -148 -148 -164 -150 -152 -132 -148 -150 -132 -132 -148 -132 -132 -132 -132 -148 -148 -132 -132 -132 -132 -134 -132 -132 -132 -132 -132 -132 -130 -132 -148 -132 -132 -148 -132 -132 -134 -132 -132 -120 -130 -118 -116 -116 -118 -132 -144 -148 -148 -152 -132 -120 -150 -150 -148 -164 -164 -150 -148 -144 -132 -132 -132 -132 -132 -148 -164 -144 -132 -134 -118 -116 -132 -132 -134 -148 -150 -132 -134 -134 -148 -134 -148 -148 -132 -150 -134 -164 -150 -150 -148 -148 -150 -132 -132 -132 -132 -132 -132 -132 -148 -132 -132 -132 -132 -132 -132 -148 -148 -132 -132 -132 -132 -132 -132 -132 -132 -132 -160 -150 -148 -148 -164 -164 -150 -140 -132 -132 -132 -152 -132 -164 -164 -164 -164 -164 -164 -164 -164 -180 -160 -148 -132 -118 -118 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -164 -164 -152 -148 -148 -148 -148 -134 -132 -122 -128 -116 -116 -132 -132 -148 -132 -132 -132 -122 -120 -144 -132 -132 -132 -122 -132 -132 -132 -122 -150 -132 -122 -116 -132 -132 -132 -122 -132 -120 -120 -116 -116 -132 -120 -118 -120 -118 -116 -116 -132 -132 -132 -144 -132 -132 -132 -132 -132 -120 -116 -118 -118 -128 -116 -128 -116 -118 -116 -128 -116 -132 -132 -132 -120 -116 -118 -132 -120 -118 -132 -120 -132 -120 -128 -118 -118 -118 -118 -116 -128 -116 -132 -132 -132 -120 -116 -132 -132 -132 -132 -122 -116 -132 -132 -132 -132 -130 -132 -132 -120 -116 -116 -118 -116 -150 -148 -132 -132 -132 -132 -134 -132 -132 -132 -120 -132 -130 -132 -142 -132 -134 -132 -122 -116 -118 -132 -132 -134 -132 -148 -136 -134 -132 -132 -120 -116 -132 -132 -132 -120 -132 -132 -136 -130 -118 -130 -120 -142 -132 -120 -116 -116 -118 -128 -132 -134 -132 -134 -134 -132 -132 -134 -132 -134 -132 -118 -132 -134 -120 -134 -116 -118 -118 -116 -116 -116 -116 -116 -116 -132 -132 -138 -122 -116 -116 -126 -116 -116 -116 -116 -132 -132 -134 -120 -118 -116 -132 -132 -134 -120 -116 -116 -116 -116 -132 -120 -116 -132 -132 -120 -134 -120 -132 -132 -120 -116 -116 -116 -116 -128 -118 -132 -120 -116 -116 -132 -132 -122 -116 -132 -134 -132 -132 -132 -160 -160 -140 -132 -132 -132 -134 -132 -132 -122 -134 -120 -136 -134 -132 -120 -118 -116 -132 -132 -132 -120 -116 -126 -134 -134 -132 -130 -116 -116 -134 -132 -132 -132 -160 -150 -132 -132 -148 -160 -158 -150 -134 -134 -132 -132 -148 -132 -134 -134 -158 -152 -132 -122 -132 -148 -132 -134 -122 -116 -118 -116 -130 -116 -118 -118 -116 -116 -116 -116 -126 -116 -116 -118 -132 -124 -118 -118 -116 -116 -134 -132 -120 -116 -134 -132 -122 -116 -116 -118 -118 -116 -116 -116 -118 -116 -132 -132 -120 -116 -118 -116 -116 -116 -116 -116 -116 -120 -116 -116 -134 -120 -116 -118 -132 -132 -122 -116 -116 -116 -132 -130 -116 -132 -134 -132 -120 -116 -116 -118 -132 -120 -132 -132 -148 -148 -132 -132 -120 -116 -132 -132 -132 -120 -118 -116 -132 -132 -120 -116 -116 -116 -116 -116 -116 -118 -116 -116 -116 -132 -148 -134 -132 -132 -132 -132 -134 -132 -132 -148 -132 -132 -132 -132 -158 -148 -148 -132 -132 -132 -132 -132 -132 -132 -152 -152 -150 -132 -134 -132 -132 -132 -148 -132 -132 -134 -132 -132 -134 -132 -132 -142 -132 -132 -134 -132 -132 -120 -118 -116 -132 -132 -132 -132 -132 -134 -134 -120 -116 -116 -116 -116 -116 -132 -132 -132 -134 -132 -132 -132 -132 -132 -120 -118 -132 -132 -132 -134 -132 -132 -120 -132 -120 -134 -132 -132 -132 -134 -122 -116 -116 -132 -132 -132 -132 -132 -132 -132 -132 -134 -120 -116 -116 -132 -132 -130 -132 -132 -120 -118 -116 -116 -118 -132 -132 -132 -120 -116 -116 -132 -132 -132 -148 -148 -160 -148 -148 -134 -132 -132 -130 -132 -132 -132 -132 -134 -122 -132 -132 -132 -132 -132 -132 -132 -122 -116 -132 -132 -132 -132 -120 -116 -148 -150 -136 -132 -132 -132 -160 -140 -134 -138 -132 -152 -148 -132 -132 -134 -132 -120 -134 -164 -150 -152 -148 -148 -132 -136 -148 -148 -158 -138 -132 -148 -132 -132 -132 -132 -148 -132 -132 -134 -132 -132 -132 -132 -148 -158 -138 -148 -164 -164 -150 -148 -148 -132 -132 -132 -122 -116 -132 -144 -132 -132 -160 -148 -162 -142 -132 -134 -132 -132 -148 -132 -132 -132 -132 -134 -164 -164 -150 -160 -160 -164 -150 -158 -148 -134 -132 -132 -132 -134 -132 -132 -148 -148 -148 -158 -158 -148 -148 -132 -148 -148 -132 -132 -132 -120 -118 -116 -116 -116 -118 -132 -132 -120 -116 -116 -128 -132 -120 -116 -128 -132 -132 -132 -148 -132 -132 -132 -160 -140 -132 -132 -132 -122 -118 -118 -116 -116 -118 -132 -132 -132 -134 -148 -132 -132 -120 -132 -132 -132 -130 -116 -132 -132 -132 -120 -132 -132 -120 -118 -118 -134 -132 -132 -132 -132 -120 -116 -118 -132 -132 -134 -132 -162 -150 -134 -124 -118 -132 -148 -150 -132 -132 -120 -118 -132 -132 -132 -134 -122 -116 -132 -122 -132 -132 -120 -116 -118 -134 -122 -132 -132 -132 -132 -132 -118 -116 -116 -116 -118 -116 -118 -118 -132 -152 -134 -120 -118 -116 -134 -148 -132 -132 -132 -132 -132 -120 -116 -116 -116 -132 -132 -132 -120 -116 -116 -116 -116 -118 -120 -118 -116 -116 -128 -116 -118 -132 -132 -120 -118 -132 -132 -134 -132 -148 -132 -132 -132 -134 -134 -132 -122 -116 -132 -132 -130 -116 -116 -116 -126 -132 -132 -120 -116 -132 -148 -132 -132 -132 -132 -148 -132 -132 -132 -134 -132 -132 -132 -132 -148 -132 -132 -132 -122 -118 -132 -132 -132 -132 -132 -132 -132 -148 -132 -148 -132 -130 -132 -122 -120 -132 -132 -134 -130 -116 -132 -120 -116 -116 -132 -132 -132 -132 -120 -118 -132 -134 -132 -134 -132 -132 -120 -132 -132 -132 -132 -132 -132 -132 -148 -148 -154 -136 -132 -132 -120 -126 -118 -116 -116 -116 -132 -132 -132 -130 -116 -116 -116 -116 -128 -126 -118 -132 -132 -132 -136 -136 -124 -118 -132 -122 -116 -118 -116 -116 -116 -134 -120 -132 -120 -116 -116 -116 -116 -126 -134 -134 -132 -120 -116 -138 -122 -116 -118 -132 -132 -120 -118 -116 -128 -134 -116 -128 -118 -102 -100 -118 -102 -122 -130 -118 -116 -102 -118 -116 -100 -104 -116 -118 -118 -134 -114 -100 -100 -116 -100 -100 -116 -132 -120 -118 -104 -100 -100 -128 -108 -130 -128 -116 -128 -132 -118 -128 -118 -132 -134 -132 -116 -116 -118 -104 -132 -132 -122 -102 -130 -118 -118 -132 -132 -124 -120 -102 -122 -132 -114 -116 -102 -116 -132 -134 -118 -116 -132 -122 -118 -132 -122 -128 -132 -122 -132 -122 -116 -128 -108 -116 -116 -102 -118 -132 -122 -116 -116 -102 -100 -116 -120 -132 -114 -100 -120 -118 -120 -100 -102 -116 -130 -110 -114 -132 -116 -118 -132 -112 -132 -116 -120 -118 -104 -132 -130 -110 -116 -118 -104 -118 -134 -132 -112 -116 -120 -116 -104 -122 -104 -126 -106 -118 -112 -118 -120 -116 -118 -132 -116 -128 -120 -104 -102 -102 -116 -124 -132 -132 -124 -104 -124 -120 -116 -102 -114 -120 -116 -118 -104 -116 -118 -118 -116 -116 -118 -120 -132 -124 -104 -116 -104 -118 -130 -122 -132 -124 -120 -120 -104 -122 -132 -116 -116 -116 -120 -132 -118 -118 -116 -118 -116 -118 -116 -116 -130 -130 -132 -116 -132 -116 -128 -118 -118 -128 -116 -116 -104 -118 -120 -116 -132 -128 -120 -132 -122 -116 -116 -116 -116 -128 -132 -132 -132 -118 -120 -116 -116 -116 -116 -118 -116 -132 -134 -118 -132 -118 -102 -122 -116 -118 -118 -118 -102 -116 -118 -118 -104 -120 -122 -132 -120 -134 -118 -106 -128 -116 -118 -132 -142 -132 -134 -120 -128 -116 -102 -118 -102 -116 -100 -114 -116 -118 -118 -122 -132 -120 -118 -130 -122 -120 -118 -134 -116 -118 -132 -114 -116 -116 -132 -118 -124 -122 -124 -104 -128 -116 -122 -118 -128 -120 -118 -118 -118 -118 -116 -134 -132 -120 -134 -114 -116 -118 -118 -104 -116 -104 -118 -116 -118 -118 -104 -116 -116 -116 -122 -120 -118 -116 -100 -118 -116 -118 -132 -118 -116 -118 -100 -116 -128 -116 -116 -116 -116 -118 -118 -132 -120 -102 -116 -116 -132 -116 -120 -102 -118 -102 -112 -100 -118 -132 -132 -122 -116 -116 -122 -102 -132 -124 -104 -118 -116 -114 -100 -104 -102 -124 -118 -130 -120 -116 -118 -120 -104 -116 -120 -116 -124 -104 -116 -124 -118 -102 -134 -118 -120 -132 -122 -132 -122 -122 -132 -114 -118 -128 -116 -118 -134 -142 -122 -120 -118 -116 -116 -118 -118 -122 -122 -116 -116 -124 -108 -102 -116 -120 -128 -130 -132 -116 -116 -132 -122 -118 -116 -106 -130 -124 -120 -120 -110 -116 -128 -116 -106 -118 -116 -132 -120 -116 -118 -116 -108 -132 -116 -132 -124 -122 -118 -132 -122 -118 -116 -116 -118 -118 -116 -100 -118 -122 -116 -118 -132 -122 -118 -124 -114 -116 -120 -116 -118 -116 -116 -118 -122 -118 -116 -132 -120 -132 -122 -132 -120 -116 -116 -116 -118 -120 -118 -116 -116 -116 -118 -116 -118 -116 -118 -116 -116 -118 -112 -116 -116 -116 -118 -118 -102 -102 -116 -116 -118 -100 -100 -102 -118 -116 -100 -116 -100 -116 -116 -110 -116 -110 -102 -116 -102 -116 -116 -116 -102 -100 -118 -118 -116 -118 -116 -102 -116 -102 -110 -118 -116 -116 -100 -116 -118 -116 -100 -116 -100 -118 -116 -118 -100 -100 -100 -118 -100 -116 -116 -130 -110 -116 -100 -100 -100 -116 -118 -112 -130 -118 -116 -100 -116 -102 -100 -116 -102 -116 -100 -100 -122 -100 -116 -128 -108 -122 -102 -112 -100 -100 -100 -116 -112 -116 -118 -100 -100 -112 -100 -116 -116 -100 -102 -118 -128 -108 -118 -116 -116 -110 -100 -118 -102 -110 -116 -100 -110 -116 -122 -102 -100 -100 -118 -116 -102 -116 -100 -116 -110 -118 -118 -116 -116 -102 -116 -116 -116 -102 -116 -100 -116 -100 -118 -118 -120 -116 -100 -100 -130 -110 -100 -116 -100 -116 -116 -116 -134 -116 -116 -100 -100 -118 -100 -100 -116 -116 -100 -116 -100 -118 -118 -118 -118 -116 -102 -110 -116 -116 -100 -118 -118 -102 -118 -116 -126 -106 -100 -116 -128 -122 -102 -116 -116 -100 -100 -118 -100 -100 -128 -108 -100 -128 -108 -102 -100 -102 -130 -128 -116 -116 -104 -102 -100 -116 -118 -118 -116 -100 -118 -110 -116 -116 -116 -122 -102 -120 -118 -102 -122 -118 -100 -118 -110 -120 -100 -124 -104 -120 -116 -116 -104 -116 -116 -128 -122 -128 -116 -102 -116 -100 -102 -104 -122 -116 -100 -102 -110 -100 -118 -102 -120 -118 -116 -116 -116 -116 -104 -118 -100 -122 -116 -118 -120 -118 -120 -118 -110 -116 -122 -102 -120 -118 -100 -100 -118 -120 -120 -116 -116 -116 -102 -116 -116 -110 -100 -116 -116 -116 -116 -132 -122 -128 -116 -118 -116 -100 -102 -116 -100 -100 -116 -118 -102 -118 -118 -116 -116 -132 -118 -102 -116 -100 -102 -118 -116 -118 -118 -116 -118 -118 -102 -124 -118 -118 -118 -130 -110 -118 -116 -102 -100 -124 -104 -100 -102 -118 -102 -102 -116 -118 -116 -130 -126 -118 -118 -122 -126 -106 -118 -100 -100 -118 -122 -102 -118 -128 -122 -116 -100 -106 -100 -116 -112 -102 -118 -100 -102 -100 -110 -110 -116 -116 -100 -102 -116 -100 -100 -102 -102 -116 -110 -120 -116 -102 -102 -100 -100 -102 -100 -100 -120 -116 -116 -116 -100 -100 -100 -116 -128 -108 -116 -116 -112 -116 -116 -116 -100 -118 -116 -118 -116 -100 -116 -130 -110 -116 -116 -116 -116 -128 -112 -116 -116 -100 -116 -116 -116 -118 -116 -116 -112 -100 -100 -100 -116 -116 -116 -100 -100 -128 -116 -116 -116 -100 -116 -116 -100 -116 -116 -116 -100 -100 -116 -100 -116 -116 -116 -116 -100 -118 -118 -100 -116 -112 -118 -100 -118 -100 -116 -118 -128 -108 -116 -100 -116 -118 -116 -116 -116 -116 -112 -100 -116 -116 -116 -116 -116 -100 -100 -100 -100 -116 -116 -100 -100 -116 -116 -100 -118 -100 -100 -116 -116 -100 -100 -116 -116 -128 -108 -116 -100 -116 -116 -116 -116 -100 -100 -116 -116 -100 -112 -116 -116 -100 -100 -116 -100 -116 -116 -100 -100 -100 -116 -100 -100 -130 -116 -116 -116 -100 -116 -112 -100 -100 -116 -116 -100 -118 -116 -116 -116 -116 -116 -116 -116 -116 -118 -116 -128 -116 -116 -118 -116 -130 -110 -100 -116 -128 -108 -118 -100 -100 -116 -116 -116 -118 -100 -116 -116 -100 -116 -118 -100 -116 -100 -116 -116 -100 -100 -122 -102 -116 -116 -100 -118 -100 -100 -116 -116 -116 -116 -116 -118 -118 -116 -128 -116 -116 -100 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -128 -116 -116 -116 -116 -100 -116 -112 -116 -116 -100 -100 -100 -116 -100 -100 -116 -116 -116 -116 -112 -116 -116 -116 -116 -116 -100 -116 -100 -116 -116 -116 -112 -100 -116 -116 -100 -116 -116 -116 -116 -116 -116 -116 -116 -100 -116 -112 -100 -116 -100 -116 -100 -116 -100 -100 -116 -100 -116 -116 -116 -100 -100 -100 -116 -100 -116 -116 -100 -100 -116 -100 -132 -114 -116 -116 -116 -100 -112 -116 -104 -116 -116 -116 -104 -116 -116 -104 -116 -116 -104 -118 -104 -116 -116 -116 -104 -116 -116 -116 -104 -116 -116 -104 -102 -100 -116 -116 -116 -116 -116 -104 -116 -116 -116 -116 -104 -118 -104 -118 -116 -116 -116 -116 -118 -104 -100 -116 -100 -118 -100 -116 -100 -100 -116 -116 -116 -116 -116 -116 -128 -118 -116 -100 -132 -120 -118 -116 -118 -116 -100 -116 -120 -100 -116 -116 -116 -100 -118 -116 -116 -116 -116 -118 -100 -118 -116 -112 -112 -116 -102 -128 -116 -116 -112 -100 -100 -100 -118 -116 -118 -116 -116 -116 -116 -116 -128 -116 -116 -116 -130 -116 -100 -116 -116 -102 -118 -116 -116 -100 -100 -100 -118 -112 -100 -102 -118 -100 -118 -118 -118 -116 -100 -118 -116 -100 -100 -100 -120 -116 -100 -116 -116 -116 -116 -116 -100 -100 -118 -120 -100 -118 -100 -116 -100 -116 -116 -100 -100 -102 -100 -118 -100 -128 -108 -128 -112 -128 -108 -118 -116 -116 -116 -118 -116 -116 -118 -132 -120 -118 -116 -116 -116 -116 -102 -100 -116 -100 -112 -118 -100 -132 -120 -118 -116 -116 -116 -118 -116 -118 -100 -118 -116 -118 -116 -118 -102 -100 -118 -116 -102 -116 -128 -116 -116 -118 -100 -118 -100 -118 -128 -116 -118 -102 -102 -102 -118 -118 -116 -128 -116 -120 -132 -112 -100 -116 -116 -118 -104 -118 -118 -100 -102 -120 -100 -132 -118 -116 -102 -100 -118 -118 -102 -100 -118 -116 -112 -116 -116 -118 -118 -118 -116 -116 -100 -116 -130 -116 -116 -100 -112 -100 -100 -116 -100 -100 -118 -116 -130 -118 -118 -116 -120 -118 -100 -118 -102 -116 -118 -100 -102 -116 -132 -112 -100 -100 -100 -116 -116 -116 -118 -116 -116 -118 -118 -116 -100 -116 -118 -130 -110 -102 -102 -116 -116 -100 -116 -100 -116 -100 -100 -100 -118 -102 -100 -114 -132 -116 -102 -116 -100 -100 -116 -116 -112 -116 -118 -100 -112 -100 -116 -110 -116 -100 -100 -116 -116 -116 -118 -116 -116 -118 -100 -118 -118 -100 -116 -118 -100 -116 -116 -102 -102 -118 -118 -100 -100 -116 -118 -116 -100 -130 -126 -116 -116 -118 -130 -110 -118 -116 -116 -100 -118 -116 -116 -116 -118 -100 -116 -100 -116 -100 -118 -118 -116 -130 -128 -116 -116 -100 -116 -116 -100 -116 -116 -100 -116 -100 -116 -118 -118 -118 -116 -100 -100 -116 -116 -118 -118 -116 -100 -100 -118 -100 -100 -128 -116 -118 -118 -116 -116 -126 -116 -100 -100 -116 -100 -116 -116 -118 -116 -100 -118 -130 -118 -116 -118 -116 -100 -118 -100 -118 -100 -120 -116 -100 -118 -116 -116 -130 -118 -120 -130 -118 -116 -100 -130 -110 -116 -100 -126 -132 -130 -110 -116 -116 -118 -100 -102 -128 -120 -102 -118 -126 -116 -118 -102 -100 -116 -118 -116 -118 -104 -100 -116 -116 -102 -100 -102 -100 -118 -116 -116 -102 -100 -118 -120 -132 -118 -102 -128 -128 -108 -116 -132 -116 -102 -116 -116 -116 -130 -116 -116 -130 -110 -116 -116 -116 -100 -116 -116 -132 -122 -116 -120 -128 -118 -118 -116 -132 -120 -118 -126 -106 -118 -116 -118 -116 -100 -116 -100 -116 -118 -118 -118 -102 -116 -116 -116 -100 -100 -100 -110 -116 -100 -100 -100 -116 -116 -116 -116 -118 -102 -102 -120 -116 -116 -100 -116 -120 -116 -100 -116 -116 -116 -100 -116 -102 -116 -100 -118 -116 -116 -116 -100 -120 -100 -118 -100 -118 -116 -110 -100 -100 -128 -108 -100 -116 -102 -130 -118 -100 -100 -104 -128 -118 -118 -102 -118 -116 -110 -100 -102 -116 -118 -132 -120 -102 -116 -116 -116 -120 -118 -116 -118 -118 -116 -116 -104 -100 -116 -128 -118 -118 -116 -124 -128 -124 -118 -102 -128 -108 -116 -102 -118 -102 -118 -116 -102 -118 -120 -102 -102 -118 -102 -116 -116 -124 -116 -102 -116 -102 -116 -102 -116 -116 -116 -118 -100 -118 -102 -116 -116 -110 -110 -116 -128 -118 -118 -116 -118 -120 -118 -118 -126 -118 -100 -118 -132 -122 -116 -132 -114 -132 -118 -120 -122 -118 -116 -116 -116 -118 -104 -116 -116 -116 -118 -118 -132 -132 -116 -116 -132 -118 -104 -116 -118 -116 -116 -116 -116 -118 -116 -116 -118 -116 -116 -104 -118 -132 -132 -114 -132 -112 -102 -100 -132 -114 -116 -118 -120 -100 -118 -118 -104 -118 -104 -118 -116 -120 -104 -118 -116 -104 -116 -104 -118 -116 -104 -116 -116 -118 -116 -118 -118 -104 -100 -118 -116 -116 -118 -116 -116 -116 -104 -116 -104 -100 -118 -116 -122 -116 -116 -118 -116 -126 -116 -104 -118 -118 -116 -100 -118 -100 -116 -118 -118 -116 -116 -100 -102 -116 -118 -116 -116 -116 -116 -132 -120 -116 -116 -100 -116 -118 -116 -112 -116 -100 -112 -116 -116 -100 -102 -120 -100 -116 -102 -100 -118 -100 -102 -118 -116 -128 -128 -116 -116 -116 -100 -100 -118 -128 -108 -102 -102 -112 -100 -100 -120 -118 -116 -112 -116 -118 -100 -112 -100 -112 -128 -128 -108 -116 -116 -116 -116 -116 -100 -118 -112 -100 -116 -116 -100 -116 -100 -116 -100 -100 -100 -112 -100 -100 -100 -116 -116 -132 -112 -102 -112 -100 -116 -118 -100 -100 -116 -100 -100 -100 -108 -102 -100 -118 -116 -102 -100 -128 -108 -116 -100 -100 -116 -118 -100 -100 -118 -118 -100 -100 -120 -118 -118 -118 -116 -100 -102 -100 -116 -100 -118 -116 -100 -112 -128 -116 -100 -132 -116 -116 -100 -116 -118 -116 -100 -100 -120 -122 -102 -130 -120 -100 -128 -108 -118 -120 -132 -116 -114 -116 -118 -132 -114 -120 -116 -102 -116 -116 -100 -116 -116 -116 -100 -118 -116 -116 -116 -116 -118 -116 -132 -116 -116 -116 -116 -116 -132 -132 -134 -132 -120 -116 -132 -132 -132 -120 -116 -116 -116 -118 -116 -116 -116 -118 -116 -122 -118 -116 -116 -118 -128 -120 -118 -116 -120 -118 -118 -134 -132 -138 -120 -132 -120 -118 -116 -132 -118 -130 -116 -128 -130 -116 -120 -116 -118 -120 -116 -132 -132 -152 -132 -118 -116 -132 -122 -118 -118 -116 -118 -118 -116 -116 -118 -116 -130 -118 -120 -130 -116 -116 -118 -118 -118 -116 -118 -120 -118 -116 -100 -100 -116 -130 -116 -118 -100 -128 -116 -120 -100 -100 -132 -118 -102 -118 -120 -100 -144 -124 -116 -134 -120 -122 -104 -102 -116 -134 -120 -116 -116 -120 -132 -132 -118 -118 -134 -116 -116 -118 -116 -118 -118 -116 -118 -120 -132 -116 -118 -116 -116 -116 -116 -116 -118 -148 -128 -110 -144 -124 -104 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -116 -118 -120 -118 -116 -118 -118 -116 -116 -120 -100 -116 -116 -116 -116 -116 -118 -102 -116 -130 -116 -116 -118 -116 -116 -100 -118 -116 -132 -120 -116 -116 -120 -116 -118 -118 -120 -134 -132 -120 -116 -116 -116 -118 -118 -116 -132 -132 -120 -116 -132 -134 -132 -132 -120 -134 -132 -120 -116 -116 -116 -128 -116 -132 -132 -120 -118 -116 -116 -132 -120 -134 -134 -134 -122 -116 -118 -116 -132 -132 -132 -132 -132 -120 -116 -116 -116 -116 -132 -120 -116 -118 -118 -132 -120 -118 -134 -132 -122 -116 -118 -118 -118 -132 -132 -120 -116 -132 -132 -120 -132 -132 -144 -132 -160 -140 -132 -134 -120 -132 -150 -148 -134 -132 -150 -132 -148 -132 -132 -132 -132 -132 -144 -124 -116 -116 -118 -116 -118 -116 -130 -116 -120 -132 -152 -148 -132 -144 -158 -138 -118 -120 -116 -116 -116 -132 -132 -132 -132 -120 -132 -132 -134 -132 -132 -134 -148 -156 -136 -134 -150 -134 -132 -132 -122 -134 -132 -132 -134 -122 -134 -132 -132 -132 -122 -116 -142 -122 -116 -116 -122 -132 -132 -132 -122 -118 -116 -134 -122 -116 -118 -134 -118 -118 -120 -134 -134 -132 -118 -116 -118 -118 -120 -132 -152 -132 -112 -118 -100 -132 -116 -130 -116 -100 -100 -116 -130 -114 -116 -118 -116 -128 -116 -116 -116 -118 -132 -120 -120 -116 -132 -116 -116 -116 -116 -116 -116 -136 -120 -118 -116 -122 -124 -134 -122 -120 -120 -116 -102 -118 -132 -120 -128 -116 -118 -120 -118 -120 -120 -118 -118 -118 -122 -132 -112 -114 -118 -134 -134 -122 -118 -116 -134 -132 -134 -128 -132 -132 -132 -122 -116 -134 -132 -134 diff --git a/scripts/dly_error_profiles/dly_error_profile_4.dat b/scripts/dly_error_profiles/dly_error_profile_4.dat deleted file mode 100644 index d3b19da5ef7df3c105af202afc0d1dc458a83db4..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_4.dat +++ /dev/null @@ -1,7500 +0,0 @@ -116 -100 -116 -116 -100 -116 -116 -116 -100 -100 -100 -100 -126 -118 -116 -116 -100 -116 -100 -100 -116 -118 -100 -116 -100 -116 -116 -100 -100 -100 -100 -100 -116 -116 -100 -100 -118 -100 -116 -100 -126 -116 -100 -116 -116 -116 -100 -116 -100 -110 -116 -116 -116 -116 -102 -116 -116 -100 -100 -128 -118 -116 -112 -100 -100 -128 -118 -100 -116 -100 -128 -116 -100 -100 -118 -118 -116 -100 -100 -116 -116 -116 -116 -116 -118 -100 -116 -116 -116 -118 -112 -100 -118 -116 -116 -116 -114 -100 -100 -116 -116 -100 -100 -100 -100 -118 -112 -116 -116 -100 -116 -128 -116 -100 -100 -100 -116 -100 -118 -100 -128 -108 -100 -116 -100 -116 -118 -116 -100 -116 -116 -100 -118 -116 -112 -118 -128 -116 -118 -116 -116 -100 -112 -116 -100 -100 -116 -116 -100 -118 -116 -116 -100 -128 -116 -118 -118 -100 -116 -112 -100 -122 -118 -118 -114 -118 -102 -118 -100 -100 -102 -102 -116 -116 -118 -120 -100 -102 -112 -144 -124 -116 -116 -116 -118 -134 -114 -118 -100 -116 -100 -116 -118 -116 -102 -112 -102 -128 -132 -112 -120 -100 -102 -100 -100 -102 -124 -116 -100 -116 -116 -116 -116 -122 -120 -116 -118 -118 -118 -144 -124 -134 -114 -100 -100 -100 -100 -120 -100 -102 -100 -102 -116 -118 -120 -102 -118 -100 -116 -116 -106 -118 -116 -100 -116 -102 -128 -112 -118 -118 -116 -116 -118 -132 -120 -118 -116 -100 -128 -108 -100 -118 -116 -116 -118 -100 -116 -100 -116 -100 -100 -100 -116 -118 -100 -100 -116 -100 -116 -100 -116 -100 -116 -116 -100 -100 -116 -100 -102 -100 -118 -100 -118 -118 -116 -116 -100 -116 -118 -116 -112 -116 -116 -116 -102 -116 -112 -116 -100 -112 -116 -116 -116 -116 -118 -102 -116 -100 -120 -100 -118 -100 -100 -130 -130 -112 -116 -102 -122 -118 -102 -128 -116 -118 -116 -118 -100 -116 -100 -100 -128 -118 -134 -122 -102 -116 -100 -130 -110 -144 -124 -116 -118 -102 -100 -118 -100 -112 -118 -132 -122 -122 -104 -100 -116 -118 -112 -124 -116 -118 -102 -132 -112 -120 -100 -134 -118 -144 -124 -104 -118 -100 -102 -112 -118 -118 -100 -112 -100 -116 -102 -118 -116 -102 -100 -118 -112 -100 -100 -116 -116 -120 -118 -118 -128 -108 -100 -116 -112 -100 -100 -116 -100 -118 -116 -116 -100 -112 -120 -116 -116 -130 -118 -118 -116 -100 -116 -118 -100 -118 -116 -116 -118 -100 -118 -118 -120 -100 -116 -100 -100 -112 -118 -100 -112 -116 -116 -116 -118 -128 -108 -100 -100 -100 -118 -100 -116 -100 -116 -100 -132 -112 -100 -114 -116 -116 -102 -118 -100 -118 -100 -100 -104 -116 -102 -102 -120 -100 -100 -100 -122 -128 -132 -114 -118 -120 -116 -124 -126 -106 -132 -112 -102 -150 -130 -130 -116 -118 -118 -130 -130 -110 -126 -110 -104 -104 -118 -126 -106 -106 -102 -116 -116 -116 -118 -120 -120 -120 -130 -122 -130 -118 -118 -122 -102 -120 -120 -118 -116 -100 -116 -116 -116 -102 -128 -108 -116 -104 -124 -116 -120 -100 -118 -128 -118 -116 -116 -100 -104 -118 -116 -100 -104 -116 -116 -118 -102 -102 -118 -128 -108 -120 -100 -128 -116 -120 -100 -110 -116 -104 -118 -102 -100 -120 -116 -118 -122 -120 -116 -116 -128 -114 -120 -116 -102 -116 -122 -116 -100 -116 -130 -116 -100 -102 -116 -124 -106 -118 -100 -118 -100 -102 -120 -118 -118 -104 -116 -104 -102 -116 -120 -100 -116 -122 -102 -102 -122 -118 -116 -116 -128 -116 -100 -116 -100 -100 -116 -128 -108 -100 -116 -116 -100 -116 -100 -128 -108 -102 -118 -116 -116 -128 -128 -108 -100 -100 -112 -118 -116 -116 -116 -116 -100 -100 -116 -116 -118 -112 -100 -128 -118 -112 -118 -104 -118 -116 -118 -102 -134 -116 -116 -116 -116 -100 -102 -116 -118 -118 -100 -118 -116 -118 -116 -116 -118 -100 -120 -120 -118 -118 -120 -116 -100 -112 -116 -116 -116 -100 -120 -116 -100 -116 -118 -102 -116 -118 -130 -118 -118 -100 -116 -100 -112 -118 -118 -118 -116 -118 -116 -100 -116 -100 -118 -116 -118 -116 -118 -116 -134 -114 -116 -118 -120 -118 -116 -120 -124 -116 -116 -118 -116 -120 -116 -100 -116 -118 -134 -120 -128 -116 -118 -120 -100 -118 -102 -118 -118 -118 -120 -118 -122 -118 -100 -116 -120 -100 -122 -124 -122 -122 -116 -116 -116 -122 -134 -122 -116 -118 -116 -118 -116 -132 -124 -134 -116 -118 -116 -118 -108 -122 -116 -130 -124 -124 -118 -120 -116 -118 -116 -116 -102 -116 -118 -116 -132 -118 -116 -118 -134 -116 -118 -102 -116 -100 -124 -104 -124 -116 -132 -120 -100 -118 -118 -118 -118 -118 -132 -118 -118 -116 -118 -118 -118 -118 -132 -118 -134 -116 -116 -116 -102 -124 -116 -116 -130 -132 -122 -130 -120 -116 -118 -128 -118 -122 -120 -116 -118 -118 -116 -122 -124 -118 -118 -126 -122 -120 -116 -120 -118 -118 -122 -118 -116 -118 -100 -116 -126 -106 -118 -116 -118 -132 -134 -120 -118 -116 -120 -118 -116 -118 -116 -116 -120 -116 -118 -118 -116 -116 -116 -116 -116 -116 -132 -120 -118 -118 -132 -132 -132 -120 -118 -116 -120 -118 -118 -134 -124 -120 -134 -160 -140 -132 -120 -120 -118 -132 -120 -118 -116 -116 -132 -134 -132 -132 -132 -152 -152 -148 -132 -122 -116 -116 -132 -132 -120 -118 -116 -118 -132 -132 -132 -132 -132 -132 -132 -134 -152 -132 -132 -120 -118 -118 -118 -132 -132 -122 -118 -132 -136 -132 -142 -134 -128 -132 -130 -116 -120 -116 -132 -132 -132 -120 -132 -132 -130 -132 -132 -134 -132 -120 -122 -118 -132 -132 -120 -118 -120 -132 -134 -122 -116 -132 -132 -132 -132 -132 -122 -116 -116 -116 -122 -126 -122 -118 -116 -120 -132 -132 -124 -118 -116 -118 -116 -118 -128 -116 -142 -122 -142 -122 -126 -116 -118 -116 -126 -126 -136 -128 -118 -128 -134 -120 -120 -118 -116 -124 -104 -132 -132 -132 -132 -124 -120 -124 -132 -120 -136 -132 -132 -134 -134 -122 -118 -140 -134 -122 -116 -142 -140 -132 -132 -132 -132 -130 -122 -132 -134 -132 -132 -120 -134 -132 -134 -132 -132 -132 -158 -154 -138 -120 -118 -118 -132 -132 -132 -132 -120 -116 -118 -116 -116 -118 -116 -116 -132 -120 -116 -132 -122 -118 -118 -116 -128 -118 -116 -118 -116 -116 -118 -132 -132 -132 -132 -132 -132 -132 -120 -116 -132 -132 -132 -120 -118 -118 -132 -132 -132 -132 -132 -132 -148 -148 -132 -132 -120 -120 -132 -132 -122 -132 -132 -132 -148 -132 -132 -132 -148 -132 -132 -132 -148 -132 -132 -132 -148 -132 -132 -148 -148 -150 -148 -132 -148 -148 -164 -150 -160 -148 -152 -148 -148 -132 -148 -164 -148 -132 -164 -162 -160 -148 -134 -132 -132 -132 -132 -132 -132 -132 -132 -132 -148 -164 -148 -132 -132 -148 -132 -132 -132 -132 -148 -142 -132 -132 -148 -164 -148 -164 -180 -168 -164 -148 -136 -134 -132 -150 -164 -164 -158 -150 -148 -164 -164 -168 -148 -148 -164 -164 -164 -158 -148 -136 -132 -148 -148 -184 -168 -164 -160 -144 -180 -190 -170 -164 -152 -138 -160 -154 -148 -148 -154 -168 -164 -164 --1 --1 --1 --1 --1 -234 -214 -194 -174 -164 -154 -158 -152 -152 -164 -182 --1 --1 --1 -232 --1 --1 --1 --1 -234 -214 -194 -174 -172 -182 --1 -242 -222 -202 -184 -184 -184 -182 --1 --1 --1 --1 --1 --1 --1 --1 -244 --1 -242 -222 --1 -232 -212 -192 -172 -164 -164 -164 -154 -164 -154 -148 -152 -172 -166 -154 -150 -150 -164 -164 -180 -170 -168 -188 -182 -166 -164 -154 -190 -182 -180 -164 -170 -154 -152 -204 -184 -168 -164 -184 -196 -180 --1 -246 -228 -214 -196 --1 -246 -228 -208 -190 -174 -164 -224 -208 -188 -168 -228 -216 -196 -206 -194 -174 -176 -156 -136 -148 -200 -180 -164 -230 -210 -226 -206 -186 -166 -166 -182 -188 -168 -170 -150 -178 -158 --1 --1 --1 --1 --1 --1 --1 --1 -214 -198 -178 -164 -164 -164 -164 -164 -182 -180 -180 -166 -156 -138 -134 -182 -180 -168 -164 -166 -150 -164 -164 -150 -164 -164 -162 -148 -148 -164 -148 -164 -148 -148 -148 -148 -148 -164 -188 -168 -164 -166 -168 -148 -148 -148 -164 -152 -148 -164 -164 -164 -152 -148 -148 -148 -148 -148 -164 -182 -164 -166 -164 -150 -182 --1 -230 -212 -192 -184 -166 -184 -164 -182 -164 -164 -154 -144 -148 -160 -140 -148 -148 -148 -148 -148 -164 -164 -164 -152 -148 -148 -148 -164 -184 -180 -164 -164 -152 -142 -132 -132 -164 -182 -184 -164 -162 -168 -184 --1 -214 -200 -180 -182 --1 -234 -214 -194 -174 -192 -180 -160 -164 -150 -166 -164 -164 -148 -148 -148 -148 -148 -164 -164 -152 -164 -164 -164 -166 -164 -164 -164 --1 -230 -212 -192 -172 -152 -150 -148 -148 -148 -164 -164 -164 -164 -180 -184 --1 -220 -200 -180 -160 -164 -164 -166 -154 -150 -132 -148 -148 -148 -168 -164 -166 -164 -164 -150 -148 -148 -148 -148 -148 -148 -148 -164 -164 -164 -164 -164 -164 -148 -148 -164 -164 -164 -148 -148 -182 -168 -164 -148 -150 -148 -164 -150 -148 -164 -148 -148 -148 -148 -150 -164 -148 -164 -148 -148 -148 -162 -148 -150 -132 -148 -162 -148 -132 -148 -148 -132 -148 -148 -148 -164 -164 -180 -164 -182 -164 -150 -164 -166 -182 -180 -164 -164 -150 -142 -164 --1 --1 --1 --1 -232 -214 -194 -174 -164 -148 -164 -148 -164 -160 -164 -164 -180 -168 -164 -164 -150 -150 -140 -132 -150 -148 -148 -164 -148 -148 -132 -134 -132 -132 -132 -132 -132 -132 -152 -148 -134 -132 -148 -148 -148 -148 -164 -150 -148 -132 -150 -164 -150 -162 -148 -148 -150 -132 -164 -152 -148 -132 -148 -148 -148 -158 -164 -164 -150 -148 -132 -132 -132 -132 -132 -132 -130 -132 -132 -132 -150 -148 -148 -132 -132 -148 -132 -134 -132 -132 -132 -132 -150 -148 -132 -132 -148 -148 -132 -132 -152 -132 -132 -148 -148 -132 -132 -130 -148 -148 -134 -148 -148 -148 -164 -164 -150 -164 -150 -148 -164 -164 -164 -164 -164 -150 -164 -164 -164 -150 -182 -162 -148 -158 -160 -164 -164 -152 -142 -148 -148 -148 -148 -148 -164 -164 -164 -164 -164 -182 -182 -164 -164 -152 -150 -148 -148 -150 -134 -148 -150 -182 --1 -214 -196 -182 -166 -164 -160 -164 -164 -150 -148 -164 -164 -164 -164 -164 -148 -164 -164 -180 -178 -164 -164 -150 -164 -180 -176 -164 -148 -138 -132 -148 -164 -182 -182 -162 -164 -166 -166 -174 -164 -182 -164 -164 -164 -146 -164 -148 -190 -180 -182 -166 -168 -182 -166 -164 -158 -158 -148 -148 -164 -164 -164 -180 -168 -164 -164 -150 -164 -164 -164 -148 -158 -164 -164 -164 -164 -164 -164 -164 -148 -180 -164 -154 -180 -164 -164 -152 -144 -150 -154 -148 -150 -148 -132 -134 -150 -148 -150 -148 -168 -164 -164 -164 -164 -150 -148 -132 -132 -152 -148 -182 -162 -152 -148 -164 -150 -152 -174 -168 --1 -214 -196 -176 -156 -184 -182 -166 -164 -166 -150 -148 -148 -160 -164 -148 -148 -154 -164 -168 -164 -148 -148 -154 -188 -168 -148 -150 -150 -148 -182 -182 -166 -168 -170 -150 -140 -132 -134 -134 -162 -164 -154 -148 -148 -148 -148 -164 -150 -164 -164 -152 -148 -132 -150 -148 -164 -166 -194 -174 -164 -152 -154 -148 -132 -148 -164 -184 -170 -182 -162 -182 -170 -170 -150 -164 -152 -168 -152 -164 -164 -164 -164 -152 -150 -132 -148 -148 -148 -148 -148 -164 -164 -164 -152 -164 -164 -152 -148 -148 -148 -148 -150 -164 -156 -164 -164 -174 -154 -168 -152 -168 -148 -132 -152 -164 -164 -180 -168 -164 -164 -146 -148 -132 -148 -140 -120 -132 -148 -148 -148 -148 -148 -136 -132 -132 -132 -132 -132 -152 -152 -150 -148 -152 -140 -132 -132 -132 -148 -154 -150 -152 -132 -132 -132 -132 -120 -132 -120 -132 -132 -132 -132 -134 -132 -132 -132 -132 -132 -134 -132 -132 -150 -148 -162 -148 -132 -132 -148 -132 -148 -164 -150 -148 --1 -244 --1 --1 --1 --1 --1 -234 -214 -194 -174 -156 -150 -150 -134 -132 -148 -148 -162 -164 -164 -150 -148 -148 -150 -152 -164 -192 --1 -230 -212 -192 -172 -166 -182 -182 -164 -164 -164 -166 -164 -164 -164 -180 -164 -164 -152 -154 -164 --1 -230 --1 --1 -232 -214 -194 -182 -164 -148 -164 -148 -148 -148 -148 -148 -148 -148 -148 --1 -230 -212 -192 -182 -166 -150 -152 -148 -164 -164 -164 -164 -164 -164 -164 -164 -180 -164 -164 -154 -144 -148 -148 -168 -152 -164 -164 -154 -164 -164 -154 -154 -154 -172 -164 -152 -170 -164 -152 -148 -148 -148 -148 -164 -152 -152 -132 -132 -150 -148 -154 -150 -164 -192 -198 -178 -160 -182 -166 -180 -164 -180 -180 -182 -172 -166 -152 -164 -156 -154 -150 -148 -166 -164 -166 -164 -164 -154 -164 -152 -154 -148 -148 -148 -158 -164 -164 -154 -164 -152 -148 -132 -154 -148 -150 -148 -152 -152 -164 -164 -154 -150 -148 -164 -152 -150 -148 -148 -148 -164 -152 -150 -152 -132 -148 -148 -148 -134 -132 -152 -150 -132 -132 -132 -136 -144 -124 -132 -164 -150 -148 -150 -132 -132 -132 -132 -148 -132 -138 -132 -132 -132 -148 -162 -142 -126 -132 -148 -136 -132 -134 -132 -148 -148 -150 -132 -164 -164 -164 -152 -150 -134 -132 -148 -164 -150 -152 -148 -150 -152 -148 -164 -150 -150 -132 -132 -154 -150 -164 -174 -164 -152 -152 -132 -150 -148 -164 -152 -148 -152 -148 -170 -150 -164 -164 -166 -164 -164 -150 -164 -184 -190 --1 -232 -222 -202 -182 -166 -196 -176 -164 -152 -148 -148 -134 -158 -164 -174 -154 -150 -148 -164 -150 -162 -148 -148 -148 -164 -164 -152 -158 -148 -148 -148 -148 -132 -158 -148 -164 -150 -142 -132 -132 -150 -162 -148 -148 -150 -148 -148 -164 -150 -148 -150 -132 -132 -132 -132 -132 -132 -132 -132 -132 -148 -148 -148 -150 -132 -132 -132 -148 -132 -132 -132 -132 -134 -132 -132 -132 -132 -130 -132 -148 -132 -158 -138 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -148 -132 -158 -148 -176 -158 -148 -132 -132 -150 -132 -132 -132 -148 -164 -150 -148 -160 -148 -164 -164 -150 -150 -134 -148 -158 -152 -148 -150 -134 -132 -132 -158 -148 -180 -164 -180 -164 -166 -180 -182 -172 -152 -134 -132 -132 -164 -180 -180 -180 -164 -182 -182 -182 -164 -164 -164 -152 -164 -152 -180 --1 -214 -196 -176 -156 -158 -180 -164 -180 -180 -182 -166 -158 -138 -182 -168 -158 -164 -164 -150 -158 -138 -132 -120 -132 -158 -148 -164 -164 -160 -148 -148 -158 -148 -132 -132 -148 -148 -148 -132 -148 -164 -164 -152 -164 -164 -164 -160 -142 -132 -148 -148 -164 -164 -164 -152 -164 -164 -150 -164 -164 -150 -148 -148 -148 -158 -148 -150 -150 -132 -132 -132 -120 -122 -132 -132 -132 -132 -148 -148 -148 -158 -148 -132 -134 -148 -148 -132 -158 -150 -148 -132 -132 -132 -148 -150 -148 -152 -150 -150 -150 -148 -148 -148 -164 -156 -144 -132 -148 -150 -132 -132 -132 -148 -148 -148 -150 -148 -132 -134 -132 -152 -132 -132 -132 -148 -160 -160 -164 -150 -152 -148 -132 -132 -132 -132 -148 -132 -132 -148 -136 -132 -132 -160 -148 -162 -152 -148 -160 -174 -162 -148 -148 -160 -148 -134 -154 -148 -148 -148 -132 -150 -164 -150 -150 -148 -158 -158 -138 -132 -132 -132 -148 -150 -150 -164 -152 -182 -162 -142 -132 -132 -132 -132 -132 -158 -138 -132 -132 -160 -164 -180 --1 -214 -196 -178 -158 -150 -148 -148 -132 -164 -164 -148 -148 -138 -132 -164 -150 -158 -140 -132 -164 -164 -148 -148 -136 -132 -148 -148 -150 -148 -164 -164 -164 -164 -148 -148 -136 -132 -132 -132 -132 -132 -132 -148 -138 -132 -132 -148 -164 --1 --1 -230 -210 -190 -170 -152 -134 -150 -132 -148 -148 -148 -148 -164 -164 -164 -150 -150 -164 --1 -230 -210 -190 -170 -150 -132 -132 -132 -152 -132 -132 -134 -150 -150 -132 -132 -132 -132 -132 -132 -134 -132 -132 -148 -148 -164 -152 -148 -148 -132 -152 -148 -164 -164 -152 -148 -148 -150 -148 -132 -132 -132 -132 -150 -164 -152 -134 -132 -148 -150 -148 -164 -158 -148 -148 -158 -150 -148 -148 -154 -134 -148 -150 -148 -148 -134 -132 -132 -132 -164 -158 -138 -148 -164 -154 -150 -148 -150 -134 -148 -134 -132 -132 -132 -134 -132 -122 -132 -150 -148 -134 -132 -138 -134 -132 -132 -134 -134 -132 -132 -136 -134 -158 -140 -134 -134 -138 -132 -134 -132 -132 -132 -136 -134 -132 -138 -120 -116 -116 -150 -134 -132 -132 -132 -132 -132 -136 -148 -148 -132 -132 -132 -132 -148 -134 -134 -144 -132 -138 -134 -164 -150 -132 -122 -116 -132 -134 -132 -132 -120 -132 -132 -148 -148 -132 -132 -120 -134 -134 -132 -132 -132 -132 -122 -116 -132 -132 -132 -120 -118 -116 -134 -134 -120 -128 -116 -118 -132 -132 -120 -118 -118 -132 -148 -148 -148 -132 -132 -132 -132 -132 -132 -158 -148 -132 -132 -132 -132 -132 -132 -116 -132 -132 -120 -118 -118 -132 -148 -148 -174 -154 -148 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -148 -132 -120 -132 -120 -116 -132 -132 -132 -134 -132 -148 -132 -132 -132 -132 -132 -134 -132 -138 -132 -132 -132 -138 -132 -120 -132 -134 -148 -148 -132 -132 -132 -140 -134 -132 -148 -160 -148 -152 -152 -132 -132 -132 -134 -148 -152 -132 -132 -132 -132 -152 -132 -148 -132 -132 -132 -152 -148 -152 -132 -132 -148 -150 -148 -148 -128 -132 -132 -120 -118 -132 -132 -132 -132 -132 -132 -132 -120 -116 -116 -128 -132 -132 -120 -134 -120 -116 -116 -132 -132 -132 -122 -118 -132 -120 -132 -122 -132 -132 -132 -122 -120 -132 -132 -132 -132 -122 -116 -126 -116 -132 -132 -132 -132 -132 -132 -148 -132 -148 -132 -132 -132 -132 -132 -132 -132 -148 -132 -132 -132 -148 -148 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -120 -132 -132 -132 -148 -148 -148 -132 -132 -148 -132 -132 -132 -132 -132 -132 -148 -148 -148 -132 -132 -132 -132 -148 -132 -148 -148 -132 -132 -132 -132 -132 -132 -132 -120 -118 -132 -148 -132 -142 -132 -132 -120 -132 -164 -150 -140 -132 -132 -148 -148 -148 -132 -120 -132 -132 -132 -132 -132 -132 -132 -132 -150 -132 -132 -148 -164 -150 -148 -132 -148 -148 -148 -132 -148 -148 -148 -148 -132 -148 -132 -132 -148 -148 -132 -132 -132 -164 -150 -144 -132 -132 -132 -148 -152 -132 -148 -164 -182 -182 -186 -166 -146 -134 -134 -132 -132 -132 -132 -118 -116 -118 -132 -148 -148 -136 -132 -148 -148 -150 -148 -148 -148 -148 -138 -132 -134 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -148 -148 -160 -140 -132 -116 -132 -132 -132 -132 -132 -132 -132 -148 -148 -150 -142 -132 -120 -148 -148 -148 -148 -148 -148 -132 -132 -148 -148 -164 -164 -192 --1 -214 -212 -192 -172 -152 -148 -132 -132 -132 -160 -148 -148 -164 -164 -148 -148 -148 -148 -138 -148 -138 -148 -148 -148 -148 -148 -148 -148 -136 -132 -132 -132 -132 -132 -148 -148 -148 -148 -136 -148 -148 -148 -148 -148 -136 -132 -132 -148 -148 -148 -148 -148 -148 -128 -116 -132 -148 -174 -164 -150 -166 -150 -148 -132 -132 -148 -132 -132 -132 -132 -148 -132 -148 -148 -148 -148 -148 -164 -164 -150 -148 -148 -132 -164 -180 --1 --1 -214 -196 -176 -166 -164 -148 -132 -132 -132 -148 -150 -148 -148 -138 -132 -132 -132 -148 -148 -148 -164 -164 -182 -190 -170 -164 -152 -150 -148 -148 -148 -164 -148 -164 -148 -164 -148 -148 -180 -182 -166 -164 -146 -134 -180 --1 -198 -184 -164 -150 -164 -148 -164 -164 -152 -148 -132 -132 -132 -164 -164 -164 -150 -174 -154 -148 -148 -148 -148 -148 -148 -148 -148 -148 -132 -132 -150 -164 -160 -182 --1 -240 -220 -200 -180 -160 -148 -158 -164 -164 -164 -152 -148 -164 -164 -164 -152 -148 -164 -180 -164 -152 -134 -130 -148 -164 -150 -164 -164 -150 -148 -132 -132 -148 -190 --1 -230 -210 -190 -182 -182 -194 -174 -182 -164 -164 -164 -168 -164 -164 -164 -152 -164 -164 -164 -164 -180 -182 -180 -190 -176 -156 -142 -134 -164 -164 -180 -180 -164 -164 -172 -168 -164 -164 -164 -164 -152 -148 -148 -148 -148 -132 -132 -164 -182 -162 -148 -148 -128 -132 -164 -164 -164 -152 -164 -164 -182 -164 -164 -152 -150 -148 -182 --1 --1 -214 -208 -188 -168 -164 -158 -164 -148 -160 -148 -148 -190 -182 -166 -156 -150 -136 -148 -148 -148 -148 -132 -150 -164 -148 -148 -148 -140 -160 -164 -164 -148 -138 -132 -148 -148 -164 -164 -158 -148 -148 -148 -150 -148 -148 -180 --1 -230 -210 -190 -170 -150 -134 -132 -132 -132 -132 -132 -148 -148 -150 -148 -180 -164 -152 -134 -118 -132 -132 -132 -148 -148 -148 -164 -164 -148 -148 -134 -132 -164 -148 -134 -132 -158 -164 -180 --1 -242 -222 -202 -182 -166 -152 -190 --1 --1 --1 --1 --1 --1 --1 --1 --1 --1 --1 --1 --1 --1 -232 -116 -116 -132 -122 -118 -118 -150 -132 -134 -120 -118 -144 -124 -116 -116 -120 -118 -118 -116 -118 -134 -132 -124 -116 -116 -118 -118 -118 -116 -132 -134 -122 -116 -116 -134 -132 -132 -132 -122 -116 -116 -144 -132 -132 -120 -118 -116 -144 -140 -120 -116 -132 -144 -134 -132 -132 -132 -164 -144 -132 -120 -116 -116 -116 -118 -116 -118 -116 -116 -144 -124 -116 -116 -116 -116 -118 -116 -116 -116 -116 -116 -116 -116 -118 -118 -118 -116 -134 -116 -100 -118 -134 -132 -124 -116 -116 -118 -116 -116 -118 -118 -100 -116 -100 -118 -116 -116 -116 -132 -120 -116 -118 -112 -116 -118 -116 -118 -116 -116 -118 -118 -116 -120 -116 -118 -118 -118 -116 -116 -116 -116 -120 -100 -116 -116 -118 -118 -116 -118 -100 -118 -116 -118 -116 -116 -116 -128 -118 -116 -116 -132 -112 -116 -118 -116 -122 -116 -116 -116 -102 -116 -116 -116 -122 -102 -118 -118 -116 -116 -118 -132 -122 -116 -118 -116 -134 -132 -132 -132 -132 -134 -134 -124 -134 -120 -116 -132 -120 -118 -102 -116 -122 -118 -116 -116 -132 -132 -132 -122 -118 -116 -118 -116 -116 -116 -118 -116 -132 -132 -120 -132 -134 -120 -116 -116 -132 -120 -122 -116 -116 -118 -116 -120 -118 -120 -132 -120 -118 -124 -132 -132 -132 -120 -122 -130 -120 -118 -132 -132 -120 -102 -118 -120 -116 -116 -118 -118 -128 -132 -116 -122 -118 -118 -118 -118 -116 -116 -116 -118 -118 -116 -132 -122 -120 -116 -118 -116 -116 -118 -116 -116 -116 -118 -118 -118 -116 -116 -120 -116 -116 -116 -118 -116 -102 -118 -102 -108 -132 -132 -128 -116 -116 -128 -132 -122 -116 -128 -116 -116 -120 -116 -132 -132 -132 -132 -132 -130 -118 -132 -132 -120 -116 -116 -116 -132 -132 -132 -120 -126 -116 -134 -122 -102 -132 -132 -116 -134 -134 -132 -134 -134 -116 -116 -120 -116 -118 -132 -132 -138 -118 -116 -132 -132 -132 -116 -132 -118 -148 -132 -132 -132 -132 -122 -116 -116 -118 -132 -132 -132 -132 -132 -132 -128 -132 -132 -116 -118 -118 -128 -116 -116 -132 -118 -118 -132 -158 -138 -132 -132 -120 -132 -132 -132 -130 -134 -132 -132 -132 -132 -142 -132 -132 -148 -132 -132 -132 -158 -148 -148 -132 -132 -132 -132 -132 -132 -148 -150 -148 -150 -148 -148 -132 -132 -132 -132 -164 -150 -148 -148 -164 -150 -164 -150 -148 -148 -132 -134 -132 -132 -132 -132 -120 -116 -118 -116 -132 -120 -116 -132 -132 -120 -142 -132 -132 -132 -132 -132 -148 -132 -132 -132 -132 -148 -148 -148 -148 -148 -132 -132 -132 -132 -132 -132 -148 -148 -150 -132 -132 -132 -150 -148 -158 -148 -148 -132 -132 -120 -116 -134 -132 -124 -132 -132 -132 -130 -132 -122 -132 -132 -134 -130 -116 -116 -118 -132 -148 -148 -150 -148 -134 -132 -132 -132 -160 -148 -160 -140 -132 -132 -132 -132 -132 -132 -132 -132 -148 -132 -132 -132 -132 -148 -158 -148 -148 -132 -132 -148 -132 -132 -132 -132 -132 -132 -132 -122 -132 -132 -134 -142 -132 -148 -148 -132 -132 -148 -148 -148 -148 -148 -132 -132 -132 -132 -134 -132 -132 -132 -144 -132 -148 -148 -132 -148 -132 -148 -132 -132 -132 -132 -132 -132 -148 -152 -148 -148 -148 -148 -148 -148 -148 -132 -148 -148 -132 -148 -132 -132 -132 -132 -148 -148 -148 -132 -122 -132 -134 -132 -132 -148 -148 -132 -148 -148 -132 -132 -148 -132 -132 -132 -132 -160 -148 -148 -132 -132 -132 -132 -148 -132 -132 -132 -132 -132 -132 -132 -132 -132 -120 -132 -132 -132 -132 -130 -128 -118 -132 -132 -132 -132 -122 -132 -132 -132 -130 -116 -116 -116 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -152 -148 -132 -132 -132 -134 -132 -132 -120 -132 -122 -130 -152 -132 -132 -124 -132 -132 -132 -132 -116 -128 -118 -132 -132 -120 -122 -132 -132 -122 -116 -118 -132 -132 -132 -124 -122 -122 -134 -132 -132 -122 -118 -116 -118 -132 -120 -138 -132 -132 -132 -132 -132 -132 -122 -138 -120 -118 -132 -122 -116 -116 -118 -118 -116 -132 -134 -132 -132 -132 -132 -134 -132 -132 -122 -130 -132 -132 -132 -132 -132 -132 -134 -132 -132 -122 -118 -132 -132 -134 -132 -150 -152 -148 -150 -152 -148 -148 -148 -132 -132 -132 -150 -132 -132 -132 -132 -132 -164 -144 -132 -134 -132 -132 -150 -166 -166 -164 -152 -144 -134 -148 -164 -164 -164 -154 -152 -148 -148 -148 -148 -168 -164 -164 -154 -150 -130 -150 -160 -166 -166 -164 -164 -194 -174 -180 -166 -168 -202 -182 -164 -164 -164 -164 -150 -148 -148 -150 -150 -148 -160 -148 -164 -150 -164 --1 -214 -198 -180 -160 -180 -182 -182 --1 --1 -232 --1 --1 -230 -210 -190 -182 -166 -164 -164 -160 -182 -180 --1 -240 -220 -200 -180 -160 -148 -180 -164 -164 -164 -152 -164 -152 -164 -180 -164 -152 -148 -134 -180 --1 -240 -220 -200 -180 -182 --1 -230 -210 -148 -150 -148 -148 -148 -164 -180 --1 -214 --1 -224 -206 -186 -166 -146 -148 -150 -148 -148 -148 -164 -164 -148 -132 -148 -138 -148 -190 -180 --1 --1 -228 -208 -188 -168 -150 -164 -148 -150 -148 -158 -182 --1 --1 --1 --1 --1 --1 --1 --1 --1 -240 -220 -200 -180 -160 -140 -148 -164 -164 -164 -152 -148 -148 -148 -164 -164 -164 -164 -146 -148 -164 -148 -164 -148 -164 -148 -148 -150 -138 -148 -148 -164 -180 -168 -164 -164 -182 --1 -214 -196 -176 -168 -192 -172 -164 -164 -182 -176 -164 -180 -180 --1 -232 -212 -192 -184 -168 --1 -232 --1 -240 -222 -214 -194 -180 -180 -164 -148 -134 -134 -164 -164 -154 -164 -182 -164 -154 -164 -152 -164 -182 -166 -148 -148 -152 -148 -148 -164 -164 -148 -182 -166 -174 -164 -172 -180 -182 -166 -156 -138 -150 -164 -148 -132 -150 -132 -158 -148 -150 -148 -148 -148 -148 -148 -180 -170 -164 -150 -150 -148 -132 -148 -164 -164 -164 -160 -148 -164 -164 -164 -162 -164 -164 -166 -150 -182 -162 -164 -164 -184 --1 -230 --1 -242 -222 -202 -182 -164 -152 -148 -148 -148 -148 -166 -154 -190 -172 --1 -214 --1 --1 --1 --1 --1 -232 -214 -194 -174 -186 -166 -180 -164 -166 -164 -178 -158 -152 -164 -172 -182 -162 -164 -164 -192 -176 -184 -182 --1 --1 --1 --1 --1 --1 --1 --1 --1 --1 -230 -210 --1 -234 --1 --1 --1 --1 --1 --1 -182 -164 -148 -132 -132 -160 -140 -164 -164 -150 -150 -164 -164 -184 -180 -160 -164 -178 -158 -148 -148 -164 --1 --1 --1 -222 -202 -182 -166 -170 -164 -164 -164 -164 -182 -164 -180 -164 -182 -164 -168 -182 -164 -164 -164 -152 -164 -164 -152 -164 -154 -164 -164 --1 -216 --1 --1 -220 -200 -180 -160 -164 --1 -218 -204 -184 -166 -164 --1 -230 -210 -190 -170 -174 -180 -182 -180 -164 -184 -172 -168 -164 -162 -164 -164 -164 -182 -164 -154 -164 -146 -164 -148 -148 -164 -164 -182 -182 -168 -182 -170 -168 -182 -178 -164 -164 -154 -164 -152 -154 -152 -152 -148 -164 -164 -180 -184 --1 -232 -212 -192 -172 -152 -164 -164 -148 -152 -132 -148 -132 -160 -164 -164 -164 -164 -152 -150 -152 -152 -148 -148 -132 -148 -166 -164 -164 -164 -164 -164 -164 -164 -164 -152 -164 -164 -152 -134 -148 -148 -148 -148 -148 -152 -148 -148 -148 -148 -148 -158 -148 -134 -148 -148 -148 -158 -164 -158 -138 -132 -132 -132 -148 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -152 -134 -132 -132 -148 -148 -148 -158 -148 -134 -132 -148 -154 -134 -132 -132 -148 -148 -164 -150 -148 -164 -150 -148 -132 -158 -138 -132 -132 -132 -132 -148 -164 -150 -148 -132 -148 -148 -148 -150 -132 -132 -132 -148 -132 -132 -132 -132 -162 -164 -152 -164 -150 -148 -148 -148 -150 -150 -148 -134 -132 -180 -164 -146 -148 -160 -152 -158 -152 -160 -148 -164 -152 -150 -160 -148 -148 -150 -136 -132 -132 -154 -152 -164 -164 -148 -148 -152 -148 -162 -148 -132 -164 -150 -140 -132 -132 -132 -152 -148 -160 -164 -182 -164 -164 -164 -154 -162 -148 -132 -132 -132 -150 -152 -132 -132 -132 -150 -132 -132 -132 -132 -148 -158 -138 -132 -132 -120 -132 -132 -148 -148 -132 -132 -132 -148 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -132 -142 -132 -132 -132 -132 -138 -164 -144 -164 -164 -150 -154 -148 -152 -132 -132 -132 -132 -148 -150 -164 -164 -150 -164 -146 -132 -132 -148 -160 -140 -132 -132 -132 -132 -132 -132 -134 -132 -120 -132 -132 -132 -164 -150 -150 -132 -120 -134 -132 -132 -132 -152 -164 -164 -150 -164 -152 -148 -152 -154 -148 -162 -142 -132 -160 -152 -134 -144 -148 -148 -148 -148 -132 -132 -144 -134 -118 -116 -116 -120 -116 -118 -132 -120 -116 -116 -118 -116 -134 -134 -132 -132 -124 -118 -116 -116 -122 -116 -122 -116 -132 -132 -124 -132 -120 -132 -132 -132 -144 -132 -132 -134 -132 -134 -132 -132 -132 -132 -132 -132 -144 -124 -128 -132 -132 -122 -116 -116 -132 -132 -124 -118 -116 -132 -120 -120 -116 -144 -124 -116 -118 -132 -120 -130 -118 -116 -116 -118 -116 -132 -132 -124 -118 -116 -116 -132 -132 -130 -132 -132 -120 -118 -120 -132 -148 -164 -150 -140 -122 -116 -128 -118 -118 -120 -134 -122 -116 -116 -132 -122 -118 -118 -118 -116 -116 -132 -132 -134 -116 -116 -116 -122 -116 -102 -118 -128 -118 -116 -118 -116 -120 -124 -118 -120 -116 -116 -120 -120 -116 -134 -116 -120 -116 -118 -118 -118 -132 -134 -118 -116 -116 -104 -116 -118 -120 -116 -116 -120 -116 -116 -118 -118 -122 -116 -144 -124 -132 -128 -116 -116 -132 -118 -118 -118 -120 -132 -116 -118 -116 -116 -116 -118 -116 -118 -116 -118 -128 -116 -116 -100 -118 -130 -128 -108 -104 -100 -116 -116 -102 -116 -120 -100 -116 -120 -116 -102 -110 -100 -102 -116 -116 -102 -100 -100 -116 -110 -116 -120 -116 -116 -124 -118 -118 -116 -118 -116 -102 -102 -104 -118 -116 -100 -116 -116 -120 -116 -102 -116 -102 -118 -102 -116 -116 -100 -124 -118 -118 -116 -120 -118 -122 -116 -118 -116 -118 -118 -116 -118 -118 -116 -118 -120 -118 -116 -118 -138 -120 -116 -116 -118 -118 -116 -126 -106 -132 -118 -100 -118 -116 -118 -116 -120 -122 -120 -118 -100 -118 -102 -100 -116 -116 -102 -134 -122 -102 -116 -132 -122 -102 -116 -120 -116 -130 -126 -116 -118 -116 -120 -118 -116 -116 -116 -102 -120 -116 -122 -116 -120 -118 -134 -116 -102 -132 -112 -116 -100 -118 -120 -104 -116 -116 -118 -118 -114 -118 -118 -104 -118 -104 -118 -118 -116 -116 -118 -118 -118 -118 -118 -116 -110 -118 -118 -122 -120 -118 -118 -122 -136 -116 -116 -116 -118 -104 -102 -116 -104 -120 -104 -102 -116 -118 -118 -116 -122 -118 -120 -116 -116 -102 -116 -116 -120 -118 -110 -100 -102 -100 -116 -118 -118 -118 -116 -100 -118 -118 -116 -132 -116 -118 -100 -122 -120 -116 -116 -116 -116 -116 -120 -118 -112 -116 -100 -100 -116 -116 -122 -102 -118 -102 -110 -110 -120 -116 -100 -116 -118 -100 -110 -100 -100 -110 -118 -116 -100 -120 -100 -116 -120 -116 -118 -100 -118 -118 -102 -112 -132 -112 -116 -116 -118 -116 -116 -118 -120 -116 -116 -100 -100 -118 -100 -102 -118 -100 -116 -100 -100 -116 -128 -116 -110 -116 -116 -116 -116 -100 -102 -102 -116 -120 -118 -100 -122 -102 -102 -118 -110 -102 -100 -116 -130 -118 -102 -100 -118 -116 -122 -116 -122 -120 -136 -116 -100 -104 -100 -102 -100 -118 -106 -118 -126 -116 -130 -118 -116 -118 -100 -118 -110 -118 -112 -114 -116 -116 -100 -122 -118 -104 -104 -118 -120 -122 -134 -124 -104 -118 -118 -118 -100 -118 -102 -118 -104 -102 -118 -102 -118 -122 -102 -102 -104 -104 -122 -102 -132 -118 -120 -100 -102 -132 -118 -118 -100 -144 -136 -116 -118 -104 -116 -118 -118 -116 -122 -102 -118 -102 -116 -124 -104 -140 -120 -108 -124 -122 -102 -116 -118 -120 -100 -116 -104 -104 -116 -116 -100 -120 -118 -116 -116 -120 -124 -104 -102 -118 -114 -104 -100 -128 -122 -120 -100 -124 -104 -130 -110 -102 -116 -102 -102 -118 -116 -118 -116 -100 -118 -100 -124 -122 -102 -124 -104 -116 -118 -120 -100 -102 -102 -100 -102 -102 -116 -100 -116 -120 -116 -106 -120 -100 -102 -124 -104 -100 -128 -108 -100 -128 -124 -116 -100 -100 -132 -128 -116 -116 -100 -118 -124 -104 -120 -124 -104 -118 -118 -120 -124 -104 -118 -120 -118 -120 -100 -100 -120 -124 -116 -100 -116 -118 -116 -116 -100 -116 -116 -100 -116 -116 -116 -100 -100 -100 -100 -126 -118 -116 -116 -100 -116 -100 -100 -116 -118 -100 -116 -100 -116 -116 -100 -100 -100 -100 -100 -116 -116 -100 -100 -118 -100 -116 -100 -126 -116 -100 -116 -116 -116 -100 -116 -100 -110 -116 -116 -116 -116 -102 -116 -116 -100 -100 -128 -118 -116 -112 -100 -100 -128 -118 -100 -116 -100 -128 -116 -100 -100 -118 -118 -116 -100 -100 -116 -116 -116 -116 -116 -118 -100 -116 -116 -116 -118 -112 -100 -118 -116 -116 -116 -114 -100 -100 -116 -116 -100 -100 -100 -100 -118 -112 -116 -116 -100 -116 -128 -116 -100 -100 -100 -116 -100 -118 -100 -128 -108 -100 -116 -100 -116 -118 -116 -100 -116 -116 -100 -118 -116 -112 -118 -128 -116 -118 -116 -116 -100 -112 -116 -100 -100 -116 -116 -100 -118 -116 -116 -100 -128 -116 -118 -118 -100 -116 -112 -100 -122 -118 -118 -114 -118 -102 -118 -100 -100 -102 -102 -116 -116 -118 -120 -100 -102 -112 -144 -124 -116 -116 -116 -118 -134 -114 -118 -100 -116 -100 -116 -118 -116 -102 -112 -102 -128 -132 -112 -120 -100 -102 -100 -100 -102 -124 -116 -100 -116 -116 -116 -116 -122 -120 -116 -118 -118 -118 -144 -124 -134 -114 -100 -100 -100 -100 -120 -100 -102 -100 -102 -116 -118 -120 -102 -118 -100 -116 -116 -106 -118 -116 -100 -116 -102 -128 -112 -118 -118 -116 -116 -118 -132 -120 -118 -116 -100 -128 -108 -100 -118 -116 -116 -118 -100 -116 -100 -116 -100 -100 -100 -116 -118 -100 -100 -116 -100 -116 -100 -116 -100 -116 -116 -100 -100 -116 -100 -102 -100 -118 -100 -118 -118 -116 -116 -100 -116 -118 -116 -112 -116 -116 -116 -102 -116 -112 -116 -100 -112 -116 -116 -116 -116 -118 -102 -116 -100 -120 -100 -118 -100 -100 -130 -130 -112 -116 -102 -122 -118 -102 -128 -116 -118 -116 -118 -100 -116 -100 -100 -128 -118 -134 -122 -102 -116 -100 -130 -110 -144 -124 -116 -118 -102 -100 -118 -100 -112 -118 -132 -122 -122 -104 -100 -116 -118 -112 -124 -116 -118 -102 -132 -112 -120 -100 -134 -118 -144 -124 -104 -118 -100 -102 -112 -118 -118 -100 -112 -100 -116 -102 -118 -116 -102 -100 -118 -112 -100 -100 -116 -116 -120 -118 -118 -128 -108 -100 -116 -112 -100 -100 -116 -100 -118 -116 -116 -100 -112 -120 -116 -116 -130 -118 -118 -116 -100 -116 -118 -100 -118 -116 -116 -118 -100 -118 -118 -120 -100 -116 -100 -100 -112 -118 -100 -112 -116 -116 -116 -118 -128 -108 -100 -100 -100 -118 -100 -116 -100 -116 -100 -132 -112 -100 -114 -116 -116 -102 -118 -100 -118 -100 -100 -104 -116 -102 -102 -120 -100 -100 -100 -122 -128 -132 -114 -118 -120 -116 -124 -126 -106 -132 -112 -102 -150 -130 -130 -116 -118 -118 -130 -130 -110 -126 -110 -104 -104 -118 -126 -106 -106 -102 -116 -116 -116 -118 -120 -120 -120 -130 -122 -130 -118 -118 -122 -102 -120 -120 -118 -116 -100 -116 -116 -116 -102 -128 -108 -116 -104 -124 -116 -120 -100 -118 -128 -118 -116 -116 -100 -104 -118 -116 -100 -104 -116 -116 -118 -102 -102 -118 -128 -108 -120 -100 -128 -116 -120 -100 -110 -116 -104 -118 -102 -100 -120 -116 -118 -122 -120 -116 -116 -128 -114 -120 -116 -102 -116 -122 -116 -100 -116 -130 -116 -100 -102 -116 -124 -106 -118 -100 -118 -100 -102 -120 -118 -118 -104 -116 -104 -102 -116 -120 -100 -116 -122 -102 -102 -122 -118 -116 -116 -128 -116 -100 -116 -100 -100 -116 -128 -108 -100 -116 -116 -100 -116 -100 -128 -108 -102 -118 -116 -116 -128 -128 -108 -100 -100 -112 -118 -116 -116 -116 -116 -100 -100 -116 -116 -118 -112 -100 -128 -118 -112 -118 -104 -118 -116 -118 -102 -134 -116 -116 -116 -116 -100 -102 -116 -118 -118 -100 -118 -116 -118 -116 -116 -118 -100 -120 -120 -118 -118 -120 -116 -100 -112 -116 -116 -116 -100 -120 -116 -100 -116 -118 -102 -116 -118 -130 -118 -118 -100 -116 -100 -112 -118 -118 -118 -116 -118 -116 -100 -116 -100 -118 -116 -118 -116 -118 -116 -134 -114 -116 -118 -120 -118 -116 -120 -124 -116 -116 -118 -116 -120 -116 -100 -116 -118 -134 -120 -128 -116 -118 -120 -100 -118 -102 -118 -118 -118 -120 -118 -122 -118 -100 -116 -120 -100 -122 -124 -122 -122 -116 -116 -116 -122 -134 -122 -116 -118 -116 -118 -116 -132 -124 -134 -116 -118 -116 -118 -108 -122 -116 -130 -124 -124 -118 -120 -116 -118 -116 -116 -102 -116 -118 -116 -132 -118 -116 -118 -134 -116 -118 -102 -116 -100 -124 -104 -124 -116 -132 -120 -100 -118 -118 -118 -118 -118 -132 -118 -118 -116 -118 -118 -118 -118 -132 -118 -134 -116 -116 -116 -102 -124 -116 -116 -130 -132 -122 -130 -120 -116 -118 -128 -118 -122 -120 -116 -118 -118 -116 -122 -124 -118 -118 -126 -122 -120 -116 -120 -118 -118 -122 -118 -116 -118 -100 -116 -126 -106 -118 -116 -118 -132 -134 -120 -118 -116 -120 -118 -116 -118 -116 -116 -120 -116 -118 -118 -116 -116 -116 -116 -116 -116 -132 -120 -118 -118 -132 -132 -132 -120 -118 -116 -120 -118 -118 -134 -124 -120 -134 -160 -140 -132 -120 -120 -118 -132 -120 -118 -116 -116 -132 -134 -132 -132 -132 -152 -152 -148 -132 -122 -116 -116 -132 -132 -120 -118 -116 -118 -132 -132 -132 -132 -132 -132 -132 -134 -152 -132 -132 -120 -118 -118 -118 -132 -132 -122 -118 -132 -136 -132 -142 -134 -128 -132 -130 -116 -120 -116 -132 -132 -132 -120 -132 -132 -130 -132 -132 -134 -132 -120 -122 -118 -132 -132 -120 -118 -120 -132 -134 -122 -116 -132 -132 -132 -132 -132 -122 -116 -116 -116 -122 -126 -122 -118 -116 -120 -132 -132 -124 -118 -116 -118 -116 -118 -128 -116 -142 -122 -142 -122 -126 -116 -118 -116 -126 -126 -136 -128 -118 -128 -134 -120 -120 -118 -116 -124 -104 -132 -132 -132 -132 -124 -120 -124 -132 -120 -136 -132 -132 -134 -134 -122 -118 -140 -134 -122 -116 -142 -140 -132 -132 -132 -132 -130 -122 -132 -134 -132 -132 -120 -134 -132 -134 -132 -132 -132 -158 -154 -138 -120 -118 -118 -132 -132 -132 -132 -120 -116 -118 -116 -116 -118 -116 -116 -132 -120 -116 -132 -122 -118 -118 -116 -128 -118 -116 -118 -116 -116 -118 -132 -132 -132 -132 -132 -132 -132 -120 -116 -132 -132 -132 -120 -118 -118 -132 -132 -132 -132 -132 -132 -148 -148 -132 -132 -120 -120 -132 -132 -122 -132 -132 -132 -148 -132 -132 -132 -148 -132 -132 -132 -148 -132 -132 -132 -148 -132 -132 -148 -148 -150 -148 -132 -148 -148 -164 -150 -160 -148 -152 -148 -148 -132 -148 -164 -148 -132 -164 -162 -160 -148 -134 -132 -132 -132 -132 -132 -132 -132 -132 -132 -148 -164 -148 -132 -132 -148 -132 -132 -132 -132 -148 -142 -132 -132 -148 -164 -148 -164 -180 -168 -164 -148 -136 -134 -132 -150 -164 -164 -158 -150 -148 -164 -164 -168 -148 -148 -164 -164 -164 -158 -148 -136 -132 -148 -148 -184 -168 -164 -160 -144 -180 -190 -170 -164 -152 -138 -160 -154 -148 -148 -154 -168 -164 -164 --1 --1 --1 --1 --1 -234 -214 -194 -174 -164 -154 -158 -152 -152 -164 -182 --1 --1 --1 -232 --1 --1 --1 --1 -234 -214 -194 -174 -172 -182 --1 -242 -222 -202 -184 -184 -184 -182 --1 --1 --1 --1 --1 --1 --1 --1 -244 --1 -242 -222 --1 -232 -212 -192 -172 -164 -164 -164 -154 -164 -154 -148 -152 -172 -166 -154 -150 -150 -164 -164 -180 -170 -168 -188 -182 -166 -164 -154 -190 -182 -180 -164 -170 -154 -152 -204 -184 -168 -164 -184 -196 -180 --1 -246 -228 -214 -196 --1 -246 -228 -208 -190 -174 -164 -224 -208 -188 -168 -228 -216 -196 -206 -194 -174 -176 -156 -136 -148 -200 -180 -164 -230 -210 -226 -206 -186 -166 -166 -182 -188 -168 -170 -150 -178 -158 --1 --1 --1 --1 --1 --1 --1 --1 -214 -198 -178 -164 -164 -164 -164 -164 -182 -180 -180 -166 -156 -138 -134 -182 -180 -168 -164 -166 -150 -164 -164 -150 -164 -164 -162 -148 -148 -164 -148 -164 -148 -148 -148 -148 -148 -164 -188 -168 -164 -166 -168 -148 -148 -148 -164 -152 -148 -164 -164 -164 -152 -148 -148 -148 -148 -148 -164 -182 -164 -166 -164 -150 -182 --1 -230 -212 -192 -184 -166 -184 -164 -182 -164 -164 -154 -144 -148 -160 -140 -148 -148 -148 -148 -148 -164 -164 -164 -152 -148 -148 -148 -164 -184 -180 -164 -164 -152 -142 -132 -132 -164 -182 -184 -164 -162 -168 -184 --1 -214 -200 -180 -182 --1 -234 -214 -194 -174 -192 -180 -160 -164 -150 diff --git a/scripts/dly_error_profiles/dly_error_profile_5.dat b/scripts/dly_error_profiles/dly_error_profile_5.dat deleted file mode 100644 index f6454e72b75ae18c155a5907fa2d2d67cb38ada3..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_5.dat +++ /dev/null @@ -1,7500 +0,0 @@ -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -195 -155 -120 -120 -200 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -210 -170 -130 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -195 -155 -200 -205 -195 -155 -120 -120 --1 -120 -120 -120 -120 -195 --1 -120 -120 -120 -195 -195 -155 -120 -120 -120 -195 -195 -155 -240 -200 -160 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -130 -120 -120 -120 --1 -120 -195 -155 -120 -120 -205 -165 -130 -195 -155 -120 -195 --1 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -240 -205 -165 --1 -120 -120 -210 -170 -130 -200 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -200 -160 -120 -210 -170 --1 -120 -130 -195 -200 --1 -120 -120 -120 -120 -200 -160 -120 -200 -160 -120 -200 -195 -195 -155 -120 -120 -120 --1 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 --1 -195 -205 -165 -130 -120 -210 -170 --1 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -240 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -200 -160 -120 -120 -120 -120 -200 -195 -155 -120 -120 -195 -155 -195 -155 -120 -120 -120 -200 -205 -165 -135 -120 -195 -155 -195 -155 -200 -160 -120 -120 -120 -120 -200 -160 -120 -220 -180 -205 -165 -130 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -205 -165 --1 -120 -195 --1 -130 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 -200 -160 -120 -210 -170 -205 --1 -195 -205 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -200 -160 -120 -220 -180 -195 -155 --1 -195 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -210 -170 -205 -165 --1 -120 -240 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -285 -245 -210 -205 -165 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 --1 -120 -120 -120 -120 -250 -210 -170 -130 --1 -120 -120 -120 -210 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 --1 -120 -130 -200 -160 --1 -220 -195 -155 -200 -195 -195 -155 -120 -120 -210 -170 -130 -200 --1 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 --1 -120 --1 -120 -120 -120 -195 -195 -220 -180 -140 -240 -205 -205 -165 -205 -165 -210 -170 -130 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -200 -160 -195 -155 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -200 -205 --1 -135 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -210 -170 -130 -200 -160 --1 -120 -120 -120 -120 -120 -195 -155 -120 -195 -200 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -205 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 --1 -120 -120 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -195 -200 -195 -155 -210 -195 -155 -135 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 --1 --1 -120 -120 -120 -120 -120 -200 -195 -195 -155 -195 -155 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -195 -155 -210 -170 --1 -120 -195 -155 -120 -205 -165 -210 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -200 -160 --1 -120 -120 -120 -120 -120 --1 -120 -120 -120 -135 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -200 --1 -120 -120 -120 -195 -155 -130 -120 -120 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -205 -165 -130 -120 --1 -120 -195 --1 -195 -205 -165 -205 -195 -155 -120 -120 -120 -120 --1 -120 -120 -195 -155 -205 -165 -210 -170 -130 -120 -120 -120 -120 -120 --1 --1 -120 -120 -210 -170 -130 -120 -120 -120 -120 -195 --1 -120 -120 -205 -165 -130 -120 -200 -160 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -200 -195 -155 --1 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -195 -155 -200 -195 -155 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -200 -160 -120 -200 -160 -120 -120 -120 -120 --1 -120 -130 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -195 -155 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -210 -195 --1 -120 -120 --1 -120 -205 -165 -135 -120 -120 -240 --1 -160 -135 -120 -195 -155 -120 --1 -120 -120 -120 -120 -195 --1 -135 -120 -120 -210 -195 -155 -120 -205 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 -195 -155 --1 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -240 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 --1 --1 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -220 -195 -155 -120 -195 --1 -240 -205 -165 -135 -120 -120 -120 -120 -195 -155 -205 -165 -135 -120 -120 -120 -120 -120 -200 -195 -205 -165 -130 -120 -200 -160 -195 -155 -120 -120 -120 -120 -195 -210 -170 -215 -175 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -195 -200 -160 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 -120 -130 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 --1 -120 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -280 -240 --1 --1 --1 -120 -120 -210 -170 -205 -165 -130 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -200 -160 -120 -200 -195 -155 -120 -120 -120 -200 -205 -165 -135 -120 -195 -155 -120 -120 -120 -120 -195 -155 -195 -155 -120 -120 -195 -285 -245 -205 -200 -160 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 --1 -195 -205 -165 -130 -120 -120 -195 -155 -120 -120 -195 -200 -160 -120 -200 -160 -195 -155 -120 -120 -120 -120 -120 -120 -220 -195 -155 -120 -195 -155 -120 -120 -120 -195 -155 -120 -120 -120 -200 -205 -165 -135 -120 -120 -120 -120 -120 --1 -120 --1 -120 -305 -265 --1 --1 -145 -200 -160 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -295 -255 -215 -195 -155 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -130 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 --1 -120 -120 -120 -195 --1 -195 -155 -120 --1 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 --1 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -290 -250 -220 -195 -155 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 -155 -120 -120 -120 -200 -160 --1 -120 -120 -205 -165 -130 -120 -120 -205 --1 -210 -170 -130 -120 -195 -155 -120 -120 -195 -155 -120 --1 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -210 -195 -205 -200 -160 -120 -120 -120 --1 -120 -195 -155 -200 -195 -155 -120 -120 -120 -120 -120 --1 -200 -160 -130 -120 --1 -120 -120 --1 -120 -120 -195 -195 -200 -160 -120 -200 -160 -195 -200 -195 -155 --1 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 --1 -120 -200 -160 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -195 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 --1 -120 -120 -205 -165 -130 -120 -120 -120 -120 -120 -240 --1 -160 --1 -195 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 --1 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -210 -170 -205 -210 -170 -130 -120 -120 -195 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 -120 -120 -120 -200 -160 --1 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 --1 -195 -155 --1 -240 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -195 -155 -200 -160 -240 -210 -170 -205 -165 -130 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -200 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -195 --1 -120 -205 -165 -130 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 --1 -120 -120 --1 -120 -210 -195 -155 -200 -160 --1 -120 -130 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -200 -160 -120 --1 -120 -130 -120 --1 -120 -120 -120 -195 -155 -195 -155 -200 -160 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 --1 -120 -120 -120 -210 -170 -130 -120 --1 -205 -210 -170 -130 -200 -160 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -200 -160 -120 --1 -120 -130 -120 -120 -120 -120 -120 -240 -200 -160 -120 -200 -160 -120 -120 -120 -205 -165 -130 -120 -120 -195 -155 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -210 -170 -205 -165 -130 -120 -210 -170 -280 -240 -205 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -210 -170 -130 -120 -120 -120 -120 -195 -155 -120 -120 -130 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -205 -165 -130 -120 -120 -195 -155 -120 -120 -120 -200 -160 -120 --1 -120 -120 -210 -170 -130 --1 -120 -120 -120 -120 -120 -200 -160 --1 -120 -120 -195 -155 -120 -195 -200 -160 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -205 -165 -135 -120 -195 -155 -120 -120 -120 --1 -120 -120 -195 -195 --1 -195 -155 -120 -120 -120 -120 -120 -195 -155 --1 -195 -155 -120 -120 -120 -120 -120 -200 -195 -155 -120 --1 -120 -120 -120 -240 -210 -170 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -200 -160 -195 -155 -120 -120 -120 -120 -120 -200 --1 -120 -120 --1 -120 -120 -195 -195 -155 -205 -165 -240 -205 -165 -135 --1 --1 -120 -120 -120 --1 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -120 -120 --1 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 -200 -160 -120 -120 --1 --1 -120 --1 -120 -135 -120 -120 -120 --1 -120 -120 -195 -195 -155 -195 -155 --1 -120 -120 -200 -195 --1 -120 -120 -120 -285 -245 -205 --1 -125 -120 -120 -120 -120 -120 -195 -155 -200 -160 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -200 -160 -120 -200 -160 -120 -200 -160 -120 -120 -120 -120 -120 -120 -240 -210 -170 --1 -120 -120 -205 -165 -240 -200 -160 -195 -155 --1 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -195 -200 -160 -120 --1 -120 -195 --1 -230 -195 -155 -195 -195 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -200 -160 -120 -120 -120 -120 -200 -160 -120 -200 --1 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -200 -160 -120 -120 -195 -155 -285 -245 -205 -200 -160 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -210 -170 -130 -200 -160 -240 -210 -170 -205 -200 -205 -165 -135 -120 -120 -120 -120 -195 -155 -120 -120 -200 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 --1 --1 -120 -200 -160 -130 -120 -120 -120 -120 --1 -195 -155 --1 -195 -155 -120 -120 -210 --1 -130 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -205 -165 -130 -120 --1 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 --1 -120 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -200 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -155 -200 -160 -195 -155 -120 -120 -120 -205 -165 -135 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 -120 -120 -120 -205 -165 -210 -170 -130 -120 -120 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 -120 -120 -210 -170 -130 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -130 -195 -155 -120 -120 -120 -120 -195 -155 --1 -120 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -205 -165 -220 -180 -140 -195 -155 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 --1 -120 -120 -205 -165 -130 -195 -200 -195 -155 -200 -160 -195 -200 -160 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 -195 -155 -195 -195 -155 -120 -120 -200 -160 -205 -165 -130 -205 -200 -160 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 --1 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -135 -120 -120 -200 -205 -165 -135 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 --1 --1 -120 -130 -120 -120 -120 -120 -120 -195 -200 -160 -195 -200 -160 -120 -120 -120 -205 -165 -130 -120 -120 -240 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 --1 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -200 -160 -205 -165 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -210 -205 -205 -165 -130 -120 -120 -120 -120 --1 -120 -120 --1 -120 -120 -120 -120 -195 -200 -160 -120 --1 -120 --1 -120 -120 -120 -120 -205 -165 -210 -170 --1 -120 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -195 -200 -160 -195 -155 -120 -120 -210 -170 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -195 -155 -200 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 --1 -120 -120 --1 -120 -130 -120 -120 -195 -200 -160 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 -120 -120 -200 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -205 -165 -135 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 --1 -120 -130 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 -195 -205 -165 -130 -120 -200 -160 -195 -155 -195 -155 -200 -195 -155 -120 -120 -195 -200 -160 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 --1 -195 -195 -155 -195 -155 -120 -120 -120 --1 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -195 -200 -160 -120 -120 -120 --1 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 --1 -120 -120 -120 -195 -155 -195 -155 -120 -120 -195 -155 -195 -205 -165 -130 -195 -155 -120 -195 -155 -120 -120 -120 -195 -195 -155 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -200 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 --1 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 --1 -120 -120 -195 -195 -155 -120 -195 -155 -120 -195 -155 -195 -195 -155 -120 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -205 -195 -155 -120 --1 -120 -205 -165 -135 --1 -120 -120 --1 -195 -155 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -205 --1 -135 --1 -120 -120 -195 -155 -200 -160 -205 -165 -130 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -205 -165 -130 -120 -200 -160 -120 -120 --1 -120 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -220 -195 --1 -200 -160 -120 -200 -160 --1 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -195 -155 -195 -155 -120 -120 -120 -120 -195 -155 -120 --1 -120 -135 -120 -120 -200 -160 -120 -210 -195 -155 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -205 -165 -135 -120 -120 -120 -195 -155 -120 -195 -195 -155 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 --1 -120 -130 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -205 -165 -130 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -195 -155 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -120 -120 -195 -155 -200 -160 -240 -210 -170 -130 -200 -160 -195 --1 -120 -120 -120 -130 -195 -200 -205 -165 --1 -120 -120 -200 -160 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -285 -245 --1 -205 -205 -165 -130 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -200 -195 -155 -120 -120 -195 -155 --1 -120 -120 -195 -155 -120 -120 -195 -200 -160 --1 -120 -120 -195 -200 -160 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -205 -165 --1 -120 -205 -165 -205 --1 -200 -160 -205 -165 -130 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -205 -165 -210 --1 -130 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -195 -155 -130 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -205 -165 -130 -120 -200 -160 -120 -120 -120 -120 -120 -195 -195 -200 -160 -120 -120 -120 -195 -155 -120 -120 -200 --1 -120 -120 -195 -155 -120 -205 --1 -135 -120 -120 -120 --1 -120 -135 -195 -155 -200 -160 -195 -155 -120 -120 -120 -120 -195 -220 -180 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 -155 -120 -250 -210 -170 -130 --1 -210 -170 -205 -165 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -200 -160 --1 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -195 -155 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -200 -160 -120 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -200 -195 -155 -120 -120 -120 -200 -205 -165 -135 -120 -120 -120 -195 -155 -120 -205 -165 -135 -120 -120 -120 -205 -205 --1 -130 -120 -200 -160 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -200 -160 -120 -120 -120 -120 -120 --1 -120 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -195 -155 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -205 -165 -205 -205 --1 -130 -120 -120 -120 -205 -200 -160 -120 -200 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -205 --1 -130 -120 -120 -120 -120 -200 -160 -120 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -195 -200 -160 -195 -155 -120 -120 -200 -160 --1 -120 -120 -120 -200 -160 -120 -200 --1 -120 -120 -120 -120 -120 -120 --1 -210 -170 -130 -120 --1 -120 -120 -205 -165 -135 -195 -155 -200 -160 -195 -200 -160 -120 -120 --1 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -195 -195 -155 -120 -120 -120 -120 -120 --1 -120 -120 -120 -205 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -210 -170 -205 -165 -205 -165 -200 -160 -120 -120 -195 -155 -120 -120 -120 -120 --1 -120 -120 -195 -155 --1 -120 -120 -200 -160 -120 -120 -120 -120 -200 --1 -120 -135 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -195 -200 -160 -195 -155 -120 -120 --1 -120 -120 -200 -160 -120 --1 -120 -120 -200 -160 -120 -200 -160 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -205 -165 -130 -120 -200 --1 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -205 -195 -155 -120 -120 -120 --1 -195 -200 -240 -205 -165 -220 -180 -210 -170 -205 -165 -130 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -195 -200 -195 -155 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 -210 -170 -130 -120 -195 -205 -165 -130 -195 --1 -120 -120 -120 -240 -200 -160 --1 -195 -200 -160 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -200 -160 -120 -200 -160 -195 -155 -120 --1 -120 -120 -120 --1 -195 -155 -120 --1 -120 -210 --1 -130 -135 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 --1 -120 -195 -155 -120 -120 -200 -160 -120 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -120 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -195 -155 -120 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -200 -160 -120 -120 -195 -155 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -200 -160 -195 -155 -195 -155 -120 -120 -195 -200 -160 -205 --1 -205 -165 -135 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 -120 -195 -155 -120 --1 -195 -155 -120 -120 --1 -120 -205 -200 -160 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 -210 -170 -205 -165 -130 -120 -120 -195 -155 -120 -195 -155 -120 -195 -155 -120 -120 -205 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -195 -200 -195 -155 -210 -170 -130 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -195 --1 -120 -120 -195 -155 -120 --1 -120 -120 -205 -165 --1 -120 -120 --1 -195 -200 -160 --1 -120 -120 -195 -210 -195 -155 -120 -120 -205 -200 -160 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -205 -200 -160 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -205 -165 -130 -120 -120 -195 -155 -120 -240 -205 -165 -130 -120 -120 -120 -120 -120 -205 -165 -200 -160 -120 -120 -195 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -120 --1 -195 -155 --1 -120 -120 --1 -120 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 --1 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -195 -195 -200 -160 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -240 -200 -160 -195 -155 -195 -195 -200 -160 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -120 -120 --1 --1 -120 -120 --1 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -195 -155 -120 -120 -120 -120 -195 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -195 -200 -160 -120 --1 -120 -205 -165 -130 -195 -155 -120 -195 -155 --1 -120 -120 -120 -195 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -130 -195 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -195 -155 -195 -195 -200 -195 -155 -200 -195 -155 -120 -120 -120 -120 -120 -195 -155 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -200 -195 -155 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -205 -165 -135 -120 -120 -200 -160 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 -155 -120 -240 -200 -160 -120 -120 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -120 -195 -155 -120 -205 -165 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 -200 -160 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -135 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -200 -160 -120 -200 -195 --1 -120 --1 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -195 -155 --1 -120 -120 --1 -195 -155 -120 -205 -165 -135 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 --1 -120 -205 -165 -130 -205 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 -195 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -120 -120 -195 -200 -160 -120 -200 -160 -120 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 --1 -120 -120 -120 -195 --1 -120 --1 -120 -120 -195 -200 -160 --1 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -120 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 -200 -160 -120 -120 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 -120 -195 -155 -120 -120 -120 -210 -195 -155 -200 -160 -120 -120 -120 -120 -120 -195 -155 -200 -160 -120 -200 -160 -195 --1 -120 -120 -120 -195 -195 -155 -205 -165 -210 -205 -165 -135 -120 -195 -155 -120 -195 -155 -195 -195 -155 -120 -120 -200 -195 -155 -120 -120 -120 -200 -160 -195 -200 -160 -120 -120 -120 --1 -120 -130 -120 -120 -205 -165 -135 -120 -195 -200 --1 -120 -120 -120 -120 -200 -195 -155 -120 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 --1 -120 -130 -120 -120 -195 -205 -165 --1 -120 -135 -195 -155 -200 -160 -120 -120 -195 -155 --1 -120 -120 -120 -195 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -195 -240 -200 -160 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -135 -120 -120 -120 -205 -165 -135 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 --1 -120 -120 -205 -165 -130 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -200 -195 -155 -200 -160 --1 --1 -120 --1 -120 -120 --1 -210 -170 -130 --1 -195 -155 -200 -160 -195 -200 -160 -195 -155 -195 -195 --1 -120 -130 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 --1 -120 -120 -120 -195 -155 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 -195 -195 -200 --1 -120 -200 -160 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -205 -165 -130 -195 -155 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -210 -195 --1 -200 -160 -120 -200 -160 -120 -120 -120 -195 -155 -195 -155 -120 -195 -155 -120 -195 -195 -155 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -200 -160 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -205 -165 -130 -120 --1 -120 -120 -210 -170 -130 -120 -120 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -240 -205 -165 -130 -205 -200 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -195 -155 -195 -195 -155 -120 -120 -120 -120 -120 --1 -120 -120 -210 -170 -130 -120 -120 -240 -210 -170 -130 -120 -120 -120 -200 -160 -195 -155 -195 -155 -120 -120 -120 -120 -195 -195 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -210 -170 -205 -165 -130 --1 -120 -120 -205 -165 -130 -120 -200 -195 -155 --1 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 -155 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -205 -165 -210 -195 -195 -200 -160 -120 -200 -195 -155 -120 --1 -120 -120 -120 --1 -120 -120 -195 --1 -120 -120 -120 -120 -120 -200 --1 -120 --1 -120 -130 -120 -120 -120 -200 -160 -195 -155 -120 -205 -165 -130 -120 -200 --1 -120 --1 -120 -120 -120 -120 -195 -155 -195 -155 -120 -120 -195 -200 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -195 -195 -155 -120 -120 -200 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -210 -170 -130 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -195 -155 -200 -205 -195 -155 -120 -120 --1 -120 -120 -120 -120 -195 --1 -120 -120 -120 -195 -195 -155 -120 -120 -120 -195 -195 -155 -240 -200 -160 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -130 -120 -120 -120 --1 -120 -195 -155 -120 -120 -205 -165 -130 -195 -155 -120 -195 --1 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -240 -205 -165 --1 -120 -120 -210 -170 -130 -200 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -200 -160 -120 -210 -170 --1 -120 -130 -195 -200 --1 -120 -120 -120 -120 -200 -160 -120 -200 -160 -120 -200 -195 -195 -155 -120 -120 -120 --1 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 --1 -195 -205 -165 -130 -120 -210 -170 --1 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -240 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -200 -160 -120 -120 -120 -120 -200 -195 -155 -120 -120 -195 -155 -195 -155 -120 -120 -120 -200 -205 -165 -135 -120 -195 -155 -195 -155 -200 -160 -120 -120 -120 -120 -200 -160 -120 -220 -180 -205 -165 -130 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -205 -165 --1 -120 -195 --1 -130 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 -200 -160 -120 -210 -170 -205 --1 -195 -205 -200 -160 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -200 -160 -120 -220 -180 -195 -155 --1 -195 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -210 -170 -205 -165 --1 -120 -240 -205 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -285 -245 -210 -205 -165 --1 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 --1 -120 -120 -120 -120 -250 -210 -170 -130 --1 diff --git a/scripts/dly_error_profiles/dly_error_profile_6.dat b/scripts/dly_error_profiles/dly_error_profile_6.dat deleted file mode 100644 index 6a51e6742c7f16b607ddce6262a4b0d442e5110b..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_6.dat +++ /dev/null @@ -1,7500 +0,0 @@ -401 -405 -403 -400 -399 -397 -401 -399 -393 -393 -393 -391 -395 -393 -391 -389 -393 -402 -400 -398 -396 -394 -392 -390 -388 -386 -384 -382 -379 -378 -376 -374 -372 -370 -363 -362 -362 -362 -366 -364 -362 -360 -358 -355 -354 -352 -350 -348 -352 -350 -348 -344 -344 -342 -340 -344 -342 -340 -338 -336 -341 -339 -335 -335 -333 -331 -329 -327 -325 -323 -326 -331 -341 -339 -337 -335 -332 -331 -329 -321 -321 -321 -321 -319 -317 -315 -313 -311 -309 -306 -305 -303 -301 -299 -297 -295 -300 -298 -296 -294 -292 -290 -288 -286 -284 -288 -284 -282 -280 -278 -282 -280 -278 -276 -274 -272 -270 -271 -271 -271 -269 -267 -265 -263 -267 -265 -263 -261 -259 -257 -255 -253 -256 -252 -252 -250 -248 -246 -244 -242 -246 -244 -242 -240 -238 -242 -240 -238 -236 -234 -232 -229 -228 -226 -224 -228 -221 -220 -218 -216 -209 -216 -216 -214 -212 -210 -208 -206 -204 -202 -200 -204 -197 -197 -197 -196 -194 -199 -197 -195 -193 -191 -189 -187 -185 -183 -181 -185 -183 -181 -179 -177 -175 -173 -171 -169 -174 -172 -170 -168 -166 -164 -162 -160 -158 -156 -152 -150 -150 -150 -150 -148 -146 -144 -142 -140 -138 -142 -140 -132 -132 -132 -138 -136 -134 -132 -130 -128 -132 -130 -128 -126 -130 -128 -126 -124 -122 -120 -118 -116 -114 -117 -115 -106 -112 -143 -142 -142 -140 -138 -136 -134 -132 -130 -124 -124 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -111 -104 -104 -104 -103 -107 -105 -103 -107 -105 -103 -107 -104 -103 -108 -106 -104 -108 -106 -111 -104 -104 -104 -109 -107 -105 -103 -108 -106 -104 -107 -110 -106 -104 -110 -108 -105 -104 -108 -106 -104 -109 -107 -105 -103 -107 -107 -107 -107 -106 -104 -109 -107 -105 -103 -107 -105 -103 -108 -105 -104 -106 -104 -107 -104 -103 -107 -105 -108 -103 -103 -103 -103 -110 -108 -106 -110 -104 -104 -107 -106 -104 -101 -106 -104 -109 -102 -102 -102 -102 -109 -109 -108 -106 -104 -108 -106 -104 -108 -107 -107 -107 -107 -105 -103 -107 -105 -103 -106 -104 -109 -102 -102 -108 -106 -102 -105 -103 -109 -107 -105 -109 -106 -105 -103 -108 -104 -107 -104 -103 -107 -111 -102 -102 -108 -108 -107 -105 -103 -105 -103 -107 -118 -116 -114 -112 -110 -108 -106 -104 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -103 -109 -107 -105 -103 -107 -105 -106 -107 -107 -107 -105 -103 -106 -104 -108 -106 -104 -102 -106 -104 -108 -106 -104 -102 -106 -103 -108 -102 -102 -108 -106 -104 -102 -106 -104 -107 -105 -103 -107 -105 -108 -102 -102 -108 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -105 -105 -103 -108 -106 -104 -102 -107 -106 -106 -106 -105 -103 -107 -105 -103 -107 -105 -103 -108 -112 -102 -102 -109 -109 -108 -106 -104 -102 -107 -105 -103 -106 -105 -110 -108 -106 -104 -102 -107 -105 -109 -105 -111 -121 -119 -117 -115 -113 -111 -107 -106 -103 -101 -105 -103 -107 -105 -103 -106 -104 -102 -107 -105 -110 -107 -106 -103 -108 -106 -103 -102 -106 -104 -109 -107 -105 -103 -107 -105 -103 -108 -106 -104 -107 -106 -104 -108 -105 -103 -101 -105 -103 -107 -105 -103 -108 -106 -104 -107 -112 -101 -107 -107 -107 -106 -104 -106 -106 -106 -106 -105 -109 -107 -105 -108 -106 -104 -109 -107 -105 -103 -108 -106 -103 -108 -106 -104 -102 -104 -108 -107 -105 -103 -108 -106 -110 -103 -103 -103 -102 -107 -105 -109 -104 -104 -109 -106 -103 -106 -104 -106 -105 -105 -105 -104 -109 -107 -105 -108 -106 -106 -106 -106 -105 -109 -106 -102 -102 -106 -104 -102 -106 -104 -110 -108 -106 -104 -108 -106 -104 -107 -105 -103 -106 -104 -108 -106 -104 -109 -107 -104 -102 -107 -105 -103 -109 -111 -103 -108 -108 -113 -122 -120 -118 -116 -114 -112 -110 -100 -106 -106 -106 -106 -104 -108 -106 -104 -109 -106 -105 -102 -106 -104 -108 -106 -104 -102 -107 -104 -103 -106 -110 -107 -107 -107 -106 -106 -104 -108 -106 -104 -109 -107 -103 -103 -106 -109 -102 -102 -108 -106 -104 -108 -107 -107 -107 -106 -104 -108 -113 -122 -119 -118 -116 -114 -112 -110 -108 -106 -104 -102 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -106 -104 -107 -105 -103 -107 -105 -109 -112 -102 -108 -108 -108 -106 -104 -108 -112 -104 -104 -104 -104 -108 -106 -104 -110 -108 -106 -104 -109 -107 -105 -109 -113 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -102 -105 -103 -103 -103 -109 -107 -105 -102 -107 -105 -103 -107 -105 -103 -106 -104 -102 -107 -103 -107 -105 -108 -106 -104 -102 -107 -105 -103 -107 -105 -108 -106 -104 -102 -107 -105 -103 -107 -105 -103 -106 -111 -102 -102 -108 -108 -106 -104 -102 -107 -105 -103 -107 -112 -121 -119 -117 -115 -113 -111 -109 -107 -105 -109 -107 -105 -108 -106 -104 -108 -106 -104 -109 -107 -105 -103 -106 -105 -103 -107 -105 -108 -106 -104 -109 -107 -106 -106 -105 -103 -107 -105 -103 -108 -106 -104 -107 -105 -103 -106 -104 -107 -105 -105 -105 -105 -103 -107 -105 -109 -121 -119 -116 -115 -112 -108 -107 -111 -105 -108 -106 -107 -112 -104 -107 -105 -103 -108 -106 -104 -107 -105 -109 -106 -104 -102 -107 -105 -103 -107 -104 -103 -107 -105 -110 -108 -106 -104 -109 -107 -105 -108 -106 -104 -102 -106 -104 -108 -105 -105 -105 -104 -108 -106 -104 -107 -102 -102 -108 -125 -123 -121 -119 -117 -115 -113 -111 -109 -107 -105 -108 -120 -118 -116 -114 -112 -110 -108 -106 -110 -102 -102 -108 -108 -106 -104 -106 -105 -108 -106 -104 -108 -106 -103 -102 -106 -110 -106 -104 -109 -106 -104 -108 -106 -102 -108 -106 -104 -109 -107 -104 -103 -106 -110 -121 -119 -115 -115 -113 -111 -109 -107 -111 -104 -104 -104 -103 -109 -107 -105 -103 -106 -104 -103 -103 -103 -107 -105 -108 -106 -104 -108 -106 -104 -106 -104 -107 -101 -101 -107 -105 -103 -106 -110 -102 -102 -108 -108 -107 -105 -103 -108 -106 -104 -108 -106 -104 -102 -106 -104 -108 -106 -104 -109 -107 -105 -109 -119 -117 -115 -113 -111 -109 -107 -104 -103 -108 -106 -102 -108 -113 -105 -105 -105 -103 -107 -105 -103 -108 -106 -104 -108 -106 -110 -120 -118 -110 -110 -110 -110 -108 -106 -110 -106 -106 -104 -108 -106 -102 -107 -105 -102 -108 -106 -104 -108 -104 -104 -106 -104 -108 -106 -104 -102 -105 -104 -104 -104 -106 -104 -107 -105 -103 -108 -109 -105 -103 -107 -105 -103 -107 -105 -103 -107 -104 -103 -106 -104 -107 -105 -104 -108 -105 -104 -107 -106 -106 -106 -105 -103 -107 -105 -103 -106 -104 -108 -107 -107 -107 -107 -105 -109 -107 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -104 -104 -107 -105 -103 -107 -105 -103 -108 -106 -103 -108 -106 -110 -103 -103 -103 -102 -107 -105 -103 -106 -104 -102 -107 -105 -103 -106 -103 -103 -103 -103 -107 -123 -121 -119 -117 -115 -113 -111 -109 -107 -105 -103 -107 -105 -102 -108 -106 -104 -108 -104 -102 -107 -105 -102 -108 -106 -104 -108 -106 -104 -102 -104 -108 -106 -102 -102 -107 -105 -103 -108 -106 -104 -108 -106 -104 -109 -107 -105 -110 -105 -105 -104 -107 -105 -103 -106 -104 -109 -107 -105 -103 -107 -105 -107 -105 -103 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -108 -106 -104 -102 -106 -104 -109 -107 -105 -103 -106 -105 -103 -107 -105 -103 -108 -106 -104 -102 -106 -109 -102 -102 -102 -108 -106 -104 -107 -105 -103 -107 -105 -110 -106 -106 -106 -106 -105 -108 -106 -104 -102 -107 -105 -103 -107 -105 -109 -105 -105 -103 -107 -105 -110 -104 -104 -104 -109 -105 -109 -112 -118 -116 -114 -112 -110 -108 -106 -104 -107 -105 -103 -107 -105 -103 -107 -105 -108 -102 -107 -106 -104 -106 -104 -102 -107 -105 -103 -106 -104 -102 -106 -104 -109 -107 -105 -103 -108 -104 -104 -107 -105 -103 -107 -104 -103 -107 -105 -109 -104 -104 -103 -108 -106 -104 -102 -107 -104 -102 -107 -105 -108 -103 -103 -107 -105 -103 -106 -104 -106 -108 -106 -104 -108 -106 -104 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -106 -104 -108 -102 -102 -108 -106 -104 -102 -106 -104 -102 -105 -103 -107 -105 -109 -107 -105 -103 -107 -112 -106 -106 -106 -104 -102 -105 -110 -106 -106 -104 -109 -113 -105 -105 -105 -103 -106 -104 -109 -105 -105 -103 -107 -105 -103 -106 -104 -110 -107 -113 -104 -104 -104 -104 -103 -106 -104 -100 -105 -103 -108 -105 -104 -108 -106 -106 -106 -106 -104 -107 -105 -109 -107 -105 -108 -106 -123 -123 -123 -119 -117 -115 -113 -111 -109 -107 -105 -103 -108 -106 -104 -107 -105 -103 -106 -104 -104 -104 -104 -102 -108 -106 -104 -109 -106 -104 -103 -106 -110 -105 -105 -105 -104 -108 -106 -102 -106 -105 -103 -107 -105 -103 -108 -106 -104 -108 -106 -104 -102 -105 -107 -105 -103 -108 -106 -104 -102 -105 -103 -107 -105 -103 -105 -103 -106 -104 -102 -106 -104 -102 -107 -105 -103 -107 -105 -103 -107 -110 -102 -102 -108 -108 -107 -105 -108 -106 -106 -106 -106 -105 -103 -108 -106 -104 -107 -101 -108 -106 -104 -102 -106 -104 -106 -103 -102 -106 -104 -102 -105 -106 -106 -105 -103 -107 -105 -103 -107 -105 -103 -109 -107 -105 -103 -108 -106 -104 -102 -105 -103 -108 -106 -104 -102 -105 -109 -102 -102 -109 -108 -106 -104 -108 -106 -104 -108 -104 -108 -106 -104 -102 -105 -102 -102 -102 -102 -107 -105 -103 -108 -106 -104 -109 -107 -105 -103 -108 -106 -104 -108 -105 -104 -108 -105 -104 -110 -108 -103 -103 -109 -107 -105 -103 -107 -105 -108 -119 -117 -113 -118 -118 -118 -118 -117 -121 -119 -117 -113 -105 -105 -105 -105 -103 -108 -105 -103 -107 -105 -103 -107 -105 -103 -109 -107 -105 -103 -105 -105 -102 -106 -104 -102 -106 -104 -107 -105 -103 -106 -104 -102 -106 -104 -102 -105 -103 -107 -104 -103 -107 -104 -104 -104 -104 -103 -107 -104 -103 -103 -102 -108 -106 -110 -107 -106 -104 -103 -107 -105 -103 -108 -106 -104 -102 -107 -105 -103 -105 -103 -103 -103 -103 -107 -105 -103 -101 -106 -104 -102 -105 -108 -105 -104 -108 -106 -104 -102 -106 -104 -102 -107 -104 -103 -108 -104 -102 -105 -103 -107 -106 -106 -106 -106 -104 -110 -108 -106 -104 -102 -105 -103 -107 -106 -103 -102 -105 -103 -108 -106 -104 -102 -105 -103 -101 -106 -104 -102 -106 -104 -107 -105 -103 -106 -104 -107 -105 -103 -107 -112 -107 -106 -104 -108 -106 -102 -106 -104 -102 -105 -103 -107 -120 -120 -120 -120 -125 -142 -140 -138 -131 -131 -131 -130 -128 -126 -123 -122 -118 -123 -121 -119 -117 -114 -113 -111 -109 -102 -102 -108 -107 -105 -103 -106 -104 -109 -107 -103 -103 -106 -112 -107 -107 -104 -109 -107 -105 -103 -106 -104 -109 -107 -105 -103 -106 -104 -102 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -106 -104 -109 -107 -105 -103 -105 -104 -104 -104 -108 -106 -109 -104 -104 -103 -107 -105 -103 -106 -104 -109 -103 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -109 -101 -101 -107 -107 -105 -103 -107 -105 -103 -106 -109 -121 -121 -121 -121 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -109 -107 -105 -103 -106 -104 -102 -106 -103 -108 -107 -105 -106 -104 -108 -103 -103 -109 -107 -105 -109 -105 -105 -105 -105 -104 -102 -106 -103 -102 -106 -104 -102 -107 -104 -103 -107 -105 -103 -108 -106 -104 -109 -107 -105 -103 -107 -105 -109 -107 -105 -110 -113 -106 -106 -106 -105 -103 -107 -105 -108 -106 -103 -107 -105 -109 -107 -105 -103 -106 -111 -106 -106 -105 -103 -107 -111 -104 -104 -104 -103 -107 -105 -103 -108 -106 -104 -102 -107 -104 -103 -105 -103 -101 -105 -109 -104 -104 -103 -107 -105 -103 -106 -104 -102 -105 -103 -107 -105 -107 -105 -103 -107 -105 -103 -107 -105 -103 -108 -103 -103 -103 -109 -109 -107 -105 -103 -108 -106 -104 -107 -105 -103 -107 -105 -103 -101 -105 -103 -107 -105 -103 -107 -105 -103 -107 -111 -105 -110 -104 -104 -103 -107 -104 -107 -105 -104 -106 -104 -108 -105 -104 -107 -105 -103 -108 -106 -104 -109 -112 -105 -105 -105 -104 -108 -106 -104 -102 -106 -104 -107 -105 -109 -107 -105 -103 -107 -105 -109 -107 -105 -103 -108 -106 -104 -106 -104 -103 -107 -105 -103 -108 -106 -108 -106 -111 -106 -106 -105 -103 -106 -104 -106 -104 -102 -107 -105 -103 -105 -103 -108 -106 -104 -107 -105 -103 -108 -106 -104 -108 -106 -104 -102 -107 -105 -109 -107 -105 -102 -107 -105 -110 -103 -103 -109 -108 -106 -104 -109 -107 -109 -108 -105 -103 -108 -106 -104 -109 -106 -105 -103 -107 -105 -103 -107 -105 -109 -107 -105 -103 -106 -104 -108 -106 -104 -110 -108 -106 -104 -109 -107 -105 -109 -107 -105 -108 -113 -123 -120 -119 -117 -115 -113 -111 -109 -107 -105 -103 -107 -103 -106 -105 -103 -107 -104 -103 -107 -105 -103 -107 -105 -103 -107 -102 -102 -108 -108 -108 -106 -104 -102 -107 -107 -107 -106 -110 -108 -106 -104 -108 -106 -104 -102 -107 -105 -108 -106 -104 -108 -106 -104 -107 -105 -103 -107 -106 -104 -108 -106 -102 -107 -105 -110 -106 -104 -102 -106 -104 -108 -106 -104 -109 -107 -105 -109 -106 -104 -108 -106 -104 -110 -108 -106 -109 -119 -117 -115 -113 -111 -109 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -104 -102 -107 -105 -110 -101 -107 -107 -105 -103 -101 -104 -102 -108 -106 -102 -108 -106 -104 -109 -113 -123 -121 -119 -117 -112 -112 -111 -109 -107 -105 -108 -107 -105 -103 -106 -104 -107 -104 -104 -107 -105 -103 -106 -104 -107 -105 -103 -106 -105 -105 -105 -110 -108 -106 -110 -106 -104 -109 -107 -103 -107 -105 -103 -108 -105 -104 -108 -106 -104 -108 -104 -104 -102 -106 -104 -109 -107 -105 -103 -107 -105 -109 -106 -104 -108 -106 -104 -102 -107 -105 -109 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -104 -108 -103 -108 -105 -103 -108 -106 -104 -108 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -107 -105 -103 -106 -104 -109 -107 -105 -103 -106 -104 -108 -106 -110 -108 -106 -104 -109 -107 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -111 -104 -103 -103 -103 -107 -105 -103 -107 -121 -119 -117 -115 -111 -111 -109 -105 -105 -103 -107 -105 -103 -107 -105 -109 -106 -104 -103 -107 -105 -103 -106 -111 -102 -102 -108 -107 -105 -108 -105 -104 -107 -105 -108 -106 -104 -109 -107 -104 -102 -107 -105 -103 -107 -105 -103 -107 -104 -103 -107 -105 -101 -107 -106 -104 -107 -105 -103 -107 -105 -103 -106 -105 -103 -106 -104 -107 -105 -103 -107 -105 -109 -107 -105 -103 -107 -105 -108 -106 -104 -107 -105 -108 -103 -103 -108 -106 -104 -102 -105 -103 -108 -106 -104 -107 -105 -105 -105 -105 -104 -102 -107 -105 -103 -107 -105 -110 -108 -106 -104 -108 -105 -104 -107 -105 -103 -107 -105 -103 -109 -107 -105 -103 -106 -106 -106 -104 -110 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -107 -105 -103 -107 -105 -103 -108 -104 -104 -107 -105 -103 -106 -104 -109 -102 -102 -102 -107 -105 -109 -107 -105 -103 -107 -105 -103 -108 -106 -104 -107 -105 -103 -109 -104 -103 -107 -105 -103 -107 -105 -103 -108 -106 -104 -108 -112 -123 -121 -119 -117 -115 -113 -111 -109 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -105 -103 -108 -106 -104 -102 -106 -104 -101 -106 -104 -108 -106 -104 -102 -107 -110 -122 -120 -118 -114 -112 -110 -108 -104 -108 -105 -104 -108 -106 -104 -108 -106 -110 -102 -102 -102 -109 -107 -105 -103 -107 -105 -103 -107 -110 -105 -105 -104 -107 -105 -110 -108 -112 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -102 -106 -103 -102 -105 -103 -108 -106 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -105 -105 -105 -105 -103 -108 -106 -104 -109 -104 -104 -103 -108 -106 -104 -108 -106 -104 -107 -105 -103 -108 -106 -104 -109 -107 -105 -103 -107 -105 -109 -107 -104 -108 -103 -103 -103 -103 -107 -105 -103 -107 -104 -123 -123 -122 -120 -118 -116 -113 -112 -105 -105 -105 -104 -108 -106 -104 -109 -107 -105 -110 -107 -106 -104 -102 -105 -109 -106 -110 -107 -107 -107 -107 -106 -104 -108 -106 -109 -102 -102 -108 -107 -108 -106 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -108 -106 -104 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -109 -105 -110 -101 -100 -107 -107 -107 -105 -103 -106 -104 -109 -107 -105 -103 -107 -103 -107 -105 -103 -107 -111 -104 -104 -104 -103 -108 -106 -104 -108 -101 -107 -107 -106 -104 -109 -107 -105 -103 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -108 -106 -104 -102 -106 -110 -105 -105 -104 -102 -106 -104 -102 -106 -104 -107 -105 -108 -106 -104 -102 -105 -103 -107 -105 -103 -106 -104 -102 -106 -103 -107 -103 -110 -106 -104 -109 -107 -105 -103 -106 -104 -104 -104 -104 -102 -106 -104 -102 -107 -105 -103 -105 -103 -107 -105 -103 -107 -105 -105 -105 -105 -104 -109 -105 -103 -107 -105 -103 -107 -105 -103 -106 -110 -104 -108 -105 -104 -109 -107 -105 -102 -107 -105 -103 -106 -105 -102 -107 -105 -103 -105 -103 -107 -105 -103 -108 -106 -104 -107 -105 -103 -106 -104 -108 -106 -106 -106 -106 -104 -108 -106 -104 -106 -104 -107 -105 -103 -108 -106 -104 -107 -105 -103 -107 -104 -103 -106 -104 -102 -107 -105 -103 -108 -106 -102 -107 -105 -103 -108 -106 -104 -107 -105 -103 -108 -106 -104 -102 -107 -105 -103 -107 -105 -103 -107 -105 -103 -108 -104 -108 -106 -104 -108 -106 -104 -108 -102 -102 -109 -108 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -103 -108 -105 -104 -101 -105 -109 -106 -105 -103 -107 -105 -103 -108 -106 -104 -102 -105 -103 -106 -104 -102 -106 -103 -103 -103 -103 -103 -108 -102 -107 -108 -108 -108 -107 -105 -109 -106 -105 -103 -106 -104 -109 -107 -105 -103 -107 -105 -103 -108 -105 -104 -107 -105 -103 -108 -106 -104 -102 -106 -104 -102 -106 -104 -109 -105 -105 -105 -105 -104 -108 -106 -104 -102 -105 -109 -105 -108 -104 -104 -104 -104 -104 -102 -105 -102 -107 -105 -107 -105 -103 -109 -107 -110 -102 -102 -107 -107 -105 -103 -107 -105 -103 -106 -104 -110 -108 -106 -104 -108 -106 -104 -102 -106 -109 -102 -102 -102 -108 -106 -111 -120 -118 -112 -112 -110 -108 -106 -104 -102 -106 -111 -122 -120 -118 -116 -114 -112 -110 -108 -106 -103 -108 -101 -108 -108 -107 -105 -110 -107 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -103 -106 -105 -103 -106 -105 -103 -109 -107 -105 -103 -106 -104 -107 -103 -107 -105 -108 -103 -103 -102 -106 -104 -108 -106 -104 -107 -105 -103 -107 -103 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -110 -102 -107 -107 -107 -106 -104 -106 -102 -102 -107 -107 -107 -105 -103 -100 -106 -104 -102 -106 -102 -107 -105 -103 -107 -105 -103 -107 -105 -109 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -102 -106 -104 -108 -106 -104 -102 -106 -104 -108 -106 -110 -105 -105 -105 -109 -107 -111 -108 -102 -102 -108 -107 -105 -107 -103 -108 -106 -104 -107 -105 -104 -108 -106 -104 -109 -106 -105 -103 -107 -105 -103 -107 -105 -103 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -104 -106 -110 -105 -105 -105 -105 -105 -103 -108 -106 -104 -102 -107 -105 -103 -106 -103 -102 -106 -109 -105 -103 -107 -105 -108 -108 -108 -108 -106 -104 -109 -105 -105 -105 -105 -105 -103 -106 -109 -124 -122 -119 -118 -111 -111 -111 -110 -108 -106 -104 -108 -104 -104 -104 -104 -104 -102 -106 -104 -106 -104 -107 -103 -107 -105 -103 -107 -105 -103 -108 -106 -104 -110 -108 -106 -110 -101 -108 -108 -108 -107 -105 -110 -107 -106 -104 -108 -106 -104 -107 -105 -103 -107 -113 -106 -106 -106 -105 -103 -107 -105 -103 -106 -103 -108 -108 -105 -105 -105 -108 -105 -104 -108 -106 -105 -102 -107 -103 -106 -104 -102 -105 -103 -107 -106 -104 -102 -105 -103 -107 -106 -106 -106 -105 -103 -108 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -103 -107 -112 -123 -121 -119 -117 -115 -113 -111 -109 -107 -107 -105 -103 -107 -105 -103 -107 -125 -123 -121 -118 -117 -115 -109 -109 -108 -107 -105 -103 -105 -103 -106 -105 -102 -106 -104 -102 -107 -105 -103 -106 -111 -104 -104 -104 -103 -101 -105 -103 -106 -104 -107 -104 -104 -103 -107 -106 -106 -105 -103 -107 -104 -103 -107 -105 -103 -107 -103 -110 -122 -122 -121 -119 -117 -115 -112 -111 -109 -107 -105 -102 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -107 -105 -103 -107 -105 -103 -108 -105 -104 -107 -105 -103 -106 -104 -102 -106 -104 -107 -105 -102 -106 -104 -108 -106 -104 -102 -106 -104 -102 -106 -104 -108 -106 -104 -108 -102 -102 -107 -105 -103 -106 -110 -103 -103 -103 -102 -107 -105 -110 -106 -106 -104 -108 -106 -104 -108 -106 -104 -106 -104 -107 -105 -103 -106 -104 -108 -104 -108 -109 -107 -105 -109 -106 -105 -102 -106 -104 -108 -106 -103 -102 -106 -104 -107 -105 -103 -107 -105 -109 -105 -105 -103 -108 -106 -104 -107 -106 -104 -109 -107 -105 -103 -106 -104 -109 -107 -103 -103 -107 -111 -105 -105 -110 -122 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -108 -102 -107 -107 -105 -103 -108 -106 -110 -136 -135 -133 -131 -129 -127 -125 -123 -121 -119 -117 -115 -113 -108 -108 -107 -105 -102 -107 -105 -106 -106 -105 -103 -107 -105 -107 -105 -103 -108 -106 -102 -109 -105 -105 -103 -107 -105 -103 -108 -111 -106 -106 -106 -106 -106 -104 -102 -106 -104 -108 -106 -104 -109 -106 -105 -103 -108 -104 -104 -101 -106 -104 -107 -105 -109 -107 -105 -103 -101 -104 -109 -107 -105 -108 -106 -109 -105 -103 -106 -104 -107 -105 -103 -107 -105 -103 -109 -107 -106 -106 -106 -104 -108 -106 -104 -109 -102 -110 -109 -108 -106 -104 -102 -104 -105 -105 -104 -102 -105 -103 -108 -106 -108 -105 -105 -105 -105 -110 -108 -106 -103 -108 -106 -102 -106 -104 -108 -106 -110 -106 -106 -104 -109 -107 -105 -103 -106 -103 -102 -105 -108 -105 -104 -108 -106 -110 -105 -105 -104 -102 -107 -105 -103 -105 -103 -108 -106 -104 -107 -105 -103 -107 -110 -105 -105 -104 -108 -106 -111 -105 -105 -103 -106 -104 -106 -104 -102 -107 -105 -103 -109 -113 -106 -106 -106 -105 -103 -106 -103 -103 -103 -109 -108 -106 -104 -108 -105 -110 -136 -134 -132 -130 -128 -126 -124 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -102 -105 -108 -106 -104 -106 -104 -109 -106 -105 -106 -106 -105 -107 -105 -103 -107 -105 -107 -105 -103 -106 -104 -102 -105 -103 -108 -106 -104 -107 -105 -103 -106 -104 -102 -105 -104 -107 -105 -103 -107 -105 -109 -106 -104 -102 -108 -106 -104 -107 -105 -108 -106 -104 -102 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -109 -107 -105 -103 -106 -107 -107 -107 -106 -104 -107 -105 -107 -107 -105 -109 -106 -104 -109 -107 -105 -108 -106 -104 -102 -106 -105 -109 -107 -105 -103 -109 -106 -102 -107 -111 -104 -104 -104 -103 -106 -104 -102 -105 -110 -108 -106 -104 -108 -106 -104 -102 -105 -103 -105 -103 -106 -104 -102 -106 -103 -107 -105 -110 -107 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -108 -104 -104 -102 -107 -103 -107 -105 -103 -108 -106 -103 -107 -105 -103 -107 -105 -103 -107 -106 -104 -102 -105 -108 -101 -101 -106 -106 -104 -107 -105 -103 -108 -106 -104 -102 -105 -110 -106 -106 -104 -108 -106 -104 -102 -108 -106 -110 -109 -109 -109 -108 -107 -105 -108 -112 -108 -108 -108 -108 -106 -104 -102 -107 -110 -121 -114 -114 -114 -113 -111 -109 -107 -105 -103 -108 -106 -104 -108 -106 -110 -104 -104 -104 -108 -106 -104 -107 -105 -103 -107 -105 -103 -109 -107 -105 -103 -108 -106 -104 -102 -105 -104 -104 -104 -109 -107 -105 -103 -107 -105 -103 -107 -105 -108 -107 -107 -107 -106 -104 -102 -106 -104 -102 -107 -105 -103 -106 -104 -102 -106 -104 -102 -106 -104 -102 -106 -104 -107 -103 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -103 -106 -104 -102 -106 -104 -109 -107 -105 -107 -102 -102 -107 -105 -108 -106 -104 -102 -106 -104 -108 -106 -111 -107 -105 -108 -106 -104 -102 -106 -104 -102 -106 -104 -108 -106 -104 -109 -107 -105 -103 -108 -106 -104 -108 -106 -104 -106 -102 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -107 -105 -109 -106 -105 -103 -107 -105 -102 -107 -105 -103 -106 -104 -106 -105 -103 -108 -106 -104 -106 -102 -102 -108 -108 -108 -106 -104 -108 -106 -104 -107 -105 -103 -107 -105 -106 -104 -108 -106 -104 -108 -106 -104 -102 -106 -111 -107 -106 -105 -103 -107 -104 -104 -104 -104 -102 -106 -104 -102 -106 -104 -107 -110 -104 -104 -104 -103 -106 -104 -109 -104 -104 -103 -105 -103 -106 -104 -107 -109 -122 -120 -118 -116 -114 -112 -108 -112 -103 -103 -103 -103 -109 -107 -105 -103 -107 -105 -103 -107 -105 -103 -105 -107 -107 -106 -104 -102 -106 -104 -108 -106 -104 -107 -106 -104 -108 -106 -104 -102 -106 -103 -108 -106 -104 -102 -107 -105 -103 -106 -104 -109 -107 -105 -102 -106 -102 -106 -102 -102 -108 -108 -108 -106 -104 -102 -106 -104 -108 -106 -104 -102 -107 -105 -103 -108 -112 -122 -120 -118 -116 -114 -111 -110 -108 -106 -104 -102 -107 -104 -108 -106 -111 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -102 -106 -104 -107 -105 -109 -103 -103 -109 -108 -106 -110 -105 -105 -104 -102 -106 -104 -102 -106 -104 -107 -101 -107 -107 -105 -103 -106 -104 -110 -106 -106 -104 -108 -106 -104 -102 -106 -104 -109 -106 -104 -109 -107 -105 -101 -108 -106 -104 -108 -102 -107 -107 -107 -106 -104 -108 -106 -104 -102 -107 -105 -103 -106 -104 -107 -105 -103 -106 -104 -107 -102 -102 -109 -107 -105 -110 -108 -106 -104 -102 -106 -104 -108 -106 -104 -102 -106 -104 -109 -107 -105 -103 -108 -106 -104 -108 -104 -108 -112 -106 -105 -105 -110 -118 -116 -114 -112 -110 -108 -106 -101 -106 -106 -104 -108 -106 -109 -103 -103 -103 -107 -105 -103 -106 -104 -102 -107 -105 -103 -107 -105 -103 -106 -104 -110 -108 -106 -104 -107 -105 -110 -104 -104 -104 -108 -106 -106 -104 -101 -106 -104 -102 -107 -105 -103 -108 -105 -104 -108 -118 -116 -114 -112 -110 -108 -106 -104 -102 -105 -104 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -106 -104 -107 -105 -103 -106 -103 -108 -106 -104 -102 -106 -109 -104 -109 -102 -106 -111 -104 -104 -104 -103 -105 -103 -108 -106 -104 -102 -107 -102 -102 -107 -105 -103 -108 -106 -104 -102 -106 -104 -108 -106 -104 -101 -106 -104 -107 -105 -103 -106 -105 -110 -122 -121 -119 -117 -113 -113 -110 -108 -107 -111 -107 -104 -103 -107 -105 -103 -107 -105 -103 -107 -104 -109 -107 -105 -103 -106 -104 -102 -106 -104 -102 -108 -105 -104 -107 -105 -103 -106 -104 -102 -106 -104 -108 -106 -105 -102 -106 -109 -105 -105 -105 -105 -104 -102 -105 -106 -106 -106 -108 -106 -104 -108 -107 -105 -103 -107 -110 -104 -104 -104 -105 -110 -120 -118 -116 -114 -112 -110 -108 -106 -104 -102 -105 -101 -107 -105 -103 -107 -105 -103 -108 -105 -104 -102 -104 -107 -107 -105 -109 -104 -104 -103 -106 -111 -120 -118 -114 -112 -110 -108 -112 -107 -107 -106 -104 -108 -123 -121 -119 -117 -106 -106 -106 -106 -106 -105 -103 -106 -104 -102 -106 -104 -109 -107 -105 -103 -107 -105 -103 -107 -105 -103 -105 -104 -106 -104 -104 -104 -104 -108 -106 -104 -108 -106 -108 -106 -104 -102 -106 -104 -108 -107 -107 -107 -106 -104 -108 -106 -104 -102 -106 -104 -102 -107 -105 -108 -107 -105 -103 -107 -107 -107 -107 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -104 -109 -102 -102 -102 -107 -105 -103 -108 -104 -108 -106 -104 -108 -106 -104 -102 -107 -105 -101 -108 -111 -103 -103 -108 -108 -107 -105 -103 -108 -106 -104 -102 -106 -105 -103 -106 -104 -107 -105 -103 -106 -104 -108 -106 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -103 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -107 -105 -103 -107 -105 -103 -106 -104 -102 -107 -105 -103 -107 -104 -109 -103 -103 -103 -106 -104 -102 -106 -104 -107 -105 -103 -108 -106 -104 -109 -107 -105 -109 -103 -107 -105 -103 -107 -105 -108 -106 -106 -106 -106 -104 -108 -106 -104 -108 -106 -104 -102 -105 -109 -101 -107 -107 -107 -105 -103 -108 -106 -104 -109 -107 -105 -103 -107 -105 -103 -107 -105 -103 -101 -105 -103 -108 -105 -104 -101 -106 -102 -105 -103 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -105 -103 -107 -105 -103 -108 -111 -103 -108 -108 -108 -112 -122 -120 -118 -116 -114 -112 -110 -106 -103 -102 -107 -105 -110 -107 -105 -104 -107 -105 -109 -107 -105 -107 -105 -103 -108 -113 -104 -104 -104 -110 -109 -107 -105 -103 -106 -104 -108 -106 -104 -107 -105 -103 -101 -106 -104 -109 -107 -105 -103 -106 -109 -109 -108 -106 -104 -108 -106 -104 -107 -111 -104 -104 -104 -109 -107 -105 -103 -107 -105 -109 -105 -103 -106 -105 -103 -106 -104 -106 -104 -102 -105 -103 -108 -106 -104 -108 -106 -104 -101 -105 -110 -108 -105 -104 -108 -106 -110 -124 -122 -120 -118 -116 -114 -112 -108 -108 -106 -104 -102 -106 -104 -108 -106 -107 -107 -105 -103 -107 -110 -106 -104 -111 -109 -107 -105 -109 -107 -105 -109 -107 -111 -106 -106 -105 -103 -107 -105 -103 -108 -110 -101 -107 -107 -107 -106 -104 -102 -106 -104 -109 -106 -105 -103 -107 -105 -103 -101 -105 -103 -107 -105 -103 -106 -104 -102 -107 -105 -106 -104 -106 -103 -108 -106 -104 -109 -107 -105 -109 -105 -105 -102 -107 -105 -103 -109 -107 -105 -103 -107 -105 -103 -108 -105 -103 -108 -106 -104 -106 -104 -103 -107 -105 -109 -107 -105 -103 -101 -105 -103 -101 -105 -109 -107 -105 -103 -106 -112 -105 -105 -104 -108 -106 -104 -107 -106 -104 -101 -107 -104 -103 -107 -105 -107 -107 -105 -104 -108 -106 -104 -108 -106 -103 -108 -106 -110 -103 -103 -110 -109 -107 -105 -103 -101 -106 -104 -108 -105 -104 -108 -106 -104 -107 -105 -103 -108 -111 -107 -107 -107 -107 -105 -103 -106 -104 -102 -106 -104 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -103 -108 -106 -104 -108 -105 -110 -102 -102 -108 -108 -106 -104 -102 -106 -104 -108 -106 -104 -108 -102 -102 -109 -109 -108 -106 -104 -101 -106 -104 -108 -106 -104 -102 -107 -102 -107 -107 -105 -110 -108 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -108 -107 -105 -103 -105 -104 -102 -106 -104 -110 -108 -106 -104 -109 -107 -103 -101 -108 -106 -104 -107 -109 -107 -103 -103 -108 -106 -104 -102 -108 -106 -104 -109 -107 -105 -108 -106 -105 -110 -108 -106 -104 -107 -105 -109 -107 -105 -103 -107 -105 -103 -107 -105 -109 -107 -110 -104 -104 -104 -102 -106 -104 -107 -105 -103 -108 -106 -111 -113 -104 -104 -104 -104 -103 -106 -104 -109 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -103 -108 -106 -104 -109 -106 -106 -106 -106 -111 -107 -105 -103 -108 -106 -104 -106 -105 -103 -108 -106 -104 -108 -106 -104 -107 -109 -120 -118 -116 -114 -112 -110 -108 -106 -104 -102 -107 -105 -109 -107 -105 -103 -107 -105 -103 -109 -107 -105 -109 -107 -105 -103 -108 -112 -106 -106 -106 -104 -102 -106 -104 -109 -107 -105 -109 -107 -105 -109 -103 -103 -103 -108 -106 -104 -109 -105 -103 -108 -113 -107 -107 -107 -105 -109 -107 -105 -103 -107 -105 -103 -106 -102 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -107 -105 -103 -106 -104 -108 -106 -104 -108 -106 -104 -108 -112 -104 -104 -104 -104 -108 -106 -110 -112 -112 -104 -104 -104 -104 -107 -105 -102 -107 -105 -103 -107 -105 -103 -107 -105 -109 -107 -102 -107 -106 -104 -102 -107 -105 -103 -106 -104 -107 -105 -103 -107 -105 -110 -108 -106 -104 -108 -119 -117 -115 -113 -111 -106 -106 -105 -109 -105 -103 -107 -121 -119 -117 -115 -113 -111 -107 -105 -105 -105 -105 -109 -107 -105 -103 -106 -104 -108 -106 -104 -108 -106 -104 -109 -107 -104 -102 -106 -104 -107 -105 -103 -107 -104 -103 -107 -105 -103 -108 -104 -104 -102 -106 -104 -107 -107 -107 -105 -103 -107 -105 -103 -108 -106 -104 -110 -108 -106 -104 -109 -107 -105 -102 -107 -106 -106 -106 -105 -103 -107 -104 -102 -107 -104 -103 -106 -105 -109 -107 -105 -103 -106 -104 -102 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -109 -105 -103 -107 -105 -103 -106 -104 -107 -110 -109 -123 -123 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -104 -109 -107 -105 -103 -107 -105 -109 -105 -111 -105 -105 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -105 -103 -107 -105 -103 -108 -106 -108 -108 -106 -104 -107 -106 -103 -107 -105 -103 -107 -105 -103 -107 -107 -107 -107 -106 -104 -109 -124 -122 -120 -118 -116 -114 -112 -108 -106 -104 -102 -107 -104 -104 -104 -104 -104 -102 -105 -103 -107 -103 -103 -107 -105 -103 -107 -105 -108 -106 -106 -106 -106 -106 -104 -108 -106 -103 -108 -106 -111 -104 -104 -104 -103 -108 -106 -104 -108 -106 -104 -102 -107 -105 -108 -106 -102 -106 -104 -108 -106 -104 -102 -106 -104 -102 -105 -101 -101 -107 -107 -107 -105 -103 -106 -102 -108 -105 -104 -102 -108 -106 -104 -102 -106 -104 -108 -106 -102 -105 -103 -106 -104 -102 -105 -103 -108 -106 -104 -108 -102 -102 -108 -104 -102 -106 -104 -108 -107 -104 -102 -107 -105 -103 -108 -106 -104 -102 -107 -103 -103 -107 -106 -104 -107 -105 -103 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -106 -106 -106 -106 -104 -108 -106 -104 -107 -105 -103 -105 -104 -106 -104 -108 -107 -107 -106 -104 -108 -106 -104 -108 -104 -104 -109 -122 -121 -119 -117 -115 -113 -111 -109 -105 -105 -106 -104 -110 -108 -105 -103 -107 -104 -104 -108 -110 -121 -119 -117 -115 -111 -111 -109 -107 -105 -103 -107 -105 -103 -107 -104 -108 -107 -111 -107 -111 -121 -118 -116 -115 -113 -111 -109 -107 -105 -109 -113 -124 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -102 -105 -103 -107 -105 -103 -106 -111 -104 -104 -104 -103 -106 -104 -108 -106 -104 -102 -106 -104 -102 -107 -111 -101 -106 -106 -106 -104 -102 -105 -101 -101 -107 -107 -107 -105 -103 -106 -111 -105 -105 -105 -104 -102 -105 -103 -107 -104 -104 -109 -107 -105 -103 -107 -111 -101 -107 -107 -107 -107 -105 -110 -109 -102 -102 -109 -107 -105 -103 -108 -103 -107 -105 -103 -107 -104 -104 -104 -103 -103 -101 -104 -108 -104 -102 -105 -102 -108 -106 -104 -108 -106 -103 -109 -107 -105 -103 -107 -105 -109 -106 -105 -109 -106 -105 -108 -106 -101 -105 -105 -110 -108 -105 -104 -102 -106 -104 -109 -105 -103 -108 -106 -104 -102 -108 -106 -104 -102 -104 -109 -107 -105 -103 -108 -105 -105 -105 -105 -104 -102 -106 -104 -108 -106 -104 -108 -106 -104 -108 -105 -102 -102 -107 -105 -103 -107 -111 -105 -105 -105 -103 -107 -105 -102 -105 -106 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -108 -105 -104 -107 -105 -110 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -102 -105 -103 -107 -105 -103 -107 -105 -110 -104 -104 -103 -102 -106 -104 -102 -106 -104 -102 -106 -103 -103 -103 -107 -105 -103 -106 -105 -103 -106 -104 -108 -106 -102 -106 -104 -102 -106 -104 -102 -106 -103 -107 -105 -103 -108 -106 -103 -108 -105 -104 -102 -107 -105 -103 -106 -105 -108 -106 -104 -102 -106 -104 -102 -106 -104 -102 -106 -104 -107 -105 -103 -108 -106 -104 -107 -104 -103 -107 -104 -102 -107 -105 -103 -106 -110 -105 -105 -104 -107 -105 -103 -108 -106 -104 -109 -102 -102 -102 -106 -104 -102 -107 -105 -103 -107 -105 -103 -108 -106 -104 -108 -106 -104 -102 -107 -105 -109 -105 -103 -106 -104 -102 -105 -103 -107 -105 -103 -108 -105 -101 -106 -105 -103 -107 -105 -103 -106 -104 -108 -106 -104 -108 -105 -104 -102 -106 -109 -118 -116 -114 -112 -110 -108 -106 -104 -102 -107 -105 -109 -102 -102 -107 -107 -105 -103 -107 -103 -108 -106 -104 -102 -107 -105 -107 -107 -105 -103 -106 -104 -108 -106 -104 -102 -107 -105 -109 -104 -104 -103 -107 -105 -103 -107 -108 -108 -108 -106 -104 -108 -106 -104 -108 -106 -104 -102 -106 -104 -106 -101 -101 -107 -106 -110 -106 -104 -107 -105 -103 -108 -106 -104 -102 -105 -103 -107 -105 -103 -105 -103 -108 -106 -104 -108 -106 -103 -107 -105 -103 -107 -105 -103 -106 -110 -103 -103 -103 -102 -107 -105 -103 -108 -106 -104 -107 -105 -103 -107 -105 -103 -107 -105 -109 -105 -103 -108 -106 -106 -106 -106 -105 -103 -107 -105 -109 -106 -105 -103 -107 -105 -103 -106 -104 -107 -112 -107 -107 -107 -107 -107 -106 -104 -102 -106 -104 -107 -104 -103 -108 -106 -104 -108 -106 -104 -105 -103 -107 -105 -103 -106 -104 -109 -106 -106 -106 -105 -103 -108 -106 -104 -108 -106 -104 -108 -106 -103 -107 -123 -121 -119 -117 -115 -113 -111 -109 -114 -106 -106 -106 -106 -104 -109 -107 -105 -103 -106 -104 -102 -106 -104 -102 -107 -105 -103 -107 -103 -103 -103 -103 -107 -105 -103 -107 -105 -103 -108 -106 -104 -102 -106 -103 -102 -106 -104 -108 -106 -104 -102 -105 -103 -107 -110 -103 -103 -103 -109 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -101 -105 -103 -106 -104 -108 -106 -104 -101 -106 -104 -105 -108 -106 -110 -105 -104 -104 -108 -106 -104 -102 -107 -105 -103 -107 -105 -103 -108 -103 -103 -103 -103 -110 -108 -106 -104 -108 -106 -104 -101 -106 -104 -108 -106 -110 -104 -104 -104 -102 -107 -111 -105 -105 -105 -107 -105 -103 -101 -107 -110 -106 -104 -107 -106 -104 -108 -106 -104 -102 -107 -106 -109 -103 -103 -103 -108 -106 -104 -102 -106 -111 -108 -107 -105 -109 -104 -104 -103 -107 -105 -103 -107 -105 -108 -105 -104 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -107 -104 -108 -106 -104 -102 -107 -105 -109 -104 -104 -103 -107 -105 -103 -108 -106 -104 -107 -105 -103 -108 -106 -103 -107 -105 -103 -106 -104 -102 -107 -105 -103 -108 -106 -104 -102 -106 -104 -108 -104 -108 -401 -405 -403 -400 -399 -397 -401 -399 -393 -393 -393 -391 -395 -393 -391 -389 -393 -402 -400 -398 -396 -394 -392 -390 -388 -386 -384 -382 -379 -378 -376 -374 -372 -370 -363 -362 -362 -362 -366 -364 -362 -360 -358 -355 -354 -352 -350 -348 -352 -350 -348 -344 -344 -342 -340 -344 -342 -340 -338 -336 -341 -339 -335 -335 -333 -331 -329 -327 -325 -323 -326 -331 -341 -339 -337 -335 -332 -331 -329 -321 -321 -321 -321 -319 -317 -315 -313 -311 -309 -306 -305 -303 -301 -299 -297 -295 -300 -298 -296 -294 -292 -290 -288 -286 -284 -288 -284 -282 -280 -278 -282 -280 -278 -276 -274 -272 -270 -271 -271 -271 -269 -267 -265 -263 -267 -265 -263 -261 -259 -257 -255 -253 -256 -252 -252 -250 -248 -246 -244 -242 -246 -244 -242 -240 -238 -242 -240 -238 -236 -234 -232 -229 -228 -226 -224 -228 -221 -220 -218 -216 -209 -216 -216 -214 -212 -210 -208 -206 -204 -202 -200 -204 -197 -197 -197 -196 -194 -199 -197 -195 -193 -191 -189 -187 -185 -183 -181 -185 -183 -181 -179 -177 -175 -173 -171 -169 -174 -172 -170 -168 -166 -164 -162 -160 -158 -156 -152 -150 -150 -150 -150 -148 -146 -144 -142 -140 -138 -142 -140 -132 -132 -132 -138 -136 -134 -132 -130 -128 -132 -130 -128 -126 -130 -128 -126 -124 -122 -120 -118 -116 -114 -117 -115 -106 -112 -143 -142 -142 -140 -138 -136 -134 -132 -130 -124 -124 -122 -120 -118 -116 -114 -112 -110 -108 -106 -104 -108 -106 -104 -108 -106 -104 -108 -111 -104 -104 -104 -103 -107 -105 -103 -107 -105 -103 -107 -104 -103 -108 -106 -104 -108 -106 -111 -104 -104 -104 -109 -107 -105 -103 -108 -106 -104 -107 -110 -106 -104 -110 -108 -105 -104 -108 -106 -104 -109 -107 -105 -103 -107 -107 -107 -107 -106 -104 -109 -107 -105 -103 -107 -105 -103 -108 -105 -104 -106 -104 -107 -104 -103 -107 -105 -108 -103 -103 -103 -103 -110 -108 -106 -110 -104 -104 -107 -106 -104 -101 -106 -104 -109 -102 -102 -102 -102 -109 -109 -108 -106 -104 -108 -106 -104 -108 -107 -107 -107 -107 -105 -103 -107 -105 -103 -106 -104 -109 -102 -102 -108 -106 -102 -105 -103 -109 -107 -105 -109 -106 -105 -103 -108 -104 -107 -104 -103 -107 -111 -102 -102 -108 -108 -107 -105 -103 -105 -103 -107 -118 -116 -114 -112 -110 -108 -106 -104 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -107 -105 -103 -106 -104 -102 -106 -103 -109 -107 -105 -103 -107 -105 -106 -107 -107 -107 -105 -103 -106 -104 diff --git a/scripts/dly_error_profiles/dly_error_profile_7.dat b/scripts/dly_error_profiles/dly_error_profile_7.dat deleted file mode 100644 index 8e78102a8e3605d2ad906b1ad5f46465acfa5f5a..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_7.dat +++ /dev/null @@ -1,8000 +0,0 @@ -111 -104 -109 -110 -111 -111 -111 -110 -110 -111 -111 -110 -110 -111 -119 -110 -110 -116 -111 -102 -104 -111 -111 -104 -111 -111 -110 -112 -110 -110 -110 -116 -110 -111 -110 -110 -111 -111 -111 -111 -111 -110 -111 -111 -111 -110 -111 -111 -110 -111 -111 -116 -111 -110 -110 -110 -110 -111 -111 -111 -109 -111 -110 -110 -111 -111 -117 -111 -104 -109 -110 -111 -111 -111 -111 -110 -110 -110 -110 -110 -111 -110 -110 -116 -111 -110 -110 -111 -110 -110 -111 -111 -110 -116 -115 -111 -101 -107 -111 -111 -111 -110 -110 -111 -110 -119 -110 -110 -111 -110 -112 -111 -105 -111 -111 -111 -111 -111 -104 -110 -111 -111 -119 -111 -111 -111 -110 -110 -110 -110 -110 -110 -111 -111 -110 -111 -111 -111 -111 -111 -110 -110 -111 -110 -111 -116 -111 -111 -111 -111 -111 -111 -110 -111 -110 -110 -110 -110 -111 -110 -111 -110 -111 -110 -111 -111 -110 -110 -111 -110 -111 -111 -111 -116 -109 -114 -115 -111 -101 -106 -106 -111 -111 -111 -110 -111 -111 -111 -111 -111 -111 -111 -111 -110 -110 -110 -110 -111 -111 -111 --1 -111 -111 -112 -111 -111 -114 -112 -111 -111 -111 -102 -111 -112 -112 -110 -112 -112 -104 -111 -110 -110 -110 -110 -111 -112 -110 -111 -119 -110 -111 -110 -110 -111 -111 -112 -112 -111 -111 -112 -111 -111 -111 -111 -111 -111 -111 -110 -112 -111 -110 -110 -112 -111 -111 -111 -111 -110 -111 -111 -112 -111 -112 -101 -110 -111 -111 -110 -111 -111 -111 -111 -111 -110 -110 -111 -111 -110 -111 -110 -112 -111 -115 -115 -111 -111 -111 -111 -111 -111 -111 -110 -111 -111 -110 -110 -115 -107 -109 -109 -109 -109 -115 -111 -111 -109 -109 -109 -109 -109 -109 -109 -109 -115 -119 -110 -111 -110 -111 -111 -110 -111 -110 -111 -111 -111 -111 -111 -110 -111 -111 -111 -111 -111 -110 -110 -111 -117 -111 -104 -111 -110 -119 -119 -119 -119 -119 -120 -111 --1 --1 --1 --1 -111 -111 -115 -111 -111 -110 -111 -111 -110 -111 -111 -110 -111 -111 -111 -110 -111 -111 -111 -114 -115 -110 -110 -111 -110 -111 -111 -107 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -109 -110 -110 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -107 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -116 -109 -109 -109 -114 -107 -114 -110 -100 -110 -109 -116 -110 -110 -109 -107 -109 -114 -109 -116 -109 -119 -112 -115 -109 -109 -117 -109 -109 -109 -109 --1 -109 -115 -115 -111 -111 -111 -111 -111 -110 -111 -111 -114 -111 -111 -110 -117 -114 -111 -111 -110 -116 -114 -110 -111 -110 -111 --1 -111 -111 -111 -111 -116 -116 -111 -110 -110 -110 -110 -111 -110 -109 -114 -110 -111 -111 -111 -110 -111 -112 -110 -111 -111 -111 -111 -111 -115 -110 -115 -110 -111 -110 -111 -111 -115 -119 -110 -111 -111 -110 -111 -110 -110 -111 -111 -111 -111 -117 -111 -111 -112 -111 -110 -110 -111 -111 -109 -109 -109 -109 -109 -109 -117 -109 -101 -109 -104 -109 --1 -109 -117 -109 -104 -109 -110 -104 -109 -109 -117 -109 -104 -117 -109 -102 -106 -116 -119 -100 -105 -104 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -115 -109 -101 -109 -104 -110 -109 -109 -109 -109 -114 -109 -109 -114 -109 -111 -110 -110 -111 -110 -110 -111 -111 --1 --1 --1 -110 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -110 -110 -110 -111 -110 -110 -110 -111 -110 -111 -111 -110 -111 -111 -111 -110 -111 -111 -110 -111 -111 -111 -111 -111 -110 -111 -110 -110 -111 -110 -110 -110 -111 -110 -110 -111 -110 -110 -111 -111 -111 -110 -112 -111 -110 -111 -111 -111 -111 -110 -111 -111 -111 -110 -111 -111 -110 -110 -111 --1 --1 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 --1 --1 --1 -111 -110 -111 -112 -110 -110 -110 -110 -110 -106 -111 -111 -111 -111 -111 -110 -111 -114 -110 -111 -111 -111 -111 -116 -110 -101 -111 -104 -111 -110 -110 -111 -111 -110 -110 -111 -110 -111 -111 -111 -110 -111 -111 -110 -111 -111 -111 -110 -111 -117 -112 -102 -109 -114 -111 -111 -110 -111 -110 -111 -110 -110 -119 -110 -111 -110 -110 -111 -111 -112 --1 --1 -112 -111 -111 -112 -111 -111 -111 -111 -110 -110 -111 -111 -110 -110 -110 -111 -111 -111 -111 -110 -115 -109 -110 -111 -111 -111 -111 -111 -111 -112 -111 -110 -110 -111 -110 -110 -111 -110 -110 -111 -110 -110 -111 -111 -114 -111 -111 -111 -110 -111 -111 -111 -111 -111 -111 -111 -111 -110 -110 --1 --1 -112 -114 -111 -110 -111 -110 -110 -111 -111 -110 -111 -111 -110 -111 -111 -111 -111 -111 -111 -111 -111 -111 -110 -111 -111 -110 -111 -110 -111 -111 -110 -111 -111 -111 -110 -110 -110 -111 -110 -111 -119 -112 -111 -111 -117 -112 -114 -119 -110 -114 -115 -112 -111 -110 -110 -110 -110 -109 -109 -109 -114 -109 -109 -109 -109 -109 -109 -109 -109 -109 --1 --1 -109 -109 -109 -109 -109 -109 -109 -101 -109 -104 -109 -109 -109 -109 -109 -109 -109 -109 -117 -109 -102 -107 -109 -109 -109 -109 -117 -109 -102 -107 -109 -109 -109 -109 -116 -109 -101 -116 -105 -102 -105 -109 -109 -117 -109 -104 -116 -109 -101 -109 -104 -109 -109 -114 -117 -109 -102 -109 -117 -109 -104 -109 -109 -109 -109 -115 -109 -110 -110 -110 -111 -110 -114 -110 -111 -110 --1 --1 --1 --1 -110 -110 -111 -110 -111 -110 -111 -110 -110 -111 -111 -110 --1 --1 --1 -112 -111 -111 -111 -111 -111 -110 -110 -110 -110 -109 -107 -109 -109 -109 -107 -109 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -107 -107 -107 -107 -109 -109 -109 -107 -109 -107 -107 -134 -109 -109 -109 -116 -109 -107 -109 -109 --1 --1 -109 -109 -107 -109 -107 -109 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -112 -107 -107 -107 -107 -112 -109 -109 -109 -109 -107 -109 -107 -109 -109 -109 -109 -107 -122 -109 -104 -104 -102 -104 -107 -104 -104 -104 -109 -104 -104 -104 -104 -104 -104 -102 -104 -104 -104 -109 -104 -104 -104 -102 -102 -102 -104 -102 -104 -104 -102 --1 -104 -115 -109 -114 -114 -110 -110 -110 -110 -110 -110 -110 -111 --1 --1 --1 --1 -110 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -136 -110 -110 -111 -111 -110 -110 -111 -112 -110 -111 -105 -105 -105 -105 -105 -105 -105 -105 -105 -110 -104 -104 -104 -105 -104 -104 -130 -105 -104 -105 -105 -105 -105 -105 -105 -105 -105 -105 -110 -104 -104 -104 -104 -104 -105 -105 -104 -105 -105 -104 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -104 --1 -105 -104 -105 -104 -104 -104 -105 -105 -105 -104 -105 -105 -105 -105 -104 -105 -105 -105 -105 -105 -115 -105 -105 -105 -105 -115 -107 -111 -111 -111 -111 -111 -111 -111 -111 -105 -105 -111 -111 -111 -111 -111 -110 -110 -110 -110 -110 -111 -110 -110 -111 -110 -110 -111 -111 -110 -111 -111 -117 -111 -116 -110 -111 -111 -111 -110 -111 -111 -111 -111 -111 -111 -111 -110 -111 --1 --1 --1 --1 --1 -110 -111 -111 -111 -119 -111 -111 -111 -111 -111 -111 -111 -111 -111 -119 -110 --1 -111 -110 -110 -111 -111 -119 -110 -107 -110 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -135 -136 -110 -111 -110 -114 -110 -111 -111 -111 -110 -111 -111 -110 -111 -111 -111 -111 -111 -112 -111 -111 -112 -102 -109 -111 -116 -111 -110 -114 -111 -110 -110 -111 -111 -110 -111 -111 -110 -111 -111 -111 -111 -111 -104 -102 -104 --1 --1 --1 -102 -104 -119 -115 -112 -111 -110 -115 -111 -111 -110 -111 -111 -110 -116 -111 -111 -111 -111 -111 -115 -109 -114 -115 -110 -100 -110 -104 -110 -139 -117 -112 -114 -104 -101 -111 -102 -104 -104 -104 -102 -111 -104 -104 -104 -104 -109 -102 -104 -102 -104 -104 -104 -102 -104 -104 -104 -104 -111 -112 -112 -119 -112 -111 -117 -110 -111 -111 -110 -111 -117 -110 -110 -111 -116 -111 -104 -110 -135 -111 -116 -110 -115 -111 -111 -111 -111 -111 -111 -117 -111 -111 -111 -111 -105 -111 -111 -136 -116 -111 -116 -111 -114 -136 -117 -111 -112 -116 -111 -111 -112 -136 -111 -111 -112 -111 -111 -111 -111 -112 -119 -111 -110 -111 -111 -110 -111 -110 -104 -111 -144 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -104 -109 -107 -109 -107 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -144 -124 -104 -114 -105 -104 -104 -105 -105 -109 -105 -104 -105 -109 -105 -105 -104 -105 -114 -109 -121 -105 -105 -106 -105 -105 -110 -105 -105 -104 -105 -105 -107 -105 -104 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 --1 --1 --1 --1 -105 -105 -105 -104 -104 -105 -104 -104 -105 -104 -104 -130 -105 -105 -105 -109 -105 -104 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -104 -109 -105 -105 -104 -130 -105 -105 -104 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 -105 --1 -105 -105 -105 -104 -104 -105 -105 -114 -101 -101 -101 -100 -100 -101 -102 -100 -101 -101 -100 -101 -101 -101 -101 -101 -101 -101 -125 -114 -109 -101 -101 -101 -100 -101 -100 -146 -114 -114 -114 -114 -114 -105 -114 -114 -114 -114 -112 -112 -112 -114 -112 -112 -112 -112 -114 -112 -114 -114 -112 -114 -112 -112 -114 -114 -114 -114 -139 --1 -112 -114 -114 -114 -114 -112 -112 -112 -114 -112 -112 -114 -112 -114 -112 -114 -112 -112 -114 -114 -114 -114 -114 -114 -114 -114 -114 -114 -114 -139 -112 -114 -112 -114 -112 -114 -112 -114 -112 -114 -114 -112 -114 -112 -114 -114 -114 -114 -114 -114 -114 -114 -114 --1 -112 -112 -112 -114 -112 -112 -112 -120 -110 -114 -112 -112 -117 -137 -114 -114 -114 -114 -117 -114 -114 -114 -114 -112 -112 --1 --1 -117 -119 -117 -114 -114 -114 -112 -112 -114 -114 -114 -112 -114 -112 -114 -114 -114 -114 -114 --1 --1 --1 --1 -101 -101 -101 -109 -101 -102 -101 -101 -102 -101 -101 -101 -109 -101 -101 -101 -100 -101 -101 -100 -100 -101 -101 -102 -117 -116 -112 -111 -112 -114 -119 -121 -117 -114 -114 -114 -114 -112 -114 -112 -101 -100 -101 -101 -100 -101 -101 -109 -101 -102 -104 -101 -101 -102 -102 -102 -104 -100 -101 -100 -116 -110 -101 -100 -102 -109 -101 -114 -114 -114 --1 --1 -114 -114 -114 -114 -111 -115 -114 -112 -117 -110 -122 -112 -105 -111 -114 -114 -114 -139 -114 -114 -139 -114 -114 -114 -114 -114 -114 -116 -114 -117 -117 -137 -114 -116 -117 -114 -112 -114 -112 -114 -114 -112 -114 -115 -114 -119 -112 -114 -114 -114 -114 -114 -114 -112 -114 -114 -112 -114 -114 -114 -114 -114 -114 -114 -114 -114 -115 -117 -115 -114 --1 -121 -116 -117 -129 -114 -114 -117 -119 -115 -124 -112 -119 -116 -119 -114 -115 -115 -114 -119 -124 -114 -114 -114 -115 -111 -111 -112 -112 -112 -112 -114 -112 -112 -102 -109 -114 -135 -116 -106 -106 -109 -114 -156 -136 -119 -100 -100 -101 -101 -100 -101 -106 -100 -101 -101 -100 -100 -101 -106 -101 -101 -101 -101 -101 -101 -109 -100 -105 -100 -109 --1 --1 --1 --1 -100 -101 -101 -109 -100 -101 -100 -101 -101 -100 -109 -120 -107 -105 -104 -111 -116 -119 -102 -104 -105 -110 -120 -109 -104 -105 -110 -116 -115 -104 -100 -105 -104 -109 -114 -116 -116 -102 -129 -109 -116 -105 -102 -106 -111 --1 --1 -136 -117 -104 -100 -104 -105 -104 -104 -104 -104 -109 -115 -120 -126 -101 -102 -109 -115 -115 -101 -111 -116 --1 --1 --1 -110 -111 -111 -111 -112 -111 -111 -111 -110 -109 -110 -109 -110 -135 -111 -111 -110 -111 -111 -112 -111 -111 -112 -117 -111 -111 -111 -136 -111 --1 --1 -112 -112 -110 -111 -111 -110 -111 -111 -110 -111 -111 -125 -112 -110 -112 -111 -111 -111 -111 -111 -111 -112 -112 -111 -112 -112 -117 -112 -111 -111 -111 -111 -111 -110 -110 -112 -111 -111 -111 -111 -114 -117 -136 -112 -117 -117 -117 -117 -117 -117 -104 -117 -117 -117 -124 -114 -116 -104 -100 -102 -104 -109 -115 -117 -109 -129 -109 -114 -117 -117 -102 -104 -102 -109 -114 -117 -117 -125 -114 -117 -117 -102 -102 -101 -116 -102 -101 -102 -102 -109 --1 --1 --1 -101 -102 -102 -107 -112 -117 -101 -102 -102 -102 -126 -101 -102 -104 -102 -102 -104 -104 -129 -102 -102 -104 -104 -102 -104 -109 -102 -102 -120 -102 -101 -106 -102 -106 -102 -101 -102 -101 -104 -104 -102 -104 -102 -102 -102 -102 -102 -107 -104 -102 -102 -104 -102 -104 -104 -109 -102 --1 --1 -102 -104 -104 -102 -104 -112 -112 -111 -111 -112 -112 -112 -137 -110 -112 -110 -110 -112 -110 -111 -111 -111 -112 -111 -111 -112 -112 -112 -112 -111 -112 -112 -112 -112 -111 -111 -112 -111 -112 -114 -137 -112 -111 -111 -114 -112 -111 -111 -112 -112 -137 -117 -111 -110 -111 -111 -117 -111 -116 -106 -112 --1 --1 --1 -109 -112 -111 -112 -112 -111 -112 -111 -110 -112 -111 -111 -111 -111 -111 -111 -111 -116 -111 -111 -111 -111 -111 -112 -111 -111 -112 -112 -117 -117 -116 -117 --1 --1 --1 -116 -117 -116 -117 -117 -121 -109 -106 -106 -106 -106 -106 -105 -106 -105 -106 -105 -106 -106 -106 -201 -234 -214 -194 -175 -156 -136 -116 -149 -129 -109 -106 -106 -106 -105 -105 -106 -105 -106 -106 -106 -129 -119 -102 -116 -106 -111 -155 -137 -117 -117 -117 -112 -102 -110 -111 -116 -100 -101 -100 -115 -109 -120 -100 -109 -100 -106 -112 -115 -100 -100 -100 -100 -101 --1 --1 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -101 -100 -100 -100 -101 -100 -100 -116 -117 -100 -100 -100 -100 -100 -100 -100 -100 -106 -112 -117 -117 -102 -100 -109 -101 -125 -100 -100 -101 -106 -112 -142 -120 -101 -100 -100 -109 -101 -107 -120 -101 -100 -100 -100 -107 -100 -115 --1 --1 --1 -115 -115 -115 -115 -101 -109 -107 -115 -115 -101 -109 -124 -111 -109 -115 -121 -102 -101 -109 -114 -115 -102 -101 -101 -101 -107 -114 -115 -121 -101 -101 -115 -115 -115 -124 -111 -109 -109 -115 -104 -109 -115 -109 -115 -109 -109 -109 -109 -112 -111 -115 -115 -122 -110 -109 -109 -109 -109 -109 -134 -109 -109 -121 -116 -109 -109 -109 -109 -109 -109 -111 -110 -109 -109 -109 -140 -109 -109 -109 -109 -109 -114 -109 -109 -109 -109 -109 -109 -107 -115 -109 -109 -134 -109 -109 -109 -107 -111 -114 -109 -110 -109 -116 -116 -109 -109 -114 -109 -111 -107 -109 -109 -109 -109 -109 -109 -114 -107 --1 -109 -109 -109 -109 -109 -109 -114 -109 -109 -109 -109 -109 -114 -109 -109 -109 -119 -119 -119 -104 -104 -112 -119 -119 -130 -114 -119 -146 -162 -196 -203 -206 -212 -204 -131 -134 -144 -135 -137 -124 -132 -141 -150 -149 -152 -150 -146 -142 -131 -124 -117 -135 -106 -100 -119 -104 -112 -109 -114 -117 -100 -129 -104 -110 -116 -119 -102 -104 -104 -119 --1 --1 --1 --1 -104 -119 -119 -119 -119 -119 -119 -119 -114 -119 -119 -119 -119 -119 -119 -119 -104 -119 -119 -119 -126 -114 -117 -119 -127 -125 -109 -105 -116 -114 -111 -119 -119 -120 -110 -110 -122 -110 -109 -134 -116 -109 -109 -109 -109 -109 -109 -109 -109 -109 -105 -104 -109 -109 -116 --1 -109 -109 -109 -109 -109 -109 -114 -109 -114 -109 -119 -119 -104 -104 -104 -110 --1 --1 -104 -104 -110 -116 -119 -102 -104 -104 -119 -119 -104 -112 -119 -100 -107 -104 -110 -122 -110 -119 -119 -104 -119 -126 -107 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -101 -102 -102 -102 -102 -102 -101 -102 -102 -102 -102 -102 -102 -102 -112 --1 --1 -110 -111 -110 -110 -110 -111 -104 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -104 -110 -110 -104 -104 -110 -111 -105 -110 -116 -110 -102 -104 -110 -110 -104 -104 -112 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -111 -105 -110 -110 -109 -111 -135 -110 -110 -109 -110 -110 -110 -111 -104 -110 -110 -111 -104 -110 -110 -119 -104 -104 -111 -110 -110 -102 -109 -110 -135 -110 -110 -110 -104 -110 -110 -110 -110 -110 -110 -110 -110 -110 -104 -110 -110 -106 -110 -110 -137 -119 -114 -114 -115 -114 -114 -119 -116 -111 -111 -111 -116 -111 -111 -111 -110 -111 -111 -110 -112 -111 -110 -110 -112 -110 -111 -111 -112 -110 -111 -111 -110 -112 -111 -111 -116 -111 -111 -111 -111 -112 -115 -110 -110 --1 -110 -104 -109 -112 -114 -110 -110 -111 -110 -110 -111 -112 -116 -116 -101 -115 -115 -115 -115 -116 -116 -149 -111 -119 -119 -119 -160 -204 -203 -201 -206 -180 -109 -114 -109 -109 -109 -109 -109 -114 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -134 -109 -109 -109 -109 -109 -109 -116 -114 -109 -115 -102 -109 --1 --1 -109 -107 -107 -109 -116 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -101 -109 -109 -115 -102 -109 -101 -109 -109 -109 -109 -116 -109 -109 -109 -116 -114 -122 -122 -104 -104 -111 -114 -114 -116 -129 -122 -114 -114 -114 -114 -114 -114 -114 -114 -114 -114 -102 -100 -114 -104 -101 -107 -115 -114 -114 -114 -115 -122 -104 -102 -102 -109 -121 -115 -114 -110 -115 -114 -115 -114 -124 -114 -114 -100 -109 -102 -109 -114 -102 -114 -114 -114 -114 -154 -134 -117 -117 -115 -115 -117 -115 -115 -115 -115 -116 -115 -115 -115 -101 -115 -105 -110 -116 -115 -115 -115 -115 -115 -115 -115 -115 -115 -115 -115 -115 -115 -115 -124 -117 -116 -104 -124 -111 -110 -115 --1 --1 --1 -110 -114 -129 -109 -115 -127 -124 -105 -104 -105 -104 -134 -104 -104 -104 -105 -104 -117 -124 -139 -117 -110 -116 -117 -117 -119 -119 -110 -125 -117 -117 -117 -110 -117 -117 --1 --1 -109 -117 -110 -109 -117 -110 -117 -110 -114 -117 -110 -116 -110 -117 -117 -150 -117 -114 -117 -110 -119 -111 -117 -117 -117 --1 -117 -110 -109 -110 -110 -116 -117 -119 -119 -110 -117 -117 -110 -124 -117 -117 -117 -117 -110 -110 -117 -110 -110 -119 -117 -109 -117 -117 -117 -142 -117 -117 -125 -117 -110 -117 -117 -110 -116 -110 -119 -110 -110 -117 -110 -110 -116 -110 -117 -117 -110 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -136 -110 -111 -111 -119 -111 -111 --1 --1 -111 -111 -111 -111 -111 -112 -111 -111 -111 -111 -111 -111 -111 -112 -120 -111 -110 -112 -110 -112 -111 -111 -114 -116 -111 -111 --1 --1 -111 -111 -111 -111 -111 -114 -111 -119 -111 -111 -112 -111 -111 -111 -111 -110 -110 -124 -111 -110 -119 -111 -111 -111 -111 -111 -111 -111 -111 -112 -112 -111 -111 -112 -111 -112 -111 -111 -111 -111 -111 -111 -110 -114 -114 -111 --1 -110 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -111 -136 --1 --1 --1 --1 -111 -110 -110 -111 -111 -111 -111 -104 -104 -111 -111 -111 -111 -104 -111 -117 -111 -111 -104 -111 -111 -111 -110 -111 -111 -111 -111 -111 -110 -111 --1 --1 -104 -111 -117 -119 -112 -104 -119 -111 -104 -104 -144 -111 -104 -111 -117 -111 -110 -111 -104 -104 -111 -111 -111 -104 -104 -119 -111 -104 -111 -111 -111 -119 -111 -119 -111 -136 -119 -114 -111 -111 -111 -111 -111 -111 -111 -111 -104 -111 -111 -110 -111 -111 -119 -111 -119 -111 -119 -111 -111 -119 -111 -111 -119 -111 -111 -111 -119 -136 -119 -110 --1 -114 -119 -119 -119 -112 -111 -119 -111 -111 -111 -119 -111 -111 -111 -111 -119 -119 -111 -111 -136 -111 -110 -110 -111 -111 -104 -111 -125 -111 -111 -111 -111 -111 -111 -111 -119 -119 -119 -111 -119 -119 -111 -144 -129 -109 -119 -116 -117 -116 -117 -117 -121 -107 -106 -107 -115 -107 -124 -107 -107 -107 -115 -115 -107 --1 --1 --1 -107 -107 -107 -107 -107 -114 -107 -115 -107 -107 -107 -115 -107 -115 -107 -114 -107 -115 -107 -107 -115 -115 -107 -107 -107 -107 -107 -115 -132 -121 -109 -117 -117 -117 -117 -117 -117 -117 -126 -125 -114 -117 -134 -144 -115 -119 -102 -114 -120 -119 -107 -114 -122 -119 -109 -114 -129 -114 -127 -107 -106 -120 -126 -114 -115 -119 -107 -119 -115 -121 --1 -115 -121 -102 -115 -119 -119 -115 -115 -119 -107 -114 -115 -126 -119 -115 -110 -119 -112 -107 -106 -119 -115 -127 -115 -107 -144 -119 -114 -107 -107 -114 -127 -115 -119 -110 -114 -112 -124 -119 -107 -119 -115 -129 -117 -119 -130 -121 -110 -127 -115 -114 -104 -116 -119 -107 -119 -117 -114 -149 -119 -115 -119 -119 -114 -114 -119 -121 -101 -119 -119 --1 -127 -119 -114 -119 -106 -121 -101 -119 -119 -119 -121 -109 -117 -117 -119 -107 --1 -106 -114 -117 -114 -117 -107 -117 -125 -115 -125 -117 -117 -104 -115 -125 -107 -107 -116 -117 -115 -115 -109 -117 -125 -107 -111 -117 -117 -111 -111 -134 -116 -114 -119 -125 -106 -107 -117 -125 -107 -111 -125 -107 -117 -117 -115 -111 -115 -114 -116 -117 -110 -111 -116 -115 -117 -116 -115 -110 -117 -112 -115 -121 -117 -114 -115 -134 -114 -126 -106 -117 -117 -111 -111 -117 -119 -117 -117 -116 -116 -125 -117 -117 -117 -117 -117 -117 -117 -117 -117 -117 -117 -117 -111 -117 -117 -117 -117 -127 -117 -114 -111 -117 -117 -110 -117 -110 -117 -117 -117 -117 -117 -117 -111 -117 -117 -111 -117 -117 -117 -117 -117 -136 -142 -111 -117 -139 -114 -117 -116 -117 -117 -117 -111 -111 -111 -116 -117 -117 -117 -142 -111 -111 -111 -117 --1 -117 -117 -125 -105 -111 -125 -111 -111 -116 -114 -117 -125 -117 --1 --1 -119 -117 -109 -109 -109 -109 -109 -104 -117 -109 -114 -117 -109 -109 -109 -109 -115 -124 -112 -109 -112 -104 -104 -111 -111 -104 -104 -104 -104 -104 -104 -112 -112 -104 -104 -104 -129 -104 -104 -104 -104 -110 -104 -104 -104 -104 -104 -104 -104 -104 -135 -112 -112 --1 --1 --1 -104 -104 -110 -104 -110 -104 -104 -104 -111 -104 -104 -104 -112 -104 -110 -104 -110 -104 -112 -112 -112 -104 -104 -104 -104 -104 -112 -104 -104 -104 -104 -121 -109 -142 -141 -116 -117 -116 -117 -119 -116 -117 -116 -117 -117 -117 -117 -117 -117 -117 -117 -117 -125 -114 -117 -117 -125 -112 -117 -117 -125 -121 -109 -117 -119 -121 -117 -115 -114 -129 --1 -122 -117 -107 -122 -111 -105 -121 -126 -107 -117 -125 -111 -102 -102 -101 -101 -104 -102 -101 -102 -102 -101 -102 -102 -110 -106 -102 -102 -102 -102 -102 -102 -102 -110 -102 -111 -102 -114 -100 -114 -110 -110 -109 -110 -114 -101 -101 -109 -114 -110 -116 -117 -119 -119 -110 -119 -110 -104 -110 -110 -109 -119 -110 --1 -110 -117 -110 -111 -110 -110 -109 -110 -110 -111 -110 -110 -110 -111 -119 -112 -135 -110 -112 -110 -135 -110 -109 -109 -109 -112 -110 -101 -100 -100 -100 -100 -102 -100 -100 -100 -100 -102 -101 -100 --1 --1 -101 -100 -101 -101 -102 -101 -101 -102 -100 -100 -100 -125 -100 -100 -100 -101 --1 --1 -109 -104 -101 -110 -101 -122 -110 -102 -102 -102 -110 -104 -102 -109 -110 -109 -110 -110 -110 -110 -110 -127 -120 -111 -114 -111 -122 -129 -111 -110 -112 -110 -112 -109 -111 -120 -111 -111 -114 -114 -136 -109 -111 -109 -115 -115 -141 -114 -126 -125 -122 -125 -120 -124 -124 -126 -125 -125 -124 -160 -144 -130 -136 -109 -109 -109 -117 -122 -104 -109 -109 -139 -109 -100 -109 -111 -109 -109 -134 -109 -110 -109 -114 -109 -109 -109 -109 -109 -116 -109 -109 -109 -125 -109 -117 -109 -109 -109 -109 -115 -110 -109 -109 -109 -109 -116 -109 -116 -109 -100 -110 -110 -109 -109 --1 --1 --1 --1 -109 -109 -109 -110 -109 -117 -109 -110 -117 -109 -102 -109 -117 -109 -100 -134 -114 -109 -109 -109 -109 -109 -109 -109 -109 -109 -117 -109 -114 -110 -120 -110 -117 -135 -114 -110 -114 -109 -100 -115 -110 -101 -109 -109 -110 -104 -109 -110 -112 -110 -110 -109 -119 -110 -111 -109 -110 -110 -110 -109 -109 -110 --1 -110 -102 -109 -111 -110 -116 -111 -110 -110 -110 --1 -110 -110 -110 -114 -111 -111 -124 -117 -119 -119 -110 -110 -137 -110 -110 -110 -109 -110 -110 -110 -110 -110 -110 -110 -112 -114 -110 -110 -110 -109 -110 -110 -109 -109 -110 -109 -110 -110 -110 --1 -110 -110 -109 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -117 -110 -109 -110 -110 -109 -119 -109 -109 -110 -110 -110 -110 -117 -110 -109 -110 -119 -110 -110 -110 -110 -135 -110 -114 -114 -110 -119 -110 -119 -110 -110 -119 -110 -110 -114 -114 -110 -109 -119 -110 -110 -109 -110 -110 -117 -110 -110 -110 -109 -109 -109 -109 -109 --1 -109 -109 -109 -109 -110 -110 -109 -109 -109 -109 -110 -109 -109 -110 -110 -109 -109 -109 -109 -134 -110 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -117 -134 -109 -109 -109 -109 --1 -109 -109 -109 -110 -114 -114 -101 -100 -100 -100 -100 -100 -100 -100 -109 -100 -109 -100 -109 -100 -109 -100 -110 -100 -117 -100 -100 -100 -102 -100 -117 -100 -101 -100 -109 -100 -109 -100 -109 -100 -109 -109 -109 -110 -110 -110 -110 -110 -135 -110 -110 -110 -110 -111 -110 -110 -110 -110 -110 -110 -109 -110 -110 -110 -110 -110 -110 -109 -110 -110 --1 --1 --1 --1 -109 -110 -110 -110 -110 -115 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -104 -101 -106 -110 -110 -110 -110 -110 -111 -111 -110 -110 -110 -110 -110 -114 -112 -100 -109 -100 -114 -110 -117 -126 -116 -110 -110 -115 -109 -110 -110 -116 -110 -110 -110 -134 -110 -110 -114 -101 -101 -100 -109 -101 -126 -101 -100 -100 -101 -107 -109 -109 -100 -109 --1 --1 -100 -101 -101 -100 -109 -101 -101 -100 -100 -101 -106 -101 --1 --1 -101 -101 -101 -101 -101 -107 -109 -101 -107 -101 -101 -101 -100 -101 -104 -109 -101 -101 -101 -106 -109 -101 -106 -109 -101 -102 -101 -107 -101 --1 -107 -101 -101 -101 -101 -101 -101 -105 -100 -101 -100 -100 -101 -101 -101 -101 -101 -100 -101 -107 -101 -101 -100 -101 -107 -109 -109 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -101 -100 -101 -101 -101 -100 -101 -101 -102 -101 -107 -101 -101 -101 -101 -101 -101 -102 -101 -102 -102 -101 -102 -102 -102 -102 -101 -101 -127 -101 -101 -109 --1 --1 --1 --1 -109 -101 -102 -101 -107 -102 -102 -102 -101 -107 -102 -101 -102 -102 -102 -102 -110 -101 -102 -101 --1 -102 -101 -101 -102 -102 -104 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -102 -101 -127 -102 -102 -101 -102 -102 -101 -101 -102 -102 -102 -102 -102 -104 -104 -102 -102 -102 -102 -102 -102 -102 -102 -102 -101 -101 -102 -101 -102 -102 -102 -102 -104 -101 -102 -102 -102 -102 -102 -101 -102 -102 -102 -104 -102 -102 --1 --1 -102 -102 -102 -102 -101 -102 -101 -102 -102 -101 -109 -102 -109 -109 -109 -109 -107 -109 -109 -109 -109 --1 -109 -109 -109 -109 -107 -107 -107 -107 -106 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -109 -107 -107 -107 -107 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -134 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -107 -109 -109 -107 -106 -109 -109 -109 -115 -109 -109 -107 -109 --1 --1 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -107 -109 -109 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -134 -109 -109 -107 -106 -109 -107 -107 -109 -107 --1 -109 -107 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -107 -109 -109 -107 -107 -107 -107 -109 -109 -109 -107 -109 -109 -109 -109 -109 -109 -109 -109 -107 -109 -109 -109 -109 --1 -109 -109 -109 -107 -106 -107 -109 -107 -109 -116 -109 -109 -107 -109 -109 -107 -109 -109 -109 -109 -109 -134 -109 -109 -109 -109 -107 -109 -109 -107 --1 -107 -109 -109 -110 -109 -109 -109 -109 -109 -107 -107 -109 --1 -109 -109 -109 -109 -109 -109 -124 -110 -110 -102 -104 -106 -104 -104 -104 -110 -102 -104 -102 -114 -101 -114 -101 -110 -105 -110 -124 -110 -101 -102 -101 -101 --1 -102 -101 -104 -109 -107 -102 -102 -101 -114 -120 -110 -110 -110 -115 -110 -110 -110 -110 -109 -130 -114 -101 -101 -101 -107 -101 -101 -101 -101 -101 -126 -101 -102 -101 -100 -101 -102 -101 -101 -101 -100 -101 -101 -101 -101 -101 -101 -100 -101 -107 -109 -101 -100 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -101 -101 -100 -101 -101 -101 --1 --1 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -100 -100 -100 -100 -101 -100 -101 -101 -100 --1 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -107 -101 -101 -101 -107 -101 -100 -100 -101 -101 -100 -101 -100 -101 -100 --1 --1 --1 --1 -101 -101 -101 -101 -101 -102 -100 -101 -101 -101 -101 -109 -101 -101 -100 -101 -101 -100 -100 -101 -101 -101 -105 -100 -101 -101 --1 -101 -100 -100 -102 -100 -101 -101 -101 -101 -101 -101 -101 -101 -110 -100 -101 -111 -125 -109 -101 -106 -101 -101 -100 -101 -127 -100 -101 -102 -100 -101 -102 -101 -102 -102 -109 -110 -109 -102 -101 -104 -100 -101 -104 -101 -100 -102 -102 -101 -101 -104 -101 -100 -101 -101 -100 -102 -101 -101 -126 -101 -101 -101 -101 -101 -101 -101 -100 -114 -114 --1 --1 -110 -110 -109 -110 -109 -110 -110 -112 -110 -110 -109 -110 -110 -109 -109 -109 -114 -110 -111 -109 -105 -109 -111 -110 -110 -109 -109 -110 -111 -110 -111 -109 -110 -109 -110 -110 -110 -111 -112 -110 -110 -109 -109 -109 -109 -109 -109 -110 -109 -110 -110 -112 -109 -109 -109 -109 -109 -134 -135 -110 -109 -110 -134 -109 -110 -110 -109 -110 -114 --1 -109 -109 -109 -110 -109 -109 -109 -109 -109 -110 -109 -110 -110 -110 -110 -110 -109 -110 -110 -110 -110 -111 -110 -110 -110 -110 -135 -110 -110 -109 -110 -109 -110 -110 -110 -109 -110 -111 -109 -109 -111 -119 -110 -111 -110 -110 -110 -110 -110 -110 -110 -110 -110 -114 -109 -109 -110 -110 -110 -110 -110 -110 --1 --1 --1 --1 -110 -110 -110 -111 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -109 -109 -110 -109 -110 --1 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 --1 --1 --1 -110 -111 -110 -110 -111 -109 -119 -110 -110 -111 -110 -135 -110 -110 -129 -109 -110 -110 -110 -111 -110 -110 -110 -111 -110 -111 -110 -136 -135 -110 -110 -110 -110 -110 -110 -135 -135 -110 -109 -110 -111 -109 -110 -110 -114 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -109 -109 -110 -110 -110 -110 -110 -109 -109 -110 -135 --1 --1 -110 -109 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -142 -114 -114 -110 -116 -109 -111 -110 -109 -111 -111 -110 -111 -111 -105 -110 -119 -110 -110 -111 -112 -110 -114 -101 -111 -110 -110 -110 -110 -110 -111 -109 -104 -109 -109 -110 -112 -110 -109 -115 --1 --1 --1 --1 -110 -110 -110 -119 -104 -112 -117 -120 -112 -110 -110 -111 -117 -151 -132 -110 -119 -110 -110 -119 -105 -119 -110 -124 -105 -110 -110 -110 -105 -110 -116 -116 -110 -104 -110 -110 -104 -110 -119 -110 -109 -104 -109 -109 -109 -134 -109 -110 -109 -111 -110 -110 -110 -110 -110 -110 -110 -112 -110 -104 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 --1 -109 -110 -109 -111 -109 -110 -110 -110 -109 -110 -136 -110 -110 -110 -111 -110 -111 -110 -105 -112 -110 -110 -110 -110 -110 -110 -104 -110 -110 -110 -111 -104 -109 -110 -110 -110 -114 -104 -101 -120 -121 -110 -109 -115 -119 -114 -110 -119 -124 -110 -110 -110 -111 -110 -112 -111 -110 -116 -121 -120 -110 -116 -110 -117 -110 -104 -109 -111 -110 -111 --1 -110 -110 -122 -117 -119 -110 -110 -110 -111 -109 -110 -110 -110 -115 -119 -100 -110 -110 -110 -110 -141 -126 -110 -112 -119 -110 -117 -109 -102 -104 -109 -109 -109 -102 -109 -109 -109 -109 -109 -109 -109 -109 -134 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 --1 --1 -115 -109 -101 -107 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 -109 --1 -109 -109 -109 -109 -101 -101 -101 -100 -100 -101 -100 -101 -100 -101 -101 -100 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -101 -104 -101 -101 -101 -104 -101 -102 -101 -101 -101 -100 -100 -101 -100 -100 -101 -100 -100 -101 -101 -126 -100 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -101 -100 -101 -101 -101 -101 -101 -100 --1 --1 --1 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -100 -100 -101 -101 -100 -100 -101 -100 -100 -101 -101 -101 -107 -101 -101 -101 -101 -100 -102 -101 -107 -101 -101 -125 -101 -101 -101 -101 -101 -101 -100 -101 -100 -100 -101 -126 -100 -100 -102 -101 -100 -107 -101 -101 -101 -101 -100 -101 -101 -101 -101 -101 -101 -106 -101 -101 -101 -102 -101 --1 -101 -101 -101 -101 -101 -100 -100 -101 -101 -100 -101 -101 -100 -101 -101 -101 -101 -101 -107 -101 -107 -100 -101 -101 -100 -100 -102 -100 -102 -102 -126 -101 -101 -112 -109 -101 -101 -101 --1 --1 -101 -101 -101 -101 -101 -101 -101 -100 -100 -100 -100 -101 -101 -100 -106 -101 -101 -101 -101 -101 -100 -101 -101 -100 -101 -101 -101 -101 -101 -100 -126 -101 -101 -100 -101 -109 -106 -101 -114 -107 -132 -106 -132 -106 -107 -109 -107 -106 -107 -107 -107 -114 -106 -107 -107 -106 -106 -107 -107 -106 -107 -107 -131 -106 -107 -114 -107 -106 -132 -107 -107 -107 -114 -109 -114 -107 -112 -107 -114 -107 -112 -106 -107 -107 -109 -110 -107 -114 -111 -106 -107 -106 -106 -107 -106 -107 -107 -107 -107 -107 -107 -107 -107 -107 -107 -107 -107 -107 -106 -106 -110 -109 -107 -106 -109 -107 -107 -107 -110 -107 -107 -106 -110 -106 -107 -107 -107 -107 -107 -107 -106 -110 -109 -107 -109 -106 -109 -106 -106 -106 -107 -107 -132 -107 -107 -106 -107 -107 -109 -107 -107 -107 -107 -110 -115 -110 -119 -135 -110 -110 -110 -135 -109 -109 -110 -109 -110 -110 -119 -111 -107 -119 -110 -109 -110 -110 -116 -117 -100 -110 -116 -119 -101 -116 -115 -116 -110 -110 -116 -109 -110 -110 -110 -110 -109 -115 -110 -116 -109 -110 -116 -110 -110 -110 -116 -115 -110 -109 -117 -116 -110 -116 -110 -110 -110 -135 -119 -110 -105 -110 -109 -110 -110 -110 -111 -127 -110 -104 -110 -110 -135 -110 -110 -110 -110 -116 -117 -110 -110 -110 -119 -110 -104 -109 -111 -109 -110 -110 -109 -109 -110 -110 -116 -109 -115 -110 -110 -110 -110 -110 -110 -116 -110 -110 -110 -110 -110 -116 -109 -109 -110 -109 -110 -111 -115 -114 -114 -110 -109 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -114 -114 -119 -110 -112 -109 -110 -111 -110 -114 --1 --1 --1 -117 -109 -110 -110 -110 -110 -114 -114 -114 -110 -110 -134 -110 -110 -110 -109 -109 -110 -109 -110 -110 -110 -110 -112 -110 -109 -111 -110 -111 -109 -110 -110 --1 -110 -111 -110 -110 -110 -110 -109 -109 -110 -110 -110 -110 -110 -109 -110 -110 -110 -110 -110 -135 -110 -110 -104 -110 -110 -110 -110 -112 -110 -110 -135 -110 -110 -117 -110 -109 -110 -109 -110 -110 -110 -110 -110 -110 -110 -119 -110 -110 -111 -110 -110 -111 -112 -111 -110 -119 -120 -110 -112 -110 -120 -110 -119 -120 -119 -111 -120 -116 -110 -110 --1 -109 -110 -125 -116 -111 -110 -119 -116 -110 -110 -110 -110 -110 -110 -136 -110 -109 -109 -109 -110 -110 -110 -110 -116 -110 -109 -112 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -109 -110 -110 -135 -110 -109 -110 -114 -109 -110 -109 -109 -110 -110 -109 -110 -110 -110 -110 -110 -110 -110 -110 -110 -120 -110 -110 -110 -110 -134 --1 -110 -109 -110 -110 -110 -101 -102 -102 -102 -102 -102 -102 -102 -102 -114 -107 -109 -109 -107 -106 -107 -106 -107 -107 -107 -107 -107 -114 -107 -107 -107 -107 -107 -107 -106 -107 -107 -109 -109 -109 -107 -106 -106 -107 -109 -114 -109 -110 -107 -107 -107 -109 -107 -109 -107 -110 -104 -109 -110 -110 -109 -110 -115 -107 -110 -110 -110 -114 -114 -109 --1 --1 -110 -110 -117 -111 -101 -107 -114 -110 -110 -111 -111 -110 -111 -109 -109 -110 -109 -109 -109 -110 -109 -110 -119 -109 -109 -117 -110 -110 -129 -109 -110 -110 -110 -110 -110 -110 -110 -110 -110 -111 -110 -109 -109 -110 -110 -135 -109 -110 -110 -110 -110 -110 -109 -110 -110 -110 -111 -111 -110 -110 -104 -110 -110 -104 -114 -114 -115 -111 -109 --1 -110 -112 -110 -122 -110 -100 -109 -102 -102 -102 -101 -102 -102 -102 -102 -101 --1 --1 --1 -109 -102 -102 -102 -102 -110 -102 -102 -102 -102 -102 -102 -101 -101 -102 -101 -101 -106 -101 -101 -102 -109 -102 -101 -111 -101 -102 -102 -102 -102 --1 --1 -110 -110 -110 -110 -116 -110 -104 -121 -102 -101 -106 -106 -109 -101 -101 -101 -101 -107 -101 -101 -107 -114 -110 -109 -110 -109 -109 -109 -117 -117 -119 -117 -117 -142 -119 -117 -121 -109 -107 -101 -101 -107 -101 -100 -109 -109 -126 -101 -101 --1 -101 -114 -120 -114 -114 -114 -122 -109 -109 -114 -122 -114 -114 -122 -114 --1 --1 -114 -114 -114 -114 -114 -114 -117 -117 -114 -117 -114 -114 -119 -117 -117 -119 -117 -119 -117 -125 -117 -129 -116 -104 --1 --1 -104 -104 -104 -104 -104 -104 -104 -104 -104 -104 -104 -112 -104 -104 -104 -104 -104 -104 -107 -104 -104 -104 -129 -104 -104 -104 -104 -129 -104 -104 -110 -112 -104 -104 -104 -104 -104 -104 -104 -104 -104 -109 -104 -104 -104 -136 -117 -104 -104 -104 -104 -112 -104 -104 -104 -104 -104 -104 -104 -105 -104 -104 -134 -121 -109 -104 -104 -105 -104 -112 -104 -112 -104 -136 -117 -104 -104 -104 -110 -104 -104 -120 -129 -104 -104 -104 -112 -104 -104 -104 -104 -104 -129 -129 -124 -107 -109 -107 -107 -109 -107 -114 -107 -102 -107 -107 -107 -107 --1 --1 --1 -107 -115 -101 -107 -101 -107 -107 -107 -107 -114 -107 -107 -107 -132 -107 -109 -107 -107 -107 -107 -107 -107 -107 -114 -107 -107 -101 -117 -101 -101 -109 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -102 -101 -109 -101 -101 -101 -101 -101 -101 -101 -101 -109 -101 -101 -101 -102 -107 -101 -107 -101 -101 -102 --1 --1 -101 -101 -101 -101 -101 -109 -102 -101 -101 -101 -110 -101 -101 -102 -109 -101 -101 -101 -101 -101 -107 -109 -109 -102 -100 -101 -101 -102 -101 -107 -102 -101 -101 -109 -109 -101 -129 -124 -114 -104 -106 -107 -112 -104 -104 -104 -149 -130 -110 -105 -104 -112 -104 -104 -104 -104 -104 -112 -104 -104 --1 --1 -104 -104 -104 -104 -104 -104 -104 -104 -110 -112 -105 -110 -105 -105 -104 -111 -114 -104 -105 -107 -122 -114 -102 -110 -105 -102 -102 -102 -106 -104 -114 -114 -114 -115 -114 -109 -114 -121 -121 -114 -114 -116 -104 -104 -104 -106 -112 -112 -104 -114 -114 -105 -112 -104 -112 -105 -105 -104 -104 -109 -104 -104 -104 -104 -129 -124 -109 -104 -104 -109 --1 -109 -104 -109 -104 -104 -104 -104 -104 -104 -104 -104 -104 -104 -104 -105 -104 -104 -109 -104 -104 -109 -112 -104 -104 -104 -104 -104 -104 -134 -104 -104 -105 -110 -104 -114 -105 -111 -104 -105 -105 -105 -105 -112 -129 -129 -139 -104 -104 -105 -104 -105 -119 -109 -109 -120 -110 -112 -104 -131 -104 -104 -104 -112 -104 -104 -104 -104 -112 -112 -112 --1 --1 -104 -104 -104 -104 -112 -104 -104 -104 -112 -112 -104 -104 -104 -104 -104 -105 -104 -104 -105 -129 -104 -105 -112 -105 -104 -109 -102 -109 -114 -110 -110 -112 -109 -135 -110 -111 -110 --1 -146 -126 -110 -110 -109 -111 -110 -114 -116 -117 -110 -110 -111 -110 -114 -114 -109 -110 -111 -110 -110 -110 -110 -110 -115 -110 -111 -110 -110 -110 -111 -117 -110 -110 -109 -110 -116 -110 -117 -116 -110 -110 -110 -110 -116 -111 -109 -109 -117 -116 -110 -109 -110 -110 -120 -116 -110 -109 -109 -116 -112 -104 -109 -115 -110 -115 -110 -101 --1 -105 -111 -116 -110 -110 -115 -110 -110 -109 -109 -110 -109 -114 -110 -110 -109 -110 -109 -109 -116 -110 -110 -110 -110 -119 -116 -110 -110 -110 -110 -110 -110 -110 -109 -111 -110 -110 -109 -110 -110 -102 -104 -110 -110 -109 -110 -110 -109 -110 -117 -119 -115 -116 -110 -110 -104 -110 -109 -109 -109 -109 -110 -109 -115 -110 -111 -104 -104 -115 -109 --1 --1 -115 -109 -100 -110 -110 -110 -110 -116 -110 -110 -110 -115 -109 -116 -109 -100 -110 -110 -110 -111 -110 -114 -109 -121 -111 -114 -109 -102 -109 -110 -110 -109 -104 -109 -111 -110 -111 -109 -109 -110 -110 -124 -110 -110 -110 -119 -110 -110 -110 -110 -110 -110 -110 -134 -110 -110 -111 -135 -110 -109 -110 -110 -104 -109 -109 -110 -110 -110 -110 -110 --1 --1 -110 -116 -109 -110 -119 -104 -110 -110 -110 -104 -110 -110 -110 -110 -111 -109 -110 -109 -111 -110 -110 --1 --1 -111 -109 -115 -110 -109 -109 -112 -110 -110 -110 -109 -110 -110 -117 -110 -135 -112 -104 -109 -110 -109 -117 -109 -109 -110 -109 -109 -110 -114 -101 -101 -101 -101 -101 --1 --1 --1 -100 -109 -101 -101 -109 -101 -100 -101 -101 -101 -110 -101 -109 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -101 -100 -101 -101 -105 -101 -135 -101 -100 -126 -101 -109 -101 -109 -100 -101 -101 -109 -101 -101 -101 -101 -109 -101 -101 -101 -100 -109 -101 -101 -100 -100 -101 -101 -101 -101 -101 -104 -101 -101 -101 -109 -101 -101 -114 -114 -142 -109 -114 -117 -109 -110 -109 -110 -109 -110 -109 -115 -116 -119 -110 -111 -111 -110 -104 -109 -110 -110 -111 -110 -111 -110 -109 -110 -110 -110 -111 -114 -110 -126 -111 -101 -117 -119 -110 -110 -104 -110 -112 -110 -110 -116 -110 --1 --1 --1 --1 -109 -110 -110 -115 -110 -110 -111 -109 -111 -109 -109 -120 -110 -104 -114 -110 -109 -110 -104 -109 -110 -110 -110 -110 -115 --1 --1 -109 -112 -105 -110 -116 -111 -111 -110 -111 -104 -112 -109 -109 -110 -112 -110 -111 -112 -110 -111 -111 -112 -114 -111 -114 -154 -109 -102 -109 -110 -110 -110 -110 -111 -112 -112 -116 -110 -109 -115 -111 -109 -114 -109 -109 -116 -110 -110 -112 -111 -111 -112 -119 -119 -110 -111 -111 -111 -112 -109 -111 -110 -134 -114 -134 -111 -109 -119 -112 -109 --1 --1 -114 -109 -119 -109 -110 -111 -109 -110 -110 -109 -110 -110 -111 -110 -110 --1 --1 -119 -110 -110 -110 -110 -110 -110 -110 -110 -111 -111 -110 -116 -112 -110 -117 -110 -111 -110 -110 --1 -110 -110 -110 -111 -110 -110 -110 -109 -110 -119 -119 -110 -110 -119 -119 -110 -110 -110 -111 -110 -110 -110 -111 -111 -111 -119 -119 -117 -109 -110 -110 -112 -111 -117 -110 -111 -111 -111 -110 -109 -110 -110 -110 -110 -110 -115 -110 -110 -109 -110 -115 -110 -110 -110 -109 -109 -110 -110 -110 -110 -110 -110 -110 -109 -111 -110 -115 -110 -110 -110 --1 -111 -104 -110 -110 -110 -109 -110 -109 -110 -119 -117 -111 -110 -110 --1 -111 -111 -110 -111 -110 -110 -110 -110 -110 -110 -109 -110 -110 -110 -110 -110 -110 -110 -111 -109 -119 -109 -110 -110 -119 -110 -117 -111 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -110 -124 -115 -110 -110 -109 -110 -110 -104 -109 -110 -110 -110 -116 -110 -102 -109 -110 -102 -116 -111 -110 -119 -119 -110 -110 -112 -135 -109 -110 -110 -104 -110 -110 -112 -119 --1 --1 --1 -110 -110 -110 -110 -116 -111 -117 -111 -104 -119 -114 -136 -111 -109 -110 -109 -111 -109 -112 -110 -110 -111 -125 -111 -110 -109 diff --git a/scripts/dly_error_profiles/dly_error_profile_8.dat b/scripts/dly_error_profiles/dly_error_profile_8.dat deleted file mode 100644 index 78daa6c591ff23c80db97ec46831d143b29da51b..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_8.dat +++ /dev/null @@ -1,8000 +0,0 @@ -184 -186 -186 -186 -188 -188 -190 -190 -190 -195 -195 -195 -195 --1 --1 --1 -100 -100 -100 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 --1 --1 -115 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 --1 -132 -132 -132 -134 -134 -134 -136 -153 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -142 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 --1 -163 -163 -163 -165 -165 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 --1 --1 --1 -123 -132 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -136 -136 -142 -136 -136 -138 -138 --1 --1 --1 -146 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 --1 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -155 -155 -155 -157 -157 --1 --1 -159 -165 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 -174 -176 -176 -178 -178 -178 -178 -180 -180 -184 -184 -184 -184 -184 -184 -190 -186 -188 -188 -188 -190 -190 -195 -195 -195 -195 -216 -197 -197 -197 -197 -199 --1 -199 -199 -199 -201 -201 -201 -205 -205 -121 -121 -121 -123 -123 -123 -125 -125 -127 -100 -100 -100 --1 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 --1 --1 --1 --1 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 --1 -159 -142 -142 -144 -144 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -157 -157 -157 -157 --1 --1 -159 -163 -163 -163 -100 -100 -100 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 --1 --1 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -132 -127 -132 -132 -132 -132 -132 -134 -134 -134 -134 -136 -136 -138 -138 --1 -142 -142 -142 -142 -142 -144 -144 -144 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 --1 --1 -157 -157 -159 -159 -159 -176 -163 -163 -163 -163 -163 -163 -163 -165 -165 -163 -167 --1 --1 -174 -174 -174 -174 -190 -174 -174 -176 -176 -178 -178 -180 -180 -180 -180 -184 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 --1 --1 --1 -190 -190 -190 -100 -100 -100 -100 -100 -102 -102 -104 -106 -106 -106 -106 -111 -106 -111 -111 -111 -113 -111 -111 -113 -113 -115 -115 -115 -117 -117 -121 -121 -121 --1 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 --1 -132 -136 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -144 -144 -146 -146 -163 -148 -148 -153 -153 -153 -153 -153 -153 -153 -153 -155 -155 -155 --1 --1 --1 -159 -159 -159 -159 -159 -159 -163 -163 -163 -165 -163 -165 -163 -163 -163 -163 -163 -121 -121 -123 -123 -127 -125 -127 -127 -127 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -138 -142 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -148 -153 -153 -155 -155 --1 --1 -157 -159 -159 -159 -159 -163 -159 -163 -163 -163 -163 -163 -184 -163 -165 -165 -167 -169 -169 -174 --1 -174 -174 -174 -176 -174 -176 -176 -180 -180 -197 -180 --1 -184 -180 -184 -184 -184 -186 -184 -186 -188 -188 -190 -190 -188 -188 -190 -190 -195 -190 -195 -190 -195 -190 --1 --1 --1 -195 -195 -195 -195 -195 -195 -197 -100 -100 -100 -115 -115 -117 -121 -117 -121 -121 -121 -123 -123 -123 -125 --1 --1 -127 -125 -132 -132 -132 -132 -132 -134 -136 -134 -136 -136 -136 -138 -138 -142 -157 --1 -142 -142 -142 -144 -144 -144 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -157 -155 -155 --1 --1 --1 --1 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -165 -167 -167 -169 -169 -169 -174 -169 -174 --1 -174 -174 -174 -174 -174 -174 -195 -178 -178 -178 -180 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -188 -190 -190 -190 -190 -195 -195 -195 -195 -195 -195 -197 -199 -199 -199 -199 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -106 -111 -111 -111 -111 -111 -113 --1 -115 -115 -115 -117 -117 -121 -117 -121 -121 -121 -121 -123 -121 -123 -125 -125 -127 -127 -127 --1 --1 -132 -132 -132 -132 -134 -134 -136 -134 -136 -138 -138 -138 -138 -138 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -165 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -117 -117 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -125 -127 --1 -132 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -138 --1 -138 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 --1 --1 --1 -153 -153 -153 -153 -153 -155 -155 -157 -176 -157 -159 -159 --1 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 --1 --1 -174 -174 -174 -190 -174 -176 -176 -178 -178 -178 -195 --1 --1 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -117 -117 -121 --1 --1 --1 -121 -121 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 --1 -132 -134 -134 -134 -136 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 --1 --1 --1 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -146 -148 -148 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -123 -123 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -144 -163 -144 -146 -146 -148 -148 --1 -153 -153 -153 -155 -153 -153 -153 -155 -155 -157 -157 -157 -159 -159 -163 -163 -178 -165 --1 -163 -165 -165 -167 -167 -169 -169 -174 -174 -174 -174 -174 -174 -174 -176 -176 -176 -178 -178 -178 -180 -197 -180 -180 --1 -184 -184 -201 -184 -186 -186 -186 -186 -188 -188 -186 --1 --1 -188 -195 -195 -195 -195 -195 -111 -111 -111 -111 -113 -132 --1 -115 -115 -115 -115 -117 -117 -117 -121 -121 -123 -121 -121 -121 -123 -123 -123 --1 --1 --1 -125 -123 -127 -127 -125 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -100 -100 -100 -102 -102 -102 -104 -104 -104 -132 -106 -123 -111 -111 -111 -111 -111 -111 --1 -113 -113 -113 -115 -115 -115 -117 -117 -117 -117 -121 -123 -121 -121 -121 -121 -121 -123 -123 --1 --1 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -132 -132 -134 -184 -186 -186 -186 -188 -188 --1 --1 -190 -195 -195 -195 -195 -195 -197 -197 -100 -100 -100 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -113 -115 -115 -115 -115 -117 -117 -117 --1 --1 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -153 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -142 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 -123 --1 --1 --1 -132 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -136 -136 -142 --1 --1 --1 -138 -142 -142 -142 -146 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -155 -155 -155 -157 -157 -159 -159 --1 --1 --1 --1 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 --1 -174 -190 -174 -174 -176 -176 -178 -178 -178 -178 -180 -180 -184 -184 --1 --1 --1 -184 -190 -186 -188 -188 -188 -190 -190 -195 -195 -195 -195 -216 -197 -197 -197 -197 -199 -199 -199 -199 -199 -201 -201 -201 -205 -205 -121 -121 -121 -123 -123 -123 -125 -125 -127 -100 -100 -100 -100 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 --1 --1 --1 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -159 -142 -142 -144 --1 --1 --1 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -157 -157 -157 -157 -159 -159 -159 -163 -163 -163 -100 -100 -100 -100 -100 -102 -102 -104 --1 --1 --1 -106 -111 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -132 -127 -132 -132 -132 -132 -132 -134 -134 -134 -134 -136 -136 -138 -138 --1 -142 -142 -142 -142 -142 -144 -144 -144 -144 -146 -146 -148 -148 --1 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -176 -163 -163 --1 -163 -163 -163 -163 -165 -165 -163 -167 -167 -169 -174 -174 -174 -174 -190 -174 --1 --1 --1 -178 -178 -180 -180 -180 -180 -184 -184 -184 -184 -184 --1 --1 -186 -186 -188 -188 -186 -188 -190 -190 -190 -190 -100 -100 -100 -100 -100 -102 -102 -104 -106 -106 -106 -106 -111 -106 -111 -111 -111 --1 --1 -111 -113 -113 -115 -115 -115 -117 -117 -121 -121 -121 --1 --1 --1 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 --1 --1 -136 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 --1 -142 -144 -144 -144 -144 -144 -144 -144 -146 -146 -163 -148 -148 -153 -153 -153 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -165 -163 -165 -163 -163 -163 -163 -163 -121 -121 -123 -123 -127 -125 -127 -127 -127 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -138 -142 -142 -142 -142 -142 --1 --1 -144 -144 -146 -146 -148 -148 -153 -153 -155 -155 -157 -155 -157 -159 -159 -159 -159 -163 -159 -163 -163 -163 -163 -163 -184 -163 -165 -165 -167 -169 -169 -174 -169 -174 -174 -174 -176 -174 -176 -176 -180 -180 -197 -180 -180 -184 -180 -184 -184 -184 -186 -184 -186 -188 -188 -190 -190 -188 -188 -190 -190 -195 -190 -195 -190 -195 -190 -195 -190 -195 --1 -195 -195 -195 -195 -195 -197 -100 -100 -100 -115 -115 -117 -121 -117 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -125 -132 -132 -132 -132 -132 -134 -136 -134 -136 -136 --1 --1 -138 -142 -157 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -148 -148 --1 --1 -153 -153 -153 -153 -157 -155 -155 -157 -157 -157 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -165 -167 -167 -169 -169 -169 -174 -169 -174 -174 -174 -174 -174 -174 -174 -174 -195 -178 -178 -178 -180 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -188 -190 -190 -190 -190 -195 -195 -195 -195 --1 -195 -197 -199 -199 -199 -199 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -121 -117 -121 -121 -121 -121 -123 -121 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -134 -136 -138 -138 --1 -138 -138 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -165 --1 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -117 -117 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 --1 -144 -146 -146 -146 -148 -148 -148 -153 -153 -153 -153 -153 -155 -155 -157 -176 -157 -159 -159 --1 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 -176 -176 -178 -178 -178 --1 --1 --1 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 --1 --1 -127 -127 -132 -132 -132 -132 -148 -132 -134 -134 -134 -136 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -146 -148 -148 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -123 -123 -125 --1 --1 --1 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -144 -163 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 -153 -153 -153 --1 -155 -157 -157 -157 -159 -159 -163 -163 -178 -165 -163 -163 -165 -165 -167 -167 -169 -169 -174 -174 -174 -174 -174 -174 -174 -176 -176 -176 -178 -178 -178 -180 -197 -180 -180 -180 -184 -184 -201 -184 -186 -186 -186 -186 -188 -188 -186 -190 -190 -188 -195 -195 -195 -195 -195 -111 -111 -111 -111 -113 --1 -115 -115 -115 -115 -115 -117 -117 -117 -121 -121 -123 -121 -121 -121 -123 -123 -123 -123 -123 -125 -125 -123 -127 -127 -125 -127 -132 -132 -132 -132 -132 -132 -134 --1 --1 -100 -100 -100 -102 -102 -102 -104 -104 -104 -132 -106 -123 -111 -111 -111 -111 -111 -111 -127 -113 -113 -113 -115 -115 -115 -117 -117 -117 -117 --1 --1 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -132 -132 -134 -184 -186 -186 -186 -188 -188 -190 -190 -190 -195 -195 -195 -195 -195 -197 -197 -100 --1 -100 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -113 -115 --1 --1 --1 -117 -117 -117 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 --1 -132 -132 -132 -134 -134 -134 -136 -153 -138 -138 --1 --1 --1 -142 -142 -142 -144 -144 -142 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 -123 -123 -123 -123 -132 -125 -127 -127 -127 -127 -132 -132 -132 -132 --1 --1 --1 -134 -136 -136 -136 -142 -136 -136 -138 -138 -142 -142 -142 -146 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -155 -155 -155 -157 -157 --1 -159 -159 -165 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 -174 -176 -176 -178 -178 -178 -178 -180 -180 -184 -184 -184 -184 -184 -184 -190 -186 -188 -188 -188 -190 -190 -195 -195 -195 -195 -216 --1 --1 -197 -197 -199 -199 -199 -199 -199 -201 -201 -201 -205 -205 -121 -121 -121 --1 --1 -123 -125 -125 -127 -100 -100 -100 -100 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 --1 --1 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 --1 -136 -136 -138 -138 -138 -142 -142 -159 -142 -142 -144 -144 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -157 -157 -157 -157 -159 -159 -159 -163 -163 -163 -100 -100 -100 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -113 --1 --1 --1 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 --1 --1 --1 --1 -132 -132 -132 -132 -132 -134 -134 -134 -134 -136 -136 --1 --1 --1 -142 -142 -142 -142 -142 -144 -144 -144 -144 -146 -146 -148 -148 -148 -153 --1 -153 -155 -155 -155 -157 -157 -159 -159 -159 -176 -163 -163 -163 -163 -163 -163 -163 -165 -165 --1 --1 --1 -169 -174 -174 -174 -174 -190 -174 -174 -176 -176 -178 -178 -180 -180 -180 -180 -184 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -186 -188 -190 --1 --1 -190 -100 -100 -100 -100 -100 -102 -102 -104 -106 -106 -106 -106 -111 -106 -111 -111 -111 -113 -111 -111 -113 -113 -115 -115 -115 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 --1 -132 -132 -132 -136 -134 -134 -136 -136 -138 -138 -138 --1 --1 -142 -142 -142 -144 -144 -144 -144 -144 -144 -144 -146 -146 --1 --1 --1 -153 -153 -153 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -165 -163 -165 -163 -163 -163 -163 -163 -121 -121 -123 -123 -127 --1 --1 -127 -127 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -138 -142 -142 -142 --1 -142 -142 -144 -144 -144 -146 -146 -148 -148 -153 -153 -155 -155 -157 -155 -157 -159 -159 -159 -159 -163 -159 -163 -163 -163 -163 -163 -184 -163 -165 -165 -167 -169 -169 -174 -169 -174 -174 -174 -176 -174 -176 -176 -180 -180 -197 -180 -180 -184 -180 -184 -184 -184 -186 -184 -186 -188 -188 -190 -190 -188 -188 -190 -190 -195 -190 -195 -190 -195 -190 --1 -190 -195 -195 -195 -195 -195 -195 -195 -197 -100 -100 -100 -115 -115 -117 -121 -117 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -125 -132 -132 -132 -132 -132 -134 -136 -134 -136 -136 -136 -138 -138 -142 -157 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -157 -155 -155 -157 -157 -157 -159 -163 -163 -163 -163 -163 -163 --1 --1 --1 -165 -165 -167 -167 -169 -169 -169 -174 -169 -174 -174 -174 -174 -174 -174 -174 -174 -195 -178 -178 -178 -180 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -188 -190 -190 -190 -190 -195 -195 -195 -195 --1 --1 --1 -199 -199 -199 -199 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -100 -100 -100 --1 --1 -104 -104 -106 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -115 -115 --1 -117 -117 -121 -117 -121 -121 -121 -121 -123 -121 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 --1 --1 -134 -136 -134 -136 -138 -138 -138 -138 -138 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -165 -148 -153 --1 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -163 --1 -163 -163 -163 -163 -165 -165 -167 -167 -117 -117 -121 -121 -121 -121 -121 -121 --1 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -148 -148 -148 -153 -153 -153 -153 -153 -155 -155 -157 -176 -157 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 --1 --1 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 -176 -176 -178 -178 -178 -195 -180 -180 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 --1 --1 --1 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -148 -132 -134 -134 -134 -136 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 --1 --1 --1 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -146 -148 -148 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -123 -123 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -144 -163 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 -153 -153 -153 -155 -155 -157 -157 -157 -159 -159 -163 -163 -178 -165 -163 -163 -165 -165 -167 -167 -169 -169 -174 --1 --1 --1 -174 -174 -174 -176 -176 -176 -178 -178 -178 -180 -197 -180 -180 -180 -184 -184 -201 -184 -186 -186 -186 -186 -188 -188 -186 -190 -190 -188 -195 -195 -195 -195 -195 -111 -111 -111 -111 -113 -132 -115 -115 -115 -115 -115 -117 -117 -117 -121 -121 --1 -121 -121 -121 -123 -123 -123 -123 -123 -125 -125 -123 -127 -127 -125 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -100 -100 -100 -102 -102 -102 -104 -104 -104 -132 -106 -123 -111 -111 -111 -111 -111 -111 -127 -113 -113 -113 -115 -115 -115 -117 -117 -117 -117 -121 -123 -121 -121 -121 -121 -121 -123 -123 -123 -123 --1 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -132 -132 -134 -184 -186 -186 -186 -188 -188 -190 -190 -190 -195 -195 -195 -195 -195 -197 -197 -100 -100 -100 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -113 -115 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 --1 -132 -132 -132 -132 -132 -134 -134 -134 -136 -153 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -142 -146 -146 --1 -148 -148 -153 -153 -153 -153 -153 -153 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 -123 -123 -123 -123 -132 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -136 -136 -142 -136 -136 -138 -138 -142 -142 -142 -146 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -146 -148 -148 -153 -153 --1 --1 -153 -153 -155 -155 -155 -155 -155 -157 -157 -159 -159 --1 --1 --1 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 --1 --1 -174 -190 -174 -174 -176 -176 -178 -178 -178 -178 -180 -180 -184 -184 -184 -184 -184 -184 -190 -186 -188 -188 -188 -190 -190 -195 -195 -195 -195 -216 -197 -197 --1 -197 -199 -199 -199 -199 -199 -201 -201 -201 -205 -205 -121 -121 -121 -123 -123 -123 -125 -125 -127 -100 -100 -100 -100 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 --1 --1 --1 --1 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -159 -142 --1 --1 --1 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -157 -157 -157 --1 --1 --1 --1 -163 -163 -163 -100 -100 -100 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -121 -121 -121 -121 --1 --1 --1 --1 -125 -125 -125 -127 -132 -127 -132 -132 -132 -132 -132 -134 --1 --1 --1 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -144 -144 -146 -146 -148 --1 --1 --1 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -176 -163 -163 -163 -163 --1 -163 -163 -165 -165 -163 -167 -167 -169 -174 -174 -174 -174 --1 --1 --1 -176 -176 -178 -178 -180 -180 -180 -180 -184 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -186 -188 -190 -190 -190 -190 -100 -100 -100 -100 -100 -102 -102 -104 -106 -106 -106 -106 -111 -106 -111 -111 -111 --1 --1 -111 -113 -113 -115 -115 -115 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 --1 --1 -132 -132 -132 -132 -132 -132 -136 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -144 -144 --1 -144 -144 -146 -146 -163 -148 -148 -153 -153 -153 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 --1 -159 -159 -159 -163 -163 -163 -165 -163 -165 -163 -163 -163 -163 -163 -121 -121 -123 -123 -127 -125 -127 -127 -127 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 --1 -138 -142 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -148 -153 -153 -155 -155 -157 -155 -157 -159 -159 -159 -159 -163 -159 -163 -163 -163 -163 -163 -184 -163 -165 -165 -167 -169 -169 -174 -169 -174 -174 --1 --1 --1 -176 -176 -180 -180 -197 -180 -180 -184 -180 -184 -184 -184 -186 -184 -186 -188 -188 -190 -190 -188 -188 -190 --1 --1 --1 -195 -190 -195 -190 -195 -190 -195 -195 -195 -195 -195 -195 -195 -197 -100 -100 -100 -115 -115 -117 -121 -117 --1 -121 -121 -123 -123 -123 -125 -125 -127 -127 -125 -132 -132 -132 -132 -132 -134 -136 -134 -136 -136 -136 -138 -138 -142 -157 -142 --1 --1 --1 -144 -144 -144 -146 -146 -146 -148 -148 -153 -153 -153 -153 --1 --1 --1 --1 -155 -157 -157 -157 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -165 -167 -167 -169 -169 -169 -174 -169 -174 -174 -174 -174 -174 -174 -174 -174 -195 -178 -178 -178 -180 -184 -184 -184 -184 --1 -184 -186 -186 -188 -188 -188 -190 -190 -190 -190 -195 -195 -195 -195 -195 -195 -197 -199 -199 -199 -199 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -121 --1 --1 --1 -121 -121 -123 -121 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -134 -136 -138 -138 --1 -138 -138 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -165 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -117 -117 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 --1 --1 -138 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -148 -148 -148 --1 --1 --1 -153 -153 -155 -155 -157 -176 -157 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 -176 -176 -178 -178 -178 -195 -180 -180 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 --1 --1 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -127 --1 --1 -132 -132 -132 -148 -132 -134 -134 -134 -136 -136 -136 -136 -138 -138 --1 --1 --1 --1 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -146 -148 -148 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 --1 --1 --1 -127 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -144 -163 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 -153 -153 -153 -155 --1 -157 -157 -157 -159 -159 -163 -163 -178 -165 -163 -163 -165 -165 -167 -167 -169 -169 -174 -174 -174 -174 -174 -174 -174 -176 -176 -176 -178 -178 -178 -180 -197 -180 -180 -180 -184 -184 -201 -184 -186 -186 -186 -186 --1 -188 -186 -190 -190 -188 -195 -195 -195 -195 -195 -111 --1 -111 -111 -113 -132 -115 -115 -115 -115 -115 -117 -117 -117 -121 -121 -123 -121 -121 -121 -123 -123 -123 -123 -123 -125 --1 --1 -127 -127 -125 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -100 -100 -100 -102 -102 -102 -104 -104 -104 -132 -106 -123 -111 --1 -111 -111 -111 -111 -127 -113 -113 -113 -115 -115 -115 -117 -117 -117 -117 -121 -123 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -132 --1 --1 --1 -186 -186 -186 -188 -188 -190 -190 -190 -195 -195 -195 -195 -195 -197 -197 -100 -100 -100 -100 -100 -100 -102 --1 --1 --1 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -113 -115 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -153 -138 -138 --1 --1 --1 -142 -142 -142 -144 -144 -142 -146 -146 -146 -148 -148 -153 -153 -153 -153 --1 --1 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 -123 -123 -123 -123 -132 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -136 -136 -142 -136 -136 -138 -138 -142 -142 -142 -146 -142 -142 -142 -144 --1 --1 -144 -144 -146 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -155 -155 -155 -157 -157 -159 -159 -159 -165 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 --1 --1 -176 -178 -178 -178 -178 -180 -180 -184 -184 -184 -184 -184 -184 -190 -186 -188 -188 -188 -190 -190 -195 -195 -195 -195 -216 -197 -197 -197 -197 -199 --1 --1 --1 --1 --1 -201 -201 -205 -205 -121 -121 -121 -123 -123 -123 -125 -125 -127 -100 -100 -100 -100 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 --1 --1 --1 -144 -144 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -157 -157 -157 -157 -159 -159 -159 -163 -163 -163 -100 -100 -100 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -132 -127 -132 -132 -132 -132 -132 -134 -134 --1 --1 --1 -136 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -144 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -176 -163 -163 -163 -163 -163 -163 -163 -165 -165 -163 -167 -167 -169 -174 -174 -174 -174 -190 -174 -174 -176 -176 -178 -178 -180 -180 -180 -180 -184 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -186 --1 --1 --1 -190 -190 -100 -100 -100 -100 -100 -102 -102 -104 -106 -106 -106 -106 -111 -106 -111 -111 -111 -113 -111 -111 -113 --1 -115 -115 -115 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 --1 --1 --1 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -144 -144 -146 -146 -163 -148 -148 -153 -153 -153 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -165 -163 -165 -163 -163 --1 -163 -163 -121 -121 -123 -123 -127 -125 -127 -127 -127 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -138 -142 -142 -142 --1 -142 -142 -144 -144 -144 -146 -146 -148 -148 -153 -153 -155 -155 -157 -155 -157 -159 -159 -159 -159 -163 -159 -163 -163 -163 -163 -163 -184 -163 -165 -165 -167 -169 -169 -174 -169 -174 -174 --1 -176 -174 -176 -176 -180 -180 -197 -180 -180 -184 -180 -184 -184 -184 -186 -184 -186 -188 -188 -190 -190 -188 -188 -190 -190 -195 -190 -195 -190 -195 -190 -195 -190 -195 -195 -195 -195 -195 -195 -195 -197 -100 -100 -100 -115 -115 -117 -121 -117 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -125 -132 -132 -132 -132 -132 -134 -136 -134 -136 -136 --1 -138 -138 -142 -157 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 -148 -148 -153 -153 --1 -153 -153 -153 -157 -155 -155 -157 -157 -157 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -165 -167 -167 -169 -169 --1 --1 --1 -174 -174 -174 -174 -174 -174 -174 -174 -195 -178 -178 -178 --1 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 -188 -190 -190 -190 -190 -195 --1 --1 --1 -195 -195 -197 -199 -199 -199 -199 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -106 -111 -111 -111 -111 -111 -113 --1 --1 --1 --1 -117 -117 -121 -117 -121 -121 -121 -121 -123 -121 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -134 -136 -138 --1 --1 --1 --1 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -165 --1 --1 --1 --1 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -117 -117 -121 -121 -121 --1 --1 -121 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -134 -136 --1 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -148 -148 -148 -153 --1 --1 --1 -153 -155 -155 -157 -176 -157 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 -190 -174 -176 -176 -178 -178 --1 --1 -180 -180 -100 -100 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -148 -132 -134 -134 -134 -136 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 --1 -142 -142 -144 -144 -144 -146 -146 -146 -146 -148 -148 -148 -153 --1 --1 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -123 -123 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 --1 --1 -138 -138 -142 -142 -142 -142 -142 -142 -144 -163 -144 -146 -146 --1 --1 -148 -153 -153 -153 -155 -153 -153 -153 -155 -155 -157 -157 -157 -159 -159 -163 -163 --1 --1 -163 -163 -165 -165 -167 -167 -169 -169 -174 -174 -174 -174 --1 --1 -174 -176 -176 -176 -178 -178 -178 -180 -197 -180 -180 -180 -184 -184 -201 -184 -186 -186 -186 -186 -188 -188 -186 -190 --1 -188 -195 -195 -195 -195 -195 -111 -111 -111 -111 -113 -132 -115 -115 -115 -115 -115 -117 -117 -117 -121 -121 -123 -121 -121 -121 -123 -123 -123 -123 -123 -125 -125 -123 -127 -127 -125 -127 -132 -132 -132 -132 -132 -132 -134 --1 -136 -100 -100 -100 -102 -102 -102 -104 -104 -104 -132 -106 -123 -111 --1 --1 --1 -111 -111 -127 -113 -113 -113 -115 -115 -115 -117 -117 -117 -117 -121 -123 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -132 -132 -134 -184 -186 -186 -186 -188 -188 -190 -190 -190 -195 -195 -195 -195 -195 -197 -197 -100 -100 -100 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -111 -111 -111 --1 -111 -113 -113 -113 -113 -115 -115 -115 -115 -117 -117 --1 --1 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 --1 -153 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -142 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -163 --1 --1 --1 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 -123 -123 -123 -123 -132 -125 -127 -127 -127 -127 -132 --1 -132 -132 -132 -132 -134 -134 -136 -136 -136 -142 -136 -136 -138 -138 -142 -142 -142 -146 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -146 --1 --1 -153 -153 -153 -153 -153 -153 -155 -155 -155 -155 -155 -157 -157 -159 -159 -159 -165 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 --1 --1 --1 --1 -176 -176 -178 -178 -178 -178 -180 -180 -184 -184 -184 -184 -184 -184 -190 -186 --1 --1 --1 -190 -190 -195 -195 -195 -195 -216 -197 -197 -197 -197 -199 -199 -199 -199 -199 -201 -201 -201 -205 -205 --1 --1 -121 -123 -123 -123 -125 -125 -127 -100 -100 -100 -100 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 --1 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -159 -142 -142 -144 -144 -146 -146 --1 --1 -153 -153 -153 -153 -153 -153 -155 -155 -157 -157 -157 -157 -159 -159 -159 -163 -163 -163 -100 -100 -100 -100 -100 -102 -102 -104 -104 --1 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -132 -127 -132 -132 -132 -132 -132 -134 -134 -134 -134 -136 -136 --1 --1 --1 --1 -142 -142 -142 -142 -144 -144 -144 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 --1 --1 -157 -157 -159 -159 -159 -176 -163 -163 -163 -163 -163 -163 -163 -165 --1 -163 -167 -167 -169 -174 -174 -174 -174 -190 -174 -174 -176 -176 -178 -178 -180 -180 -180 -180 -184 -184 -184 -184 -184 -184 -184 -186 -186 -188 --1 --1 -188 -190 -190 -190 -190 -100 -100 -100 -100 -100 -102 -102 -104 -106 -106 -106 -106 -111 -106 -111 -111 -111 -113 -111 -111 -113 -113 -115 -115 -115 -117 -117 -121 -121 -121 -121 -121 -121 --1 --1 -123 -125 -125 -125 -127 -127 -132 -132 -132 -132 -132 -132 -136 -134 -134 -136 -136 -138 --1 --1 --1 -142 -142 -142 -142 -144 -144 -144 -144 -144 -144 -144 -146 -146 -163 -148 -148 -153 -153 --1 --1 --1 -153 -153 -153 -155 -155 -155 -157 -157 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -165 -163 -165 -163 -163 -163 -163 -163 --1 --1 --1 -123 -127 -125 -127 -127 -127 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -138 -142 -142 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -148 -153 -153 -155 -155 -157 -155 -157 -159 -159 -159 -159 -163 -159 -163 -163 -163 -163 -163 -184 -163 -165 -165 -167 -169 -169 -174 -169 -174 -174 -174 -176 -174 -176 -176 -180 -180 -197 -180 -180 --1 --1 --1 -184 -184 -186 -184 -186 -188 -188 -190 -190 -188 -188 -190 -190 -195 -190 -195 -190 -195 -190 -195 --1 --1 --1 -195 -195 -195 -195 -195 -197 -100 -100 -100 -115 -115 -117 -121 -117 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -125 -132 -132 -132 -132 -132 -134 -136 -134 -136 -136 -136 -138 -138 -142 -157 -142 -142 -142 -142 -144 -144 -144 -146 -146 -146 --1 -148 -153 -153 -153 -153 -153 -153 -157 -155 -155 -157 -157 -157 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -165 -167 -167 -169 --1 --1 -174 -169 -174 -174 -174 -174 -174 -174 -174 -174 -195 -178 -178 -178 -180 -184 -184 -184 -184 -184 -184 -186 -186 -188 -188 --1 --1 --1 -190 -190 -195 -195 -195 -195 -195 -195 -197 -199 -199 -199 -199 -123 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 --1 --1 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -121 -117 -121 --1 -121 -121 -123 -121 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -134 -136 -138 -138 -138 -138 -138 -142 -142 -142 -142 -144 -144 -144 -146 -146 -148 -165 -148 -153 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 --1 --1 --1 -163 -163 -163 -163 -163 -165 -165 -167 -167 -117 -117 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -121 -123 -123 -123 -123 --1 --1 --1 -127 -127 -132 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -144 -144 -144 -144 -144 -146 -146 -146 -148 -148 -148 -153 -153 -153 --1 --1 -155 -155 -157 -176 -157 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 --1 --1 --1 -176 -178 -178 -178 -195 -180 -180 -100 -100 -102 -102 --1 --1 --1 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -125 -125 -125 -127 -127 -127 -132 -132 -132 -132 -148 -132 -134 -134 -134 -136 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 -142 --1 --1 --1 -142 -142 -142 -144 -144 -144 -146 -146 -146 -146 -148 -148 --1 --1 -153 -153 -153 -153 -155 -155 -155 -157 -157 -157 -159 -159 -159 -159 -159 -163 -163 -163 -163 -163 -123 -123 -125 -127 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 -138 -142 -142 -142 -142 --1 --1 --1 -163 -144 -146 -146 -148 -148 -148 -153 -153 -153 -155 -153 -153 -153 -155 -155 -157 -157 --1 -159 -159 -163 -163 -178 -165 -163 -163 -165 -165 -167 -167 -169 -169 -174 -174 -174 -174 -174 -174 -174 -176 -176 -176 -178 -178 -178 -180 -197 -180 -180 -180 -184 -184 -201 -184 -186 -186 -186 -186 -188 -188 -186 -190 -190 -188 -195 -195 -195 -195 -195 -111 -111 -111 -111 -113 -132 -115 -115 -115 -115 -115 -117 --1 --1 --1 -121 -123 -121 -121 -121 -123 -123 -123 -123 -123 --1 --1 -123 -127 -127 -125 -127 -132 -132 -132 -132 -132 -132 -134 -134 -136 -100 -100 -100 -102 -102 -102 -104 -104 -104 -132 -106 -123 -111 -111 -111 -111 -111 -111 -127 -113 -113 -113 -115 -115 -115 -117 -117 -117 -117 -121 -123 -121 -121 -121 -121 -121 -123 -123 -123 -123 -125 -125 -127 -127 --1 --1 -132 -132 -132 -132 -132 -132 -132 -134 -184 -186 -186 -186 -188 -188 -190 -190 -190 -195 -195 -195 -195 -195 -197 -197 -100 -100 -100 -100 -100 -100 -102 -102 -104 -104 -106 -106 -106 -111 -111 -111 -111 -111 -113 -113 -113 -113 -115 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -123 -123 -123 -125 -125 -125 -127 -127 --1 -132 -132 -132 -132 -132 -134 -134 -134 -136 -153 -138 -138 -138 -142 -142 -142 -142 -142 -144 -144 -142 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -174 -157 -157 -159 -159 -163 -163 -163 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -174 -169 -169 -169 -169 -121 -123 -123 -123 -123 -132 -125 -127 -127 -127 -127 -132 -132 --1 --1 --1 --1 -134 -134 -136 -136 -136 -142 -136 -136 -138 -138 -142 -142 -142 --1 --1 --1 -142 -144 -144 -144 -144 -144 -146 -146 -146 -146 -148 -148 -153 -153 -153 -153 -153 -153 -155 -155 -155 -155 -155 -157 -157 -159 -159 -159 -165 -163 -163 -163 -163 -163 -165 -165 -167 -167 -167 -169 -169 -174 -174 -174 -174 --1 --1 -174 -176 -176 -178 -178 -178 -178 -180 -180 -184 -184 -184 -184 -184 -184 -190 -186 -188 -188 -188 -190 -190 -195 -195 -195 --1 --1 --1 --1 -197 -197 -199 -199 -199 -199 -199 -201 -201 -201 -205 -205 -121 -121 -121 -123 -123 -123 -125 --1 -127 -100 -100 -100 -100 -100 -102 -102 -102 -104 -104 -104 -106 -106 -111 -111 -111 -111 -111 -111 -113 -113 -115 -115 -115 -117 -117 -117 -121 -121 -121 -121 -121 -121 -123 -123 -123 -125 -125 -127 -127 -127 -132 -132 -132 -132 -132 -134 -134 -134 -136 -136 -136 -138 -138 --1 --1 -142 -159 -142 -142 -144 -144 -146 -146 -148 -148 -153 -153 -153 diff --git a/scripts/dly_error_profiles/dly_error_profile_9.dat b/scripts/dly_error_profiles/dly_error_profile_9.dat deleted file mode 100644 index 824dd14447c398bd987e2f1cb50047e5378383a6..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_error_profile_9.dat +++ /dev/null @@ -1,8000 +0,0 @@ -144 -125 -148 -129 -140 -161 -142 -122 -144 -160 -141 -124 -143 -124 --1 -164 -145 -126 -140 -160 -141 -122 -141 -122 -140 -123 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -143 -123 -140 -122 -140 -121 -141 -121 -140 -121 -140 -121 -140 --1 --1 --1 -140 -121 -140 -121 -144 -124 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -141 -121 -140 -121 -148 -129 -148 -129 --1 -120 -140 -122 -140 -120 -140 -120 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 --1 --1 --1 --1 -120 -140 -121 -140 -121 -140 -121 -140 -121 -140 -122 -140 -122 -140 --1 --1 --1 -161 -142 -122 -149 -130 -141 -122 -140 -121 -180 -161 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -123 -141 --1 -141 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 -126 -140 -121 --1 -121 -143 -123 -145 -125 -152 -160 -141 -122 -141 -122 -140 -124 -140 -121 -148 -129 -140 -121 -140 -122 -140 -122 --1 --1 --1 -122 -184 -164 -144 -125 -140 -121 -140 -121 -141 -122 -140 -121 -141 -122 -141 -122 -143 -161 -142 -123 -204 -185 -165 -146 -141 -177 --1 -161 -143 -124 -141 -122 -141 -189 -169 -150 -130 -140 -121 -141 -122 -143 -124 -143 -131 -140 -169 -150 -130 -180 -161 -141 -178 -158 -139 --1 --1 -140 -121 -189 -169 -150 -131 -140 -121 -140 -121 -141 -122 -140 -121 -148 -129 -140 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 -159 -160 -141 -122 -141 -121 -143 -124 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -142 -123 -149 -129 -140 -121 -142 -123 -148 -129 -140 -121 -142 -122 -148 --1 -140 -121 -140 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 --1 -140 -121 -141 -122 -141 -168 -148 -168 -149 -130 -151 -132 -141 -160 -148 -129 -140 -160 -141 -122 -142 -161 -141 -123 -141 -162 --1 --1 --1 --1 --1 -161 -141 -122 -164 -145 -142 -124 -140 -121 -149 -129 -158 -138 -140 -121 -142 -123 -141 -121 -181 -161 -181 -162 -142 -123 -143 -124 --1 --1 -143 -124 -189 -169 -150 -130 -198 -179 -159 -140 -141 -124 --1 --1 -140 -121 -140 -121 -148 -129 -140 -121 -140 -160 -142 -122 -190 -170 -150 -131 -149 -130 -142 --1 --1 --1 --1 --1 -140 -121 -142 -123 -140 -121 -143 -124 -140 -121 -140 -121 -148 -129 -142 -123 -180 -161 -141 -161 -141 -122 -141 --1 --1 -160 -141 -121 -181 -162 -142 -169 -149 -168 -149 -160 -141 -122 -180 -161 -141 -123 -184 -165 -146 -126 -141 -161 -141 -122 -141 -122 -141 -124 -141 -122 --1 --1 -141 -122 -149 -160 -142 -122 -141 -123 -149 -130 -180 -161 -142 -123 -140 -121 -141 --1 -181 -162 -144 -125 -140 -121 -140 -121 -181 -161 -142 -160 -141 -122 -141 -121 -141 -122 -154 -135 -144 -124 -143 -124 -143 -124 -143 -160 -141 -122 -141 -160 -141 -160 -141 -160 -141 -121 -140 -168 --1 -130 -181 -162 -142 -168 -149 -129 -188 -169 -150 -160 -142 --1 --1 --1 -143 -124 -141 -122 -182 -163 -144 -124 -141 -122 -142 -123 -148 -129 -148 --1 -141 -168 -142 -160 -141 -122 -141 -122 -141 -178 -159 -169 -149 -168 -149 -129 -140 --1 -141 -160 -141 -122 -140 -170 -151 -131 -181 -162 -142 -123 -140 -121 -142 -123 -140 -122 -141 -122 -140 -161 -141 -160 -142 -125 -181 --1 -143 -124 -141 -121 -150 -131 -143 -123 -141 -122 -149 -130 -149 -129 -140 -161 -142 --1 -182 -164 -144 -160 -141 -168 -149 -160 -141 -161 -141 --1 --1 --1 -183 -163 -144 -161 -142 -163 -144 -160 -141 -168 -149 -161 -142 -123 -141 -122 -141 -122 -148 -129 -141 -122 -140 -121 -140 -160 -142 -122 -181 -162 -143 -124 -140 -121 -140 -121 -140 -121 -140 -197 -182 -162 -143 -160 -141 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 -121 -143 -160 -141 -209 -190 -170 -151 -131 -140 -121 -140 -121 -141 -160 --1 --1 --1 -130 -148 -129 -151 -131 -142 -122 -142 -126 -142 -123 -140 -121 -140 -161 -142 -124 -140 -161 -141 -168 -149 -162 -142 -160 -141 -162 -144 -161 -142 -160 --1 --1 --1 --1 -141 -160 -141 -168 -149 -168 -149 -160 -141 -122 -140 -169 -149 -130 -152 -132 -141 -122 -181 --1 -142 -122 -141 -122 -142 -160 -141 -160 -142 -161 -141 -197 -182 -163 -143 -124 -181 -162 -143 -199 -180 -169 -150 -131 -143 -125 -181 -161 -142 -123 --1 --1 --1 -209 -189 -170 -182 -163 -143 -160 -141 -195 -181 -170 -150 -131 -141 -160 --1 -196 -182 -163 -143 -124 -142 -123 -142 -123 -181 -162 -143 -161 -142 -196 -182 -162 -143 -161 -141 -161 -142 -123 -141 -121 -140 -160 -141 -122 -180 -161 -142 -160 -141 -161 -142 -160 -141 -168 -149 -129 -140 -121 -141 -122 -182 -163 -144 -160 -142 -124 -140 -124 -140 -121 -142 -123 -141 -161 -142 -161 -142 -122 -181 -161 -142 -160 -141 -124 -141 --1 -141 -162 -143 -123 -181 -162 -181 -162 -144 -124 -140 -160 -141 -160 -142 -123 -188 -169 -150 -130 -142 -122 -142 -122 -140 -121 -141 -122 -140 -121 -143 -124 -148 -129 -148 -129 --1 --1 --1 -121 -141 -121 -140 -121 -141 -129 -140 -160 -140 -160 -141 -122 -149 --1 --1 -129 -142 -196 -189 -170 -150 -161 -141 -161 -142 -160 -141 -161 -141 -122 -140 -121 -148 -129 -181 -162 -142 -123 -141 -121 -149 -130 -140 -168 --1 --1 -140 -121 -141 -122 -140 -168 -149 -129 -142 -122 -141 -162 -143 --1 --1 -122 -140 -161 -141 -122 -147 -128 -141 -122 -141 -160 -141 -122 -141 -121 -141 -122 -142 -160 -141 -122 -140 -121 -140 -120 --1 --1 --1 -129 -180 -171 -151 -132 -140 -121 -205 -186 -166 -147 --1 --1 --1 --1 -150 -131 -181 -161 -142 -123 -140 -160 -141 -122 -182 -163 --1 -124 -142 -123 -140 -120 -189 -169 -150 -130 -140 -121 -140 -121 -181 --1 --1 -124 -140 -121 -221 -196 -182 -163 -143 -124 -140 -121 -140 -121 -180 -161 -141 -126 -141 -121 -148 -129 -142 -123 -140 -121 -140 -121 -140 -121 -142 -169 --1 --1 -140 -121 -141 -121 -140 -121 -141 -122 -141 -121 -142 -123 -141 -122 -141 -122 --1 -121 -140 -121 -141 -121 -140 -121 -141 -121 -141 -141 -122 -141 -122 -141 --1 --1 --1 -141 -122 -140 -121 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 -160 -141 -122 -140 -121 --1 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -196 -181 -162 -143 -160 --1 --1 --1 -179 -160 -141 -122 -141 -121 -140 -121 -140 -121 -140 -121 -148 -129 -180 -161 -143 -124 -143 -124 -140 -121 -140 -120 -140 --1 --1 --1 --1 -123 -140 -121 -141 -122 -142 -168 -149 -129 -142 -161 -141 -123 -140 -122 --1 --1 -141 -122 -140 -121 -148 -129 -148 -129 -140 -121 -141 -121 -140 -121 -140 -121 -140 -120 -140 -121 -142 -123 -140 --1 -140 -121 -141 -122 -140 -121 -144 -125 -148 -129 -140 -161 --1 --1 --1 -160 -141 -124 -143 -124 -140 -164 -145 -126 -140 -160 -141 -122 -141 -122 -140 -123 -140 -121 -140 -121 -141 -122 -140 -121 --1 --1 --1 -123 -140 -122 -140 -121 -141 -121 -140 -121 -140 -121 -140 -121 -140 --1 --1 -121 -140 -121 -144 -124 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -141 -121 -140 -121 -148 -129 -148 -129 -140 -120 -140 -122 -140 -120 -140 -120 -140 -121 -140 --1 --1 --1 -140 -121 -140 -121 -140 -121 -140 -120 -140 -121 -140 -120 -140 -121 -140 -121 -140 -121 -140 -121 --1 --1 --1 -122 -140 -149 -129 -180 -161 -142 -122 -149 -130 -141 -122 -140 -121 -180 -161 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -123 -141 -122 -141 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 -126 -140 -121 -140 -121 -143 -123 -145 -125 -152 -160 -141 -122 -141 -122 -140 -124 -140 -121 -148 --1 --1 -121 -140 -122 -140 -122 -141 -121 -141 -122 -184 -164 -144 -125 -140 -121 -140 -121 --1 --1 -140 -121 -141 -122 -141 -122 -143 -161 -142 -123 --1 -185 -165 -146 -141 -177 -157 -161 -143 -124 -141 -122 -141 -189 -169 -150 -130 -140 -121 -141 --1 --1 --1 -143 -131 -140 -169 -150 -130 -180 -161 -141 -178 -158 -139 -140 -121 -140 -121 -189 -169 -150 -131 -140 -121 -140 -121 -141 --1 --1 -121 -148 -129 -140 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 -159 -160 -141 -122 -141 -121 -143 -124 -140 -121 -140 -121 -141 -122 -140 -121 -181 --1 -142 -123 -149 -129 -140 -121 -142 -123 -148 -129 -140 -121 -142 -122 -148 -129 -140 -121 -140 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 --1 --1 --1 -141 -122 -141 -168 -148 -168 -149 -130 -151 -132 -141 --1 --1 --1 -140 -160 -141 -122 -142 -161 -141 -123 -141 -162 -143 -124 -149 -130 -140 -161 -141 -122 -164 -145 -142 -124 -140 -121 -149 -129 -158 -138 -140 --1 -142 -123 -141 -121 -181 -161 -181 -162 -142 -123 -143 -124 -182 -162 -143 -124 -189 -169 -150 -130 -198 -179 --1 --1 --1 -124 -143 -124 -140 -121 -140 -121 -148 -129 -140 -121 -140 -160 -142 -122 -190 -170 -150 -131 -149 -130 -142 -123 -140 -161 -142 -122 -140 -121 -142 -123 --1 --1 -143 -124 -140 -121 -140 -121 -148 -129 -142 -123 -180 -161 -141 -161 -141 -122 -141 -122 -140 -160 -141 -121 -181 -162 -142 -169 -149 -168 -149 -160 -141 --1 --1 --1 --1 -123 -184 -165 -146 -126 -141 -161 -141 -122 -141 -122 -141 -124 -141 -122 -140 -160 -141 -122 --1 --1 --1 -122 -141 -123 -149 -130 -180 -161 -142 -123 -140 -121 -141 --1 -181 -162 -144 -125 -140 -121 -140 -121 -181 -161 -142 -160 -141 -122 -141 -121 -141 -122 -154 -135 -144 -124 -143 -124 -143 -124 -143 --1 --1 --1 -141 -160 -141 -160 -141 -160 -141 -121 -140 -168 -149 -130 -181 --1 --1 -168 -149 -129 -188 -169 -150 -160 -142 -122 -148 --1 -143 -124 -141 -122 -182 -163 -144 -124 -141 -122 -142 -123 -148 -129 -148 -129 -141 -168 -142 -160 -141 -122 -141 -122 -141 -178 -159 -169 -149 -168 -149 -129 --1 --1 --1 -160 -141 -122 -140 -170 -151 -131 -181 -162 -142 -123 -140 -121 -142 -123 -140 -122 -141 -122 -140 -161 -141 -160 -142 --1 --1 --1 -143 -124 -141 -121 -150 -131 -143 -123 -141 -122 -149 -130 -149 -129 -140 -161 -142 -122 -182 -164 -144 -160 -141 -168 -149 -160 -141 -161 -141 -122 -140 -197 -183 -163 -144 -161 -142 -163 -144 -160 -141 -168 -149 -161 -142 -123 -141 --1 --1 -122 -148 -129 -141 -122 -140 -121 -140 -160 -142 -122 -181 -162 -143 -124 -140 -121 -140 -121 -140 -121 -140 -197 -182 -162 -143 -160 -141 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 -121 -143 -160 -141 -209 -190 -170 -151 -131 -140 -121 -140 -121 -141 -160 -141 --1 --1 --1 -148 -129 -151 -131 -142 -122 -142 -126 -142 -123 -140 --1 -140 -161 -142 -124 -140 -161 -141 -168 -149 -162 -142 -160 -141 -162 -144 -161 -142 -160 -141 --1 -140 -160 -141 -160 -141 -168 -149 -168 -149 -160 -141 -122 -140 -169 -149 --1 -152 -132 -141 -122 -181 -161 -142 -122 -141 -122 --1 --1 --1 -160 -142 -161 -141 -197 -182 -163 -143 -124 -181 -162 -143 -199 -180 -169 -150 -131 -143 -125 --1 --1 -142 -123 -141 -160 -141 -209 -189 -170 -182 -163 -143 -160 -141 -195 -181 -170 -150 -131 -141 -160 --1 --1 --1 -163 -143 -124 -142 -123 -142 -123 -181 -162 -143 -161 -142 -196 -182 -162 -143 -161 -141 --1 --1 -123 -141 -121 -140 -160 -141 -122 -180 -161 -142 -160 -141 -161 -142 -160 -141 --1 --1 --1 -140 -121 -141 -122 -182 -163 -144 -160 -142 -124 -140 -124 -140 -121 --1 --1 -141 -161 -142 -161 -142 -122 -181 -161 -142 -160 -141 -124 -141 -160 -141 -162 -143 -123 -181 -162 -181 -162 -144 -124 -140 -160 -141 -160 -142 -123 -188 -169 -150 -130 -142 -122 -142 -122 -140 -121 -141 -122 --1 --1 -143 -124 -148 -129 -148 -129 -141 -122 -140 -121 -141 -121 -140 -121 -141 -129 -140 -160 -140 -160 -141 -122 -149 -130 -148 -129 -142 -196 -189 -170 -150 -161 -141 -161 -142 -160 -141 -161 -141 -122 -140 -121 -148 -129 -181 --1 -142 -123 -141 -121 -149 -130 -140 -168 -149 -129 -140 -121 -141 -122 -140 -168 -149 -129 -142 -122 -141 -162 -143 -161 --1 --1 --1 -161 -141 -122 -147 -128 -141 -122 -141 -160 -141 -122 -141 -121 -141 -122 -142 -160 -141 --1 --1 -121 -140 -120 -140 -121 -148 -129 -180 -171 -151 -132 -140 -121 -205 -186 -166 -147 -140 --1 --1 --1 -150 -131 -181 -161 -142 -123 -140 -160 -141 -122 -182 -163 -144 -124 -142 -123 -140 -120 -189 -169 -150 -130 -140 -121 -140 -121 -181 -163 -143 -124 -140 -121 -221 -196 -182 -163 -143 -124 --1 -121 -140 -121 -180 -161 -141 -126 -141 -121 -148 -129 -142 -123 -140 -121 -140 -121 -140 -121 -142 -169 -150 -130 --1 -121 -141 -121 -140 -121 -141 -122 -141 -121 -142 -123 -141 -122 -141 -122 -141 -121 -140 -121 -141 -121 -140 -121 -141 -121 -141 -141 -122 -141 -122 -141 --1 --1 --1 -141 -122 -140 -121 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 -160 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -196 -181 --1 --1 --1 -141 -160 -141 -179 -160 -141 -122 -141 -121 -140 -121 -140 -121 -140 -121 --1 --1 --1 -161 -143 -124 -143 -124 -140 -121 -140 -120 -140 -121 -140 -121 -142 -123 -140 -121 -141 --1 --1 --1 -149 -129 -142 -161 -141 -123 -140 -122 -140 -121 -141 -122 -140 -121 -148 -129 -148 -129 -140 -121 -141 -121 -140 -121 -140 -121 -140 -120 -140 -121 --1 --1 --1 -122 -140 -121 -141 -122 -140 -121 -144 -125 -148 -129 -140 -161 -142 -122 -144 --1 --1 --1 --1 -124 -140 -164 -145 -126 -140 -160 -141 -122 -141 -122 -140 -123 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -143 -123 -140 -122 -140 -121 -141 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 --1 --1 --1 -144 -124 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -141 -121 --1 --1 --1 -129 -148 -129 -140 -120 -140 -122 -140 -120 -140 -120 -140 -121 -140 --1 --1 --1 -140 -121 -140 -121 -140 -121 -140 -120 -140 -121 -140 -120 -140 -121 -140 -121 -140 --1 --1 -121 -140 -122 -140 -122 -140 -149 -129 -180 -161 -142 -122 -149 -130 -141 -122 -140 --1 --1 --1 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 --1 -141 -122 -141 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 -126 -140 -121 -140 -121 -143 -123 -145 -125 -152 -160 -141 -122 -141 --1 --1 --1 -140 -121 -148 -129 -140 -121 -140 -122 -140 -122 -141 -121 -141 -122 -184 -164 -144 -125 -140 --1 --1 --1 -141 -122 -140 -121 -141 -122 -141 -122 -143 -161 -142 -123 -204 -185 -165 -146 -141 -177 -157 -161 -143 -124 -141 --1 -141 -189 -169 -150 -130 -140 -121 -141 -122 -143 -124 -143 -131 -140 -169 -150 -130 -180 -161 -141 -178 -158 -139 -140 -121 -140 -121 -189 -169 -150 -131 -140 -121 -140 -121 -141 -122 -140 -121 -148 -129 -140 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 -159 -160 -141 -122 -141 -121 -143 -124 -140 -121 -140 -121 -141 -122 -140 -121 -181 --1 -142 -123 -149 -129 -140 -121 -142 -123 -148 -129 -140 -121 -142 -122 -148 -129 -140 -121 --1 --1 --1 --1 -140 -161 -141 -122 -141 -121 -141 -122 -140 -121 -141 -122 -141 -168 --1 --1 -149 -130 -151 -132 -141 -160 -148 -129 -140 -160 -141 -122 -142 -161 -141 -123 -141 -162 -143 -124 -149 -130 -140 -161 -141 -122 -164 -145 -142 -124 -140 -121 -149 -129 -158 -138 -140 -121 -142 -123 -141 -121 -181 -161 -181 -162 -142 -123 -143 -124 -182 -162 -143 -124 --1 --1 --1 -130 -198 -179 -159 -140 -141 -124 -143 -124 -140 -121 -140 -121 -148 -129 -140 -121 -140 -160 -142 -122 -190 -170 -150 -131 -149 -130 -142 -123 -140 -161 -142 --1 --1 --1 -142 -123 -140 -121 -143 -124 -140 -121 -140 -121 -148 -129 -142 -123 -180 -161 -141 -161 -141 -122 -141 -122 -140 -160 -141 -121 -181 -162 -142 -169 -149 -168 -149 -160 --1 --1 --1 --1 -141 -123 -184 -165 -146 -126 -141 -161 -141 -122 -141 --1 --1 -124 -141 -122 -140 -160 -141 -122 -149 -160 -142 -122 -141 -123 -149 -130 -180 -161 -142 -123 -140 -121 -141 -122 -181 -162 -144 -125 -140 -121 -140 -121 -181 -161 -142 -160 -141 -122 -141 -121 -141 -122 -154 -135 -144 -124 -143 -124 -143 -124 -143 -160 -141 -122 -141 -160 -141 -160 -141 -160 -141 -121 -140 -168 -149 -130 -181 -162 -142 -168 -149 --1 -188 -169 -150 -160 -142 -122 -148 -129 -143 -124 -141 -122 -182 -163 -144 -124 -141 -122 -142 -123 -148 -129 -148 -129 --1 --1 --1 --1 -141 -122 -141 -122 -141 -178 -159 -169 -149 -168 -149 -129 -140 -160 -141 -160 --1 --1 --1 -170 -151 -131 -181 -162 -142 -123 -140 -121 -142 -123 -140 -122 --1 -122 -140 -161 -141 -160 -142 -125 -181 -162 -143 -124 -141 -121 -150 -131 -143 -123 -141 -122 -149 -130 -149 -129 -140 -161 --1 -122 -182 -164 -144 -160 -141 -168 -149 -160 -141 -161 -141 -122 -140 -197 --1 --1 --1 -161 -142 -163 -144 -160 -141 -168 -149 -161 -142 -123 -141 -122 -141 -122 -148 -129 -141 -122 -140 --1 --1 -160 -142 -122 -181 -162 -143 -124 -140 -121 -140 -121 -140 -121 -140 -197 -182 -162 -143 -160 -141 -160 -141 --1 --1 --1 -141 -122 -141 -121 -141 -121 -143 -160 -141 -209 -190 -170 -151 -131 -140 -121 -140 --1 -141 -160 -141 -169 -149 -130 -148 -129 -151 -131 -142 -122 -142 -126 --1 --1 --1 --1 -140 -161 -142 -124 -140 -161 -141 -168 -149 -162 -142 -160 -141 -162 -144 -161 -142 -160 -141 -160 -140 -160 -141 -160 -141 -168 -149 -168 -149 -160 -141 --1 --1 -169 -149 -130 -152 -132 -141 -122 -181 -161 -142 -122 --1 --1 -142 -160 -141 -160 -142 -161 -141 -197 -182 -163 -143 -124 -181 -162 -143 -199 -180 -169 -150 --1 --1 -125 -181 -161 -142 -123 -141 -160 -141 -209 -189 -170 -182 -163 -143 --1 --1 -195 -181 -170 -150 -131 -141 -160 -142 -196 -182 -163 -143 --1 -142 -123 -142 -123 -181 -162 -143 -161 -142 -196 -182 -162 -143 -161 -141 -161 -142 -123 -141 -121 -140 -160 -141 -122 -180 -161 -142 -160 -141 -161 -142 -160 -141 --1 --1 -129 -140 -121 -141 -122 -182 -163 -144 -160 -142 -124 -140 -124 -140 -121 -142 -123 -141 -161 -142 -161 -142 --1 --1 -161 -142 -160 -141 -124 -141 -160 -141 -162 -143 --1 --1 --1 -181 -162 -144 -124 -140 -160 -141 -160 -142 -123 --1 -169 -150 -130 -142 -122 -142 -122 -140 -121 -141 -122 -140 -121 -143 -124 -148 -129 -148 -129 -141 -122 -140 -121 -141 -121 -140 -121 -141 -129 -140 -160 -140 --1 --1 --1 -149 -130 -148 -129 -142 -196 -189 -170 -150 -161 -141 -161 -142 -160 -141 -161 -141 -122 -140 -121 -148 -129 -181 -162 -142 -123 -141 -121 -149 --1 --1 -168 -149 -129 -140 -121 -141 -122 -140 -168 -149 --1 --1 --1 -141 -162 -143 -161 -142 -122 -140 -161 -141 -122 -147 -128 -141 -122 -141 -160 -141 -122 -141 -121 -141 -122 -142 -160 -141 -122 -140 -121 -140 -120 -140 -121 -148 -129 -180 -171 -151 -132 -140 -121 -205 -186 -166 -147 --1 --1 --1 -170 -150 -131 -181 -161 -142 -123 -140 -160 -141 -122 -182 -163 -144 -124 -142 -123 -140 -120 -189 -169 -150 -130 -140 -121 -140 -121 -181 -163 -143 -124 -140 -121 -221 -196 -182 -163 -143 -124 -140 -121 -140 -121 -180 -161 -141 -126 -141 -121 --1 --1 --1 --1 -140 -121 -140 -121 -140 -121 -142 -169 -150 -130 -140 -121 -141 -121 -140 -121 -141 -122 --1 --1 -142 -123 -141 -122 -141 -122 -141 -121 -140 -121 --1 --1 -140 -121 -141 -121 -141 -141 -122 -141 -122 -141 -122 -141 -122 -141 -122 -140 -121 -140 -121 -140 -121 -141 -122 -140 --1 --1 --1 -140 -121 -140 -160 -141 -122 -140 -121 -140 -121 -140 -121 -140 --1 --1 --1 -140 -121 -140 -196 -181 -162 -143 -160 -141 -160 -141 -179 -160 -141 --1 --1 --1 -140 -121 -140 -121 -140 -121 -148 -129 -180 -161 -143 -124 -143 -124 -140 -121 -140 -120 -140 -121 -140 -121 -142 -123 -140 -121 -141 -122 -142 -168 -149 -129 -142 -161 -141 -123 -140 -122 -140 -121 -141 -122 -140 -121 --1 --1 -148 -129 -140 -121 -141 -121 -140 -121 -140 -121 -140 -120 -140 -121 -142 -123 -140 -122 -140 -121 -141 -122 -140 -121 -144 -125 -148 -129 -140 -161 -142 -122 -144 -160 -141 -124 -143 -124 -140 -164 -145 -126 -140 -160 -141 -122 -141 -122 -140 -123 -140 -121 -140 -121 -141 -122 --1 --1 -181 -162 -143 -123 -140 -122 -140 -121 -141 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 --1 --1 --1 -124 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -141 -121 -140 -121 -148 -129 -148 -129 -140 -120 -140 -122 -140 -120 -140 -120 --1 --1 --1 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 -120 -140 -121 -140 --1 --1 --1 -140 -121 -140 -121 -140 -121 -140 -122 -140 -122 -140 -149 -129 -180 -161 --1 --1 --1 --1 --1 --1 -140 -121 -180 -161 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 -121 -140 -121 -140 -121 --1 -121 -140 -121 -140 -123 -141 -122 -141 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 --1 --1 -121 -140 -121 -143 -123 -145 -125 -152 -160 -141 -122 -141 -122 -140 -124 -140 -121 -148 -129 -140 -121 -140 -122 -140 -122 -141 -121 -141 -122 -184 -164 -144 -125 -140 -121 -140 -121 -141 -122 -140 -121 -141 -122 -141 -122 -143 -161 -142 -123 -204 --1 --1 -146 -141 -177 -157 -161 -143 -124 -141 -122 -141 -189 -169 -150 -130 -140 -121 -141 -122 -143 -124 -143 -131 -140 -169 -150 -130 -180 -161 -141 -178 -158 -139 -140 -121 -140 -121 -189 -169 -150 -131 -140 -121 -140 -121 -141 -122 -140 -121 -148 -129 -140 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 --1 --1 -141 -122 -141 -121 -143 -124 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -142 -123 -149 -129 --1 --1 -142 -123 -148 -129 -140 -121 -142 -122 -148 -129 -140 -121 -140 -160 -141 -122 --1 --1 --1 -122 -141 -121 -141 -122 -140 -121 -141 -122 -141 -168 -148 --1 -149 -130 -151 -132 -141 -160 -148 -129 -140 -160 -141 -122 -142 -161 --1 --1 -141 -162 -143 -124 -149 -130 -140 -161 -141 -122 -164 --1 --1 --1 -140 -121 -149 -129 -158 -138 -140 -121 -142 -123 -141 -121 -181 -161 -181 -162 -142 -123 -143 -124 -182 -162 -143 -124 -189 --1 --1 --1 -198 -179 -159 -140 -141 -124 -143 -124 -140 -121 -140 -121 -148 -129 -140 -121 -140 -160 -142 -122 -190 -170 -150 -131 -149 -130 -142 -123 -140 -161 -142 -122 -140 -121 -142 -123 -140 -121 -143 -124 -140 -121 -140 -121 -148 -129 -142 -123 -180 -161 -141 -161 -141 -122 -141 -122 -140 -160 -141 -121 -181 -162 -142 -169 -149 -168 -149 -160 -141 -122 -180 -161 -141 -123 -184 -165 -146 -126 -141 -161 -141 -122 -141 -122 --1 --1 --1 -122 -140 -160 -141 -122 -149 -160 -142 -122 -141 -123 -149 -130 -180 -161 -142 -123 -140 -121 -141 -122 -181 -162 -144 -125 -140 -121 -140 -121 --1 -161 -142 -160 -141 -122 -141 -121 -141 -122 -154 -135 -144 -124 -143 -124 -143 -124 -143 -160 -141 -122 -141 -160 -141 -160 -141 -160 -141 --1 -140 -168 -149 -130 -181 -162 -142 -168 -149 -129 -188 -169 -150 -160 -142 -122 -148 -129 -143 -124 -141 -122 -182 -163 -144 -124 -141 -122 --1 -123 -148 -129 -148 -129 -141 -168 -142 -160 -141 -122 -141 -122 -141 -178 -159 -169 -149 -168 --1 --1 -140 -160 -141 -160 -141 -122 -140 -170 -151 -131 -181 -162 -142 -123 -140 -121 -142 -123 --1 --1 --1 -122 -140 -161 -141 -160 -142 -125 -181 -162 -143 -124 -141 -121 --1 --1 -143 -123 -141 -122 -149 -130 -149 -129 -140 -161 -142 -122 -182 -164 -144 --1 -141 -168 -149 -160 -141 -161 -141 -122 -140 -197 -183 -163 --1 --1 -142 -163 -144 -160 -141 -168 -149 -161 -142 -123 -141 -122 -141 -122 -148 -129 -141 -122 --1 --1 --1 -160 -142 -122 -181 -162 -143 -124 -140 -121 -140 -121 -140 -121 -140 -197 -182 -162 -143 -160 -141 -160 -141 --1 -140 -161 -141 -122 -141 -121 -141 -121 -143 -160 -141 -209 -190 -170 -151 -131 -140 -121 -140 -121 -141 -160 -141 -169 -149 -130 -148 -129 -151 -131 -142 -122 -142 -126 -142 -123 -140 -121 -140 -161 -142 -124 -140 -161 -141 -168 -149 -162 --1 --1 --1 -162 -144 -161 -142 -160 -141 -160 -140 -160 -141 -160 -141 -168 -149 -168 -149 -160 -141 -122 -140 -169 -149 -130 -152 -132 --1 -122 -181 -161 -142 -122 -141 -122 -142 -160 -141 -160 -142 -161 -141 -197 -182 -163 -143 -124 -181 -162 -143 -199 -180 -169 -150 -131 -143 -125 -181 -161 -142 -123 -141 -160 -141 -209 -189 -170 --1 --1 -143 -160 -141 -195 -181 -170 -150 -131 -141 -160 -142 -196 -182 -163 -143 -124 -142 -123 -142 -123 -181 -162 -143 -161 -142 -196 -182 -162 -143 -161 -141 -161 -142 -123 -141 -121 --1 --1 --1 -122 -180 -161 -142 -160 -141 -161 -142 -160 -141 -168 --1 -129 -140 -121 -141 -122 -182 -163 -144 -160 -142 -124 -140 -124 -140 -121 -142 -123 -141 -161 -142 -161 -142 -122 -181 -161 -142 -160 -141 -124 -141 -160 -141 -162 -143 -123 --1 -162 -181 -162 -144 -124 -140 -160 -141 -160 -142 -123 -188 -169 -150 -130 -142 -122 -142 -122 -140 -121 -141 -122 -140 -121 -143 -124 -148 -129 -148 -129 -141 -122 -140 -121 -141 -121 -140 -121 -141 --1 --1 -160 -140 -160 -141 -122 -149 -130 -148 -129 -142 -196 -189 -170 -150 -161 -141 -161 -142 -160 -141 -161 -141 -122 -140 --1 -148 -129 -181 -162 -142 -123 -141 -121 -149 -130 --1 --1 --1 -129 -140 -121 -141 -122 -140 -168 -149 -129 -142 -122 -141 -162 -143 -161 -142 -122 -140 -161 -141 -122 -147 -128 -141 -122 -141 -160 -141 -122 -141 -121 -141 -122 -142 -160 -141 -122 -140 -121 -140 -120 -140 -121 -148 -129 -180 -171 -151 -132 -140 -121 -205 -186 -166 -147 -140 -162 -142 -170 -150 -131 -181 -161 --1 -123 -140 -160 -141 -122 -182 -163 -144 -124 -142 -123 -140 -120 -189 -169 -150 --1 --1 -121 -140 -121 -181 -163 -143 -124 -140 -121 -221 -196 -182 -163 --1 --1 -140 -121 -140 -121 -180 -161 -141 -126 -141 -121 -148 -129 -142 -123 -140 -121 -140 -121 -140 -121 -142 -169 -150 -130 -140 -121 -141 -121 -140 -121 -141 -122 -141 -121 -142 -123 -141 -122 -141 -122 -141 -121 --1 --1 -141 -121 -140 -121 -141 -121 -141 -141 -122 -141 -122 -141 -122 -141 -122 -141 -122 -140 -121 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 --1 --1 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 --1 --1 -162 -143 -160 -141 -160 -141 -179 -160 -141 -122 -141 -121 -140 -121 -140 -121 -140 --1 --1 -129 -180 -161 -143 -124 -143 -124 -140 -121 -140 -120 -140 -121 -140 -121 -142 -123 -140 -121 -141 -122 -142 --1 --1 --1 -142 -161 -141 -123 -140 -122 -140 -121 -141 -122 -140 -121 -148 -129 -148 -129 -140 -121 -141 -121 -140 -121 -140 -121 -140 -120 -140 -121 -142 -123 -140 -122 -140 -121 -141 -122 -140 -121 -144 -125 -148 -129 -140 -161 -142 -122 -144 -160 -141 -124 -143 -124 -140 -164 --1 --1 --1 -160 -141 -122 -141 -122 -140 -123 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -143 -123 -140 -122 -140 --1 --1 --1 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -144 -124 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -141 -121 -140 -121 -148 -129 --1 --1 --1 -120 -140 -122 -140 -120 -140 -120 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 --1 --1 --1 -121 -140 -120 -140 -121 -140 -121 -140 -121 -140 -121 -140 -122 -140 -122 -140 -149 --1 --1 --1 -142 -122 -149 -130 -141 -122 -140 -121 -180 -161 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -123 --1 -122 -141 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 -126 -140 -121 -140 --1 --1 -123 -145 -125 -152 -160 -141 -122 -141 -122 -140 -124 -140 -121 -148 -129 -140 -121 -140 -122 -140 -122 -141 -121 -141 -122 --1 --1 -144 -125 -140 -121 -140 -121 -141 -122 -140 -121 -141 -122 -141 -122 -143 -161 -142 -123 -204 -185 -165 --1 --1 --1 -157 -161 -143 -124 -141 -122 -141 -189 -169 -150 -130 -140 -121 -141 -122 -143 -124 -143 -131 -140 -169 -150 -130 -180 -161 -141 -178 -158 -139 -140 -121 -140 -121 -189 -169 -150 -131 -140 -121 -140 -121 -141 -122 -140 --1 --1 -129 -140 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 -159 --1 --1 --1 -141 -121 -143 -124 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -142 -123 -149 -129 -140 -121 -142 -123 -148 -129 -140 -121 -142 -122 -148 -129 -140 -121 -140 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 -122 -140 -121 -141 -122 -141 -168 -148 -168 -149 -130 -151 -132 -141 -160 -148 -129 -140 -160 -141 -122 -142 -161 -141 -123 --1 -162 -143 -124 -149 -130 -140 -161 -141 -122 -164 -145 -142 -124 -140 -121 -149 -129 -158 -138 -140 -121 -142 -123 -141 -121 -181 -161 -181 -162 -142 -123 -143 -124 -182 -162 -143 -124 -189 -169 -150 -130 -198 -179 -159 -140 --1 --1 --1 --1 -140 -121 -140 -121 -148 -129 -140 -121 -140 -160 -142 -122 -190 -170 -150 -131 -149 -130 -142 -123 -140 -161 -142 -122 -140 -121 -142 -123 -140 -121 -143 -124 -140 -121 --1 --1 -148 -129 -142 -123 -180 -161 -141 -161 -141 -122 -141 -122 --1 --1 -141 -121 -181 -162 -142 -169 -149 -168 -149 -160 -141 -122 -180 -161 -141 -123 -184 -165 -146 -126 -141 -161 -141 -122 -141 -122 --1 --1 -141 -122 -140 -160 -141 -122 -149 -160 -142 -122 --1 --1 --1 -130 -180 -161 -142 -123 -140 -121 -141 -122 -181 -162 -144 -125 -140 -121 -140 -121 -181 -161 -142 -160 -141 -122 -141 -121 --1 --1 --1 -135 -144 -124 -143 -124 -143 -124 -143 -160 -141 --1 --1 --1 -141 -160 -141 -160 -141 -121 -140 -168 -149 -130 -181 -162 -142 -168 -149 -129 -188 -169 -150 -160 -142 -122 -148 -129 -143 -124 -141 -122 -182 -163 -144 -124 -141 -122 -142 -123 -148 -129 -148 -129 -141 -168 -142 -160 -141 -122 -141 -122 -141 -178 -159 -169 -149 --1 --1 -129 -140 -160 -141 -160 -141 -122 -140 -170 -151 -131 -181 -162 -142 -123 -140 -121 --1 --1 --1 -122 -141 -122 -140 -161 -141 -160 -142 -125 -181 -162 -143 -124 -141 -121 -150 -131 -143 -123 -141 -122 -149 -130 -149 -129 --1 --1 --1 -122 -182 -164 -144 -160 -141 -168 -149 -160 -141 --1 --1 -122 -140 -197 -183 -163 -144 -161 -142 -163 -144 -160 -141 -168 -149 -161 -142 -123 -141 -122 -141 -122 -148 -129 --1 -122 -140 -121 -140 -160 -142 -122 -181 -162 -143 -124 -140 -121 -140 -121 -140 -121 -140 -197 -182 -162 -143 -160 -141 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 -121 -143 -160 -141 -209 -190 --1 --1 --1 -140 -121 -140 -121 -141 -160 -141 -169 -149 -130 -148 -129 -151 --1 --1 -122 -142 -126 -142 -123 -140 -121 -140 -161 -142 -124 -140 -161 -141 -168 -149 -162 -142 -160 --1 --1 --1 -161 -142 -160 -141 -160 -140 -160 -141 -160 -141 -168 -149 -168 -149 -160 -141 -122 -140 -169 -149 -130 -152 -132 -141 -122 -181 --1 --1 --1 -141 -122 -142 -160 -141 -160 -142 -161 -141 -197 -182 -163 -143 -124 -181 -162 -143 -199 -180 -169 -150 -131 -143 -125 -181 -161 -142 -123 -141 -160 -141 -209 -189 -170 -182 -163 -143 -160 -141 -195 -181 -170 -150 -131 -141 -160 -142 -196 -182 -163 --1 --1 -142 -123 -142 -123 -181 -162 -143 -161 -142 -196 -182 -162 -143 -161 -141 -161 -142 -123 -141 -121 -140 -160 -141 -122 -180 --1 --1 -160 -141 -161 -142 -160 -141 -168 -149 -129 -140 -121 -141 -122 -182 -163 -144 -160 -142 -124 -140 -124 -140 -121 -142 -123 --1 --1 --1 -161 -142 -122 -181 -161 -142 -160 -141 -124 -141 -160 --1 --1 -143 -123 -181 -162 -181 -162 -144 -124 -140 -160 -141 -160 -142 -123 --1 -169 -150 -130 -142 -122 -142 -122 -140 -121 -141 -122 -140 -121 -143 -124 -148 -129 -148 -129 -141 -122 -140 -121 -141 -121 -140 -121 -141 -129 -140 -160 -140 -160 -141 -122 -149 -130 -148 --1 -142 -196 -189 -170 -150 -161 -141 -161 -142 -160 -141 -161 -141 -122 -140 -121 -148 -129 -181 -162 -142 --1 --1 -121 -149 -130 -140 -168 -149 -129 -140 -121 -141 -122 -140 -168 -149 -129 -142 -122 -141 -162 -143 -161 -142 -122 --1 --1 -141 -122 -147 -128 -141 -122 -141 -160 -141 -122 -141 -121 --1 -122 -142 -160 -141 -122 -140 -121 -140 -120 -140 -121 -148 -129 -180 -171 -151 -132 -140 -121 -205 -186 -166 -147 -140 -162 -142 --1 --1 -131 -181 -161 -142 -123 -140 -160 -141 -122 -182 -163 -144 -124 -142 -123 -140 -120 -189 -169 -150 -130 -140 -121 -140 -121 -181 -163 -143 -124 -140 -121 -221 -196 -182 -163 -143 --1 --1 -121 -140 -121 -180 -161 -141 -126 -141 -121 -148 -129 --1 --1 --1 -121 -140 -121 -140 -121 -142 -169 -150 -130 -140 -121 -141 -121 -140 -121 -141 -122 -141 -121 -142 -123 -141 -122 -141 -122 -141 -121 -140 -121 -141 -121 -140 -121 -141 -121 -141 -141 -122 -141 -122 -141 -122 -141 -122 -141 -122 --1 --1 --1 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 -160 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -196 -181 -162 -143 -160 -141 -160 -141 -179 -160 -141 -122 -141 -121 -140 -121 -140 -121 -140 -121 -148 -129 -180 -161 -143 -124 -143 -124 -140 -121 -140 -120 -140 -121 -140 -121 -142 -123 -140 -121 -141 -122 --1 -168 -149 -129 -142 -161 -141 -123 -140 -122 -140 -121 -141 -122 -140 -121 -148 --1 --1 -129 -140 -121 -141 -121 -140 -121 -140 -121 -140 -120 -140 -121 -142 -123 -140 -122 -140 -121 -141 -122 -140 -121 -144 -125 -148 -129 -140 -161 -142 -122 -144 -160 -141 -124 -143 -124 -140 -164 -145 -126 -140 -160 -141 -122 -141 -122 -140 -123 -140 --1 --1 --1 --1 -122 -140 -121 -181 -162 -143 -123 -140 -122 -140 -121 -141 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -144 -124 -141 -122 -140 -121 -140 -121 -140 --1 --1 --1 --1 -121 -140 -121 -148 -129 -148 -129 -140 -120 -140 -122 -140 -120 -140 -120 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 -120 -140 -121 -140 -120 -140 -121 -140 -121 -140 -121 -140 -121 -140 -122 -140 --1 -140 -149 -129 -180 -161 -142 -122 -149 -130 -141 -122 -140 -121 -180 -161 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 -121 -140 -121 -140 -121 -140 -121 -140 --1 --1 -123 -141 -122 -141 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 --1 --1 --1 -140 -121 -143 -123 -145 -125 -152 -160 -141 -122 -141 -122 -140 -124 -140 --1 --1 --1 -140 -121 -140 -122 -140 -122 -141 -121 -141 -122 --1 --1 -144 -125 -140 -121 -140 -121 -141 -122 -140 -121 -141 -122 -141 -122 --1 --1 --1 -123 -204 -185 -165 -146 -141 -177 -157 -161 -143 -124 -141 -122 -141 -189 -169 -150 -130 -140 --1 --1 -122 -143 -124 -143 -131 -140 -169 -150 -130 -180 -161 -141 -178 -158 --1 -140 -121 -140 -121 -189 -169 -150 -131 -140 -121 -140 -121 -141 -122 -140 -121 -148 -129 --1 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 -159 -160 -141 -122 -141 -121 -143 -124 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -142 -123 -149 -129 -140 -121 -142 -123 -148 -129 -140 -121 -142 -122 -148 -129 -140 -121 -140 -160 -141 -122 -140 -161 -141 -122 --1 --1 --1 -122 -140 -121 -141 -122 -141 -168 -148 -168 -149 -130 -151 -132 -141 -160 -148 -129 -140 -160 -141 -122 -142 -161 -141 -123 -141 -162 -143 -124 -149 -130 -140 -161 -141 -122 --1 --1 -142 -124 -140 -121 -149 -129 -158 -138 -140 -121 -142 -123 -141 -121 -181 --1 -181 -162 -142 -123 -143 -124 -182 -162 -143 -124 -189 -169 -150 -130 -198 -179 -159 -140 -141 -124 -143 -124 -140 --1 --1 --1 -148 -129 -140 -121 -140 -160 -142 -122 -190 -170 -150 -131 -149 -130 -142 -123 -140 -161 -142 -122 -140 -121 -142 -123 --1 --1 -143 -124 -140 -121 -140 -121 -148 -129 -142 -123 -180 -161 -141 -161 -141 -122 -141 --1 --1 --1 -141 -121 -181 -162 -142 -169 -149 -168 -149 -160 -141 -122 -180 -161 -141 -123 -184 -165 -146 -126 -141 -161 --1 --1 --1 -122 -141 -124 -141 -122 -140 -160 -141 -122 -149 -160 -142 -122 -141 -123 -149 --1 --1 --1 --1 -123 -140 -121 -141 -122 -181 -162 -144 -125 -140 -121 -140 --1 -181 -161 -142 -160 -141 -122 -141 -121 -141 -122 -154 -135 -144 -124 -143 -124 -143 -124 -143 -160 -141 -122 -141 -160 -141 -160 -141 -160 -141 -121 -140 -168 -149 -130 -181 -162 -142 -168 -149 -129 -188 -169 -150 -160 -142 -122 -148 -129 -143 -124 -141 -122 --1 --1 --1 -124 -141 -122 -142 -123 -148 -129 -148 -129 -141 --1 -142 -160 -141 -122 -141 -122 -141 -178 -159 -169 -149 -168 -149 -129 -140 -160 -141 -160 -141 -122 -140 -170 -151 --1 --1 --1 -142 -123 -140 -121 -142 -123 -140 -122 -141 -122 -140 -161 -141 -160 -142 -125 -181 -162 -143 -124 -141 --1 -150 -131 -143 -123 -141 -122 -149 -130 -149 -129 --1 --1 --1 --1 -182 -164 -144 -160 -141 -168 -149 -160 -141 -161 -141 -122 -140 -197 --1 -163 -144 -161 -142 -163 -144 -160 -141 -168 -149 --1 --1 -123 -141 -122 -141 -122 -148 -129 -141 -122 -140 -121 -140 -160 -142 -122 -181 -162 -143 -124 -140 -121 --1 --1 -140 -121 -140 -197 -182 -162 -143 -160 -141 -160 -141 -122 -140 -161 -141 -122 -141 -121 -141 -121 -143 -160 -141 -209 -190 -170 -151 -131 -140 -121 --1 -121 -141 -160 -141 -169 -149 -130 -148 -129 -151 -131 -142 -122 -142 -126 -142 -123 -140 -121 -140 -161 -142 -124 -140 -161 --1 -168 -149 -162 -142 -160 -141 -162 -144 -161 -142 -160 -141 -160 -140 -160 -141 -160 -141 -168 -149 -168 -149 -160 -141 -122 --1 --1 -149 -130 -152 -132 -141 -122 -181 -161 -142 -122 -141 -122 -142 -160 -141 -160 -142 -161 -141 -197 -182 -163 -143 -124 -181 -162 -143 -199 -180 -169 -150 -131 -143 -125 -181 -161 -142 -123 -141 --1 --1 -209 -189 -170 -182 -163 -143 -160 -141 -195 -181 -170 -150 -131 -141 -160 -142 -196 -182 --1 --1 -124 -142 -123 -142 -123 -181 -162 -143 -161 -142 -196 -182 -162 -143 -161 --1 --1 --1 -123 -141 -121 -140 -160 -141 -122 -180 -161 -142 -160 -141 -161 -142 -160 -141 -168 -149 -129 -140 -121 -141 -122 -182 -163 -144 -160 -142 -124 -140 -124 -140 -121 -142 --1 --1 --1 -142 -161 -142 -122 -181 -161 -142 -160 -141 -124 -141 -160 -141 -162 -143 -123 -181 -162 -181 -162 -144 -124 -140 -160 -141 -160 -142 -123 -188 -169 -150 -130 -142 -122 -142 -122 -140 -121 -141 -122 -140 -121 -143 -124 -148 -129 --1 --1 --1 --1 -140 -121 -141 -121 -140 -121 -141 -129 -140 -160 -140 -160 -141 -122 -149 -130 -148 -129 -142 -196 -189 -170 -150 -161 -141 -161 -142 -160 -141 -161 -141 -122 -140 -121 -148 -129 -181 -162 --1 --1 -141 -121 -149 -130 -140 -168 -149 -129 -140 -121 -141 -122 -140 -168 -149 --1 --1 --1 -141 -162 -143 -161 -142 -122 -140 -161 -141 -122 -147 -128 -141 -122 -141 -160 -141 -122 -141 -121 -141 -122 -142 -160 -141 -122 -140 -121 -140 -120 -140 -121 --1 --1 -180 -171 -151 -132 -140 -121 -205 -186 -166 -147 -140 -162 -142 -170 -150 -131 -181 -161 -142 -123 -140 -160 -141 -122 -182 -163 --1 -124 -142 -123 -140 -120 -189 -169 -150 -130 -140 -121 -140 -121 -181 -163 -143 -124 -140 -121 -221 -196 -182 -163 -143 -124 -140 -121 -140 --1 --1 -161 -141 -126 -141 -121 -148 -129 -142 -123 -140 -121 -140 -121 -140 -121 -142 -169 -150 -130 -140 -121 -141 -121 -140 --1 -141 -122 -141 -121 -142 -123 -141 -122 -141 -122 -141 -121 -140 -121 -141 -121 -140 -121 -141 -121 -141 -141 -122 --1 --1 --1 -122 -141 -122 -141 -122 -140 -121 -140 -121 -140 -121 -141 -122 -140 -121 -140 -121 -140 -121 -140 -160 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 -196 -181 -162 -143 -160 --1 -160 -141 -179 -160 -141 -122 -141 -121 -140 -121 -140 -121 -140 -121 -148 -129 -180 -161 -143 -124 -143 -124 -140 -121 -140 -120 -140 -121 -140 -121 --1 --1 -140 -121 -141 -122 -142 -168 -149 -129 -142 -161 -141 -123 -140 -122 -140 -121 -141 -122 -140 -121 -148 -129 -148 -129 -140 -121 -141 -121 -140 -121 -140 -121 --1 --1 --1 -121 -142 -123 -140 -122 -140 -121 -141 -122 -140 -121 -144 -125 -148 -129 -140 -161 -142 -122 -144 -160 -141 -124 -143 -124 -140 --1 --1 --1 -140 -160 -141 -122 -141 -122 -140 -123 -140 -121 -140 -121 -141 -122 -140 -121 -181 -162 -143 -123 -140 -122 -140 -121 --1 --1 -140 -121 -140 -121 -140 -121 -140 -121 -140 -121 -140 --1 --1 -124 -141 -122 -140 -121 -140 -121 -140 -121 -140 -121 -141 -121 -140 -121 -148 -129 -148 -129 --1 --1 --1 -122 -140 -120 -140 -120 -140 -121 -140 -121 -141 --1 --1 --1 -140 -121 -140 -121 -140 -120 -140 -121 -140 -120 -140 -121 -140 -121 -140 -121 -140 -121 -140 -122 -140 -122 -140 -149 -129 -180 -161 -142 -122 -149 -130 -141 -122 -140 -121 -180 -161 -142 -123 -180 -162 -142 -181 -161 -142 -123 -140 --1 --1 --1 -140 -121 -140 -121 -140 -121 -140 -123 -141 -122 --1 -125 -140 -121 -181 -162 -142 -123 -141 -122 -145 -126 -140 -121 -140 -121 -143 -123 -145 -125 -152 -160 -141 -122 -141 -122 -140 -124 -140 -121 -148 -129 -140 -121 -140 -122 -140 -122 -141 -121 -141 -122 -184 -164 -144 -125 -140 -121 -140 -121 -141 -122 -140 -121 -141 -122 -141 -122 -143 -161 -142 -123 -204 -185 -165 -146 -141 -177 -157 -161 -143 -124 -141 -122 -141 -189 -169 -150 -130 -140 -121 -141 -122 -143 -124 --1 --1 --1 -169 -150 -130 -180 -161 -141 -178 -158 -139 -140 -121 -140 -121 -189 -169 -150 -131 --1 --1 -140 -121 -141 -122 -140 -121 -148 -129 -140 -120 -140 -120 -141 -121 -141 -122 -140 -121 -198 -179 -159 -160 -141 -122 -141 -121 -143 -124 --1 -121 -140 -121 -141 -122 -140 -121 -181 -162 -142 --1 --1 -129 -140 -121 -142 -123 -148 -129 -140 -121 -142 -122 -148 -129 -140 -121 -140 -160 -141 --1 -140 -161 -141 -122 -141 -121 -141 -122 -140 -121 -141 -122 -141 -168 --1 --1 --1 -130 -151 -132 -141 -160 -148 -129 -140 -160 -141 --1 --1 --1 -141 -123 -141 -162 -143 -124 -149 -130 -140 -161 -141 -122 -164 -145 -142 -124 -140 -121 -149 -129 -158 -138 -140 -121 -142 -123 -141 --1 -181 -161 -181 -162 -142 -123 -143 -124 -182 -162 -143 -124 -189 -169 -150 --1 --1 -179 -159 -140 -141 -124 -143 -124 -140 -121 -140 -121 -148 -129 -140 --1 --1 --1 -142 -122 -190 -170 -150 -131 -149 -130 -142 -123 -140 -161 -142 -122 -140 -121 -142 -123 -140 -121 -143 -124 -140 -121 -140 -121 -148 -129 -142 -123 -180 --1 --1 -161 -141 -122 -141 -122 -140 -160 -141 -121 -181 -162 -142 -169 -149 diff --git a/scripts/dly_error_profiles/dly_profile_19_.dat b/scripts/dly_error_profiles/dly_profile_19_.dat deleted file mode 100644 index 7109a19ef8cc42e9810e7e7a52a27963108f96c8..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/dly_profile_19_.dat +++ /dev/null @@ -1,7500 +0,0 @@ -120 -120 -120 -120 --1 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 -120 -120 --1 -120 -120 -195 -155 -120 --1 -120 -120 -195 --1 --1 -120 -120 -195 -195 -155 -120 --1 -200 -0 -120 -120 -120 -195 -155 -120 -120 -120 --1 -195 -155 -120 -120 -120 -120 -120 -210 -170 -130 -200 -160 -120 -120 --1 -120 -200 -160 -120 --1 --1 -155 -120 -195 -155 -200 -205 -195 -155 --1 -120 --1 -120 -120 -120 -120 -195 --1 -120 -120 -120 -195 --1 -155 -120 -120 -120 -195 -195 -155 --1 -200 -160 -120 -120 -120 -120 -195 -155 -120 -120 -0 -120 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 --1 -120 --1 -120 -130 -120 --1 -120 --1 --1 --1 -155 -120 -120 -205 -165 -130 -195 -155 -120 --1 -0 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -0 --1 -120 -195 -155 -0 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -195 -155 -210 -170 -130 -120 -120 --1 -120 -120 -120 --1 --1 -120 --1 -120 -120 -200 -195 -155 -120 -120 --1 --1 -205 -165 -0 -120 --1 -210 --1 -130 -200 -195 -155 -120 --1 -120 -120 -0 -120 -120 -120 -120 -200 -160 -120 -210 -170 -0 -120 -130 --1 -200 -0 -120 -120 -120 -120 -200 -160 -120 -200 -160 -120 --1 -195 --1 -155 -120 -120 --1 -0 -0 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 --1 --1 -160 -120 --1 -195 -205 -165 -130 --1 -210 -170 -0 -120 -120 --1 -120 -120 -120 -200 -160 -120 -120 -120 -240 -210 -170 -130 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -0 -120 --1 -120 -120 -0 -120 -120 -120 -120 -0 --1 -160 -120 -120 -120 -120 --1 -195 -155 -120 -120 -195 -155 -195 -155 -120 -120 -120 -200 -205 --1 -135 -120 -195 -155 -195 --1 --1 -160 -120 -120 -120 -120 -200 -160 -120 -220 -180 -205 -165 -130 -120 -120 -195 -155 -120 -195 -155 -120 --1 -120 -200 -195 -155 --1 -120 -120 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -0 -120 -120 -120 -120 -120 -0 --1 -165 -0 -120 -195 -0 -130 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 -200 --1 -120 -210 --1 -205 -0 --1 -205 -200 -160 -120 --1 -120 -195 --1 --1 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 --1 --1 -195 -155 -120 -120 --1 -200 -160 -120 --1 -180 --1 -155 -0 -195 -210 --1 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 -210 -170 -205 -165 -0 -120 -240 --1 -165 -135 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -155 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -0 -120 -120 -120 -120 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -285 --1 -210 -205 -165 -0 -120 -120 -120 --1 -195 -155 -120 -120 --1 -120 -120 -200 -160 -0 -120 -120 --1 --1 --1 -210 --1 -130 -0 -120 -120 -120 -210 -195 -155 -120 -120 -120 --1 -120 -120 --1 -120 -120 -120 -195 -195 -155 -120 --1 --1 -120 -130 -200 --1 -0 -220 -195 --1 -200 -195 -195 -155 -120 -120 -210 -170 -130 -200 -0 --1 -120 -0 -120 -120 --1 -155 -120 --1 -120 --1 --1 --1 --1 -120 -120 --1 -0 -120 --1 -120 -120 -120 -195 --1 -220 -180 -140 -240 -205 -205 -165 -205 -165 -210 -170 -130 -120 -0 -120 --1 -120 -120 -120 -120 -120 -120 -0 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -200 -195 -155 -120 --1 --1 -200 -160 -195 -155 -120 -120 -120 -120 -120 -0 --1 -120 -120 -120 -195 -155 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -155 -200 --1 --1 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -195 --1 --1 -120 -120 -120 -120 -120 -120 -120 -120 -205 -165 -210 -170 -130 -200 -160 -0 -120 -120 -120 -120 --1 -195 -155 -120 -195 --1 -195 -195 -155 -120 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -205 -200 -160 -120 -120 --1 -120 -120 -120 -120 -120 --1 -120 -120 -120 --1 -120 -120 -120 -120 -205 -165 -135 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -195 -0 -120 -120 -120 --1 -120 -120 -0 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 -195 -155 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -195 --1 -120 --1 --1 -120 -120 --1 -0 -195 -200 -195 -155 -210 -195 -155 -135 -120 -120 -120 -120 -120 -120 -120 -195 -155 -0 -0 -0 -120 -120 --1 --1 -120 -200 -195 -195 -155 -195 -155 --1 -0 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -0 -195 -155 -210 --1 -0 -120 -195 -155 -120 -205 -165 -210 -195 -155 -120 -120 --1 -120 -195 --1 -120 --1 -120 -200 -160 -0 -120 -120 -120 -120 -120 -0 -120 -120 -120 --1 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -195 -155 -120 -120 --1 --1 --1 -120 -120 -195 -155 -130 -120 -120 -195 -155 -120 -120 -120 -120 -0 -120 -120 --1 --1 -120 -195 -155 -120 -120 -120 -120 -120 -195 -200 -160 -120 -120 -120 -205 -165 -130 -120 -0 -120 -195 -0 -195 -205 -165 -205 -195 -155 --1 -120 -120 -120 -0 -120 -120 -195 -155 -205 -165 -210 -170 -130 --1 -120 -120 -120 -120 -0 -0 -120 --1 -210 -170 -130 -120 -120 --1 -120 -195 -0 -120 -120 -205 -165 -130 -120 -200 --1 -120 -120 -195 --1 -120 --1 -155 -120 -120 -120 -120 -120 --1 -200 -195 -155 -0 -120 --1 -120 --1 -120 -120 -195 -155 -120 -195 -155 -120 -120 -195 -155 --1 -120 --1 --1 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -195 -155 -200 -195 -155 --1 -120 -120 -120 -120 -120 -200 --1 -120 -120 -120 -120 --1 -160 --1 -120 -120 -120 -200 -160 -120 -200 -160 -120 -120 --1 -120 -0 -120 -130 -120 -120 -120 -120 --1 -195 -155 -120 -120 -120 -195 -155 -120 -120 -120 -120 -0 -120 --1 -120 -195 -155 -195 -155 -120 -195 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -210 --1 -0 -120 -120 -0 --1 -205 -165 -135 -120 -120 -240 -0 -160 -135 -120 -195 -155 -120 -0 -120 -120 -120 -120 --1 --1 -135 --1 -120 -210 -195 -155 -120 -205 --1 -155 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -0 -120 -120 -120 -120 -195 -155 -0 -120 -195 --1 -120 -195 -155 -120 -120 -120 -120 -0 -120 -120 -120 -240 --1 -160 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -195 -155 -0 --1 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -220 -195 -155 -120 -195 -0 -240 -205 --1 -135 --1 -120 -120 --1 -195 -155 --1 -165 -135 --1 -120 -120 --1 -120 -200 --1 --1 -165 -130 -120 -200 -160 -195 -155 -120 -120 -120 -120 -195 -210 -170 -215 -175 --1 -155 --1 -120 -120 -120 -120 -195 -155 -120 -195 -200 -160 -120 -120 -120 -120 -120 --1 -195 -155 -120 --1 -120 --1 -0 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 -0 -120 -0 -120 --1 --1 --1 --1 -120 -120 -120 --1 -120 -195 -195 -155 -120 -0 -120 -205 -165 -135 -120 -120 -120 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -280 -240 -0 -0 -0 -120 --1 --1 -170 -205 -165 -130 --1 -120 -120 -0 -120 --1 -120 -120 -195 -155 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -160 -120 -120 -120 -195 -155 -120 -120 --1 -195 -155 -120 -195 -155 -120 --1 -120 -120 -120 -120 -120 -195 --1 -120 -0 -120 -120 -120 -120 -120 --1 -155 -120 -120 -0 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 --1 -120 -120 --1 --1 -195 --1 --1 -160 -120 -200 --1 -155 -120 -120 -120 -200 --1 -165 -135 -120 -195 -155 --1 -120 -120 -120 -195 --1 -195 -155 -120 -120 -195 -285 --1 -205 -200 -160 -0 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 -120 -120 -120 -205 -165 -130 -120 -120 -120 -120 -0 -195 -205 -165 --1 --1 --1 -195 -155 -120 -120 -195 -200 -160 --1 -200 -160 -195 -155 -120 -120 -120 -120 -120 -120 -220 -195 --1 -120 --1 -155 -120 -120 -120 -195 -155 -120 -120 -120 -200 -205 -165 -135 -120 -120 -120 -120 -120 -0 -120 -0 -120 -305 -265 -0 -0 -145 -200 -160 -120 -120 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 --1 -200 -160 -120 -120 -120 -120 -120 -195 --1 -155 -120 -120 -200 -160 -120 -120 --1 -120 -120 -295 -255 -215 --1 --1 -120 -195 -155 -120 -120 -195 --1 -120 -120 -120 -195 --1 -120 -120 --1 -120 -120 --1 -120 -120 -205 -165 -130 -120 -120 -120 -195 -155 -120 --1 -120 -120 --1 -120 --1 --1 --1 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 -120 -120 -120 -0 -120 -195 -155 -120 -120 -120 --1 --1 -200 -160 -120 -120 -120 -120 -120 -120 -120 --1 --1 -120 -200 -0 -120 -120 -120 --1 -0 -195 --1 -120 -0 -120 -200 -160 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -0 --1 -155 -0 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -120 -120 -195 -195 -155 -120 -120 -120 --1 -120 --1 -120 -290 -250 --1 --1 --1 -120 -120 -120 -120 --1 --1 -160 -120 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 --1 -120 -120 -195 -155 -195 -155 -120 -120 -120 -200 -160 --1 --1 -120 -205 -165 -130 -120 -120 -205 --1 --1 -170 -130 -120 -195 -155 -120 -120 -195 -155 -120 --1 -0 -120 --1 -155 -120 -120 -120 --1 -120 -120 -120 -120 -200 -160 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -210 -195 --1 -200 -160 -120 -120 -120 -0 --1 -195 -155 -200 -195 -155 -120 -120 -120 --1 -120 -0 --1 -160 --1 -120 -0 -120 -120 -0 -120 -120 -195 -195 -200 -160 -120 -200 -160 -195 -200 -195 -155 -0 -0 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -200 -0 -120 -200 -160 -195 -155 --1 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -195 -155 --1 -120 -120 -120 -120 -200 -160 -195 -0 -120 -120 -120 --1 -120 -120 -120 --1 -120 --1 -0 -120 -120 -0 -120 -120 -205 --1 -130 -120 -120 -120 -120 -120 -240 -0 -160 -0 -195 -200 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -0 -0 -120 -120 -120 -120 -120 --1 -120 -120 -120 --1 -210 -170 -205 -210 -170 -130 -120 -120 -195 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 --1 -120 --1 --1 -120 -200 -160 -0 -0 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -0 -195 -155 -0 -240 -200 --1 -120 --1 -120 -195 -155 -120 --1 -120 --1 -120 --1 --1 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -0 -195 -155 -200 -160 -240 --1 -170 -205 -165 -130 -195 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 --1 --1 -155 -120 -195 --1 -120 -120 -120 --1 -120 -195 -0 -120 -205 -165 -130 -120 -120 -195 -155 -120 -120 -195 -155 --1 -120 -200 -160 -120 --1 --1 -120 -120 -0 -120 -120 -0 -120 -210 -195 -155 -200 -160 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -200 -160 -120 -0 -120 -130 -120 -0 --1 --1 -120 -195 -155 -195 -155 -200 -160 -120 -0 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -0 -120 -195 -155 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -120 --1 -120 -120 --1 -155 -0 --1 -120 -120 -120 -210 -170 -130 -120 -0 -205 -210 -170 -130 -200 -160 -0 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -200 -160 -120 --1 -120 -195 -155 -120 -120 -120 -195 -155 -120 -195 -155 -200 -160 -120 -120 -120 -120 -120 --1 -120 -0 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 -155 -0 -120 -200 -160 -120 -0 -120 -130 -120 -120 -120 -120 -120 -240 -200 -160 -120 --1 -160 -120 -120 --1 -205 -165 --1 -120 --1 -195 -155 -120 -120 --1 -120 -120 -195 -155 -120 -120 --1 -120 -120 --1 -195 -155 -120 -120 -120 -210 -170 -205 -165 --1 -120 -210 -170 -280 -240 -205 -195 -155 -120 -120 -120 --1 -120 --1 -120 -195 --1 -120 -195 -155 -120 -120 -210 -170 -130 -120 -120 -120 -120 -195 -155 -120 -120 -130 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -205 -165 -130 --1 -120 -195 -155 -120 -120 -120 -200 --1 -120 -0 -120 -120 -210 -170 -130 -0 -120 -120 -120 -120 -120 -200 -160 --1 -120 --1 -195 -155 -120 -195 -200 -160 --1 -120 -120 -120 --1 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 -120 -205 -165 -135 -120 -195 -155 -120 -120 -120 -0 -120 -120 -195 -195 -0 -195 -155 -120 --1 -120 -120 -120 -195 -155 -0 -195 --1 --1 -120 -120 -120 -120 --1 -195 --1 -120 -0 -120 -120 -120 -240 -210 -170 -0 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -200 -160 -120 -120 -0 --1 -120 -120 -120 -120 -120 -120 -200 -160 -195 -155 -120 --1 --1 -120 -120 -200 -0 -120 -120 -0 -120 -120 --1 --1 -155 -205 -165 --1 -205 -165 -135 -0 --1 -120 --1 -120 -0 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 --1 --1 -160 -120 -120 -120 -120 --1 -120 -120 -120 --1 -120 -120 -120 -0 --1 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 --1 --1 -120 -120 --1 -120 --1 -120 -120 -195 -200 --1 -120 -120 -120 -120 -120 -0 --1 --1 -120 -205 -165 -130 -120 -120 -120 -120 --1 -160 -120 -120 -0 -0 -120 -0 -120 --1 -120 -120 -120 -0 -120 --1 -195 --1 -155 -195 -155 -0 -120 -120 -200 -195 -0 -120 -120 --1 --1 -245 --1 -0 -125 --1 -120 -120 -120 -120 -195 -155 -200 --1 -195 -155 --1 -155 -120 -120 -120 -120 -120 -120 -120 --1 -195 --1 -120 --1 -120 --1 -120 -200 -160 -120 -200 -160 -120 -200 -160 -120 -120 -120 -120 --1 -120 --1 -210 -170 -0 --1 -120 -205 -165 -240 -200 -160 -195 -155 -0 --1 -155 -120 -120 -120 -0 -120 -120 -120 -120 -120 --1 --1 -120 --1 -120 -120 --1 -120 -120 -200 -160 -120 -120 --1 -120 --1 -120 -195 -200 -160 -120 -0 -120 -195 -0 -230 -195 -155 -195 --1 -200 -160 -120 -120 -120 -195 --1 -120 -120 -120 -120 -195 -200 -160 -120 --1 -120 --1 -120 -195 -155 --1 -120 -120 -200 -160 -120 -120 -120 -120 --1 -160 -120 -200 -0 -120 -120 -120 -120 -120 -195 -195 -155 -120 -120 -200 --1 --1 -120 --1 -155 -285 -245 -205 --1 -160 -120 -120 --1 -120 --1 --1 -0 --1 -120 -120 -120 --1 -120 -200 -195 -155 -120 -120 -120 -200 --1 -120 -120 -120 -120 -120 -120 --1 -155 -120 -120 -210 -170 -130 -200 -160 -240 -210 --1 -205 -200 -205 -165 -135 -120 --1 -120 -120 -195 -155 -120 -120 -200 -195 -195 --1 -120 --1 --1 -120 -120 -120 -120 -120 --1 -160 -120 -120 -120 -120 -120 -120 -120 -0 -0 --1 -200 -160 --1 -120 -120 -120 -120 -0 -195 -155 -0 -195 -155 -120 -120 -210 -0 -130 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -205 -165 -130 -120 -0 -120 --1 -120 -120 -120 -120 -195 -155 -120 -195 -155 -0 --1 --1 -120 -120 -120 --1 -195 -155 -120 -120 -120 --1 -120 -195 -0 -120 -0 --1 -120 -120 --1 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -195 -155 -200 -0 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -0 -120 -120 -205 --1 -135 --1 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -0 -120 -120 -195 -155 -200 --1 -195 -155 --1 --1 -120 -205 -165 -135 -120 --1 -120 --1 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -195 -155 -120 -120 -120 -120 -205 -165 -210 -170 -130 -120 -120 -120 -120 -195 -155 -120 -120 --1 -155 -120 -120 -120 -120 -120 -210 -170 --1 -0 -120 -120 -120 -120 --1 --1 -120 -120 -120 --1 -205 --1 -130 --1 -155 -120 -120 -120 --1 --1 -155 -0 -120 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -155 --1 -195 -155 --1 -120 -120 -120 -195 -155 --1 -120 --1 -120 -120 --1 -120 -120 -120 -195 -155 --1 -120 -120 -120 --1 -120 --1 -120 --1 -120 --1 --1 -165 -220 --1 -140 --1 -155 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -120 -195 --1 -120 -120 -120 -120 -120 --1 -195 -0 -120 -120 -205 --1 -130 -195 -200 --1 -155 -200 -160 -195 -200 -160 -120 -120 -120 --1 -120 -195 -155 --1 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -205 -165 -130 --1 -120 -120 -120 -120 --1 -120 --1 -195 --1 -120 -120 --1 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 -120 -120 -120 -195 --1 -155 -120 -120 -120 -120 -120 -120 -120 --1 --1 --1 -195 -155 -195 -195 -155 --1 -120 --1 -160 -205 --1 -130 -205 -200 -160 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -200 -0 -120 -120 -120 -205 -165 -130 -120 --1 -120 --1 -120 -120 --1 -0 -120 -120 -135 -120 -120 -200 -205 -165 -135 -120 --1 -155 -120 -120 -120 -120 -195 --1 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -0 --1 -120 -130 -120 -120 -120 -120 -120 -195 -200 -160 --1 --1 -160 --1 -120 -120 -205 -165 --1 -120 -120 -240 -200 -160 -120 -120 --1 -120 --1 -120 --1 -120 -210 -170 -130 -120 -0 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -120 -120 -120 --1 -120 -0 -200 -160 -205 -165 -0 -120 --1 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -0 -120 -210 -205 --1 --1 --1 -120 -120 --1 -120 -0 -120 -120 -0 -120 -120 -120 --1 -195 -200 -160 -120 -0 -120 -0 -120 -120 --1 -120 -205 -165 -210 -170 -0 --1 -205 -165 -135 -120 -120 --1 --1 --1 -120 --1 -120 -120 -120 -120 --1 -195 -195 -155 -120 -195 --1 -160 -195 -155 -120 --1 -210 --1 -0 -120 -120 --1 -120 -120 -120 -0 -120 -120 -120 --1 -120 -120 -195 -155 --1 -195 -155 -120 -120 -120 --1 -120 -120 -120 --1 -120 -200 -160 -120 -0 -120 -120 -0 -120 --1 -120 --1 --1 -200 --1 -195 --1 -120 -120 --1 -0 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 --1 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 --1 -120 -195 -155 -120 -120 --1 --1 -120 --1 -120 -120 -200 -0 -120 -120 -195 -155 -120 -120 -120 -120 --1 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 -200 --1 -120 -120 -205 -165 -135 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -0 -0 -120 -130 -120 -120 --1 -200 -195 --1 -120 -120 -120 -120 -195 -205 -165 -130 -120 -200 -160 -195 -155 -195 -155 -200 -195 --1 -120 --1 --1 -200 -160 -120 -120 -120 --1 -120 -120 -0 --1 -120 -120 -120 --1 -120 -120 -120 -0 -0 --1 -195 -155 -195 -155 --1 -120 -120 -0 -195 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -195 -200 -160 -120 -120 --1 -0 -0 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 --1 -120 --1 -120 --1 -200 -160 --1 -120 -0 -120 -120 -120 -195 -155 -195 -155 -120 -120 --1 -155 --1 -205 -165 -130 -195 -155 --1 -195 -155 -120 -120 -120 -195 -195 -155 -120 --1 -155 -120 -120 --1 -120 -195 -155 -120 -120 -200 -195 -195 -155 -120 --1 -120 -120 --1 -120 -120 -120 -120 -120 -205 -165 -0 -195 -155 -120 -120 -120 -120 -120 --1 -120 --1 -120 -120 -195 -0 -0 -120 -120 --1 -195 -155 -120 -195 -155 -120 -195 -155 -195 -195 -155 -120 -120 -0 -120 --1 -0 --1 -120 -120 -120 -120 -120 -120 -0 -120 -205 --1 -155 -120 -0 -120 -205 -165 --1 -0 -120 -120 -0 -195 -155 -120 -0 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -200 -205 --1 -135 -0 -120 -120 -195 -155 -200 -160 -205 -165 -130 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -200 -195 -155 -120 -120 -120 --1 -160 -120 --1 -195 -155 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -195 -155 -120 --1 -205 -165 -130 -120 --1 -160 -120 -120 -0 -120 -0 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 --1 -155 -120 -195 -155 -120 -120 -220 -195 -0 --1 -160 -120 -200 -160 -0 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -155 -120 -120 -195 -155 --1 -155 -120 -120 -120 -120 --1 -155 -120 -0 -120 -135 -120 -120 -200 --1 --1 -210 -195 --1 -120 -120 -195 -155 --1 -120 -120 -120 -120 --1 -120 -195 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -155 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -195 --1 -120 -120 -120 -120 -120 -120 -120 --1 -155 -205 --1 -135 --1 -120 -120 -195 -155 -120 -195 -195 -155 --1 -120 -120 --1 -155 -120 -120 -120 -120 -120 -195 -0 -120 -130 --1 -120 --1 -120 -120 --1 -120 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -205 -165 -130 -120 -120 --1 -120 -120 -120 -120 -120 --1 --1 -120 -195 -0 -120 --1 -120 --1 --1 -155 -120 -120 -120 --1 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 --1 -120 -120 -120 -0 --1 -120 -195 -155 -120 -195 -155 --1 --1 -120 -120 -120 -120 --1 -120 --1 -200 -160 -120 -120 -120 -120 -120 -195 -155 -200 -160 -240 -210 -170 -130 -200 -160 -195 -0 --1 -120 -120 -130 -195 -200 --1 -165 -0 -120 -120 -200 --1 -130 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -195 --1 -120 -285 -245 -0 -205 -205 -165 -130 -120 -120 -120 -120 --1 -120 --1 -120 -195 -155 -120 -120 --1 -200 -195 -155 -120 -120 -195 -155 -0 -120 -120 -195 -155 -120 -120 -195 -200 -160 -0 --1 -120 -195 --1 -160 -120 --1 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -200 --1 -120 -120 -195 -155 -120 -205 -165 --1 -120 -205 --1 -205 -0 -200 --1 -205 -165 -130 -0 -120 -120 -120 --1 -120 --1 -120 -120 -120 -200 -205 -165 -210 -0 -130 -120 -120 -120 -120 --1 -120 -0 --1 -120 -120 --1 -120 -120 --1 -155 -0 -120 -195 -155 -130 -0 -120 -120 -120 -120 -120 --1 --1 --1 -120 -120 -120 -120 -0 -120 -205 -165 -130 -120 -200 -160 -120 -120 -120 -120 -120 -195 -195 -200 --1 --1 -120 -120 -195 -155 -120 -120 -200 -0 -120 -120 -195 -155 -120 -205 -0 -135 -120 --1 -120 -0 --1 -135 --1 -155 -200 -160 -195 -155 -120 --1 -120 -120 -195 -220 -180 -0 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 --1 -120 -195 -155 --1 -120 -120 -120 --1 --1 -120 -195 -155 -195 --1 -120 -250 -210 -170 -130 -0 -210 --1 -205 -165 -205 -165 --1 --1 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -0 -120 --1 -200 -160 -0 -120 -195 -155 -120 -120 -120 -120 -120 -195 -155 -120 -120 -200 -160 -120 -120 -195 --1 -120 -120 -120 -200 -160 -120 --1 -120 --1 -120 --1 -120 -120 -195 -155 -0 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -200 --1 -120 -120 --1 -120 -0 --1 -120 -120 -120 -195 -155 -195 -155 -200 -160 --1 -120 --1 -120 -120 -120 --1 -120 -120 -120 -200 -160 -120 -200 -195 --1 -120 -120 -120 -200 -205 -165 -135 -120 -120 -120 -195 -155 --1 -205 -165 -135 -120 -120 -120 --1 --1 -0 -130 -120 -200 -160 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 --1 -120 -195 -155 --1 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -200 -195 -155 -200 -160 -120 -120 --1 -120 -120 --1 -120 -135 -120 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -155 -120 -120 -120 -120 -120 --1 -160 -195 -155 -120 -0 --1 -195 -155 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 --1 -195 -205 -165 -205 -205 -0 -130 -120 -120 -120 -205 -200 --1 -120 -200 -195 --1 -0 --1 -120 --1 --1 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -200 -160 --1 -120 --1 --1 --1 -120 -120 -120 --1 -120 -120 --1 -120 -120 -195 -155 -0 -120 -195 -155 -120 -120 --1 -120 -195 -155 -120 -120 -200 -160 -120 --1 -120 -120 --1 -120 -205 -0 -130 --1 --1 --1 --1 -200 -160 -120 -120 -195 -195 -155 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -195 --1 -160 -195 -155 -120 --1 -200 -160 -0 -120 -120 -120 -200 -160 --1 -200 --1 -120 -120 -120 -120 -120 -120 -0 --1 -170 -130 -120 -0 --1 -120 -205 --1 -135 -195 --1 -200 -160 -195 -200 -160 -120 -120 -0 -120 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 --1 -195 -195 --1 -120 -120 -120 -120 -120 -0 -120 --1 -120 --1 --1 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -195 -210 -170 -205 -165 -205 -165 --1 -160 -120 -120 -195 -155 -120 --1 -120 -120 -0 -120 -120 -195 -155 -0 --1 -120 -200 -160 -120 -120 --1 --1 --1 -0 --1 -135 -120 --1 -120 -120 -195 -155 -120 -195 --1 -120 -195 -200 -160 -195 -155 -120 -120 -0 -120 -120 -200 -160 -120 -0 -120 -120 --1 -160 --1 -200 -160 -120 --1 -195 -155 -120 --1 -195 -155 -120 -120 -120 -195 -155 -120 -195 -155 --1 -120 -120 -120 --1 -120 -120 -120 -195 -155 -120 -120 -120 --1 -205 -165 -130 -120 -200 -0 --1 -120 -120 -120 -120 -195 -155 -120 --1 -155 -120 -205 -195 --1 --1 -120 -120 -0 -195 -200 -240 -205 -165 -220 -180 -210 -170 -205 -165 -130 -120 -120 -120 --1 -120 -120 -195 -155 -0 -120 -120 -120 --1 -120 -120 --1 -120 -195 -155 -120 -120 -195 -200 -195 -155 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 -200 -160 --1 -120 --1 -120 -200 -160 -120 -120 -120 -195 -210 -170 -130 -120 --1 -205 -165 --1 -195 --1 --1 -120 -120 -240 -200 --1 -0 -195 --1 -160 -120 -120 -120 -120 -120 -0 -120 --1 -120 -120 -200 --1 -120 -200 -160 -195 -155 -120 -0 -120 -120 -120 -0 -195 -155 -120 -0 -120 -210 -0 --1 -135 -120 --1 -120 -0 -120 -120 -120 -120 -120 --1 --1 -120 -120 -120 -120 -120 -120 --1 --1 -120 -200 -160 -120 -0 -120 -195 -155 -120 -120 -200 -160 -120 -200 -160 --1 -120 -120 -120 -120 -195 -155 -120 --1 -120 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 -120 --1 -120 -130 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 -0 -120 --1 -155 -120 --1 -120 -120 -120 -120 -120 -195 --1 -120 -120 --1 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -195 --1 --1 -120 --1 -195 --1 -120 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 --1 -120 --1 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -195 -0 -120 --1 -120 -120 -120 -120 -120 -195 -155 -200 -160 --1 --1 -195 -155 -120 -120 -195 -200 -160 --1 -0 --1 -165 -135 --1 --1 -155 -120 -120 -200 -160 -120 -120 --1 -120 -120 --1 -120 -210 -170 --1 -120 -120 -120 --1 -195 -155 --1 -0 -195 -155 -120 -120 -0 -120 -205 -200 -160 -120 -120 -195 -155 -120 -0 -120 -120 -120 -120 -210 -170 -205 --1 -130 -120 --1 -195 -155 -120 -195 -155 --1 -195 -155 -120 -120 -205 -200 --1 --1 -120 --1 -120 -120 -120 --1 -120 -120 --1 -200 -160 -0 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -195 -195 -200 -195 -155 -210 -170 -130 -120 -120 -120 --1 -120 -120 -0 -120 --1 -120 -195 -0 -120 --1 -195 -155 -120 -0 -120 -120 -205 -165 -0 --1 -120 --1 -195 -200 -160 -0 -120 -120 -195 -210 -195 -155 --1 -120 -205 -200 -160 -120 -120 -120 -0 -120 --1 -120 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -120 -205 -200 -160 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 --1 -165 -130 -120 -120 --1 -155 -120 -240 -205 -165 -130 -120 -120 -120 -120 -120 -205 -165 -200 --1 -120 -120 -195 -195 -155 -120 -120 -200 -160 -120 -120 -120 -120 -120 --1 -120 -120 -120 -195 -155 -0 -120 --1 -120 --1 -155 -120 -120 -120 --1 -195 --1 -120 -120 -120 --1 -120 --1 -160 -120 -0 -195 -155 --1 --1 -120 -0 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -0 -0 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -200 -160 -120 -120 --1 --1 -200 --1 -120 -120 --1 -155 -120 -120 -195 -155 -120 -120 -120 --1 --1 --1 --1 -240 -200 -160 -195 --1 -195 -195 -200 --1 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 --1 -120 -120 -120 -120 -120 -0 -120 -120 --1 -120 --1 -155 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -0 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 --1 -120 -195 -155 -120 -120 -0 -0 --1 --1 -0 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 --1 -120 --1 --1 -155 -120 --1 -120 -120 -195 -195 -155 --1 -195 -155 -120 --1 -120 --1 -120 -0 -120 -120 --1 --1 -195 -200 -160 -120 --1 -120 -205 -165 -130 -195 -155 -120 -195 -155 -0 -120 -120 -120 -195 -200 --1 -120 -120 -120 -120 -200 -160 -120 -120 -120 -0 -120 --1 -120 -120 -120 -120 -120 -120 -0 -120 -130 --1 -200 -160 -120 -120 -120 -120 -120 -195 -155 -120 -120 -195 -155 -195 -195 -200 -195 --1 -200 --1 -155 --1 -120 -120 -120 --1 -195 --1 --1 -155 -120 -120 -120 -120 -195 -155 -120 -120 -120 --1 -195 --1 -200 -195 -155 -120 -195 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 -120 -120 -120 -195 --1 -120 --1 -200 -160 -120 -120 -120 --1 -120 -195 -155 --1 -120 -120 -120 -120 -120 -120 -205 -165 -135 -120 -120 -200 -160 -195 -155 -120 --1 -200 -160 -120 -120 --1 -120 -120 -120 --1 -120 -120 -195 -155 -195 -155 -120 -240 -200 --1 -120 -120 -120 -120 -120 --1 -160 -120 -120 -195 -155 -120 -120 -195 --1 -120 -205 -165 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -200 -160 -120 --1 -120 --1 -200 -160 -120 -120 --1 -120 -120 -120 --1 -200 -160 -120 -120 -120 -195 --1 -160 -120 -120 -120 -0 -120 -120 -120 -120 -195 -155 -135 -120 -195 -155 -120 -195 -155 -120 --1 --1 --1 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -200 -160 -120 -200 -195 -0 --1 --1 -120 -120 -195 -155 -120 -120 -195 -155 -120 -120 -120 -120 --1 -120 -195 --1 -120 -120 -120 -120 -120 --1 -120 -0 --1 -120 --1 --1 -120 -120 --1 -120 -120 -120 -200 --1 --1 --1 -195 -155 --1 -120 -120 -0 -195 -155 --1 -205 -165 -135 -195 -155 -120 -120 -120 --1 --1 -120 -120 -120 -120 -200 -160 -120 -0 -120 -205 -165 -130 --1 -200 -160 -120 --1 -120 -120 -120 -120 -120 -120 -120 -195 -155 -195 --1 -0 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -195 -195 -155 -120 -120 -120 -120 --1 -200 -160 -120 -200 -160 -120 -200 -160 -120 -120 -120 -195 -155 -120 -120 --1 -0 -120 -120 --1 -120 -120 -120 -195 -0 -120 -0 -120 -120 --1 -200 -160 -0 -120 -120 --1 -200 -160 -120 -120 --1 -155 --1 -120 -120 -120 -120 --1 --1 -130 -120 -120 -120 --1 --1 -160 -120 -120 -0 -120 -120 -120 --1 -155 -120 -120 -120 --1 -120 -200 -160 --1 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -0 -120 -120 -120 -205 --1 -130 -120 -120 -120 -120 -120 -120 -120 -210 -170 -130 -120 -120 -120 --1 -195 -155 -120 -120 -120 --1 -195 -155 -200 -160 --1 -120 -120 -120 -120 -195 -155 -200 --1 -120 -200 -160 -195 -0 -120 -120 -120 -195 -195 -155 -205 --1 -210 -205 -165 --1 --1 --1 --1 -120 -195 --1 --1 --1 -155 -120 -120 -200 --1 -155 -120 -120 -120 -200 -160 -195 -200 -160 -120 -120 -120 -0 -120 -130 -120 -120 -205 -165 -135 --1 -195 -200 -0 -120 -120 -120 -120 -200 --1 -155 --1 -205 -165 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -155 --1 -195 -155 -120 -0 -120 -130 -120 -120 -195 --1 -165 --1 -120 -135 -195 -155 --1 -160 -120 -120 --1 -155 -0 -120 --1 -120 -195 -195 -155 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 -120 -200 -160 --1 -240 -200 -160 -120 -195 -155 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 -165 -135 -120 -120 -120 -205 -165 -135 -120 -120 -120 -120 --1 --1 --1 -120 -120 -120 --1 -120 -120 -205 -165 -130 -120 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 --1 --1 -155 -120 --1 -120 -195 -155 --1 -120 --1 -120 -120 -120 -200 -195 -155 -200 -160 -0 -0 -120 -0 -120 -120 -0 -210 -170 -130 -0 -195 -155 -200 -160 -195 -200 -160 -195 -155 -195 -195 -0 -120 -130 --1 -120 -195 -155 -120 -120 -120 -120 --1 --1 -120 -195 -155 -120 -120 -0 -120 --1 -120 -0 --1 -120 -120 -195 --1 -195 -155 -120 -120 -120 -120 -120 --1 -155 --1 -120 -120 -120 -120 -120 -120 --1 -0 -120 -120 -120 -120 -120 --1 -120 -195 --1 --1 -120 -0 -120 -120 -120 -195 -195 --1 -0 --1 --1 -160 -120 -120 -0 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 --1 -120 -120 --1 -120 -120 -195 -155 -120 -120 -120 -120 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -120 -195 -205 -165 -130 -195 -155 --1 --1 -120 -120 -0 -120 -195 -155 -120 -120 -120 --1 --1 -120 -120 -120 -120 -120 -195 --1 -210 -195 -0 --1 --1 --1 --1 -160 -120 -120 -120 -195 -155 -195 -155 -120 -195 -155 -120 -195 --1 -155 -120 -120 -0 -120 -120 -120 -120 -120 -120 -120 -120 -120 -0 --1 -120 --1 -195 -155 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 -120 --1 -160 -0 -120 -120 --1 -120 -120 -120 --1 -120 -120 --1 --1 -120 -120 -120 -0 -120 --1 -205 -165 -130 --1 -0 -120 --1 --1 -170 --1 -120 -120 -0 -120 -120 -120 -120 -120 -195 --1 -120 -120 -0 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 --1 -120 -120 --1 -120 -120 --1 -120 -195 -155 -120 --1 -120 -195 -155 -120 -0 -120 -120 -120 -120 -120 --1 -120 --1 -240 --1 -165 -130 -205 -200 -0 -120 -120 -120 -120 -120 -120 -120 -120 -0 -120 -120 --1 -195 -155 -195 -195 -155 -120 -120 -120 -120 --1 -0 -120 -120 -210 -170 -130 -120 -120 -240 -210 -170 --1 -120 --1 -120 -200 -160 -195 -155 -195 -155 -120 -120 -120 -120 -195 -195 -200 -160 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -210 --1 -205 -165 -130 -0 -120 -120 -205 -165 -130 -120 -200 -195 -155 -0 -120 -120 -200 -160 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 --1 -195 -155 -120 -120 -195 -155 --1 -120 -120 -120 --1 -120 -0 -120 -120 -205 -165 -210 -195 -195 -200 -160 -120 -200 --1 -155 -120 -0 -120 -120 -120 --1 -120 --1 -195 -0 -120 -120 -120 -120 -120 -200 -0 -120 -0 -120 --1 -120 -120 -120 -200 -160 -195 -155 -120 -205 -165 --1 -120 -200 --1 -120 -0 -120 -120 -120 -120 -195 -155 -195 --1 -120 -120 --1 --1 -195 -155 --1 -120 --1 -120 -120 -120 -120 -120 -200 --1 -120 --1 -120 --1 -120 -120 -120 -120 -120 -120 -200 -195 --1 -120 -120 -120 -120 --1 --1 -120 -120 -195 -155 --1 -120 -120 -120 -195 -155 -120 -120 -120 -195 -195 -155 -120 -120 -200 -0 -120 --1 -120 -195 -155 -120 -120 -120 -120 -195 --1 -120 -120 --1 -120 --1 -210 -170 --1 -200 -160 -120 -120 -120 -120 -200 -160 -120 -120 -195 -155 -120 -195 -155 -200 --1 -195 -155 --1 -120 -0 -120 -120 --1 -120 -195 -0 -120 -120 -120 -195 --1 -155 -120 -120 -120 -195 -195 -155 -240 -200 -160 -120 -120 -120 -120 -195 -155 -120 --1 --1 --1 -120 -120 -120 -120 -120 -0 -120 -120 -120 -120 -120 -120 -0 --1 -130 --1 --1 -120 -0 --1 -195 -155 -120 -120 -205 -165 -130 -195 -155 -120 -195 -0 -120 -120 --1 -120 -120 --1 -160 --1 -120 -120 -120 -120 -120 -120 -120 -195 -0 -120 -120 --1 -155 -0 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -120 -195 -155 -210 -170 -130 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 --1 -120 -200 -195 -155 -120 --1 -120 -240 -205 -165 -0 -120 -120 -210 --1 -130 --1 -195 -155 -120 -120 -120 -120 --1 -120 -120 -120 -120 -200 -160 -120 -210 --1 -0 -120 -130 -195 -200 -0 -120 -120 -120 -120 -200 -160 -120 --1 -160 -120 -200 -195 --1 -155 -120 --1 -120 -0 --1 --1 -120 -195 -155 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 --1 -160 --1 -0 -195 -205 -165 -130 -120 --1 -170 -0 -120 -120 -120 -120 --1 -120 -200 -160 -120 -120 -120 -240 -210 -170 --1 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -0 -120 -120 -120 -120 -0 -200 --1 -120 -120 -120 -120 --1 -195 -155 -120 -120 -195 -155 -195 -155 -120 -120 -120 -200 --1 -165 -135 -120 -195 -155 -195 -155 -200 --1 -120 --1 -120 -120 -200 -160 -120 --1 -180 -205 -165 -130 -120 -120 -195 -155 -120 --1 -155 --1 -120 -120 -200 -195 -155 -120 -120 -120 --1 -195 -155 -200 -160 -120 -120 -120 -120 --1 -120 --1 -120 -195 -155 -120 -120 -120 --1 -120 -120 --1 -120 -120 -0 -205 --1 -0 -120 -195 -0 -130 -120 -120 -120 -120 -120 --1 -120 -210 -170 --1 -120 --1 -120 -200 -160 -120 -210 --1 -205 -0 -195 -205 -200 -160 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -120 -120 -195 -155 -120 --1 --1 -120 -120 -200 -195 -155 -120 -120 --1 -200 -160 -120 -220 -180 -195 -155 -0 -195 -210 -170 -130 -120 -120 -120 -120 -120 -120 -120 --1 -120 --1 -120 -195 -210 -170 -205 -165 -0 -120 -240 -205 --1 -135 --1 -120 -120 -120 -120 --1 -120 --1 --1 -195 -155 -200 -160 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 -120 -120 --1 -155 -120 -120 -120 -120 -0 -120 -120 --1 -120 -120 -120 -120 -120 -120 -120 --1 -120 -120 -120 -120 -120 -120 --1 -120 -285 --1 -210 --1 -165 -0 -120 -120 --1 -120 -195 -155 -120 -120 -120 -120 -120 -200 -160 -0 -120 -120 -120 -120 -250 -210 -170 -130 -0 diff --git a/scripts/dly_error_profiles/ep_10pct.g192 b/scripts/dly_error_profiles/ep_10pct.g192 deleted file mode 100644 index fbbbaef722d016a9d128876c8a9144be4ad48496..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/ep_10pct.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k \ No newline at end of file diff --git a/scripts/dly_error_profiles/ep_15pct.g192 b/scripts/dly_error_profiles/ep_15pct.g192 deleted file mode 100644 index 346b51ef4beda335abe59eab59f675fe36c22729..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/ep_15pct.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k \ No newline at end of file diff --git a/scripts/dly_error_profiles/ep_3pct.g192 b/scripts/dly_error_profiles/ep_3pct.g192 deleted file mode 100644 index 0fdaf9110c6a5c8a59550a2b2e2d1e2b05905fad..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/ep_3pct.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k \ No newline at end of file diff --git a/scripts/dly_error_profiles/ep_5pct.g192 b/scripts/dly_error_profiles/ep_5pct.g192 deleted file mode 100644 index 705c4a1995bb605edb40b0d8e9c735863bc5c216..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/ep_5pct.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k \ No newline at end of file diff --git a/scripts/dly_error_profiles/ep_5pct_burst.g192 b/scripts/dly_error_profiles/ep_5pct_burst.g192 deleted file mode 100644 index 6c0655b3de98dd2cf45e67bd7d4985955bd2ad15..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/ep_5pct_burst.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k k k k k k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k k!k!k \ No newline at end of file diff --git a/scripts/dly_error_profiles/ep_7pct.g192 b/scripts/dly_error_profiles/ep_7pct.g192 deleted file mode 100644 index b3825ff41488e32c6ddba33ae4cbad905148c8af..0000000000000000000000000000000000000000 --- a/scripts/dly_error_profiles/ep_7pct.g192 +++ /dev/null @@ -1 +0,0 @@ -!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k!k \ No newline at end of file diff --git a/scripts/find_unused_symbols.sh b/scripts/find_unused_symbols.sh deleted file mode 100755 index 259c4efe6f3aeb155bea7ccd4764313e6bf89657..0000000000000000000000000000000000000000 --- a/scripts/find_unused_symbols.sh +++ /dev/null @@ -1,127 +0,0 @@ -#!/bin/bash - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -WORKDIR=.. -OBJDIR=obj - -evaluateTables=1 -evaluateFunctions=1 -compile=1 -help=0 - -while getopts ":ftnhd:" OPT; do - case "$OPT" in - d) - WORKDIR=$(realpath -s "${OPTARG}") - ;; - f) - evaluateFunctions=1 - evaluateTables=0 - ;; - t) - evaluateFunctions=0 - evaluateTables=1 - ;; - n) - compile=0 - ;; - h) - help=1 - ;; - *) # getopts produces error - exit 1 - ;; - esac -done - -if [ $help -ne 0 ]; then - echo "Usage: $0 [-dftn]" - echo " where" - echo " -d : set C-code dir (default: ${WORKDIR})" - echo " -f: functions only" - echo " -t: tables only" - echo " -n: no compilation" - exit 0 -fi - -# print C-code directory -echo "C-code directory set to ${WORKDIR}" -WORKDIR_EXE=${WORKDIR//" "/"\ "} -EXECUTABLES="${WORKDIR_EXE}/IVAS_cod ${WORKDIR_EXE}/IVAS_dec ${WORKDIR_EXE}/IVAS_rend ${WORKDIR_EXE}/ISAR_post_rend" - -# build -if [ $compile -ne 0 ]; then - make -C "${WORKDIR}" clean && make -j -C "${WORKDIR}" DEBUG=0 STRIP=1 all 1>&2 - echo "" -fi - -# check, whether executables exist -for i in $EXECUTABLES -do - if [ ! -f "$i" ]; then - echo "Executable $i not found. Aborting" - echo "" - exit - fi -done - -if [ $evaluateFunctions != 0 ]; then - # delete text files - rm -f functions_obj.txt functions_exe.txt 1>&2 - - # find all functions in object files - nm "${WORKDIR}/${OBJDIR}/"*.o | grep "^[0-9a-f]* T " | sed 's/^[0-9a-f]* T //' | sort -u > functions_obj.txt - # find all symbols in final executables - nm ${EXECUTABLES} | grep "^[0-9a-f]* T " | sed 's/^[0-9a-f]* T //' | sort -u > functions_exe.txt - - # diff output - echo "Unused functions:" - echo "=================" - comm -13 functions_exe.txt functions_obj.txt - echo "" -fi - -if [ $evaluateTables -ne 0 ]; then - # delete text files - rm -f tables_obj.txt tables_exe.txt 1>&2 - - # find all functions in object files - nm "${WORKDIR}/${OBJDIR}/"*.o | grep "^[0-9a-f]* [RD] " | sed 's/^[0-9a-f]* [RD] //' | sort -u > tables_obj.txt - # find all symbols in final executables - nm ${EXECUTABLES} | grep "^[0-9a-f]* [RD] " | sed 's/^[0-9a-f]* [RD] //' | sort -u > tables_exe.txt - - # diff output - echo "Unused tables:" - echo "==============" - comm -13 tables_exe.txt tables_obj.txt - echo "" -fi diff --git a/scripts/ifdef_instrument.list b/scripts/ifdef_instrument.list deleted file mode 100644 index 6d3e7ede83ad4306e726c19c0e57177665810035..0000000000000000000000000000000000000000 --- a/scripts/ifdef_instrument.list +++ /dev/null @@ -1,85 +0,0 @@ --UDEBUGGING --DSUPPORT_JBM_TRACEFILE --DNON_BE_FIX_1048_THRESHOLD_COH_BASOP --DNONBE_FIX_1054_NEGATIVE_LVQ_INDEX --DNONBE_FIX_738_QUATERNION_SLERP_PRECISION --DFIX_1033_MEMORY_LEAK_OMASA --DFIX_976_USAN_PVQ_ENC_DEC_EVS_CR --DFIX_1027_GSC_INT_OVERFLOW --DNONBE_FIX_1096_NAN_VALUES_IN_DIRAC_TO_STEREO --DNON_BE_1055_RESET_LP_MEMORIES --DNONBE_FIX_1069_SVD_TUNING --DNONBE_FIX_1010_STEREO_CNG_DIV_BY_ZERO --DNONBE_MDCT_ST_DTX_SKIP_DEWHITENING_OF_NOISE_SHAPES_ON_SID_FRAMES --DNONBE_MDCT_ST_PLC_DO_NOT_SCALE_OLD_OUT_IF_FIRST_GOOD_IS_SID --DNON_BE_FIX_1137_GSC_IVAS_FXFLT_DECODING --DNONBE_FIX_1132_THRESHOLD_POW_IN_SWB_TBE --DFIX_BASOP_812_NAN_COHSNR --DNON_BE_FIX_807_MASA_DTX_BRSW --DNON_BE_FIX_BASOP_819_THRESHOLD_MASA2TOTAL --DFIX_828_PORT_1152_FROM_FLT_REPO --DNONE_BE_FIX_816_LFE_PLC_FLOAT --DFIX_835_PARAMMC_BUFFER_VALUES --DNONBE_FIX_943_PORT_1208_DFT_STEREO_PLC_BURST --DFIX_903_ZERO_OUT_IMDCT_BUFFERS_FOR_MCT_IGNORE --DFIX_853_DECODE_MASA_ISM_AZIMUTH_PREC_FP --DBASOP_NOGLOB --UDEBUGGING --UWMOPS_PER_FRAME --UWMOPS_DETAIL --UWMOPS_WC_FRAME_ANALYSIS --UDISABLE_DFT_STEREO_ASSERT --UDEBUG_MODE_INFO --UDEBUG_MODE_ACELP --UDEBUG_MODE_TCX --UDEBUG_MODE_DFT --UDEBUG_MODE_TD --UDEBUG_MODE_DIRAC --UDEBUG_MODE_MDCT --UDEBUG_MODE_PARAM_MC --UDEBUG_MODE_PARAM_ISM --UDEBUG_MODE_INFO_TWEAK --UDEBUG_MODE_INFO_PLC --UDEBUG_MODE_INFO_ALLRAD --UDEBUG_MODE_LFE --UDEBUG_PLOT_BITS --UENABLE_BITRATE_VERIFICATION --UDEBUG_PLOT --UALLOW_BYTE_EP --UWRAP_AS_EIDXOR --UDEBUG_FORCE_MDCT_STEREO_MODE --UDEBUG_STEREO_DFT_NOCORE --UDEBUG_STEREO_DFT_NOSTEREO --UDEBUG_STEREO_DFT_NOQRES --UDEBUG_STEREO_DFT_OUTRESPRED --UDEBUG_DISABLE_DIRAC_DELAY_COMP --UDEBUG_BS_READ_WRITE --UDEBUG_MODE_DIRAC_NOCORE --UDEBUG_MODE_QMETADATA --UDEBUG_FORCE_MCT_CP --UDEBUG_SINGLE_CODE_OMNI --UDEBUG_NO_TONAL_PLC --UDEBUG_NO_TD_TCX_PLC --UDEBUG_FORCE_TD_TCX_CONCEALMENT --UDEBUG_PLC_INFO --UDEBUG_EFAP_POLY_TOFILE --UTDREND_HRTF_TABLE_METHODS --UTDREND_STANDALONE --UDEBUG_SBA --UDEBUG_LBR_SBA --UDEBUG_SBA_AUDIO_DUMP --UDEBUG_SBA_MD_DUMP --UDEBUG_SPAR_MD_TARGET_TUNING --UDEBUG_SPAR_BYPASS_EVS_CODEC --UDEBUG_SPAR_WRITE_OUT_COV --UDEBUG_SPAR_DIRAC_WRITE_OUT_PRED_PARS --UDEBUG_AGC --USPAR_HOA_DBG --UDEBUG_OSBA --UDEBUG_BINAURAL_FILTER_DESIGN --UDEBUG_AGC_ENCODER_CMD_OPTION --UDEBUG_JBM_CMD_OPTION --UVARIABLE_SPEED_DECODING --UDBG_WAV_WRITER --USPLIT_POSE_CORRECTION_DEBUG --USPLIT_MD_CODING_DEBUG diff --git a/scripts/lc3plus_lib_setup/get_lc3plus.sh b/scripts/lc3plus_lib_setup/get_lc3plus.sh deleted file mode 100755 index ea2a893d1993fc2750a128ffdeb7b71f21033244..0000000000000000000000000000000000000000 --- a/scripts/lc3plus_lib_setup/get_lc3plus.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env bash - -# This script shall only be used by automated continuous integration systems - -printf "Cleaning old version of LC3plus\n" -rm -rf lib_lc3plus - -printf "Downloading LC3plus code\n" -if false; then - # Waiting for official ETSI release. - # TODO: add new URL, remove `if false` when package goes public - curl -o ./lc3plus_sources.zip NEW_URL_HERE - unzip lc3plus_sources.zip -d . - rm lc3plus_sources.zip - cp -r "ETSI_Release//src/floating_point" lib_lc3plus - rm -r ETSI_Release -else - # Temp solution for downloading WIP ETSI package - # LC3_ETSI_REPO_URL must be define before running the script - git clone "$LC3_ETSI_REPO_URL" - cp -r lc3_etsi_release/src/floating_point lib_lc3plus - rm -rf lc3_etsi_release -fi - -# Remove unneeded files -printf "Removing unneeded files\n" -rm lib_lc3plus/codec_exe.c # Only used for executable -rm lib_lc3plus/makefile # Build handled at IVAS level -rm -r lib_lc3plus/msvc # Build handled at IVAS level -rm lib_lc3plus/plc_noise_substitution0.c # Empty file -rm lib_lc3plus/tinywavein_c.h # Only used for executable -rm lib_lc3plus/tinywaveout_c.h # Only used for executable - -# Limit file permissions -printf "Limiting file permissions\n" -find lib_lc3plus -type f -print0 | \ -xargs -0 -I {} \ -chmod -x {} - -# include options.h in all C files -printf "Including options.h and wmc_auto.h in C files\n" -find lib_lc3plus -name '*.[ch]' -type f -print0 | \ -xargs -0 -I {} \ -sed -i ' -# range: from 1st line to first match -1,/^#include/ { - # insert lines before first match - /^#include/ i\ -#include "options.h"\ -#include "wmc_auto.h" -} -' {} - -# Remove whitespace from preprocessor commands -printf "Removing whitespace from preprocessor commands\n" -find lib_lc3plus -name '*.[ch]' -type f -print0 | \ -xargs -0 -I {} \ -sed -i 's/^#[[:space:]]\+/#/' {} - -# Add .clang-format file to lib_lc3plus to disable formatting there -printf "Disabling clang-format in lib_lc3plus directory\n" -printf ' -DisableFormat: true -SortIncludes: Never -' >> lib_lc3plus/.clang-format diff --git a/scripts/ls_layouts/16ch_8+4+4.txt b/scripts/ls_layouts/16ch_8+4+4.txt deleted file mode 100644 index b69c10a735d7a088301222a712e9cb0c7a15cdd4..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/16ch_8+4+4.txt +++ /dev/null @@ -1,3 +0,0 @@ -30.0, -30.0, 0.0, 150.0, -150.0, 100.0, -100.0, -180, 45.0, -45.0, 115.0, -115.0, 50.0, -50.0, 125.0, -125.0 - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, -30.0, -30.0, -30.0, -30.0 - diff --git a/scripts/ls_layouts/4d0.txt b/scripts/ls_layouts/4d0.txt deleted file mode 100644 index f8f37f46b37554cae388d2d5e844856175864b3f..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/4d0.txt +++ /dev/null @@ -1,2 +0,0 @@ -45, -45, 135, -135 -0, 0, 0, 0 diff --git a/scripts/ls_layouts/4d4.txt b/scripts/ls_layouts/4d4.txt deleted file mode 100644 index 7826a9bc84646bcc28c852f1519f9858a4f7b0d9..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/4d4.txt +++ /dev/null @@ -1,2 +0,0 @@ -45, -45, 135, -135, 45, -45, 135, -135 -0, 0, 0, 0, 35, 35, 35, 35 diff --git a/scripts/ls_layouts/cicp1.txt b/scripts/ls_layouts/cicp1.txt deleted file mode 100644 index aa47d0d46d47a06090f436b0b851b76bb6f3b6e2..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp1.txt +++ /dev/null @@ -1,2 +0,0 @@ -0 -0 diff --git a/scripts/ls_layouts/cicp12.txt b/scripts/ls_layouts/cicp12.txt deleted file mode 100644 index 75368406a35d2d5a247fbe5411cbcb68ae1c0313..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp12.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110, 135, -135 -0, 0, 0, 0, 0, 0, 0 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp13.txt b/scripts/ls_layouts/cicp13.txt deleted file mode 100644 index d0510c1d8f3cc981fd311723a177170ab2c66723..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp13.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 30, -30, 60, -60, 90, -90, 135, -135, 180, 0, 45, -45, 90, -90, 0, 135, -135, 180, 0, 45, -45 -0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 35, 35, 35, 35, 90, 35, 35, 35, -15, -15, -15 -3, 9 diff --git a/scripts/ls_layouts/cicp14.txt b/scripts/ls_layouts/cicp14.txt deleted file mode 100644 index 5f39e5f581fe85cf0884eee512234d465ff6691d..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp14.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110, 30, -30 - 0, 0, 0, 0, 0, 35, 35 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp15.txt b/scripts/ls_layouts/cicp15.txt deleted file mode 100644 index 44311e1c5f0bc7efac63381abcdf9172d60d12d9..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp15.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 30, -30, 90, -90, 135, -135, 45, -45, 180, 45, -45 -0, 0, 0, 0, 0, 0, 0, 35, 35, 45, -15, -15 -3, 9 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp16.txt b/scripts/ls_layouts/cicp16.txt deleted file mode 100644 index bce7d1fc0233fafe4d4ad8944802950c7f2b4425..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp16.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110, 30, -30, 110, -110 -0, 0, 0, 0, 0, 35, 35, 35, 35 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp17.txt b/scripts/ls_layouts/cicp17.txt deleted file mode 100644 index 1852b65ea05fd58c0d33a16ffdd73bda0762b1a7..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp17.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 30, -30, 110, -110, 30, -30, 0, 110, -110, 0 -0, 0, 0, 0, 0, 30, 30, 30, 30, 30, 90 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp18.txt b/scripts/ls_layouts/cicp18.txt deleted file mode 100644 index 03a65541e0e0ddd76dc220ffc7c8280d97bdec6b..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp18.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 30, -30, 110, -110, 150, -150, 30, -30, 0, 110, -110, 0 -0, 0, 0, 0, 0, 0, 0, 30, 30, 30, 30, 30, 90 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp19.txt b/scripts/ls_layouts/cicp19.txt deleted file mode 100644 index f0aa03635cfda458cceae27c6716bd0c7a533965..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp19.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 135, -135, 90, -90, 30, -30, 135, -135 -0, 0, 0, 0, 0, 0, 0, 35, 35, 35, 35 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp2.txt b/scripts/ls_layouts/cicp2.txt deleted file mode 100644 index df2e8b7638cec605b1373c06dcf350d4ff996f64..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp2.txt +++ /dev/null @@ -1,2 +0,0 @@ -30, -30 - 0, 0 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp20.txt b/scripts/ls_layouts/cicp20.txt deleted file mode 100644 index 5fc65579003928a479742c5cc4ebda7382e2a8ee..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp20.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 15, -15, 30, -30, 90, -90, 135, -135, 45, -45, 0, 135, -135 -0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 30, 30, 30 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp3.txt b/scripts/ls_layouts/cicp3.txt deleted file mode 100644 index 58c682a357358aa5d36d94036543ea5e95b7ee14..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp3.txt +++ /dev/null @@ -1,2 +0,0 @@ -30, -30, 0 - 0, 0, 0 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp4.txt b/scripts/ls_layouts/cicp4.txt deleted file mode 100644 index 1576fb2dc41668458e175654ebf431b1bb1abfa8..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp4.txt +++ /dev/null @@ -1,2 +0,0 @@ -30, -30, 0, 180 - 0, 0, 0, 0 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp5.txt b/scripts/ls_layouts/cicp5.txt deleted file mode 100644 index 54d87ac35b22cf2d64f467e93b6f4605cd0d4806..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp5.txt +++ /dev/null @@ -1,2 +0,0 @@ -30, -30, 0, 110, -110 - 0, 0, 0, 0, 0 diff --git a/scripts/ls_layouts/cicp6.txt b/scripts/ls_layouts/cicp6.txt deleted file mode 100644 index ed5c1fe484790798d7abc96fc2922f71b3d7accf..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp6.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110 -0, 0, 0, 0, 0 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/cicp7.txt b/scripts/ls_layouts/cicp7.txt deleted file mode 100644 index 190ea6e187cf17a86eaeed65d043b14782b4baf3..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/cicp7.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 45, -45, 110, -110 - 0, 0, 0, 0, 0, 0, 0 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/custom1.txt b/scripts/ls_layouts/custom1.txt deleted file mode 100644 index a7d474da9b7c6f5dca040b981ea99852a63be3ca..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/custom1.txt +++ /dev/null @@ -1,2 +0,0 @@ -45, -45, 0, 150, -150, 100,-100, 45, -45, 150, -150 -0, 0, 0, 0, 0, 0, 0, 35, 35, 35, 35 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_0+2+0.txt b/scripts/ls_layouts/itu_0+2+0.txt deleted file mode 100644 index 8b15eda33d4ae8bf0fb88d9d70ddec7925f396ac..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_0+2+0.txt +++ /dev/null @@ -1,2 +0,0 @@ -30, -30 - 0, 0 diff --git a/scripts/ls_layouts/itu_0+5+0.txt b/scripts/ls_layouts/itu_0+5+0.txt deleted file mode 100644 index 97f77f5a19c6be8d0f82cbca5dd84af56aa06fb9..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_0+5+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110 - 0, 0, 0, 0, 0 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_0+7+0.txt b/scripts/ls_layouts/itu_0+7+0.txt deleted file mode 100644 index 7c5c62855605b55255a6b4d2c8e720422d677977..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_0+7+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 90, -90, 135, -135 - 0, 0, 0, 0, 0, 0, 0 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_2+5+0.txt b/scripts/ls_layouts/itu_2+5+0.txt deleted file mode 100644 index c9555de0318d94c63d7d87bee53b39deea1e0cb4..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_2+5+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110, 30, -30 - 0, 0, 0, 0, 0, 30, 30 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_3+7+0.txt b/scripts/ls_layouts/itu_3+7+0.txt deleted file mode 100644 index e4e207cc2fba48d25991450f3f07724507f1dac6..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_3+7+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 30, -30, 45, -45, 90, -90, 135, -135, 180 -0, 0, 0, 30, 30, 0, 0, 0, 0, 45 -10, 11 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_4+5+0.txt b/scripts/ls_layouts/itu_4+5+0.txt deleted file mode 100644 index e4068eb05223096b36c7d08ec9209bcb7bed3f05..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_4+5+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110, 30, -30, 110, -110 - 0, 0, 0, 0, 0, 30, 30, 30, 30 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_4+5+1.txt b/scripts/ls_layouts/itu_4+5+1.txt deleted file mode 100644 index b6704824d916b493bf6c7e79c363a9133bbcfe36..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_4+5+1.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 110, -110, 30, -30, 110, -110, 0 - 0, 0, 0, 0, 0, 30, 30, 30, 30, -30 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_4+7+0.txt b/scripts/ls_layouts/itu_4+7+0.txt deleted file mode 100644 index 556801687c3d95a1746846d441acff8f0c8e2170..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_4+7+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 90, -90, 135, -135, 45, -45, 135, -135 - 0, 0, 0, 0, 0, 0, 0, 30, 30, 30, 30 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_4+9+0.txt b/scripts/ls_layouts/itu_4+9+0.txt deleted file mode 100644 index 0ef5f3e24e9eb1fe556e422db5e2648cb9148b1b..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_4+9+0.txt +++ /dev/null @@ -1,3 +0,0 @@ -30, -30, 0, 90, -90, 135, -135, 45, -45, 135, -135, 15, -15 - 0, 0, 0, 0, 0, 0, 0, 30, 30, 30, 30, 0, 0 -3 \ No newline at end of file diff --git a/scripts/ls_layouts/itu_9+10+3.txt b/scripts/ls_layouts/itu_9+10+3.txt deleted file mode 100644 index b11a6483dc3030be4e8e81c026bb77a48fba84ce..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/itu_9+10+3.txt +++ /dev/null @@ -1,3 +0,0 @@ -60, -60, 0, 135, -135, 30, -30, 180, 90, -90, 45, -45, 0, 0, 135, -135, 90, -90, 180, 0, 45, -45 - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 30, 90, 30, 30, 30, 30, 30, -30, -30, -30 -3, 9 \ No newline at end of file diff --git a/scripts/ls_layouts/t_design_1.txt b/scripts/ls_layouts/t_design_1.txt deleted file mode 100644 index ebd50d1cbd64a338b444aafb7b5c8c99af4fc6d0..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/t_design_1.txt +++ /dev/null @@ -1,2 +0,0 @@ -0, 180 -0, 0 \ No newline at end of file diff --git a/scripts/ls_layouts/t_design_2.txt b/scripts/ls_layouts/t_design_2.txt deleted file mode 100644 index b8b4d741ee44560ecc6ba6fdf4a6fc5f86daaa5c..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/t_design_2.txt +++ /dev/null @@ -1,2 +0,0 @@ -45.0000, -45.0000, 135.0000,-135.0000 -35.2644, -35.2644, -35.2644, 35.2644 \ No newline at end of file diff --git a/scripts/ls_layouts/t_design_3.txt b/scripts/ls_layouts/t_design_3.txt deleted file mode 100644 index 477adce36f128f97a6d5f6d0f20ff59f69944022..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/t_design_3.txt +++ /dev/null @@ -1,2 +0,0 @@ -0, 180, 90, -90, 0, 0 -0, 0, 0, 0, 90, -90 \ No newline at end of file diff --git a/scripts/ls_layouts/t_design_4.txt b/scripts/ls_layouts/t_design_4.txt deleted file mode 100644 index d8b3a24be1ea45ec268c69e8ed3b49f17b7cffe5..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/t_design_4.txt +++ /dev/null @@ -1,2 +0,0 @@ - 0, -58.2825, -90.0000, 0, -121.7175, 90.0000, 180.0000, 121.7175, 90.0000, 180.0000, 58.2825, -90.0000 --31.7175, 0, 58.2825, 31.7175, 0, -58.2825, -31.7175, 0, 58.2825, 31.7175, 0, -58.2825 \ No newline at end of file diff --git a/scripts/ls_layouts/test_anglewrapping_dedupe.txt b/scripts/ls_layouts/test_anglewrapping_dedupe.txt deleted file mode 100644 index 16bcd6b646c813d39483e75ba81c29b76002f82a..0000000000000000000000000000000000000000 --- a/scripts/ls_layouts/test_anglewrapping_dedupe.txt +++ /dev/null @@ -1,3 +0,0 @@ -0, 360, 180, 540, 45, -315, 0, 0, 45, 405, -0, 0, 0, 0, 45, -315, -90, 270, 45, 405, - , \ No newline at end of file diff --git a/scripts/parseNewsletterWmops.py b/scripts/parseNewsletterWmops.py deleted file mode 100644 index 3328d4ca1662771e83a81a2fc3480dca6b2aa357..0000000000000000000000000000000000000000 --- a/scripts/parseNewsletterWmops.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 -""" - (C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import csv -import sys -import re - -newsletterFilename = "" -newsletterFilenameLast = "" -revision = "" -shortDate = "" -fullDate = "" - -if __name__ == "__main__": - newsletterFilename = sys.argv[1] - newsletterFilenameLast = sys.argv[2] - revision = sys.argv[3] - shortDate = sys.argv[4] - fullDate = sys.argv[5] - -max_enc = ["", 0] -max_dec = ["", 0] -max_total = ["", 0] -fixedpointScalingFac = 1.0 - -with open(newsletterFilename, "r") as csvfile: - wmops = csv.reader(csvfile, delimiter=";") - for row in wmops: - if row[0] == "conf": - continue - if float(row[1]) > max_enc[1]: - max_enc[0] = re.sub(" ", "_", row[0]) - max_enc[1] = float(row[1]) - if float(row[2]) > max_dec[1]: - max_dec[0] = re.sub(" ", "_", row[0]) - max_dec[1] = float(row[2]) - if float(row[3]) > max_total[1]: - max_total[0] = re.sub(" ", "_", row[0]) - max_total[1] = float(row[3]) - -print( - revision, - shortDate, - fullDate, - max_enc[1] + max_dec[1], - max_enc[0], - max_enc[1], - max_dec[0], - max_dec[1], - max_total[0], - max_total[1], - fixedpointScalingFac, - max_enc[1] + max_dec[1], - max_enc[0], - max_enc[1], - max_dec[0], - max_dec[1], - max_total[0], - max_total[1], - newsletterFilenameLast, -) diff --git a/scripts/parse_complexity_tables.py b/scripts/parse_complexity_tables.py deleted file mode 100644 index e87e3b05fa54445aae75290ae2ec40dd980110e7..0000000000000000000000000000000000000000 --- a/scripts/parse_complexity_tables.py +++ /dev/null @@ -1,780 +0,0 @@ -#!/usr/bin/env python3 - -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. - -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. - -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. - -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. - -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. - -""" - parse_complexity_tables.py - - A script to parse complexity tables from smoke_test_complexity.sh run - and collecting the results into an Excel and csv files. - - Arguments: - -input_tables_base: Paths to input tables base csv files (before the WMOPS etc. tags), separated by ';'. E.g., path/to/file1.csv;path/to/file_xyz_ (where the actual files are file_xyz_WMOPS.csv or file_xyz_TROM.csv, for example) - Optional. If not present, use the default paths inside this script. - - -output_table: Path to output table csv file, a complementary .xlsx file is also created. E.g., path/to/output_file.csv - Optional. If not present, use the default output path inside this script (default output directory is complexity_tables/). - - -input_limiters: List of input format limiters, separated by ';'. Optional, accepted values: - mono - foa - hoa2 - hoa3 - planar foa - planar hoa2 - planar hoa3 - masa 1tc - masa 2tc - mc 5_1 - mc 5_1_2 - mc 5_1_4 - mc 7_1 - mc 7_1_4 - stereo - stereodmxevs - omasa ism1 1tc - omasa ism1 2tc - omasa ism2 1tc - omasa ism2 2tc - omasa ism3 1tc - omasa ism3 2tc - omasa ism4 1tc - omasa ism4 2tc - osba ism1 foa - osba ism1 hoa2 - osba ism1 hoa3 - osba ism2 foa - osba ism2 hoa2 - osba ism2 hoa3 - osba ism3 foa - osba ism3 hoa2 - osba ism3 hoa3 - osba ism4 foa - osba ism4 hoa2 - osba ism4 hoa3 - ism1 - ism2 - ism3 - ism4 - ism+1 - ism+2 - ism+3 - ism+4 - - -bitrate_limiters: List of bitrate limiters, separated by ';'. Optional, accepted values: - EVS only: - 5.9 - 6.6 - 7.2 - 8.0 - 8.8 - 9.6 - 12.6 - 14.2 - 15.8 - 18.2 - 19.8 - 23.0 - - IVAS (and some EVS): - 13.2 - 16.4 - 24.4 - 32 - 48 - 64 - 80 - 96 - 128 - 160 - 192 - 256 - 384 - 512 - - -codec_mode_limiters: List of codec mode limiters, separated by ';'. Optional, accepted values: - EVS only: - amr - rf lo2 - rf lo3 - rf lo5 - rf lo7 - rf hi2 - rf hi3 - rf hi5 - rf hi7 - - IVAS and EVS: - dtx - non-dtx - rs - - Note: if 'non-dtx' is selected, all the dtx modes are discarded. - - -bandwidth_limiters: List of bandwidth limiters, separated by ';'. Optional, accepted values: - nb (EVS only) - wb - swb - fb - - -output_limiters: List of output format limiters, separated by ';'. Optional, accepted values: - mono - stereo - binaural - binaural_room_ir - binaural_room_reverb - foa - hoa2 - hoa3 - 5_1 - 5_1_2 - 5_1_4 - 7_1 - 7_1_4 - ext - - -profiler_limiters: Limit the included profiler analysis (e.g. WMOPS), separated by ';'. Optional, accepted values: - HEAP_INTRA - HEAP - PROM - RAM - STACK - TROM - WMOPS - -Output (as per default output table names): - combined_table_PROFILE.xlsx / .csv - contains all data in one file (PROFILE indicates the used profiler_limiters or ALL for all profiles included) - combined_table_INPUT_FORMAT.xlsx / .csv - contains all data for a single input format - heatmap_table_OUTPUT_FORMAT.xlsx - contains heatmap data for a single output format - max_input_PROFILE.xlsx / .csv - contains maximum complexity (and the respective codec configurations) per input format - combined_table_PROFILE.json - contains all data in one json file - -Note: the limiter arguments are used to narrow down the output table. For example, <-input_limiters "mono;stereo"> -would include only table values with mono and stereo input formats in the output table. -""" - -import argparse -import csv -import os -import openpyxl -import json -import copy - -def parse_configuration(row, profile): - # Parse e.g. - split_at = row.split("@") - input_mode = split_at[0].strip() - split_kbps = split_at[1].split("kbps") - bitrate = split_kbps[0].strip() - split_to = split_kbps[1].split("to") - codec_mode_bandwidth = split_to[0].strip().split(" ") - bandwidth = codec_mode_bandwidth[-1].strip() - separator = " " - codec_mode_list = codec_mode_bandwidth[0:-1] - codec_mode = separator.join(codec_mode_list) - split_dots = split_to[1].split(";") - output_mode = split_dots[0].strip() - - # Profile specific values - if profile.upper() == "HEAP_INTRA": - encoder_heap_intra = split_dots[1].strip() - decoder_heap_intra = split_dots[2].strip() - total_heap_intra = split_dots[3].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_heap_intra, decoder_heap_intra, total_heap_intra] - - elif profile.upper() == "HEAP": - encoder_heap = split_dots[1].strip() - decoder_heap = split_dots[2].strip() - total_heap = split_dots[3].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_heap, decoder_heap, total_heap] - - elif profile.upper() == "PROM": - encoder_prom = split_dots[1].strip() - decoder_prom = split_dots[2].strip() - com_prom = split_dots[3].strip() - rend_prom = split_dots[4].strip() - total_prom = split_dots[5].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_prom, decoder_prom, com_prom, rend_prom, total_prom] - - elif profile.upper() == "RAM": - encoder_ram = split_dots[1].strip() - decoder_ram = split_dots[2].strip() - total_ram = split_dots[3].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_ram, decoder_ram, total_ram] - - elif profile.upper() == "STACK": - encoder_stack = split_dots[1].strip() - decoder_stack = split_dots[2].strip() - max_stack = split_dots[3].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_stack, decoder_stack, max_stack] - - elif profile.upper() == "TROM": - encoder_trom = split_dots[1].strip() - decoder_trom = split_dots[2].strip() - com_trom = split_dots[3].strip() - rend_trom = split_dots[4].strip() - total_trom = split_dots[5].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_trom, decoder_trom, com_trom, rend_trom, total_trom] - - elif profile.upper() == "WMOPS": - encoder_complexity = split_dots[1].strip() - decoder_complexity = split_dots[2].strip() - total_complexity = split_dots[3].strip() - return [input_mode, bitrate, bandwidth, codec_mode, output_mode, encoder_complexity, decoder_complexity, total_complexity] - - else: - return [] - -def sanity_check_configurations(input_mode, bitrate, bandwidth, codec_mode, output_mode, profile_row_values): - if input_mode != profile_row_values[0]: - print("Input mode mismatch: " + input_mode + " != " + profile_row_values[0]) - return -1 - if bitrate != profile_row_values[1]: - print("Bitrate mismatch: " + bitrate + " != " + profile_row_values[1]) - return -1 - if bandwidth != profile_row_values[2]: - print("Bandwidth mismatch: " + bandwidth + " != " + profile_row_values[2]) - return -1 - if codec_mode != profile_row_values[3]: - print("Codec mode mismatch: " + codec_mode + " != " + profile_row_values[3]) - return -1 - if output_mode != profile_row_values[4]: - print("Output mode mismatch: " + output_mode + " != " + profile_row_values[4]) - return -1 - - return 0 - - -if __name__ == "__main__": - - # Parse arguments - parser = argparse.ArgumentParser(description='Argument parser') - parser.add_argument('-input_tables_base',type=str,help='Paths to base input tables csv files, separated by ;') - parser.add_argument('-output_table',type=str,help='Path to output table csv file') - parser.add_argument('-combined_max_output_table',type=str,help='Path to output table which contains the max wmops entry for each input format csv file') - parser.add_argument('-input_limiters',type=str,help='Limit the output table based on input formats, separated by ;') - parser.add_argument('-bitrate_limiters',type=str,help='Limit the output table based on bitrates, separated by ;') - parser.add_argument('-codec_mode_limiters',type=str,help='Limit the output table based on codec modes, separated by ;') - parser.add_argument('-bandwidth_limiters',type=str,help='Limit the output table based on bandwidths, separated by ;') - parser.add_argument('-output_limiters',type=str,help='Limit the output table based on output formats, separated by ;') - parser.add_argument('-profiler_limiters',type=str,help='Limit the included profiler analysis (e.g. WMOPS), separated by ;') - args = parser.parse_args() - input_tables_base = args.input_tables_base - output_table = args.output_table - combined_max_output_table = args.combined_max_output_table - input_limiters = args.input_limiters - bitrate_limiters = args.bitrate_limiters - codec_mode_limiters = args.codec_mode_limiters - bandwidth_limiters = args.bandwidth_limiters - output_limiters = args.output_limiters - profiler_limiters = args.profiler_limiters - single_input_format_output_table_base = None - - # Complexity levels - clevel_base = 128.86 - clevel1 = 3 * clevel_base - clevel2 = 6 * clevel_base - clevel3 = 10 * clevel_base - - # Limit the output table values - limiters = { - "input": [], - "bitrate": [], - "codec_mode": [], - "bandwidth": [], - "output": [], - } - input_modes = [ - "mono" - ,"stereodmxevs" - ,"stereo" - ,"masa 1tc" - ,"masa 2tc" - ,"ism1" - ,"ism2" - ,"ism3" - ,"ism4" - ,"ism+1" - ,"ism+2" - ,"ism+3" - ,"ism+4" - ,"omasa ism1 1tc" - ,"omasa ism1 2tc" - ,"omasa ism2 1tc" - ,"omasa ism2 2tc" - ,"omasa ism3 1tc" - ,"omasa ism3 2tc" - ,"omasa ism4 1tc" - ,"omasa ism4 2tc" - ,"mc 5_1" - ,"mc 5_1_2" - ,"mc 5_1_4" - ,"mc 7_1" - ,"mc 7_1_4" - ,"foa" - ,"hoa2" - ,"hoa3" - ,"planar foa" - ,"planar hoa2" - ,"planar hoa3" - ,"osba ism1 foa" - ,"osba ism1 hoa2" - ,"osba ism1 hoa3" - ,"osba ism2 foa" - ,"osba ism2 hoa2" - ,"osba ism2 hoa3" - ,"osba ism3 foa" - ,"osba ism3 hoa2" - ,"osba ism3 hoa3" - ,"osba ism4 foa" - ,"osba ism4 hoa2" - ,"osba ism4 hoa3"] - if input_limiters is not None: - input_modes = [] - input_limiters_list = input_limiters.split(";") - for in_limiter in input_limiters_list: - limiters["input"].append(in_limiter.lower()) - input_modes.append(in_limiter.lower()) - - ivas_bitrates = ['13.2','16.4','24.4','32','48','64','80','96','128','160','192','256','384','512'] - if bitrate_limiters is not None: - ivas_bitrates = [] - bitrate_limiters_list = bitrate_limiters.split(";") - for br_limiter in bitrate_limiters_list: - limiters["bitrate"].append(br_limiter.lower()) - ivas_bitrates.append(br_limiter.lower()) - - if codec_mode_limiters is not None: - codec_mode_limiters_list = codec_mode_limiters.split(";") - for cm_limiter in codec_mode_limiters_list: - limiters["codec_mode"].append(cm_limiter.lower()) - - if bandwidth_limiters is not None: - bandwidth_limiters_list = bandwidth_limiters.split(";") - for bw_limiter in bandwidth_limiters_list: - limiters["bandwidth"].append(bw_limiter.lower()) - - output_modes = ["mono","stereo","binaural","binaural_room_ir","binaural_room_reverb","foa","hoa2","hoa3","5_1","5_1_2","5_1_4","7_1","7_1_4","ext"] - if output_limiters is not None: - output_modes = [] - output_limiters_list = output_limiters.split(";") - for out_limiter in output_limiters_list: - limiters["output"].append(out_limiter.lower()) - output_modes.append(out_limiter.lower()) - - # Read table file base paths from arguments or use default ones - if input_tables_base is None: - path_to_files_str = "./" - file_path = os.path.abspath(path_to_files_str) - input_tables_base_list = [ - os.path.join(file_path, "ltv_complexity_mono_no_fec_"), - os.path.join(file_path, "ltv_complexity_FOA_no_fec_"), - os.path.join(file_path, "ltv_complexity_HOA2_no_fec_"), - os.path.join(file_path, "ltv_complexity_HOA3_no_fec_"), - os.path.join(file_path, "ltv_complexity_PlanarFOA_no_fec_"), - os.path.join(file_path, "ltv_complexity_PlanarHOA2_no_fec_"), - os.path.join(file_path, "ltv_complexity_PlanarHOA3_no_fec_"), - os.path.join(file_path, "ltv_complexity_MASA_no_fec_"), - os.path.join(file_path, "ltv_complexity_MC_no_fec_"), - os.path.join(file_path, "ltv_complexity_stereo_no_fec_"), - os.path.join(file_path, "ltv_complexity_stereoDmx_no_fec_"), - os.path.join(file_path, "ltv_complexity_OMASA_no_fec_"), - os.path.join(file_path, "ltv_complexity_OSBA_ISM1_no_fec_"), - os.path.join(file_path, "ltv_complexity_OSBA_ISM2_no_fec_"), - os.path.join(file_path, "ltv_complexity_OSBA_ISM3_no_fec_"), - os.path.join(file_path, "ltv_complexity_OSBA_ISM4_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM1_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM2_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM3_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM4_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM_plus1_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM_plus2_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM_plus3_no_fec_"), - os.path.join(file_path, "ltv_complexity_ISM_plus4_no_fec_")] - else: - input_tables_base_list = input_tables_base.split(";") - - # Create input table paths from the base path and profiler limiters - profile_table_lists = {} - all_profiles_included = False - if profiler_limiters is None: - included_profiles = ["HEAP_INTRA", "HEAP", "PROM", "RAM", "STACK", "TROM", "WMOPS"] - all_profiles_included = True - else: - included_profiles = profiler_limiters.split(";") - for profile in included_profiles: - profile_table_lists[profile] = [] - for input_file in input_tables_base_list: - profile_table_lists[profile].append(input_file + profile + ".csv") - - # Output table paths - output_profile_suffix = "" - if all_profiles_included: - output_profile_suffix = "_ALL" - else: - for profile in included_profiles: - output_profile_suffix += "_" + profile - if output_table is None: - out_dir = "complexity_tables" - if not os.path.exists(out_dir): - os.makedirs(out_dir) - output_table = os.path.join(out_dir, "combined_table" + output_profile_suffix +".csv") - temp_output_path_parent = os.path.abspath(os.path.join(os.path.abspath(output_table), os.pardir)) - single_input_format_output_table_base = os.path.join(temp_output_path_parent, "combined_table_") - heatmap_table_base = os.path.join(temp_output_path_parent, "heatmap_table_") - if combined_max_output_table is None: - combined_max_output_table = os.path.join(temp_output_path_parent, "max_input" + output_profile_suffix +".csv") - - # JSON output - json_output = output_table.replace(".csv", ".json") - - # Header fields in the output table - fields = ['Input', 'Bitrate', 'Codec mode', 'Bandwidth', 'Output'] - for profile in included_profiles: - if "HEAP_INTRA" in profile.upper(): - fields.append('ENC HEAP INTRA') - fields.append('DEC HEAP INTRA') - fields.append('Total HEAP INTRA') - elif "HEAP" in profile.upper(): - fields.append('ENC HEAP') - fields.append('DEC HEAP') - fields.append('Total HEAP') - elif "PROM" in profile.upper(): - fields.append('ENC PROM') - fields.append('DEC PROM') - fields.append('COM PROM') - fields.append('REND PROM') - fields.append('Total PROM') - elif "RAM" in profile.upper(): - fields.append('ENC RAM') - fields.append('DEC RAM') - fields.append('Total RAM') - elif "STACK" in profile.upper(): - fields.append('ENC STACK') - fields.append('DEC STACK') - fields.append('MAX STACK') - elif "TROM" in profile.upper(): - fields.append('ENC TROM') - fields.append('DEC TROM') - fields.append('COM TROM') - fields.append('REND TROM') - fields.append('Total TROM') - elif "WMOPS" in profile.upper(): - fields.append('ENC WMOPS') - fields.append('DEC WMOPS') - fields.append('Total WMOPS') - - # Dict for input format specific data: 0: max WMOPS, 1: data row for max WMOPS, 2: all data rows - input_formats_maxWmops_maxRow_dataRows = { - "FOA" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "HOA2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "HOA3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM+1" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM+2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM+3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM+4" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM1" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "ISM4" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MASA 1TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MASA 2TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MC 5_1" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MC 5_1_2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MC 5_1_4" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MC 7_1" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MC 7_1_4" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "MONO" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM1 1TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM1 2TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM2 1TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM2 2TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM3 1TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM3 2TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM4 1TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OMASA ISM4 2TC" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM1 FOA" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM1 HOA2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM1 HOA3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM2 FOA" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM2 HOA2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM2 HOA3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM3 FOA" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM3 HOA2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM3 HOA3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM4 FOA" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM4 HOA2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "OSBA ISM4 HOA3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "PLANAR FOA" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "PLANAR HOA2" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "PLANAR HOA3" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "STEREO" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - "STEREODMXEVS" : {"MaxWMOPS" : 0, "MaxDataRow" : {}, "DataRows" : []}, - } - - # Profile specific dicts (filled during run) - profile_table_files = {} - profile_csv_reader = {} - profile_row = {} - profile_row_values = {} - - # Excel stuff - output_table_xlsx = output_table.replace(".csv", ".xlsx") - combined_max_output_table_xlsx = combined_max_output_table.replace(".csv", ".xlsx") - wb_output_table = openpyxl.Workbook() - ws_output_table = wb_output_table.active - ws_output_table.append(fields) - wb_combined_max_output_table = openpyxl.Workbook() - ws_combined_max_output_table = wb_combined_max_output_table.active - ws_combined_max_output_table.append(fields) - os.makedirs(os.path.dirname(output_table), exist_ok=True) - whiteFill = openpyxl.styles.PatternFill(start_color='ffffff', end_color='ffffff', fill_type='solid') - blueFill = openpyxl.styles.PatternFill(start_color='00ffff', end_color='00ffff', fill_type='solid') - greenFill = openpyxl.styles.PatternFill(start_color='03fc73', end_color='03fc73', fill_type='solid') - redFill = openpyxl.styles.PatternFill(start_color='FFFF0000', end_color='FFFF0000', fill_type='solid') - - # Heatmap - fields_heatmap = ['Input','13.2','16.4','24.4','32','48','64','80','96','128','160','192','256','384','512'] - input_formats_heatmap = { - "MONO" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "FOA" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "HOA2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "HOA3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM+1" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM+2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM+3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM+4" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM1" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "ISM4" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MASA 1TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MASA 2TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MC 5_1" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MC 5_1_2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MC 5_1_4" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MC 7_1" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "MC 7_1_4" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM1 1TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM1 2TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM2 1TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM2 2TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM3 1TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM3 2TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM4 1TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OMASA ISM4 2TC" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM1 FOA" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM1 HOA2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM1 HOA3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM2 FOA" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM2 HOA2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM2 HOA3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM3 FOA" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM3 HOA2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM3 HOA3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM4 FOA" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM4 HOA2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "OSBA ISM4 HOA3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "PLANAR FOA" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "PLANAR HOA2" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "PLANAR HOA3" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "STEREO" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - "STEREODMXEVS" : {"13.2" : [0, whiteFill], "16.4" : [0, whiteFill], "24.4" : [0, whiteFill], "32" : [0, whiteFill], "48" : [0, whiteFill], "64" : [0, whiteFill], "80" : [0, whiteFill], "96" : [0, whiteFill], "128" : [0, whiteFill], "160" : [0, whiteFill], "192" : [0, whiteFill], "256" : [0, whiteFill], "384" : [0, whiteFill], "512" : [0, whiteFill]}, - } - heatmap_outputs = { - "mono" : copy.deepcopy(input_formats_heatmap), - "stereo" : copy.deepcopy(input_formats_heatmap), - "binaural" : copy.deepcopy(input_formats_heatmap), - "binaural_room_ir" : copy.deepcopy(input_formats_heatmap), - "binaural_room_reverb" : copy.deepcopy(input_formats_heatmap), - "foa" : copy.deepcopy(input_formats_heatmap), - "hoa2" : copy.deepcopy(input_formats_heatmap), - "hoa3" : copy.deepcopy(input_formats_heatmap), - "5_1" : copy.deepcopy(input_formats_heatmap), - "5_1_2" : copy.deepcopy(input_formats_heatmap), - "5_1_4" : copy.deepcopy(input_formats_heatmap), - "7_1" : copy.deepcopy(input_formats_heatmap), - "7_1_4" : copy.deepcopy(input_formats_heatmap), - "ext" : copy.deepcopy(input_formats_heatmap), - } - - with open(output_table, 'w') as output_file: - writer = csv.writer(output_file, delimiter=";") - writer.writerow(fields) - num_tables = len(profile_table_lists[next(iter(profile_table_lists))]) - for file_num in range(0, num_tables): - total_complexity = "0" - # Open files and create csv readers - for profile in included_profiles: - profile_table_files[profile] = open(profile_table_lists[profile][file_num], 'r') - profile_csv_reader[profile] = csv.reader(profile_table_files[profile]) - - # Loop over rows - row_count = sum(1 for row in profile_csv_reader[next(iter(profile_csv_reader))]) - profile_table_files[next(iter(profile_table_files))].seek(0) - for i in range(0, row_count): - # Get rows - for profile in included_profiles: - profile_row[profile] = next(profile_csv_reader[profile])[0] - if "kbps" in profile_row[next(iter(profile_row))]: - # Parse rows - for profile in included_profiles: - profile_row_values[profile] = parse_configuration(profile_row[profile], profile) - # Codec configuration from first profile and sanity check - input_mode = profile_row_values[next(iter(profile_row_values))][0] - bitrate = profile_row_values[next(iter(profile_row_values))][1] - bandwidth = profile_row_values[next(iter(profile_row_values))][2] - codec_mode = profile_row_values[next(iter(profile_row_values))][3] - output_mode = profile_row_values[next(iter(profile_row_values))][4] - for profile in included_profiles: - if sanity_check_configurations(input_mode, bitrate, bandwidth, codec_mode, output_mode, profile_row_values[profile]) < 0: - continue - # Check limiters - if limiters["input"] != [] and input_mode.lower() not in limiters["input"]: - continue - - if limiters["bitrate"] != [] and bitrate.lower() not in limiters["bitrate"]: - continue - - if limiters["codec_mode"] != []: - if "non-dtx" in limiters["codec_mode"]: - if "dtx" in codec_mode.lower(): - continue - else: - if len(limiters["codec_mode"]) > 1: - mode_included = False - for mode in limiters["codec_mode"]: - if mode.lower() in codec_mode.lower(): - mode_included = True - if not mode_included: - continue - else: - mode_included = False - for mode in limiters["codec_mode"]: - if mode.lower() in codec_mode.lower(): - mode_included = True - if not mode_included: - continue - - if limiters["bandwidth"] != [] and bandwidth.lower() not in limiters["bandwidth"]: - continue - - if limiters["output"] != [] and output_mode.lower() not in limiters["output"]: - continue - - # Form data row - data_row = [input_mode, bitrate, codec_mode, bandwidth, output_mode] - for profile in included_profiles: - for i in range (5, len(profile_row_values[profile])): - data_row.append(float(profile_row_values[profile][i])) - if "WMOPS" in profile.upper(): - total_complexity = profile_row_values[profile][7] - writer.writerow(data_row) - ws_output_table.append(data_row) - # Dict data - dict_data = {} - for fn in range(0, len(fields)): - dict_data[fields[fn]] = data_row[fn] - input_formats_maxWmops_maxRow_dataRows[input_mode.upper()]["DataRows"].append(dict_data) - # Save max complexity data row - if float(total_complexity) > input_formats_maxWmops_maxRow_dataRows[input_mode.upper()]["MaxWMOPS"]: - input_formats_maxWmops_maxRow_dataRows[input_mode.upper()]["MaxWMOPS"] = float(total_complexity) - input_formats_maxWmops_maxRow_dataRows[input_mode.upper()]["MaxDataRow"] = dict_data - # Heatmap - if codec_mode == "" and bitrate in ivas_bitrates: - if float(total_complexity) > heatmap_outputs[output_mode.lower()][input_mode.upper()][bitrate][0]: - heatmap_outputs[output_mode.lower()][input_mode.upper()][bitrate][0] = float(total_complexity) - if float(total_complexity) > clevel2: - heatmap_outputs[output_mode.lower()][input_mode.upper()][bitrate][1] = redFill - elif float(total_complexity) > clevel1: - heatmap_outputs[output_mode.lower()][input_mode.upper()][bitrate][1] = greenFill - else: - heatmap_outputs[output_mode.lower()][input_mode.upper()][bitrate][1] = blueFill - - # Close files - for profile in included_profiles: - profile_table_files[profile].close() - - # Write tables for individual input formats - if single_input_format_output_table_base != None: - for key in input_formats_maxWmops_maxRow_dataRows: - sinle_input_format_output = single_input_format_output_table_base + key.replace(" ", "_") + output_profile_suffix + ".csv" - sinle_input_format_output_xlsx = sinle_input_format_output.replace(".csv", ".xlsx") - wb_single_input_format_output_table = openpyxl.Workbook() - ws_single_input_format_output_table = wb_single_input_format_output_table.active - ws_single_input_format_output_table.append(fields) - with open(sinle_input_format_output, 'w') as single_input_format_output_file: - single_writer = csv.writer(single_input_format_output_file, delimiter=";") - single_writer.writerow(fields) - for row in input_formats_maxWmops_maxRow_dataRows[key]["DataRows"]: - data_row = [] - for data_key in row: - data_row.append(row[data_key]) - single_writer.writerow(data_row) - ws_single_input_format_output_table.append(data_row) - wb_single_input_format_output_table.save(sinle_input_format_output_xlsx) - # Dump to json - with open(json_output, "w") as json_file: - json.dump(input_formats_maxWmops_maxRow_dataRows, json_file) - - # Write the max wmops rows - with open(combined_max_output_table, 'w') as combine_max_output_file: - max_writer = csv.writer(combine_max_output_file, delimiter=";") - max_writer.writerow(fields) - for key in input_formats_maxWmops_maxRow_dataRows: - max_data_row = [] - for data_key in input_formats_maxWmops_maxRow_dataRows[key]["MaxDataRow"]: - max_data_row.append(input_formats_maxWmops_maxRow_dataRows[key]["MaxDataRow"][data_key]) - max_writer.writerow(max_data_row) - ws_combined_max_output_table.append(max_data_row) - - # Heatmap - if heatmap_table_base != None: - for output_mode in output_modes: - heatmap_output_table = heatmap_table_base + output_mode + ".xlsx" - wb_heatmap_table = openpyxl.Workbook() - ws_heatmap_table = wb_heatmap_table.active - ws_heatmap_table.append(fields_heatmap) - row = 1 - for input_mode in input_modes: - row += 1 - col = 1 - ws_heatmap_table.cell(row, col).value = input_mode - col +=1 - for bitrate in ivas_bitrates: - ws_heatmap_table.cell(row, col).value = heatmap_outputs[output_mode][input_mode.upper()][bitrate][0] - ws_heatmap_table.cell(row, col).fill = heatmap_outputs[output_mode][input_mode.upper()][bitrate][1] - col += 1 - wb_heatmap_table.save(heatmap_output_table) - - # Save Excel file - wb_output_table.save(output_table_xlsx) - wb_combined_max_output_table.save(combined_max_output_table_xlsx) - - diff --git a/scripts/parse_options_h.sh b/scripts/parse_options_h.sh deleted file mode 100755 index 9d2649f5d94522dc59a639d1e32ac0c906a8d275..0000000000000000000000000000000000000000 --- a/scripts/parse_options_h.sh +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/bash - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -help=0 -coan=0 -opt_cnt=0 - -while getopts "hc" OPT; do - case "$OPT" in - h) help=1;; - c) coan=1;let opt_cnt++;; - *) # getopts produces error - exit 1;; - esac -done - -let max_args="1+$opt_cnt" -if [ $# -ne $max_args ] || [ $help -ne 0 ]; then - echo "Usage: $0 [-c] inputfile" - echo " -c: coan syntax at output" - exit -fi - -infile=$BASH_ARGV - -activeSwitches=( ); -inactiveSwitches=( ); - -if_lev=0 -comment_lev=0 -comment_incr_post=0 -comment_decr_post=0 - -declare -i active_code=( "1" ); - -while read line -do - - #check, whether we are in a comment block - comment_incr=`echo "$line" | grep -o "\(\/\*\|\*\/\)" | grep "\/\*" | wc -l` - comment_decr=`echo "$line" | grep -o "\(\/\*\|\*\/\)" | grep "\*\/" | wc -l` - tmp=`echo "$line" | grep -c "^\ *#"` - if [ $comment_incr -gt $comment_decr -a $tmp -gt 0 ]; then - let comment_incr-- - comment_incr_post_tmp=1 - fi - if [ $comment_decr -gt $comment_incr -a $tmp -gt 0 ]; then - let comment_decr-- - comment_decr_post_tmp=1 - fi - let incr=comment_incr+comment_incr_post - let comment_lev+=incr - let decr=comment_decr+comment_decr_post - let comment_lev-=decr - comment_incr_post=$comment_incr_post_tmp - comment_decr_post=$comment_decr_post_tmp - - if [ $comment_lev -eq 0 ]; then - - if [ `echo "$line" | grep -c "^\ *#if"` -gt 0 ]; then - is_active=${active_code[$if_lev]} - let if_lev++ - tmp=1 - if [ $is_active -eq 1 ]; then - if [ `echo "$line" | grep -c "#if\ *0"` -gt 0 ]; then - tmp=0 - fi - - if [ `echo "$line" | grep -c "#ifdef"` -gt 0 ]; then - switch=`echo "$line" | sed -e "s/\(\ *#ifdef\ *\)\([a-zA-Z0-9_]*\)\(.*\)/\2/g"` - if [[ " ${activeSwitches[@]} " =~ " ${switch} " ]]; then - tmp=1 - else - tmp=0 - fi - fi - - if [ `echo "$line" | grep -c "#ifndef"` -gt 0 ]; then - switch=`echo "$line" | sed -e "s/\(\ *#ifndef\ *\)\([a-zA-Z0-9_]*\)\(.*\)/\2/g"` - if [[ " ${activeSwitches[@]} " =~ " ${switch} " ]]; then - tmp=0 - else - tmp=1 - fi - fi - - if [ `echo "$line" | grep -c "#if\ *[!(]*defined"` -gt 0 ]; then - echo "$0: #if defined or similar expressions not supported. Aborting." 1>&2 - exit -1; - fi - - else - tmp=0 - fi - active_code=( ${active_code[@]} $tmp ) - fi - - if [ `echo "$line" | grep -c "#endif"` -gt 0 ]; then - unset active_code[$if_lev] - let if_lev-- - fi - - fi - - active=`echo "$line" | grep '^\ *#define' | sed -e "s/\(\ *#define\ *\)\([a-zA-Z0-9_]*\)\(.*\)/\2/g" | sed -e "/OPTIONS_H/d" | sed -e "/DEBUGGING/d"` - # support both, /* ... */ and // style comments - inactive=`echo "$line" | grep '^\ *\(\/\*\|\/\/\)\{1,\}\ *#define' | sed -e "s/\(.*#define\ *\)\([a-zA-Z0-9_]*\)\(.*\)/\2/g" | sed -e '/^WMOPS$/d'` - - if [ ${comment_lev} -eq 0 -a ${active_code[$if_lev]} -eq 1 ]; then - activeSwitches=( "${activeSwitches[@]}" $active ) - elif [[ ! " ${activeSwitches[@]} " =~ "${active} " ]]; then - inactiveSwitches=( "${inactiveSwitches[@]}" $active ) - fi - inactiveSwitches=( "${inactiveSwitches[@]}" $inactive ) -done < $infile - -keyActive="+" -keyInactive="" -if [ $coan -ne 0 ]; then - keyActive="-D" - keyInactive="-U" -fi - -# print active switches -index=0 -while [ "$index" -lt ${#activeSwitches[@]} ] -do # List all the elements in the array. - echo "${keyActive}${activeSwitches[index]}" - let index++ -done - -# print inactive switches -index=0 -while [ "$index" -lt ${#inactiveSwitches[@]} ] -do # List all the elements in the array. - echo "${keyInactive}${inactiveSwitches[index]}" - let index++ -done diff --git a/scripts/patch_code_headers.sh b/scripts/patch_code_headers.sh deleted file mode 100755 index 44bbc9751374cc123604597af2de48ee343e8879..0000000000000000000000000000000000000000 --- a/scripts/patch_code_headers.sh +++ /dev/null @@ -1,236 +0,0 @@ -#!/bin/bash - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -WORKDIR=c-code - -help=0 - -while getopts ":hd:" OPT; do - case "$OPT" in - d) - WORKDIR=$(realpath -s "${OPTARG}") - ;; - h) - help=1 - ;; - *) # getopts produces error - exit 1 - ;; - esac -done - -if [ $help -ne 0 ]; then - echo "Usage: $0 [-dh]" - echo " where" - echo " -d : set C-code dir (default: ${WORKDIR})" - exit 0 -fi - - -date="May 14, 2024" -version="IVAS-FL-2.0" - - -# -# C-Code -# - -c_header_new=\ -"/*==================================================================================== - 3GPP TS26.258 $date. IVAS Codec Version $version - ====================================================================================*/" - -matlab_header_new=\ -"% ==================================================================================== -% 3GPP TS26.258 $date. IVAS Codec Version $version -% ====================================================================================" - - -#### -c_header_patch=\ -'@@ -1,31 +1,0 @@ --/****************************************************************************************************** -- -- (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -- Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -- Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -- Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -- contributors to this repository. All Rights Reserved. -- -- This software is protected by copyright law and by international treaties. -- The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -- Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -- Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -- Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -- contributors to this repository retain full ownership rights in their respective contributions in -- the software. This notice grants no license of any kind, including but not limited to patent -- license, nor is any license granted by implication, estoppel or otherwise. -- -- Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -- contributions. -- -- This software is provided "AS IS", without any express or implied warranties. The software is in the -- development stage. It is intended exclusively for experts who have experience with such software and -- solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -- and fitness for a particular purpose are hereby disclaimed and excluded. -- -- Any dispute, controversy or claim arising under or in relation to providing this software shall be -- submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -- accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -- the United Nations Convention on Contracts on the International Sales of Goods. -- --*******************************************************************************************************/ -' - -# -# Patch *.[ch]-files by means of a generalized patch -# - -#tmpfile=test.txt -#rm -f $tmpfile -#touch $tmpfile -#echo "$c_header_patch" >> $tmpfile -#find $WORKDIR -name "*.[ch]" -not -name "wmc_auto.[ch]" -exec patch -i $tmpfile \{\} \; -#rm -f $tmpfile - -# -# Alternative approach (currently disabled): -# Strip everying between beginning and ending of block -# - -find $WORKDIR -name "*.[ch]" -not -name "wmc_auto.[ch]" -exec sed -i.bak -e "1,/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\//d" \{\} \; -sed -i.bak -e "1,/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\//d" $WORKDIR/readme.txt - -# or -# -# find $WORKDIR -name "*.[ch]" -not -name "wmc_auto.[ch]" -exec sed -i.bak -e "/^\/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*/,/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\//d" \{\} \; -# - -# add new header -tmpfile=`mktemp` -rm -f $tmpfile -touch $tmpfile -echo "$c_header_new" >> $tmpfile -find $WORKDIR -name "*.[ch]" -exec sed -i.bak -e "1 e cat $tmpfile" \{\} \; -sed -i.bak -e "1 e cat $tmpfile" $WORKDIR/readme.txt -rm -f $tmpfile - -# -# Patch Printout -# - -sed -i.bak -e "s/IVAS\ Codec\ Baseline/IVAS\ Codec\ Version\ $version/g" $WORKDIR/lib_com/disclaimer.c - -# -# Patch Matlab Scripts -# - -find $WORKDIR -name "*.m" -exec sed -i.bak -e "/%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%/,+31d" \{\} \; - -# add new header -tmpfile=`mktemp` -rm -f $tmpfile -touch $tmpfile -echo "$matlab_header_new" >> $tmpfile -find $WORKDIR -name "*.m" -exec sed -i.bak -e "1 e cat $tmpfile" \{\} \; -rm -f $tmpfile - - -# -# Patch Output of Matlab Scripts -# - -sed -i.bak -e "/\/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*/,+30d" $WORKDIR/scripts/binauralRenderer_interface/matlab_hrir_generation_scripts/generate_rom_tables.m -sed -i.bak -e "/copyright_str\ =\ string[(]join[(]/a \ \ \ \ \'/*====================================================================================\'\n\ \ \ \ \'\ \ \ \ \ 3GPP\ TS26\.258\ $date\.\ IVAS\ Codec\ Version\ $version\'\n\ \ \ \ \'\ \ ====================================================================================*/\'" $WORKDIR/scripts/binauralRenderer_interface/matlab_hrir_generation_scripts/generate_rom_tables.m - -sed -i.bak -e "/\/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*/,+30d" $WORKDIR/scripts/td_object_renderer/modeling_tool/Gen_Hrf_IVAS_Binary.m -sed -i.bak -e "/copyright_str\ =\ string[(]join[(]/a \ \ \ \ \'/*====================================================================================\'\n\ \ \ \ \'\ \ \ \ \ 3GPP\ TS26\.258\ $date\.\ IVAS\ Codec\ Version\ $version\'\n\ \ \ \ \'\ \ ====================================================================================*/\'" $WORKDIR/scripts/td_object_renderer/modeling_tool/Gen_Hrf_IVAS_Binary.m - - -# -# Patch header template for files generated by scripts -# - -truncate -s 0 $WORKDIR/scripts/binauralRenderer_interface/ivas_license_header.template -echo "$c_header_new" >> $WORKDIR/scripts/binauralRenderer_interface/ivas_license_header.template - -sed -i.bak -e "1,/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\//d" $WORKDIR/scripts/binauralRenderer_interface/ivas_rom_binaural_crend_head.template -# add new header -tmpfile=`mktemp` -rm -f $tmpfile -touch $tmpfile -echo "$c_header_new" >> $tmpfile -sed -i.bak -e "1 e cat $tmpfile" $WORKDIR/scripts/binauralRenderer_interface/ivas_rom_binaural_crend_head.template -rm -f $tmpfile - - -# -# Various Readmes in scripts directory -# - -# C-style header -sed -i.bak -e "1,/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\//d" $WORKDIR/scripts/binauralRenderer_interface/Table_Format_Converter/tables_format_converter_readme.txt -sed -i.bak -e "1,/\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\//d" $WORKDIR/scripts/binauralRenderer_interface/mixer_conv_sofa_to_rom_table_converter_readme.txt -# add new header -tmpfile=`mktemp` -rm -f $tmpfile -touch $tmpfile -echo "$c_header_new" >> $tmpfile -sed -i.bak -e "1 e cat $tmpfile" $WORKDIR/scripts/binauralRenderer_interface/Table_Format_Converter/tables_format_converter_readme.txt -sed -i.bak -e "1 e cat $tmpfile" $WORKDIR/scripts/binauralRenderer_interface/mixer_conv_sofa_to_rom_table_converter_readme.txt -rm -f $tmpfile - -# *.md-style header -sed -i.bak -e "1,/-->/d" $WORKDIR/scripts/binauralRenderer_interface/README.md -sed -i.bak -e "1,/-->/d" $WORKDIR/scripts/td_object_renderer/modeling_tool/README.md -# add new header -tmpfile=`mktemp` -rm -f $tmpfile -touch $tmpfile -echo '' >> $tmpfile -sed -i.bak -e "1 e cat $tmpfile" $WORKDIR/scripts/binauralRenderer_interface/README.md -sed -i.bak -e "1 e cat $tmpfile" $WORKDIR/scripts/td_object_renderer/modeling_tool/README.md -rm -f $tmpfile - -# -# Remove License file -# - -rm $WORKDIR/LICENSE.md - -# -# Cleanup -# -find $WORKDIR -name "*.bak" -exec rm \{\} \; - diff --git a/scripts/prepare_instrumentation.sh b/scripts/prepare_instrumentation.sh deleted file mode 100755 index 927bf9720ad2b4de19e0e3ea979451455902f860..0000000000000000000000000000000000000000 --- a/scripts/prepare_instrumentation.sh +++ /dev/null @@ -1,204 +0,0 @@ -#!/bin/bash - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -function usage { - echo - echo "Usage:" - echo " $(basename $0) [OPTIONS]" - echo - echo " -m MODE one of [FULL|MEM_ONLY]" - echo " -p PROJECT one of [FLOAT|BASOP]" - exit -} - - -# default values -MODE="FULL" -PROJECT="FLOAT" - -while getopts "m:p:h" OPTIONS; do - case ${OPTIONS} in - m) - MODE=${OPTARG^^} - if [ "$MODE" != "FULL" -a "$MODE" != "MEM_ONLY" ]; then - usage - fi - ;; - p) - PROJECT=${OPTARG^^} - if [ "$PROJECT" != "FLOAT" -a "$PROJECT" != "BASOP" ]; then - usage - fi - ;; - h | *) - usage - ;; - esac -done -shift $((OPTIND-1)) - - -wmc_opt="" -if [ "$MODE" = "MEM_ONLY" ]; then - wmc_opt="-s" -fi - - -system=`uname -s` -if [[ ($system = "Linux") && (`uname -a` =~ (microsoft|Microsoft|wsl|WSL) ) ]]; then - system="Linux" -fi - -coan_exists () { - type coan &> /dev/null ; -} - -cppp_exists () { - type cppp/cppp.pl &> /dev/null ; -} - -if ! (coan_exists || cppp_exists); then - echo "Neither coan (recommended) nor cppp could be found. Requires either coan or cppp to operate properly. Exiting." - echo "Coan is available from http://coan2.sourceforge.net/; please make it available in your path" - echo "cppp is available from https://homes.cs.washington.edu/~mernst/software/#cppp; please copy to directory scripts/cppp" - exit -1 -fi - -targetdir=c-code_instrument - -currdir=`pwd` -scriptdir=`dirname $0` -ifdef_list=ifdef_instrument.list -sourcedir=$scriptdir/.. -cd $scriptdir - -rm -Rf $targetdir -mkdir $targetdir - -# copy files from source-dir -cp -R ../lib_* $targetdir -cp -R ../apps $targetdir -cp -R ../Makefile $targetdir -# if [ "$PROJECT" = "FLOAT" ]; then - # cp -R ../CMakeLists.txt $targetdir -# fi -cp -R ../Workspace_msvc $targetdir - -# back up #ifdef-list -rm -f $ifdef_list -touch $ifdef_list - -# LC3plus-related stuff -> only in float code -# if [ "$PROJECT" = "FLOAT" ]; then - # # Add LC3plus feature defines to options.h so that they are stripped correctly - # # Generate list of active defines in LC3plus defines.h - # lc3plus_defines=$( - # gcc -E -dM $targetdir/lib_lc3plus/defines.h -I $targetdir/lib_com -I $targetdir/lib_debug | - # sed '/^#define [[:alnum:]][[:alnum:]_]\+[[:space:]]*$/! d' | - # sed '/#define DEFINES_H/ d' - # ) - - # # Filter defines that come from outside of the header lib_lc3plus/defines.h - # lc3plus_defines_filtered="" - # while IFS=' \n' read -r line; - # do - # line=`echo $line | tr -d '\n'` - # if grep -wqF "$line" "$targetdir/lib_lc3plus/defines.h"; then - # lc3plus_defines_filtered+=$line$'\n' - # fi - # done <<< $lc3plus_defines - - # # Append LC3plus defines to options.h - # echo " - # /* LC3plus switches */ - # #ifndef OPTIONS_H_LC3_DEFINES - # #define OPTIONS_H_LC3_DEFINES - # $lc3plus_defines_filtered - # #endif /* OPTIONS_H_LC3_DEFINES */ - # " >>$targetdir/lib_com/options.h -# fi - -# get switches from options.h and append it to $ifdef_list -parse_options_opt="" -if coan_exists; then - echo "-UDEBUGGING" >> $ifdef_list - parse_options_opt="-c" -else - echo "DEBUGGING" >> $ifdef_list -fi -./parse_options_h.sh $parse_options_opt $targetdir/lib_com/options.h >> $ifdef_list -if [ $? -ne 0 ]; then - exit -1 -fi - -# strip switches, to remove the macros (turn on extended globing to allow !(pattern*) matching) -shopt -s extglob -if coan_exists; then - # remove WMOPS and MEM_COUNT_DETAILS from the list to preserve the options in the instrumented code - sed -i "/-DWMOPS/d" $ifdef_list - sed -i "/-UMEM_COUNT_DETAILS/d" $ifdef_list - - coan source --replace --no-transients -E -K --file $ifdef_list $targetdir/apps/*.[hc] - if [ "$PROJECT" = "FLOAT" ]; then - coan source --replace --no-transients -E -K --file $ifdef_list $targetdir/lib_{com,dec,enc,rend,util,debug}/!(wmc_auto*).[hc] - # coan source --replace --no-transients -E -K --file $ifdef_list $targetdir/lib_lc3plus/!(wmc_auto*).[hc] - # coan source --replace --no-transients -E -K --file $ifdef_list $targetdir/lib_lc3plus/fft/!(wmc_auto*).[hc] - else - # same as first call from if, but without "isar" and "debug" to avoid coan warning - coan source --replace --no-transients -E -K --file $ifdef_list $targetdir/lib_{com,dec,enc,rend,util}/!(wmc_auto*).[hc] - fi -else - ./strip_defines_cppp.sh $targetdir $ifdef_list -fi -shopt -u extglob - -# patch code before wmc_tool: replace hexadecimal unsigned long constants (0x...UL) by regular integer constant + cast to unsigned long -find $targetdir -name "*.[ch]" -exec sed -i.bak -e "s/\(0x[0-9a-fA-F]*\)UL/\(\(unsigned long\)\1\)/" \{\} \; - -# run wmc_tool -"tools/$system/wmc_tool" $wmc_opt -m "$targetdir/apps/encoder.c" "$targetdir/lib_enc/*.c" "$targetdir/lib_com/*.c" >> /dev/null -"tools/$system/wmc_tool" $wmc_opt -m "$targetdir/apps/decoder.c" "$targetdir/lib_dec/*.c" "$targetdir/lib_rend/*.c" >> /dev/null -# ISAR post-renderer and lc3plus sources only need to be instrumented in float code -if [ "$PROJECT" = "FLOAT" ]; then - # "tools/$system/wmc_tool" $wmc_opt -m "$targetdir/apps/renderer.c" "$targetdir/lib_rend/*.c" "$targetdir/lib_lc3plus/*.c" "$targetdir/lib_lc3plus/fft/*.c" >> /dev/null - # "tools/$system/wmc_tool" $wmc_opt -m "$targetdir/apps/isar_post_rend.c" "$targetdir/lib_isar/*.c" "$targetdir/lib_lc3plus/*.c" "$targetdir/lib_lc3plus/fft/*.c" >> /dev/null - : -else - "tools/$system/wmc_tool" $wmc_opt -m "$targetdir/apps/renderer.c" "$targetdir/lib_rend/*.c" >> /dev/null -fi - -# automatically enable #define WMOPS in options.h -sed -i.bak -e "s/\/\*[[:space:]]*\(#define[[:space:]]*WMOPS\)[[:space:]]*\*\//\1/g" $targetdir/lib_com/options.h -sed -i.bak -e "s/\/\/[[:space:]]*\(#define[[:space:]]*WMOPS\)/\1/g" $targetdir/lib_com/options.h - -# return to start dir -cd "$currdir" diff --git a/scripts/pyaudio3dtools/__init__.py b/scripts/pyaudio3dtools/__init__.py deleted file mode 100644 index 3df489f58206a0dac25e92b46dc773bde45fc40b..0000000000000000000000000000000000000000 --- a/scripts/pyaudio3dtools/__init__.py +++ /dev/null @@ -1,42 +0,0 @@ -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -""" -pyaudio3dtools -==== - -Provides - Basic methods for handling 3D audio in different formats (channel-based, object-based, Ambisonics) - -Imports -------- -functions -class -""" diff --git a/scripts/pyaudio3dtools/audio3dtools.py b/scripts/pyaudio3dtools/audio3dtools.py deleted file mode 100644 index 22c26e28e8759a18a9de33da276d61250d78aac2..0000000000000000000000000000000000000000 --- a/scripts/pyaudio3dtools/audio3dtools.py +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import logging - - -main_logger = logging.getLogger("__main__") -logger = main_logger.getChild(__name__) -logger.setLevel(logging.DEBUG) - - -def main(): - print( - "These scripts have been deprecated! Please check out and use the latest version from https://forge.3gpp.org/rep/ivas-codec-pc/ivas-processing-scripts.git" - ) - - -if __name__ == "__main__": - main() diff --git a/scripts/pyaudio3dtools/audioarray.py b/scripts/pyaudio3dtools/audioarray.py deleted file mode 100644 index 5741c1ada40fd956bf9a8022261e05719d2b3ae7..0000000000000000000000000000000000000000 --- a/scripts/pyaudio3dtools/audioarray.py +++ /dev/null @@ -1,690 +0,0 @@ -#!/usr/bin/env python3 - -""" -(C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository. All Rights Reserved. - -This software is protected by copyright law and by international treaties. -The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository retain full ownership rights in their respective contributions in -the software. This notice grants no license of any kind, including but not limited to patent -license, nor is any license granted by implication, estoppel or otherwise. - -Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -contributions. - -This software is provided "AS IS", without any express or implied warranties. The software is in the -development stage. It is intended exclusively for experts who have experience with such software and -solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -and fitness for a particular purpose are hereby disclaimed and excluded. - -Any dispute, controversy or claim arising under or in relation to providing this software shall be -submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import logging -import warnings -import math -import multiprocessing as mp -import platform -import shutil -import subprocess -import tempfile -from pathlib import Path -from typing import Callable, Iterable, Optional, Tuple - -import numpy as np -import scipy.io.wavfile as wavfile -import scipy.signal as sig - -main_logger = logging.getLogger("__main__") -logger = main_logger.getChild(__name__) -logger.setLevel(logging.DEBUG) - - -def convert( - x: np.ndarray, - out_nchans: Optional[int] = None, - in_fs: Optional[int] = None, - out_fs: Optional[int] = None, -) -> np.ndarray: - """Convert audio array, change nchannels and sampling rate - - Parameters - ---------- - x: numpy array - Input audio array - out_nchans: Optional[int] - Number of output channels, default out_nchans = in_nchans - in_fs: Optional[int] - Input sampling rate, default 48 kHz if required - out_fs: Optional[int] - Output sampling rate, default out_fs = in_fs - - Returns - ------- - y: numpy array - Ouput converted array - - """ - # Input config - if in_fs is None: - in_fs = 48000 - in_nchans = x.shape[1] - - # Output config - y = x - if out_fs is None: - out_fs = in_fs - if out_nchans is None: - out_nchans = in_nchans - - logger.debug(f"Input audio array: {x.shape[0]} by {x.shape[1]}") - - # Process - if in_nchans == out_nchans and in_fs == out_fs: - logger.debug("Convert file: nothing to be done") - else: - # adjust number of channels - if out_nchans < in_nchans: - y = y[:, 0:out_nchans] - elif out_nchans > in_nchans: - y = np.append(y, np.zeros([y.shape[0], out_nchans - in_nchans]), axis=1) - - # adjust sampling rate - y = resample(y, in_fs, out_fs) - - logger.debug(f"Output audio array: {y.shape[0]} by {y.shape[1]}") - - return y - - -def resample(x: np.ndarray, in_freq: int, out_freq: int) -> np.ndarray: - """Resample a multi-channel audio array - - Parameters - ---------- - x: numpy array - Input array - in_fs: int - Input sampling rate - out_fs: int - Output sampling rate - - Returns - ------- - y: - Output resampled numpy array - - """ - - if in_freq == out_freq or out_freq is None: - y = x - else: - # get gcd of original and deisred frequency - gcd = math.gcd(in_freq, out_freq) - - # calculate up-sampling factor - up_factor = int(out_freq / gcd) - - # calculate downsampling factor - down_factor = int(in_freq / gcd) - - # resample data using polyphase filtering across columns/channels - if x.ndim == 2: - y = sig.resample_poly(x[:, 0], up_factor, down_factor) - y = np.reshape(y, (y.shape[0], 1)) - for k in range(1, x.shape[1]): - a = sig.resample_poly(x[:, k], up_factor, down_factor) - a = np.reshape(a, (a.shape[0], 1)) - y = np.append(y, a, axis=1) - else: - y = sig.resample_poly(x, up_factor, down_factor) - - return y - - -def lpfilter(x: np.ndarray, fc: int, fs: int) -> np.ndarray: - """Low-pass filter a multi-channel audio array - - Parameters - ---------- - x: numpy array - Input array - fc: int - Cutoff frequency in Hz - out_fs: int - Sampling rate in Hz - - Returns - ------- - y: numpy array - Output low-pass filtered array - - """ - if (fc + 500) < (fs / 2.0): - # Design a Chebychev Type II filter, band_pass-band_stop = 500 Hz - N, Wn = sig.cheb2ord(fc / (fs / 2), (fc + 500) / (fs / 2), 3, 60) - b, a = sig.cheby2(N, 60, Wn, "low") - - # Apply the Butterworth filter for each channels, across time axis - # y = sig.lfilter(b, a, axis=0) # non zero-phase filter - y = sig.filtfilt(b, a, x, axis=0) # zero-phae filer, batch processing - else: - y = x - - return y - - -def cut(x: np.ndarray, limits: Tuple[int, int]) -> np.ndarray: - """Cut an audio array - - Parameters - ---------- - x: numpy array - Input array - limits: Tuple[int, int] - first and last samples to extract - - Returns - ------- - y: numpy array - Output cut array - """ - - in_samples, in_channels = x.shape - first_sample = limits[0] - last_sample = limits[1] - - if first_sample == 0 and (last_sample == -1 or last_sample == in_samples): - y = x - else: - if last_sample == -1: - last_sample = in_samples - - signal_start = first_sample - signal_end = last_sample - insert_start = 0 - insert_end = last_sample - first_sample - total_samples = last_sample - first_sample - if first_sample < 0: - samples_to_pad_begin = -first_sample - insert_start = samples_to_pad_begin - insert_end += samples_to_pad_begin - if last_sample > in_samples: - signal_end = in_samples - insert_end = insert_end - last_sample + in_samples - y = np.zeros([total_samples, in_channels], dtype=x.dtype) - y[insert_start:insert_end, :] = x[signal_start:signal_end, :] - - return y - - -def compare( - ref: np.ndarray, - test: np.ndarray, - fs: int, - per_frame: bool = True, - get_mld: bool = False, - get_ssnr: bool = False, - ssnr_thresh_low: float = -np.inf, - ssnr_thresh_high: float = np.inf, - apply_thresholds_to_ref_only: bool = False, - test_start_offset_ms: int = 0, - ref_jbm_tf: Optional[Path] = None, - test_jbm_tf: Optional[Path] = None, -) -> dict: - """Compare two audio arrays - - Parameters - ---------- - ref: numpy array - Input reference array - test: numpy array - Input test array - fs: int - Input sampling rate in Hz - per_frame: bool - Compute difference per frame (default True) - get_mld: bool - Run MLD tool if there is a difference between the signals (default False) - get_ssnr: bool - Compute Segmental SNR between signals - ssnr_thresh_low: float - Low threshold for including a segment in the SSNR computation. Per default, both - reference and test signal power are compared to this threshold, see below - ssnr_thresh_high: float - High threshold for including a segment in the SSNR computation. Per default, both - reference and test signal power are compared to this threshold, see below - apply_thresholds_to_ref_only: bool - Set to True to only apply the threshold comparison for the reference signal - for whether to include a segment in the ssnr computation. Use this to align - behaviour with the MPEG-D conformance specification. - test_start_offset_ms: (non-negative) int - offset in miliseconds for test signal. If > 0, the corresponding number of samples - will be removed from the test array like so: test = test[sample_offset:, :]. - - Returns - ------- - result: dict - Comparison results - """ - - if test_start_offset_ms < 0: - raise ValueError( - f"Test_start_offset_ms has to be non-negative, but {test_start_offset_ms} was given." - ) - test_start_offset_samples = int(fs * test_start_offset_ms / 1000) - test = test[test_start_offset_samples:, :] - - framesize = fs // 50 - if ref.shape[0] != test.shape[0]: - min_len = min(ref.shape[0], test.shape[0]) - diff = abs(test[:min_len, :] - ref[:min_len, :]) - else: - diff = abs(test - ref) - max_diff = int(diff.max()) - result = { - "bitexact": True, - "max_abs_diff": 0, - "max_abs_diff_pos_sample": 0, - "max_abs_diff_pos_channel": 0, - "nsamples_diff": 0, - "nsamples_diff_percentage": 0.0, - "first_diff_pos_sample": -1, - "first_diff_pos_channel": -1, - "first_diff_pos_frame": -1, - } - - if get_mld: - result["MLD"] = 0 - if get_ssnr: - result["SSNR"] = np.asarray([np.inf] * ref.shape[1]) - - if per_frame: - result["max_abs_diff_pos_frame"] = 0 - result["nframes_diff"] = 0 - result["nframes_diff_percentage"] = 0.0 - - if max_diff != 0: - if diff.ndim == 1: - nsamples_total = diff.shape - nchannels = 1 - else: - nsamples_total, nchannels = diff.shape - max_diff_pos = np.nonzero(diff == max_diff) - max_diff_pos = [ - max_diff_pos[0][0], - max_diff_pos[0][0] // framesize, - max_diff_pos[1][0], - ] - - first_diff_pos = np.nonzero(diff) - first_diff_pos = [ - first_diff_pos[0][0], - first_diff_pos[0][0] // framesize, - first_diff_pos[1][0], - ] - - nsamples_diff = np.nonzero(diff)[0].size - nsamples_diff_percentage = nsamples_diff / (nsamples_total * nchannels) * 100.0 - nframes = nsamples_total // framesize - nframes_diff = 0 - - result = { - "bitexact": False, - "max_abs_diff": max_diff, - "max_abs_diff_pos_sample": max_diff_pos[0], - "max_abs_diff_pos_channel": max_diff_pos[2], - "nsamples_diff": nsamples_diff, - "nsamples_diff_percentage": nsamples_diff_percentage, - "first_diff_pos_sample": first_diff_pos[0], - "first_diff_pos_channel": first_diff_pos[2], - "first_diff_pos_frame": first_diff_pos[1], - } - - if per_frame: - for fr in range(nframes): - diff_fr = diff[fr * framesize : ((fr + 1) * framesize), :] - nframes_diff += 1 if diff_fr.nonzero()[0].size > 0 else 0 - nframes_diff_percentage = nframes_diff / nframes * 100.0 - result["max_abs_diff_pos_frame"] = max_diff_pos[1] - result["nframes_diff"] = nframes_diff - result["nframes_diff_percentage"] = nframes_diff_percentage - - if get_mld: - - def parse_wav_diff(proc: subprocess.CompletedProcess) -> float: - line = proc.stdout.splitlines()[-1].strip() - start = line.find(">") + 1 - stop = line.rfind("<") - mld = float(line[start:stop].strip()) - - return mld - - # TODO probably needs a fix to show up in pytest - if proc.returncode: - print(f"{proc.stderr}\n{proc.stdout}") - return mld_max - - mld_max = 0 - toolsdir = Path(__file__).parent.parent.joinpath("tools") - - curr_platform = platform.system() - if curr_platform not in {"Windows", "Linux", "Darwin"}: - raise NotImplementedError( - f"wav-diff tool not available for {curr_platform}" - ) - search_path = toolsdir.joinpath(curr_platform.replace("Windows", "Win32")) - wdiff = search_path.joinpath("wav-diff") - - if not wdiff.exists(): - wdiff = shutil.which("wav-diff") - if wdiff is None: - raise FileNotFoundError( - f"wav-diff tool not found in {search_path} or PATH!" - ) - - with tempfile.TemporaryDirectory() as tmpdir: - tmpfile_ref = Path(tmpdir).joinpath("ref.wav") - tmpfile_test = Path(tmpdir).joinpath("test.wav") - - - ### need to resample to 48kHz for MLD computation to be correct - if fs != 48000: - ref_tmp = np.clip( - resample(ref.astype(float), fs, 48000), -32768, 32767 - ) - test_tmp = np.clip( - resample(test.astype(float), fs, 48000), -32768, 32767 - ) - else: - ref_tmp = ref.copy() - test_tmp = test.copy() - - wavfile.write(str(tmpfile_ref), 48000, ref_tmp.astype(np.int16)) - wavfile.write(str(tmpfile_test), 48000, test_tmp.astype(np.int16)) - - cmd = [ - str(wdiff), - "--print-ctest-measurement", - str(tmpfile_ref), - str(tmpfile_test), - ] - if ref_jbm_tf and test_jbm_tf: - cmd.extend( - [ - "--ref-jbm-trace", - str(ref_jbm_tf), - "--cut-jbm-trace", - str(test_jbm_tf), - ] - ) - proc = subprocess.run(cmd, capture_output=True, text=True) - mld_max = parse_wav_diff(proc) - - result["MLD"] = mld_max - - if get_ssnr: - # length of segment is always 20ms - len_seg = int(0.02 * fs) - print(len_seg, ref.shape, test.shape) - result["SSNR"] = ssnr( - ref, - test, - len_seg, - thresh_low=ssnr_thresh_low, - thresh_high=ssnr_thresh_high, - apply_thresholds_to_ref_only=apply_thresholds_to_ref_only, - ) - - return result - - -def getdelay(x: np.ndarray, y: np.ndarray) -> int: - """Get the delay between two audio signals - - Parameters - ---------- - x: numpy array - Input reference array - y: numpy array - Input test array - - Returns - ------- - result: int - delay of y in samples with respect to x (median of individual channel delays) - """ - if x.ndim == 1: - n_samples_x = x.shape - n_chan_x = 1 - else: - n_samples_x, n_chan_x = x.shape - if y.ndim == 1: - n_samples_y = y.shape - n_chan_y = 1 - else: - n_samples_y, n_chan_y = y.shape - if n_chan_x != n_chan_y: - raise ValueError - lags = np.arange(-n_samples_x + 1, n_samples_y) - lag = np.zeros([n_chan_x, 1], dtype=int) - for chan in range(n_chan_x): - correlation = sig.correlate(y[:, chan], x[:, chan], mode="full") - lag[chan] = lags[np.argmax(correlation)] - return int(np.median(lag)) - - -def limiter(x: np.ndarray, fs: int): - """Apply limiting to an audio signal - - Parameters - ---------- - x: numpy array - Input reference array - fs: int - Input sampling frequency - - Returns - ------- - None - """ - limiter_threshold = 32729 # -0.01dB FS - limiter_attack_seconds = 0.005 - attack_constant = 0.01 ** (1.0 / (limiter_attack_seconds * fs)) - release_heuristics_mem = 0.0 - gain = 1.0 - strong_saturation_cnt = 0 - - if x.ndim == 1: - n_samples_x = x.shape - n_chan_x = 1 - else: - n_samples_x, n_chan_x = x.shape - # framing - framesize = fs // 50 - nframes = n_samples_x // framesize - for fr in range(nframes): - apply_limiting = True - fr_sig = x[fr * framesize : ((fr + 1) * framesize), :] - sig_max = np.absolute(fr_sig).max() - release_heuristic = release_heuristics_mem - if sig_max > limiter_threshold: - frame_gain = limiter_threshold / sig_max - release_heuristic = min(1.0, release_heuristic + (4.0 * framesize / fs)) - else: - release_heuristic = max(0.0, release_heuristic - (framesize / fs)) - if gain >= 1.0 - 1e-10: - apply_limiting = False - - frame_gain = 1.0 - - if sig_max > 3 * limiter_threshold and strong_saturation_cnt > 0: - apply_strong_limiting = True - elif sig_max > 10 * limiter_threshold: - strong_saturation_cnt += 20 - apply_strong_limiting = True - else: - strong_saturation_cnt -= 1 - if strong_saturation_cnt < 0: - strong_saturation_cnt = 0 - apply_strong_limiting = False - - if apply_strong_limiting is True: - if frame_gain < 0.3: - frame_gain /= 3.0 - else: - apply_strong_limiting = False - - if frame_gain < 0.1 and apply_strong_limiting is False: - frame_gain = 0.1 - - if apply_limiting is True: - if frame_gain < gain: - fac = attack_constant ** (np.arange(1, framesize + 1, dtype=np.float32)) - else: - release_constant = 0.01 ** ( - 1.0 / (0.005 * (200.0**release_heuristic) * fs) - ) - fac = release_constant ** ( - np.arange(1, framesize + 1, dtype=np.float32) - ) - - fr_gain = np.tile(gain * fac + frame_gain * (1.0 - fac), (n_chan_x, 1)).T - fr_sig *= fr_gain - gain = fr_gain[-1, 0] - else: - gain = 1.0 - - release_heuristics_mem = release_heuristic - # hard limiting for everything that still sticks out - idx_max = np.where(fr_sig > 32767) - fr_sig[idx_max] = 32767 - idx_min = np.where(fr_sig < -32768) - fr_sig[idx_min] = -32768 - - -def get_framewise(x: np.ndarray, chunk_size: int, zero_pad=False) -> np.ndarray: - """Generator to yield a signal frame by frame - If array size is not a multiple of chunk_size, last frame contains the remainder - - Parameters - ---------- - x: numpy array - Input reference array - chunk_size: int - Size of frames to yield - zero_pad: bool - Whether to zero pad the last chunk if there are not enough samples - - Yields - ------- - frame : np.ndarray - One frame of the input audio signal - """ - n_frames = x.shape[0] // chunk_size - for i in range(n_frames): - yield x[i * chunk_size : (i + 1) * chunk_size, :] - if x.shape[0] % chunk_size: - last_chunk = x[n_frames * chunk_size :, :] - if zero_pad: - yield np.pad( - last_chunk, [[0, chunk_size - (x.shape[0] % chunk_size)], [0, 0]] - ) - else: - yield last_chunk - - -def process_async(files: Iterable, func: Callable, **kwargs): - """Applies a function asynchronously to an array of audio files/filenames using a multiprocessing pool""" - - p = mp.pool(mp.cpu_count()) - results = [] - for f in files: - results.append(p.apply_async(func, args=(f, kwargs))) - p.close() - p.join() - for r in results: - r.get() - return results - - -def ssnr( - ref_sig: np.ndarray, - test_sig: np.ndarray, - len_seg: int, - thresh_low: float = -200, - thresh_high: float = 0, - apply_thresholds_to_ref_only: bool = False, -) -> np.ndarray: - """ - Calculate Segmental SNR for test_sig to ref_sig as defined in ISO/IEC 14496-4 - """ - ss = list() - - ref_sig_norm = ref_sig / -np.iinfo(np.int16).min - test_sig_norm = test_sig / -np.iinfo(np.int16).min - - # check if diff of signal is zero already, then SNR is infinite, since no noise - diff_sig_norm = ref_sig_norm - test_sig_norm - if np.all(diff_sig_norm == 0): - return np.asarray([np.inf] * ref_sig_norm.shape[1]) - - channels_identical_idx = np.sum(np.abs(diff_sig_norm), axis=0) == 0 - - denom_add = 10**-13 * len_seg - segment_counter = np.zeros(ref_sig.shape[1]) - - # iterate over test signal too to allow power comparison to threshold - for ref_seg, diff_seg, test_seg in zip( - get_framewise(ref_sig_norm, len_seg, zero_pad=True), - get_framewise(diff_sig_norm, len_seg, zero_pad=True), - get_framewise(test_sig_norm, len_seg, zero_pad=True), - ): - nrg_ref = np.sum(ref_seg**2, axis=0) - nrg_diff = np.sum(diff_seg**2, axis=0) - - ss_seg = np.log10(1 + nrg_ref / (denom_add + nrg_diff)) - - # only sum up segments that fall inside the thresholds - # add small eps to nrg_ref to prevent RuntimeWarnings from numpy - ref_power = 10 * np.log10((nrg_ref + 10**-7) / len_seg) - zero_mask = np.logical_or(ref_power < thresh_low, ref_power > thresh_high) - - # create same mask for test signal - if not apply_thresholds_to_ref_only: - nrg_test = np.sum(test_seg**2, axis=0) - test_power = 10 * np.log10((nrg_test + 10**-7) / len_seg) - zero_mask_test = np.logical_or( - test_power < thresh_low, test_power > thresh_high - ) - zero_mask = np.logical_or(zero_mask, zero_mask_test) - - ss_seg[zero_mask] = 0 - # increase segment counter only for channels that were not zeroed - segment_counter += np.logical_not(zero_mask) - - ss.append(ss_seg) - - # if the reference signal was outside the thresholds for all segments in a channel, segment_counter is zero - # for that channel and the division here would trigger a warning. We supress the warning and later - # set the SSNR for those channels to nan manually instead (overwriting later is simply easier than adding ifs here) - with warnings.catch_warnings(): - ssnr = np.round( - 10 * np.log10(10 ** (np.sum(ss, axis=0) / segment_counter) - 1), 2 - ) - ssnr[segment_counter == 0] = np.nan - - # this prevents all-zero channels in both signals to be reported as -inf - ssnr[channels_identical_idx] = np.inf - - return ssnr diff --git a/scripts/pyaudio3dtools/audiofile.py b/scripts/pyaudio3dtools/audiofile.py deleted file mode 100644 index bbee88ca9c52f570489858bf5c779c5ed4a06984..0000000000000000000000000000000000000000 --- a/scripts/pyaudio3dtools/audiofile.py +++ /dev/null @@ -1,804 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import os -import platform -import shutil -import struct -import subprocess as sp -import warnings -from tempfile import TemporaryDirectory -from typing import Optional, Tuple - -import numpy as np -import scipy.io.wavfile as wav -from pyaudio3dtools import audioarray, spatialaudioformat - - -def readfile( - filename: str, nchannels: int = 1, fs: int = 48000, outdtype="float" -) -> Tuple[np.ndarray, int]: - """Read audio file (.pcm or .wav) - - Parameters - ---------- - filename: str - Input file path - nchannels: Optional[int] - Number of input channels, required for .pcm otherwise default = 1 - fs: Optional[int] - Input sampling rate, required for .pcm input file, otherwise default = 48000 (Hz) - outdtype: Optional[int] - Data type of output array, python builtin or np.dtype - - Returns - ------- - x: np array - audio signal array - fs: int - signal sampling frequency - - """ - _, file_extension = os.path.splitext(os.path.basename(filename)) - - if file_extension == ".wav": - fs, data = wav.read(filename) - if data.dtype == np.int32: - data = np.interp( - data, - (np.iinfo(np.int32).min, np.iinfo(np.int32).max), - (np.iinfo(np.int16).min, np.iinfo(np.int16).max), - ) - elif data.dtype == np.float32: - data = np.interp( - data, - (-1, 1), - (np.iinfo(np.int16).min, np.iinfo(np.int16).max), - ) - x = np.array(data, dtype=outdtype) - file_len = x.shape[0] - if x.ndim == 1: - # force to be a mtx - x = np.reshape(x, (file_len, 1)) - elif file_extension == ".pcm" or file_extension == ".raw": - x = np.fromfile(filename, dtype=np.int16).astype(outdtype) - signal_len = len(x) // nchannels - x = x.reshape(signal_len, nchannels) - else: - raise ValueError("Wrong input format. Use wav or pcm") - - return x, fs - - -def writefile(filename: str, x: np.ndarray, fs: int = 48000) -> None: - """Write audio file (.pcm or .wav) - - Parameters - ---------- - filename: str - Output file path (.pcm or .wav) - x: np array - Numpy 2D array of dimension: number of samples x number of channels - fs: Optional[int] - Output sampling rate, required for .pcm input file, otherwise default = 48000 (Hz) - - Returns - ------- - None - - """ - _, file_extension = os.path.splitext(os.path.basename(filename)) - - clipped_samples = np.sum( - np.logical_or(x < np.iinfo(np.int16).min, x > np.iinfo(np.int16).max) - ) - if clipped_samples > 0: - warnings.warn(f" Warning: {clipped_samples} samples clipped") - x = np.clip(x, np.iinfo(np.int16).min, np.iinfo(np.int16).max) - - if file_extension == ".wav": - x = x.astype(np.int16) - wav.write(filename, fs, x) - elif file_extension == ".pcm" or file_extension == ".raw": - x = x.astype("int16").reshape(-1, 1) - x.tofile(filename) - else: - raise ValueError("Wrong input format. Use wav or pcm") - - -def convertfile( - in_file: str, - out_file: str, - in_nchans: Optional[int] = None, - out_nchans: Optional[int] = None, - in_fs: Optional[int] = None, - out_fs: Optional[int] = None, - out_len_samples: Optional[int] = None, - verbose: bool = False, -) -> None: - """Convert audio file, can convert wav from/to pcm, change nchannels and sampling rate - - Parameters - ---------- - in_file: str - Input file path - out_file: str - Output file path - in_nchans: Optional[int] - Number of input channels required for .pcm inpout file - out_nchans: Optional[int] - Number of output channels, default out_nchans = in_nchans - in_fs: Optional[int] - Input sampling rate, required for .pcm input file - out_fs: Optional[int] - Output sampling rate, default out_fs = in_fs - out_len_samples: Optional[int] - Cut file to this length in samples. - Adds zeros at the end if bigger than file length. - - Returns - ------- - None - - """ - # Read input file - if in_fs is None: - in_fs = 48000 - if in_nchans is None: - in_nchans = 1 - x, in_fs = readfile(in_file, nchannels=in_nchans, fs=in_fs) - in_nchans = x.shape[1] - in_len_samples = x.shape[0] - - # Configure output file - y = x - if out_fs is None: - out_fs = in_fs - if out_nchans is None: - out_nchans = in_nchans - - if verbose: - print(f"Input file: {in_file}, sampling rate {str(in_fs)} size {str(x.shape)}") - - # Process - if ( - in_file == out_file - and in_nchans == out_nchans - and in_fs == out_fs - and in_len_samples == out_len_samples - ): - if verbose: - print("Convert file: nothing to be done") - else: - y = audioarray.convert(x, out_nchans=out_nchans, in_fs=in_fs, out_fs=out_fs) - - if out_len_samples is None: - out_len_samples = y.shape[0] - y = audioarray.cut(y, (0, out_len_samples)) - - # write/convert wav format - writefile(out_file, y, fs=out_fs) - if verbose: - print( - f"Written output file: {out_file}, sampling rate {str(out_fs)} size {str(y.shape)}" - ) - - -def concatenatefiles( - in_filenames: list, - out_file: str, - silence_pre: int, - silence_post: int, - in_fs: Optional[int] = 48000, - out_fs: Optional[int] = None, -) -> None: - """Horizontally concatenates audio files into one long file - - Parameters - __________ - in_filenames: list - Input list of filenmames (.pcm or .wav) - out_file: str - Output multi-channel audio file name (.pcm or .wav) - in_fs: Optional[int] = 48000 - Input sampling rate, default 48000 Hz - out_fs: Optional[int] = None - Output sampling rate, default out_fs=in_fs - fs: Optional[int] - Output sampling rate, required for .pcm input file, otherwise default = 48000 (Hz) - - Returns - ------- - None - """ - y = None - - if out_fs is None: - out_fs = in_fs - - # Create silence padding arrays - pad_pre = int(silence_pre * in_fs / 1000) - pad_post = int(silence_post * in_fs / 1000) - - # Read input files - for in_file in in_filenames: - x, in_fs = readfile(in_file, fs=in_fs) - - # pad with silence - pre = np.zeros([pad_pre, x.shape[1]]) - post = np.zeros([pad_post, x.shape[1]]) - x = np.concatenate([pre, x, post]) - - if y is None: - y = x - else: - y = np.concatenate([y, x]) - - y = audioarray.resample(y, in_fs, out_fs) - - writefile(out_file, y, fs=out_fs) - - -def combinefiles( - in_filenames: list, - out_file: str, - out_nchans: Optional[int] = None, - in_fs: Optional[int] = 48000, - out_fs: Optional[int] = None, - verbose: bool = False, -) -> None: - """Combines audio files into one multi-channel file - - Parameters - ---------- - in_filenames: list - Input list of filenmames (.pcm or .wav) - out_file: str - Output multi-channel audio file name (.pcm or .wav) - in_fs: Optional[int] = 48000 - Input sampling rate, default 48000 Hz - out_fs: Optional[int] = None - Output sampling rate, default out_fs=in_fs - fs: Optional[int] - Output sampling rate, required for .pcm input file, otherwise default = 48000 (Hz) - - Returns - ------- - None - - """ - - y = None - - if out_fs is None: - out_fs = in_fs - - # Read input files - for in_file in in_filenames: - # assign correct channel - x, in_fs = readfile(in_file, fs=in_fs) - if y is None: - y = x - else: - if x.shape[0] > y.shape[0]: - x = x[: y.shape[0], :] - elif y.shape[0] > x.shape[0]: - y = y[: x.shape[0], :] - y = np.column_stack([y, x]) - - y = audioarray.resample(y, in_fs, out_fs) - - writefile(out_file, y, fs=out_fs) - - -def splitfiles( - in_file: str, - out_filenames: list, - in_nchans: int, - in_fs: Optional[int] = 48000, - out_fs: Optional[int] = None, - verbose: bool = False, -) -> None: - """Split multi-channel audio files into individual mono files - - Parameters - ---------- - in_file: str - Input file name (.pcm or .wav) - out_filenames: list - List of output file names (.pcm or .wav) - in_fs: Optional[int] = 48000 - Input sampling rate, default 48000 Hz - out_fs: Optional[int] = None - Output sampling rate, default out_fs=in_fs - - Returns - ------- - None - - """ - # validation - if in_nchans is None: - raise ValueError("Number of channels to split must be specified!") - if in_nchans != len(out_filenames): - print( - "Split: Mismatch between number of channels and output filenames length. Truncating output filenames list." - ) - out_filenames = out_filenames[:in_nchans] - - x, in_fs = readfile(in_file, nchannels=in_nchans, fs=in_fs) - - # Write output files - for idx, out_file in enumerate(out_filenames): - # extract correct channel - y = x[:, idx] - - if out_fs is None: - out_fs = in_fs - - y = audioarray.resample(y, in_fs, out_fs) - - writefile(out_file, y, fs=out_fs) - - -def mono( - in_file: str, - out_file: str, - in_nchans: Optional[int] = 2, - in_fs: Optional[int] = 48000, - out_fs: Optional[int] = None, - verbose: bool = False, -) -> None: - """Creates a passive mono downmix for a multi-channel audio file - - Parameters - ---------- - in_file: str - Input file name (.pcm or .wav) - out_file: str - Output mono downmix audio file name (.pcm or .wav) - in_nchans: Optional[int] - Number of input channels, required for .pcm otherwise default = 2 - in_fs: Optional[int] = 48000 - Input sampling rate, required for .pcm, otherwise default = 48000 Hz - out_fs: Optional[int] = in_fs - Output sampling rate, default = in_fs - - Returns - ------- - None - - """ - - # read input - x, in_fs = readfile(in_file, nchannels=in_nchans, fs=in_fs) - - if out_fs is None: - out_fs = in_fs - - # do pasive downmix - m = np.sum(x, 1) - - if out_fs != in_fs: - m = audioarray.resample(m, in_fs, out_fs) - - # write output - writefile(out_file, m, fs=out_fs) - - -def mutefile( - in_file: str, - out_file: str, - in_fs: int = 48000, - in_nchans: Optional[int] = 1, - mute_chans: Optional[list] = None, -) -> None: - """Mute audio channels in file - - Parameters - ---------- - in_file: str - Input multi-channel audio filenmame (.pcm or .wav) - out_file: str - Output multi-channel audio file name (.pcm or .wav) - in_nchans: Optional[int])1 - Number of channels, default = 1, or in *.wav header - mute_chans: Optional[list] = None - Indices of channel to mute, default=None=all - - Returns - ------- - None - - """ - x, in_fs = readfile(in_file, fs=in_fs, nchannels=in_nchans) - - if mute_chans is not None: - mute_chans = np.array(mute_chans) - if len(x.shape) > 1: - x[:, mute_chans[mute_chans < x.shape[1]]] = 0 - else: - x[:, mute_chans[mute_chans < 1]] = 0 - else: - x = np.zeros(x.shape) - - writefile(out_file, x, fs=in_fs) - - -def delayfile( - in_file: str, - out_file: str, - in_fs: int = 48000, - in_nchans: Optional[int] = 1, - delay: float = 0, -) -> None: - """Delay an audio file by a specified duration (ms) - - Parameters - ---------- - in_file: str - Input multi-channel audio filename (.pcm or .wav) - out_file: str - Output multi-channel audio file name (.pcm or .wav) - in_nchans: Optional[int])1 - Number of channels, default = 1, or in *.wav header - delay: float = 0 - Delay in milliseconds (negative values advance file) - - Returns - ------- - None - - """ - delay = int(delay * in_fs / 1000) - delay_abs = np.abs(delay) - - x, in_fs = readfile(in_file, fs=in_fs, nchannels=in_nchans) - - # shift array - x = np.roll(x, delay, axis=0) - - # zero shifted out samples - if delay == 0: - pass - elif delay < 0: - x[-delay_abs:, :] = 0 - elif delay > 0: - x[:delay_abs, :] = 0 - - writefile(out_file, x, fs=in_fs) - - -def loudnessinfo( - in_sig: np.ndarray, - in_fs: Optional[int] = 48000, - in_format: Optional[str] = "MONO", - output_loudness: Optional[int] = -26, - loudness_tool: Optional[str] = "bs1770demo", - use_rms: Optional[bool] = False, -) -> Tuple[float, float]: - """Obtain loudness info about a signal - - Parameters - ---------- - in_sig: np.ndarray - Input audio signal - in_fs: Optional[int] - Input sampling rate - in_format: Optional[str] - Input spatial audio format - output_loudness: Optional[int] - Loudness level in LKFS/dBov - loudness_tool: Optional[str] - Loudness tool to use. Must be in $PATH. - Supported tools: - ITU-R BS.1770-4 / "bs1770demo" (default) - ITU-T P.56 / "sv56demo" - - - Returns - ------- - measured_loudness, scale_factor - - """ - - if platform.system() == "Windows": - null_file = "nul" - else: - null_file = "/dev/null" - - if shutil.which(loudness_tool) is None: - raise FileNotFoundError(f"The binary {loudness_tool} was not found in path!") - - in_spfmt = spatialaudioformat.Format(in_format=in_format) - - if not (in_spfmt.isheadphones or in_spfmt.isloudspeaker or in_spfmt.ambi_order > 1): - raise NotImplementedError( - f"{in_spfmt.name} is currently unsupported with {loudness_tool}." - ) - - if in_sig.shape[1] != in_spfmt.nchannels: - raise ValueError( - f"Mismatch in number of channels in signal of shape {in_sig.shape} of spatial audio format {in_format}!" - ) - - with TemporaryDirectory() as tmp_dir: - tmp_file = os.path.join(tmp_dir, "tmp_loudness.pcm") - - if "bs1770demo" in loudness_tool: - """ - ITU-R BS-1770 - """ - if in_fs != 48000: - raise ValueError(f"{loudness_tool} only supports 48kHz sampling rate!") - - cmd = [ - loudness_tool, - "-nchan", - str(in_spfmt.nchannels), # input nchan - "-lev", - str(output_loudness), # level - "-conf", - "", # config string - tmp_file, - null_file, - ] - if in_spfmt.ambi_order > 0 or in_spfmt.name == "MONO": - cmd[2] = "1" # -nchan - cmd[6] = "0" # -conf - if in_spfmt.isheadphones: - cmd[2] = "2" # -nchan - cmd[6] = "00" # -conf - elif in_spfmt.isloudspeaker: - # if loudspeaker position fulfills the criteria, set the config string to 1 for that index - conf_str = [ - str(int(abs(e) < 30 and (abs(a) >= 60 and abs(a) <= 120))) - for a, e in zip(in_spfmt.ls_azi, in_spfmt.ls_ele) - ] - for lfe in in_spfmt.lfe_index: - conf_str[lfe] = "L" - - cmd[6] = "".join(conf_str) - - elif "sv56demo" in loudness_tool: - """ - ITU-T P.56 - """ - if not (in_spfmt.ambi_order > 0 or in_spfmt.name == "MONO"): - raise ValueError( - f"{in_format} is currently unsupported with {loudness_tool}" - ) - - cmd = [ - loudness_tool, - "-lev", - str(output_loudness), - "-sf", - str(in_fs), - "-blk", - str(int(in_fs * 0.02)), - "-q", - ] - - if use_rms: - cmd.extend(["-rms"]) - - cmd.extend( - [ - tmp_file, - null_file, - ] - ) - - # write temporary file - if in_spfmt.ambi_order > 0 or in_spfmt.name == "MONO": - writefile(tmp_file, in_sig[:, 0], in_fs) - elif in_spfmt.isheadphones: - writefile(tmp_file, in_sig[:, :2], in_fs) - elif in_spfmt.isloudspeaker: - writefile(tmp_file, in_sig, in_fs) - - # run command - try: - result = sp.run(cmd, check=True, capture_output=True, text=True) - except sp.CalledProcessError as e: - raise SystemError( - f"Command returned non-zero exit status ({e.returncode}): {' '.join(e.cmd)}\n{e.stderr}\n{e.stdout}" - ) - - # parse output - if "bs1770demo" in loudness_tool: - measured_loudness = float(result.stdout.splitlines()[3].split(":")[1]) - scale_factor = float(result.stdout.splitlines()[-3].split(":")[1]) - elif "sv56demo" in loudness_tool: - try: - measured_loudness = float( - result.stdout.splitlines()[14] - .replace("Active speech level: ..........", "") - .replace("[dBov]", "") - .strip() - ) - scale_factor = float( - result.stdout.splitlines()[6] - .replace("Norm factor desired is: .......", "") - .replace("[times]", "") - .strip() - ) - except Exception: - raise ValueError(f"Error parsing sv56demo output!\n{result.stdout}") - else: - raise ValueError(f"Unsupported tool {loudness_tool}") - - return measured_loudness, scale_factor - - -def get_wav_file_info(filename: str) -> dict: - """ - Get the format information from a WAV file. - Return a dictionary with the format information - Parameters - ---------- - filename : string or open file handle - Input WAV file. - - Returns - ------- - Dictionary - - """ - - fid = open(filename, "rb") - - try: - riff = fid.read(4) - - if riff == b"RIFF": - binary_format = "<" - elif riff == b"RIFX": - binary_format = ">" - else: - raise ValueError("No RIFF!") - - wav_size = struct.unpack(f"{binary_format}I", fid.read(4))[0] - - wav_identifier = fid.read(4) - if wav_identifier != b"WAVE": - raise ValueError("No WAVE!") - - fmt_chunk_id = fid.read(4) - - if fmt_chunk_id == b"fmt ": - fmt_size = struct.unpack(f"{binary_format}I", fid.read(4))[0] - wav_format = struct.unpack(f"{binary_format}H", fid.read(2))[0] - channels = struct.unpack(f"{binary_format}H", fid.read(2))[0] - fs = struct.unpack(f"{binary_format}I", fid.read(4))[0] - bytes_per_second = struct.unpack(f"{binary_format}I", fid.read(4))[0] - block_align = struct.unpack(f"{binary_format}H", fid.read(2))[0] - bit_depth = struct.unpack(f"{binary_format}H", fid.read(2))[0] - rem_bytes = fmt_size - 16 - ext_param_size = 0 - ext_param = None - if rem_bytes: - ext_param_size = struct.unpack(f"{binary_format}H", fid.read(2))[0] - - if ext_param_size: - ext_param = fid.read(ext_param_size) - else: - raise ValueError("No or corrupt fmt chunk!") - - finally: - fid.close() - - return { - "size": wav_size, - "format_tag": wav_format, - "channels": channels, - "fs": fs, - "bytes_per_second": bytes_per_second, - "block_align": block_align, - "bit_depth": bit_depth, - "ext_param_size": ext_param_size, - "ext_param": ext_param, - } - - -if __name__ == "__main__": - import argparse - - parser = argparse.ArgumentParser( - description="Tool for basic operations on audio files" - ) - subparsers = parser.add_subparsers() - - def pre_trim_wrapper(pre_trim_args): - if pre_trim_args.input_file.endswith(".wav"): - input_file_properties = get_wav_file_info(pre_trim_args.input_file) - else: - print("Delay currently only supported with WAV file input") - exit(-1) - - x, _ = readfile( - pre_trim_args.input_file, - fs=input_file_properties["fs"], - nchannels=input_file_properties["channels"], - ) - trim = int(pre_trim_args.amount_in_ms * input_file_properties["fs"] / 1000) - x = x[trim:] - writefile(pre_trim_args.output_file, x, fs=input_file_properties["fs"]) - - parser_delay = subparsers.add_parser( - "pre-trim", help="Trim a given amount of content from the beginning of the file" - ) - parser_delay.add_argument( - "amount_in_ms", type=float, help="Trim amount milliseconds." - ) - parser_delay.add_argument("input_file") - parser_delay.add_argument("output_file") - parser_delay.set_defaults(func=pre_trim_wrapper) - - def convert_wrapper(convert_args): - if not convert_args.input_file.endswith(".wav"): - print("Convert currently only supported with WAV file input") - exit(-1) - - convertfile(convert_args.input_file, convert_args.output_file) - - parser_convert = subparsers.add_parser( - "convert", - help="Convert file format (output file extension determines output format)", - ) - parser_convert.add_argument("input_file") - parser_convert.add_argument("output_file") - parser_convert.set_defaults(func=convert_wrapper) - - def compare_wrapper(compare_args): - if not compare_args.ref_file.endswith(".wav") or not compare_args.test_file.endswith(".wav"): - print("Convert currently only supported with WAV file input") - exit(-1) - - s1, fs1 = readfile(compare_args.ref_file, outdtype="int16") - s2, fs2 = readfile(compare_args.test_file, outdtype="int16") - if fs1 != fs2: - print("Can only compare signals of same sampling rate") - exit(-1) - - cmp_result = audioarray.compare(s1, s2, fs1, per_frame=False, test_start_offset_ms=compare_args.test_start_offset_ms) - exit(cmp_result["max_abs_diff"]) - - parser_compare = subparsers.add_parser("compare", help="Compare two wav files for bitexactness") - parser_compare.add_argument("ref_file") - parser_compare.add_argument("test_file") - parser_compare.add_argument("test_start_offset_ms", default=0, type=int) - parser_compare.set_defaults(func=compare_wrapper) - - args = parser.parse_args() - args.func(args) diff --git a/scripts/pyaudio3dtools/constants.py b/scripts/pyaudio3dtools/constants.py deleted file mode 100644 index 5448ebadf0b296bd30ccde06e40819d4f46fc7df..0000000000000000000000000000000000000000 --- a/scripts/pyaudio3dtools/constants.py +++ /dev/null @@ -1,396 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import numpy as np - -IVAS_FRAME_LEN_MS = 20 - -IVAS_CICPX_TO_MONO = np.array( - [ - [ - 1, - 1, - 1, - 1, - 0.79999995, - 0.79999995, - 0.79999995, - 0.79999995, - 0.849999964, - 0.849999964, - 0.849999964, - 0.849999964, - ] - ] -).T - -IVAS_CICPX_TO_STEREO = np.array( - [ - [1, 0], - [0, 1], - [np.sqrt(0.5), np.sqrt(0.5)], - [np.sqrt(0.5), np.sqrt(0.5)], - [0.79999995, 0], - [0, 0.79999995], - [0.79999995, 0], - [0, 0.79999995], - [0.849999964, 0], - [0, 0.849999964], - [0.849999964, 0], - [0, 0.849999964], - ] -) - -# downmix matrices -IVAS_CICP12_TO_6 = np.zeros(8 * 6) -IVAS_CICP12_TO_6[[0, 7, 14, 21, 28, 35, 40, 47]] = 1 -IVAS_CICP12_TO_6 = IVAS_CICP12_TO_6.reshape(8, 6) - -IVAS_CICP14_TO_6 = np.zeros(8 * 6) -IVAS_CICP14_TO_6[[0, 7, 14, 21, 28, 35]] = 1 -IVAS_CICP14_TO_6[[36, 43]] = 0.849999964 -IVAS_CICP14_TO_6 = IVAS_CICP14_TO_6.reshape(8, 6) - -IVAS_CICP16_TO_6 = np.zeros(10 * 6) -IVAS_CICP16_TO_6[[0, 7, 14, 21, 28, 35]] = 1 -IVAS_CICP16_TO_6[[36, 43, 52, 59]] = 0.849999964 -IVAS_CICP16_TO_6 = IVAS_CICP16_TO_6.reshape(10, 6) - -IVAS_CICP16_TO_12 = np.zeros(10 * 8) -IVAS_CICP16_TO_12[[0, 9, 18, 27, 36, 45]] = 1 -IVAS_CICP16_TO_12[[48, 57, 68, 77]] = 0.849999964 -IVAS_CICP16_TO_12 = IVAS_CICP16_TO_12.reshape(10, 8) - -IVAS_CICP16_TO_14 = np.zeros(10 * 8) -IVAS_CICP16_TO_14[[0, 9, 18, 27, 36, 45, 54, 63]] = 1 -IVAS_CICP16_TO_14[[68, 77]] = 0.849999964 -IVAS_CICP16_TO_14 = IVAS_CICP16_TO_14.reshape(10, 8) - -IVAS_CICP19_TO_6 = np.zeros(12 * 6) -IVAS_CICP19_TO_6[[0, 7, 14, 21, 28, 35]] = 1 -IVAS_CICP19_TO_6[[36, 43]] = 0.367322683 -IVAS_CICP19_TO_6[[48, 55, 64, 71]] = 0.849999964 -IVAS_CICP19_TO_6[[40, 47]] = 0.930093586 -IVAS_CICP19_TO_6 = IVAS_CICP19_TO_6.reshape(12, 6) - -IVAS_CICP19_TO_12 = np.zeros(12 * 8) -IVAS_CICP19_TO_12[[0, 9, 18, 27, 38, 47]] = 1 -IVAS_CICP19_TO_12[[48, 57]] = 0.367322683 -IVAS_CICP19_TO_12[[64, 73, 84, 93]] = 0.849999964 -IVAS_CICP19_TO_12[[52, 61]] = 0.930093586 -IVAS_CICP19_TO_12 = IVAS_CICP19_TO_12.reshape(12, 8) - -IVAS_CICP19_TO_14 = np.zeros(12 * 8) -IVAS_CICP19_TO_14[[0, 9, 18, 27, 36, 45, 70, 79]] = 1 -IVAS_CICP19_TO_14[[48, 57]] = 0.367322683 -IVAS_CICP19_TO_14[[84, 93]] = 0.849999964 -IVAS_CICP19_TO_14[[52, 61]] = 0.930093586 -IVAS_CICP19_TO_14 = IVAS_CICP19_TO_14.reshape(12, 8) - -IVAS_CICP19_TO_16 = np.zeros(12 * 10) -IVAS_CICP19_TO_16[[0, 11, 22, 33, 44, 55, 86, 97, 108, 119]] = 1 -IVAS_CICP19_TO_16[[60, 71]] = 0.367322683 -IVAS_CICP19_TO_16[[64, 75]] = 0.930093586 -IVAS_CICP19_TO_16 = IVAS_CICP19_TO_16.reshape(12, 10) - -# upmix matrices -IVAS_MONO_TO_CICPX = np.zeros([1, 12]) -IVAS_MONO_TO_CICPX[0, 2] = 1 - -IVAS_STEREO_TO_CICPX = np.zeros([2, 12]) -IVAS_STEREO_TO_CICPX[0, 0] = 1 -IVAS_STEREO_TO_CICPX[1, 1] = 1 - -IVAS_CICP12_TO_14 = np.zeros(8 * 8) -IVAS_CICP12_TO_14[[0, 9, 18, 27, 36, 45, 52, 61]] = 1 -IVAS_CICP12_TO_14 = IVAS_CICP12_TO_14.reshape(8, 8) - -IVAS_CICP12_TO_16 = np.zeros(8 * 10) -IVAS_CICP12_TO_16[[0, 11, 22, 33, 44, 55, 64, 75]] = 1 -IVAS_CICP12_TO_16 = IVAS_CICP12_TO_16.reshape(8, 10) - -IVAS_CICP12_TO_19 = np.zeros(8 * 12) -IVAS_CICP12_TO_19[[0, 13, 26, 39, 54, 67, 76, 89]] = 1 -IVAS_CICP12_TO_19 = IVAS_CICP12_TO_19.reshape(8, 12) - -IVAS_CICP14_TO_19 = np.zeros(8 * 12) -IVAS_CICP14_TO_19[[0, 13, 26, 39, 52, 65, 80, 93]] = 1 -IVAS_CICP14_TO_19 = IVAS_CICP14_TO_19.reshape(8, 12) - -IVAS_CICP16_TO_19 = np.zeros(10 * 12) -IVAS_CICP16_TO_19[[0, 13, 26, 39, 52, 65, 80, 93, 106, 119]] = 1 -IVAS_CICP16_TO_19 = IVAS_CICP16_TO_19.reshape(10, 12) - -# mapping dict -IVAS_MC_CONVERSION = { - "MONO": { - # upmix - "5_1": IVAS_MONO_TO_CICPX[:, :6], - "7_1": IVAS_MONO_TO_CICPX[:, :8], - "5_1_2": IVAS_MONO_TO_CICPX[:, :8], - "5_1_4": IVAS_MONO_TO_CICPX[:, :10], - "7_1_4": IVAS_MONO_TO_CICPX[:, :12], - }, - "STEREO": { - # upmix - "5_1": IVAS_STEREO_TO_CICPX[:, :6], - "7_1": IVAS_STEREO_TO_CICPX[:, :8], - "5_1_2": IVAS_STEREO_TO_CICPX[:, :8], - "5_1_4": IVAS_STEREO_TO_CICPX[:, :10], - "7_1_4": IVAS_STEREO_TO_CICPX[:, :12], - }, - "5_1": { - # downmix - "MONO": IVAS_CICPX_TO_MONO[:6, :], - "STEREO": IVAS_CICPX_TO_STEREO[:6, :], - # upmix - "7_1": np.pad(np.eye(6), [[0, 0], [0, 2]]), - "5_1_2": np.pad(np.eye(6), [[0, 0], [0, 2]]), - "5_1_4": np.pad(np.eye(6), [[0, 0], [0, 4]]), - "7_1_4": np.pad(np.eye(6), [[0, 0], [0, 6]]), - }, - "7_1": { - # downmix - "MONO": IVAS_CICPX_TO_MONO[:8, :], - "STEREO": IVAS_CICPX_TO_STEREO[:8, :], - "5_1": IVAS_CICP12_TO_6, - # upmix - "5_1_2": IVAS_CICP12_TO_14, - "5_1_4": IVAS_CICP12_TO_16, - "7_1_4": IVAS_CICP12_TO_19, - }, - "5_1_2": { - # downmix - "MONO": np.vstack([IVAS_CICPX_TO_MONO[:6, :], IVAS_CICPX_TO_MONO[-2:, :]]), - "STEREO": np.vstack( - [IVAS_CICPX_TO_STEREO[:6, :], IVAS_CICPX_TO_STEREO[-2:, :]] - ), - "5_1": IVAS_CICP14_TO_6, - "7_1": np.pad(IVAS_CICP14_TO_6, [[0, 0], [0, 2]]), - # upmix - "5_1_4": np.pad(np.eye(8), [[0, 0], [0, 2]]), - "7_1_4": IVAS_CICP14_TO_19, - }, - "5_1_4": { - # downmix - "MONO": np.vstack([IVAS_CICPX_TO_MONO[:6, :], IVAS_CICPX_TO_MONO[-4:, :]]), - "STEREO": np.vstack( - [IVAS_CICPX_TO_STEREO[:6, :], IVAS_CICPX_TO_STEREO[-4:, :]] - ), - "5_1": IVAS_CICP16_TO_6, - "7_1": IVAS_CICP16_TO_12, - "5_1_2": IVAS_CICP16_TO_14, - # upmix - "7_1_4": IVAS_CICP16_TO_19, - }, - "7_1_4": { - # downmix - "MONO": IVAS_CICPX_TO_MONO, - "STEREO": IVAS_CICPX_TO_STEREO, - "5_1": IVAS_CICP19_TO_6, - "7_1": IVAS_CICP19_TO_12, - "5_1_2": IVAS_CICP19_TO_14, - "5_1_4": IVAS_CICP19_TO_16, - }, -} - -# LFE 120 Hz LPF filter coefficients -IVAS_LPF_4_BUTTER_48K_SOS = np.array( - [ - [ - 5.12617881476274e-09, - 1.02523584294987e-08, - 5.12617879059970e-09, - 1, - -1.96875982668433, - 0.969044914826862, - ], - [ - 1, - 1.99999984394358, - 1.00000000471366, - 1, - -1.98677297369091, - 0.987060670205863, - ], - ] -) - -T_DESIGN_11_AZI = np.array( - [ - 132.927291884332, - -83.9349499672527, - 8.47410038634525, - -113.340833834572, - -103.265909909537, - -33.2370360923825, - 21.8564347471830, - -156.539486489880, - -64.2647531387317, - 165.779530068738, - -25.2028339893249, - -97.0037973959711, - 27.8546391256925, - 153.214218975132, - -155.061608694663, - -11.8421354925543, - 80.5387312016125, - -42.0561606270165, - -31.2233262205060, - 38.8379041944063, - 93.7606877469492, - -84.7560200078398, - 7.75536818082863, - -122.276883381108, - 46.8012705252113, - -24.7686335284573, - 99.8904719062334, - -134.783996960185, - -83.0880230164493, - 60.1281736000420, - 152.644656278084, - 29.7576658909417, - 40.7793187974476, - 110.183927562412, - 165.652065916454, - -12.9926632105736, - 79.7359893585681, - -50.5245271190884, - 118.923930267733, - 47.2202861862577, - 171.925276523721, - -62.5145800558502, - -11.1156697680531, - 132.018041099963, - -135.355486412425, - 102.370921576708, - 112.739282398012, - -178.304963670831, - -122.319932198534, - 59.0763464570905, - 151.704200334501, - 21.3763364190503, - -169.005476417779, - 118.980811786769, - -116.089295979010, - 9.64767870353308, - 60.8933243657771, - -156.021526862757, - -63.4602993325163, - 174.929787427393, - -175.288768596346, - -105.951907934032, - -50.1928304519800, - 131.358266702971, - -136.296815007542, - 93.5644603506407, - -97.0840116473627, - -169.158278888619, - -44.1323835471345, - 81.4795403841382, - ] -) - -T_DESIGN_11_ELE = np.array( - [ - 7.69254738757899, - -23.7300652200871, - 23.5127556185301, - 70.4225940747938, - -9.89694439538752, - -70.7513316063095, - -26.4618527647561, - 47.7764936689044, - -7.72047049524459, - 44.5343602375216, - 26.3897904767450, - -44.6578850137166, - 9.76703456924600, - -47.7053318175498, - 7.45302934155972, - -23.5901209534773, - 23.7194484034707, - 70.4382693912270, - -9.83541588740259, - -70.4980825105727, - -26.2949218109204, - 47.6148028805222, - -7.51718499746626, - 44.2862347125773, - 26.6442619674660, - -44.5693707254340, - 9.91271928508000, - -47.9599550372574, - 7.29679922953795, - -23.3445981426306, - 23.6415261666079, - 70.6843143997832, - -9.58140351749889, - -70.3934534122902, - -26.4258159091605, - 47.7510668062369, - -7.30853603036844, - 44.2632768570349, - 26.7140614474957, - -44.3149733480527, - 9.75899721561506, - -48.0361913333593, - 7.43965099805872, - -23.3326075548841, - 23.3868959687598, - 70.8219078016791, - -9.48596399169388, - -70.5801867828491, - -26.6740262349265, - 47.9978414043199, - -7.38276167631068, - 44.4970603752708, - 26.5024990214418, - -44.2461913308458, - 9.51845076548334, - -47.8281351088411, - 7.68427447425834, - -23.5706842106942, - 23.3074499244045, - 70.6586472132300, - -9.68088860263008, - -70.8026785673948, - -26.6963451935976, - 48.0136296461397, - -7.63734823159200, - 44.6651234222196, - 26.3023490002159, - -44.4576351865647, - 9.52341455917443, - -47.6242211091394, - ] -) diff --git a/scripts/pyaudio3dtools/spatialaudioformat.py b/scripts/pyaudio3dtools/spatialaudioformat.py deleted file mode 100644 index ee8c6315be37e3dbda002c9138f876e16319ff5a..0000000000000000000000000000000000000000 --- a/scripts/pyaudio3dtools/spatialaudioformat.py +++ /dev/null @@ -1,591 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import os - -import numpy as np - -_format_configs = { - "MONO": { - "name": "MONO", - "ambi_order": 0, - "isplanar": False, - "nchannels": 1, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [0], - "ls_ele": [0], - "lfe_index": [], - "altname": "HOA0", - }, - "STEREO": { - "name": "STEREO", - "ambi_order": -1, - "isplanar": False, - "nchannels": 2, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [30, -30], - "ls_ele": [0, 0], - "lfe_index": [], - "altname": "cicp2", - }, - # binaural formats - "BINAURAL": { - "name": "BINAURAL", - "ambi_order": -1, - "isplanar": None, - "nchannels": 2, - "isloudspeaker": False, - "isheadphones": True, - "lfe_index": [], - "altname": "binaural", - }, - "BINAURAL_ROOM": { - "name": "BINAURAL_ROOM", - "ambi_order": -1, - "isplanar": None, - "nchannels": 2, - "isloudspeaker": False, - "isheadphones": True, - "lfe_index": [], - "altname": "binaural_room", - }, - "BINAURAL_REF": { - "name": "BINAURAL_REF", - "ambi_order": -1, - "isplanar": None, - "nchannels": 2, - "isloudspeaker": False, - "isheadphones": True, - "lfe_index": [], - "altname": "binaural_ref", - }, - "BINAURAL_ROOM_REF": { - "name": "BINAURAL_ROOM_REF", - "ambi_order": -1, - "isplanar": None, - "nchannels": 2, - "isloudspeaker": False, - "isheadphones": True, - "lfe_index": [], - "altname": "binaural_room_ref", - }, - # loudspeaker formats - "5_1": { - "name": "5_1", - "ambi_order": -1, - "isplanar": True, - "nchannels": 6, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [30, -30, 0, 0, 110, -110], - "ls_ele": [0, 0, 0, 0, 0, 0], - "lfe_index": [3], - "altname": "cicp6", - }, - "7_1": { - "name": "7_1", - "ambi_order": -1, - "isplanar": True, - "nchannels": 8, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [30, -30, 0, 0, 110, -110, 135, -135], - "ls_ele": [0, 0, 0, 0, 0, 0, 0, 0], - "lfe_index": [3], - "altname": "cicp12", - }, - "5_1_2": { - "name": "5_1_2", - "ambi_order": -1, - "isplanar": False, - "nchannels": 8, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [30, -30, 0, 0, 110, -110, 30, -30], - "ls_ele": [0, 0, 0, 0, 0, 0, 35, 35], - "lfe_index": [3], - "altname": "cicp14", - }, - "5_1_4": { - "name": "5_1_4", - "ambi_order": -1, - "isplanar": False, - "nchannels": 10, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [30, -30, 0, 0, 110, -110, 30, -30, 110, -110], - "ls_ele": [0, 0, 0, 0, 0, 0, 35, 35, 35, 35], - "lfe_index": [3], - "altname": "cicp16", - }, - "7_1_4": { - "name": "7_1_4", - "ambi_order": -1, - "isplanar": False, - "nchannels": 12, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [30, -30, 0, 0, 135, -135, 90, -90, 30, -30, 135, -135], - "ls_ele": [0, 0, 0, 0, 0, 0, 0, 0, 35, 35, 35, 35], - "lfe_index": [3], - "altname": "cicp19", - }, - "COMBINED": { - "name": "COMBINED", - "ambi_order": -1, - "isplanar": False, - "nchannels": 15, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": [ - 30, - -30, - 0, - 135, - -135, - 110, - -110, - 90, - -90, - 30, - -30, - 110, - -110, - 135, - -135, - ], - "ls_ele": [0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 35, 35, 35, 35, 35], - "lfe_index": None, - "altname": "combined", - }, - "CUSTOM_LS": { - "name": "CUSTOM_LS", - "ambi_order": -1, - "isplanar": False, - "nchannels": -1, - "isloudspeaker": True, - "isheadphones": False, - "ls_azi": None, - "ls_ele": None, - "lfe_index": None, - "altname": "CUSTOM_LS", - "config_file": "layout.txt", - }, - # ambisonics - "FOA": { - "name": "FOA", - "ambi_order": 1, - "isplanar": False, - "nchannels": 4, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "sba1", - }, - "PLANARFOA": { - "name": "PLANARFOA", - "ambi_order": 1, - "isplanar": True, - "nchannels": 4, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "sba1", - }, - "HOA2": { - "name": "HOA2", - "ambi_order": 2, - "isplanar": False, - "nchannels": 9, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "sba2", - }, - "PLANARHOA2": { - "name": "PLANARHOA2", - "ambi_order": 2, - "isplanar": True, - "nchannels": 9, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "sba2", - }, - "HOA3": { - "name": "HOA3", - "ambi_order": 3, - "isplanar": False, - "nchannels": 16, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "sba3", - }, - "PLANARHOA3": { - "name": "PLANARHOA3", - "ambi_order": 3, - "isplanar": True, - "nchannels": 16, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "sba3", - }, - # ism - "ISM": { - "name": "ISM", - "ambi_order": -1, - "isplanar": None, - "nchannels": -1, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "ism", - }, - "ISM1": { - "name": "ISM1", - "ambi_order": -1, - "isplanar": None, - "nchannels": 1, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "ism1", - }, - "ISM2": { - "name": "ISM2", - "ambi_order": -1, - "isplanar": None, - "nchannels": 2, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "ism2", - }, - "ISM3": { - "name": "ISM3", - "ambi_order": -1, - "isplanar": None, - "nchannels": 3, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "ism3", - }, - "ISM4": { - "name": "ISM4", - "ambi_order": -1, - "isplanar": None, - "nchannels": 4, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "ism4", - }, - # masa - "MASA": { - "name": "MASA", - "ambi_order": -1, - "isplanar": None, - "nchannels": -1, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "masa", - }, - "MASA1": { - "name": "MASA1", - "ambi_order": -1, - "isplanar": None, - "nchannels": 1, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "masa1", - }, - "MASA2": { - "name": "MASA2", - "ambi_order": -1, - "isplanar": None, - "nchannels": 2, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "masa2", - }, - # metadata format - "META": { - "name": "META", - "ambi_order": -1, - "isplanar": None, - "nchannels": -1, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "meta", - }, - # OSBA Formats - "OSBA_ISM1_HOA3": { - "name": "OSBA_ISM1_HOA3", - "ambi_order": 3, - "isplanar": False, - "nchannels": 17, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba3_ism1", - }, - "OSBA_ISM1_HOA2": { - "name": "OSBA_ISM1_HOA2", - "ambi_order": 2, - "isplanar": False, - "nchannels": 10, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba2_ism1", - }, - "OSBA_ISM1_FOA": { - "name": "OSBA_ISM1_FOA", - "ambi_order": 1, - "isplanar": False, - "nchannels": 5, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba1_ism1", - }, - "OSBA_ISM2_HOA3": { - "name": "OSBA_ISM2_HOA3", - "ambi_order": 3, - "isplanar": False, - "nchannels": 18, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba3_ism2", - }, - "OSBA_ISM2_HOA2": { - "name": "OSBA_ISM2_HOA2", - "ambi_order": 2, - "isplanar": False, - "nchannels": 11, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba2_ism2", - }, - "OSBA_ISM2_FOA": { - "name": "OSBA_ISM2_FOA", - "ambi_order": 1, - "isplanar": False, - "nchannels": 6, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba1_ism2", - }, - "OSBA_ISM3_HOA3": { - "name": "OSBA_ISM3_HOA3", - "ambi_order": 3, - "isplanar": False, - "nchannels": 19, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba3_ism3", - }, - "OSBA_ISM3_HOA2": { - "name": "OSBA_ISM3_HOA2", - "ambi_order": 2, - "isplanar": False, - "nchannels": 12, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba2_ism3", - }, - "OSBA_ISM3_FOA": { - "name": "OSBA_ISM3_FOA", - "ambi_order": 1, - "isplanar": False, - "nchannels": 7, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba1_ism3", - }, - "OSBA_ISM4_HOA3": { - "name": "OSBA_ISM4_HOA3", - "ambi_order": 3, - "isplanar": False, - "nchannels": 20, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba3_ism4", - }, - "OSBA_ISM4_HOA2": { - "name": "OSBA_ISM4_HOA2", - "ambi_order": 2, - "isplanar": False, - "nchannels": 13, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba2_ism4", - }, - "OSBA_ISM4_FOA": { - "name": "OSBA_ISM4_FOA", - "ambi_order": 1, - "isplanar": False, - "nchannels": 8, - "isloudspeaker": False, - "isheadphones": False, - "lfe_index": [], - "altname": "osba1_ism4", - }, -} - -# Channel indices of planar Ambisonic components of ACN -_planar_hoa_channels = np.array([0, 1, 3, 4, 8, 9, 15]) -# Channel indices of vertical Ambisonic components of ACN -_vert_hoa_channels = np.array([2, 5, 6, 7, 10, 11, 12, 13, 14]) - - -class Format: - def __init__(self, in_format: str = "FOA"): - self.name = None - self.altname = None - self.ambi_order = -1 - self.nchannels = None - self.isloudspeaker = False - self.isheadphones = False - self.lfe_index = [] - - # if it is a path, then treat as custom layout - if not isinstance(in_format, str) or in_format[-4:].lower() == ".txt": - with open(in_format, "r") as f_ls: - self.ls_azi = [ - float(x.strip()) for x in f_ls.readline().strip().split(",") - ] - self.ls_ele = [ - float(x.strip()) for x in f_ls.readline().strip().split(",") - ] - try: - self.lfe_index = [ - int(x.strip()) for x in f_ls.readline().strip().split(",") - ] - except: - self.lfe_index = [] - - if self.lfe_index: - [self.ls_azi.insert(i, 0.0) for i in self.lfe_index] - [self.ls_ele.insert(i, 0.0) for i in self.lfe_index] - - self.name = os.path.basename(in_format).replace(".txt", "") - self.altname = "CUSTOM_LS" - self.config_file = str(in_format) - self.isloudspeaker = True - self.nchannels = len(self.ls_azi) - self.isplanar = np.all([e == 0.0 for e in self.ls_ele]) - # search in predefined dictionary - else: - for config_name, config_dict in _format_configs.items(): - if ( - in_format.upper() == config_name - or in_format.upper() == config_dict["altname"].upper() - ): - for k, v in _format_configs[config_name].items(): - setattr(self, k, v) - - if not self.name: - raise SystemExit( - f"Spatial audio format '{in_format}' not supported. If 'EXT' is used, please change to ISM or MASA. Ensure it is same as 'in_format'" - ) - - def get_nchannels(self): - return self.nchannels - - def print_info(self): - attrs = vars(self) - for item in attrs: - print(f" {item}: {attrs[item]}") - - @staticmethod - def ambiorder_from_nchannels(out_nchans: int) -> int: - return int(np.sqrt(out_nchans) - 1) - - @staticmethod - def nchannels_from_ambiorder(ambi_order: int) -> int: - return (ambi_order + 1) ** 2 - - @staticmethod - def zero_vert_hoa_channels(x: np.ndarray) -> np.ndarray: - x[:, _vert_hoa_channels[_vert_hoa_channels < x.shape[1]]] = 0.0 - return x - - @staticmethod - def get_vert_hoa_channels() -> np.ndarray: - return _vert_hoa_channels - - @staticmethod - def list_all(long_descition: bool = False): - for key, value in _format_configs.items(): - if long_descition is True: - print(key, value) - else: - print(key) - - @staticmethod - def detect_format(nchannels: int) -> str: - config_name = None - - for k, v in _format_configs.items(): - if v["nchannels"] == nchannels: - config_name = v["name"] - break - - if config_name is None: - raise SystemExit("Spatial audio format not found") - - return config_name - - @staticmethod - def get_format_dict(in_format: str): - for config_name in _format_configs: - if in_format.upper() == config_name: - return _format_configs[config_name] - return None diff --git a/scripts/pyivastest/IvasBaseClass.py b/scripts/pyivastest/IvasBaseClass.py deleted file mode 100644 index c7c734c5c9733dc64da7b89bc891175d9d384462..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/IvasBaseClass.py +++ /dev/null @@ -1,464 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import json -import logging -import logging.handlers -import os -import platform -import re -import sys -from copy import deepcopy - -from .constants import ( - DECODER_OUTPUT_CONFIGS, - DEFAULT_IVAS_FORMAT_FILE, - LOG_FILE_DIR, - LOG_FILE_EXT, - SCRIPTS_CONFIGS_DIR, -) - -PROGRESS = 70 -CONSOLE = 80 -SILENT = 1000 -logging.addLevelName(CONSOLE, "CONSOLE") -logging.addLevelName(PROGRESS, "PROGRESS") -logging.addLevelName(SILENT, "SILENT") - - -class IvasConsoleFormatter(logging.Formatter): - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - - def format(self, record): - msg = super().format(record) - if record.levelno == PROGRESS: - msg = f"\r{msg}" - else: - if record.last_level == PROGRESS: - if msg and msg[0] != "\n": - msg = f"\n{msg}" - if msg and msg[-1] != "\n": - msg = f"{msg}\n" - return msg - - -class IvasLogFileFormatter(logging.Formatter): - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - self.regex = re.compile(r"\x1b\[[0-9]*m") - - def format(self, record): - msg = super().format(record) - # filter out any color escape sequences - msg = re.sub(self.regex, "", msg) - return msg - - -class IvasConsoleMessageRemoverFilter(logging.Filter): - def filter(self, record): - if record.levelno == PROGRESS or record.levelno == CONSOLE: - return False - else: - return True - - -class IvasLoggerConsoleHandler(logging.StreamHandler): - def __init__(self, stream=None): - if stream is None: - stream = sys.stdout - super().__init__(stream) - self.last_level = 0 - self.terminator = "" - - def filter(self, record): - - # Filter out any records that already go to the console - if "console" in record.__dict__ and record.console is True: - return False - this_level = record.levelno - record.last_level = self.last_level - self.last_level = this_level - return super().filter(record) - - -class IvasLogger(logging.Logger): - def __init__(self, name): - super(IvasLogger, self).__init__(name) - self.last_level = 0 - # make sure nothing is printed by default - self.addHandler(logging.NullHandler()) - - def console(self, msg, addtl_level=-1, *args, **kwargs): - super().log(CONSOLE, msg, *args, **kwargs) - # if we have an additional loglevel, log the message also with this level - # and indicate that we sent it also to the console - if addtl_level >= 0: - if "extra" in kwargs: - kwargs["extra"].update({"console": True}) - else: - kwargs.update({"extra": {"console": True}}) - super().log(addtl_level, msg, *args, **kwargs) - - def progress(self, msg, *args, **kwargs): - super().log(PROGRESS, msg, *args, **kwargs) - - -def getIvasLogger(name=None): - logging_class = logging.getLoggerClass() - logging._acquireLock() - try: - logging.setLoggerClass(IvasLogger) - logger = logging.getLogger(name) - logging.setLoggerClass(logging_class) - return logger - finally: - logging._releaseLock() - - -class IvasBaseClass(object): - """ - classdocs - """ - - def __init__( - self, - enable_logging=False, - console_logger_level="", - logger_name="IvasBaseClass", - log_level=logging.DEBUG, - ): - """ - Constructor - """ - self.enable_logging = enable_logging - self.logger = getIvasLogger(logger_name) - self.logger.setLevel(log_level) - self.console_log_handler = None - self.mem_log_handler = None - if self.enable_logging: - if not self.logger.handlers or not any( - [ - isinstance(h, logging.handlers.MemoryHandler) - for h in self.logger.handlers - ] - ): - self.memLogHandler = logging.handlers.MemoryHandler( - 2000, flushLevel=100, flushOnClose=True - ) - self.logger.addHandler(self.memLogHandler) - else: - for h in self.logger.handlers: - if isinstance(h, logging.handlers.MemoryHandler): - self.memLogHandler = h - break - if console_logger_level != "": - self.set_console_logger(console_logger_level) - # get system - self.uname = platform.uname() - self.system = platform.system() - - @property - def uname(self): - return self.__uname - - @uname.setter - def uname(self, value): - self.__uname = value - - @property - def enable_logging(self): - return self.__enable_logging - - @enable_logging.setter - def enable_logging(self, enable_logging): - self.__enable_logging = enable_logging - - @property - def logger(self): - return self.__logger - - @logger.setter - def logger(self, logger): - self.__logger = logger - - @property - def mem_log_handler(self): - return self.__mem_log_handler - - @mem_log_handler.setter - def mem_log_handler(self, mem_log_handler): - self.__mem_log_handler = mem_log_handler - - @property - def console_log_handler(self): - return self.__console_log_handler - - @console_log_handler.setter - def console_log_handler(self, console_log_handler): - self.__console_log_handler = console_log_handler - - def set_console_logger(self, loglevel): - if self.enable_logging and ( - not self.logger.handlers - or not any( - [isinstance(h, logging.StreamHandler) for h in self.logger.handlers] - ) - ): - console = IvasLoggerConsoleHandler() - console.setLevel(loglevel) - # set a format which is simpler for console use - formatter = IvasConsoleFormatter("%(message)s") - # tell the handler to use this format - console.setFormatter(formatter) - self.console_log_handler = console - # add the handler to the root logger - self.logger.addHandler(console) - else: - for h in self.logger.handlers: - if isinstance(h, logging.StreamHandler): - h.setLevel(loglevel) - self.console_log_handler = h - return - - def create_logging_file(self, log_dir, log_name, formatter=None): - log_file = log_name + LOG_FILE_EXT - log_file_name = os.path.join(log_dir, log_file) - if ( - self.enable_logging - and os.path.exists(log_dir) - and not any( - [ - isinstance(h, logging.FileHandler) - and os.path.realpath(h.baseFilename) - == os.path.realpath(log_file_name) - for h in self.logger.handlers - ] - ) - ): - logfilehandler = logging.FileHandler( - os.path.join(log_dir, log_file), mode="w" - ) - if formatter is None: - formatter = IvasLogFileFormatter( - " %(levelname)-8s | %(name)s - %(message)s" - ) - logfilehandler.setFormatter(formatter) - logfilefilter = IvasConsoleMessageRemoverFilter() - logfilehandler.addFilter(logfilefilter) - self.logger.addHandler(logfilehandler) - if self.mem_log_handler: - self.mem_log_handler.setTarget(logfilehandler) - self.mem_log_handler.flush() - self.logger.removeHandler(self.mem_log_handler) - self.mem_log_handler.close() - self.mem_log_handler = None - - def transform_path(self, path: str, target="windows") -> str: - if "cygwin" in self.uname.system.lower(): - if target == "windows": - # replace /cygdrive/ with :, everthing else should also with slashes... - transformed_path = re.sub( - "^/cygdrive/(?P[a-z])/(?P.*)", - "\g:/\g", - path, - ) - # transformed_path = re.sub("/","\\\\",transformed_path) - elif target == "cygwin": - transformed_path = re.sub("\\\\", "/", path) - transformed_path = re.sub( - "^(?P[a-z]):/(?P.*)", - "/cygdrive/\g/\g", - transformed_path, - ) - else: - transformed_path = path - else: - transformed_path = path - return transformed_path - - @staticmethod - def get_enc_file_name(path: str, item_base_name: str, mode: str) -> str: - return os.path.join(path, "enc", "".join([item_base_name, "_", mode, ".192"])) - - @staticmethod - def get_enc_log_file_name( - path: str, item_base_name: str, mode: str, log_dir=LOG_FILE_DIR - ) -> str: - enc_log_name_tmp = "".join([item_base_name, "_", mode, ".enc", LOG_FILE_EXT]) - enc_log_name = os.path.join(path, log_dir, enc_log_name_tmp) - return enc_log_name - - @staticmethod - def get_dec_file_name( - path: str, item_base_name: str, output_config: str, out_ext=".wav" - ) -> str: - output_config_desc = IvasBaseClass.get_oc_desc(output_config) - dec_file_name = os.path.join( - path, "dec", "".join([item_base_name, ".dec.", output_config_desc, out_ext]) - ) - return dec_file_name - - @staticmethod - def get_dec_log_file_name( - path: str, item_base_name: str, output_config: str, log_dir=LOG_FILE_DIR - ): - output_config_desc = IvasBaseClass.get_oc_desc(output_config) - dec_log_name_tmp = "".join( - [item_base_name, ".dec.", output_config_desc, LOG_FILE_EXT] - ) - dec_log_name = os.path.join(path, log_dir, dec_log_name_tmp) - return dec_log_name - - @staticmethod - def get_oc_desc(output_config: str) -> str: - if output_config.upper() not in DECODER_OUTPUT_CONFIGS: - output_config_desc = os.path.splitext(os.path.basename(output_config))[0] - else: - output_config_desc = output_config - return output_config_desc - - @staticmethod - def read_format_dict(format_file: str): - if not format_file: - format_file = os.path.join(SCRIPTS_CONFIGS_DIR, DEFAULT_IVAS_FORMAT_FILE) - - if not os.path.exists(format_file): - # add config path and try again - format_file = os.path.join(SCRIPTS_CONFIGS_DIR, format_file) - if not os.path.exists(format_file): - return None - with open(format_file, "r") as fp: - all_formats = IvasBaseClass.generate_all_formats(json.load(fp)) - - return all_formats - - @staticmethod - def generate_all_formats(all_formats_json: dict) -> dict: - all_formats = None - if all_formats_json is not None: - if "version" in all_formats_json: - if all_formats_json["version"] == 2: - all_formats = IvasBaseClass.generate_all_formats_v2( - all_formats_json - ) - else: - all_formats = all_formats_json - return all_formats - - @staticmethod - def generate_all_formats_v2(all_formats_json: dict) -> dict: - all_formats = None - for ivas_format in all_formats_json: - if ivas_format != "version": - if all_formats is None: - all_formats = {} - all_formats.update({ivas_format: {}}) - for mode_group in all_formats_json[ivas_format]: - for bw in all_formats_json[ivas_format][mode_group]["bitrates"]: - for br in all_formats_json[ivas_format][mode_group]["bitrates"][ - bw - ]: - new_mode_dict = deepcopy( - all_formats_json[ivas_format][mode_group] - ) - if new_mode_dict["rs"] == True: - table_bitrate = br - bitrate = all_formats_json[ivas_format][mode_group][ - "bitrates" - ][bw][br] - mode_bitrate = br.replace("/", "_") - else: - # make sure the modes have the same names as the v1 ones... - if br % 1000 == 0 and ( - br > 10000 - and not all_formats_json[ivas_format][mode_group][ - "amr" - ] - ): - table_bitrate = br // 1000 - mode_bitrate = str(table_bitrate) - else: - table_bitrate = (br // 100) / 10 - mode_bitrate = f"{table_bitrate:04.1f}".replace( - ".", "_" - ) - bitrate = br - new_mode_dict.pop("bitrates") - new_mode_dict["bw"] = bw - new_mode_dict["bitrate"] = bitrate - new_mode_dict["table_name"] = new_mode_dict[ - "table_name" - ].format(table_bitrate=table_bitrate, bandwidth=bw.upper()) - new_mode_dict["encoptions"] = [ - x.format(bandwidth=bw) - for x in new_mode_dict["encoptions"] - ] - - new_mode = mode_group.format( - bitrate=mode_bitrate, bandwidth=bw - ) - all_formats[ivas_format].update({new_mode: new_mode_dict}) - - return all_formats - - -if __name__ == "__main__": - import time - - # my_class = IvasClass(console_logger_level=logging.INFO,logger_name = "top") - my_class = IvasBaseClass( - logger_name="top", enable_logging=True, console_logger_level=PROGRESS - ) - my_class2 = IvasBaseClass(logger_name="top.bottom", enable_logging=False) - my_class.set_console_logger(logging.INFO) - myformatter = logging.Formatter("%(name)s - %(levelname)-8s \n %(message)s") - my_class.create_logging_file(".", "test", formatter=myformatter) - my_class.logger.info("test_info") - my_class.logger.console( - "\x1b[31mtest_console_info\x1b[0m test_console_info", logging.INFO - ) - my_class.logger.console("test_console") - my_class2.logger.console("bottom") - for i in range(5): - my_class.logger.progress("test_progress {}".format(i)) - my_class2.logger.info("bottom_progress {}".format(i)) - # my_class.logger.console("test_prgress {}".format(i)) - time.sleep(0.3) - my_class.logger.info("test_info") - my_class.logger.console("Mitte des Filmes") - for i in range(5, 10): - my_class2.logger.progress("bottom_progress {}".format(i)) - my_class.logger.info("test_info {}".format(i)) - # my_class.logger.console("test_prgress {}".format(i)) - time.sleep(0.3) - my_class.logger.console("test_silent_end") diff --git a/scripts/pyivastest/IvasModeAnalyzer.py b/scripts/pyivastest/IvasModeAnalyzer.py deleted file mode 100644 index 8d1dd2ddf082e51435115fe8a54d9aa98caeb804..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/IvasModeAnalyzer.py +++ /dev/null @@ -1,1073 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import functools -import logging -import operator -import os -import re -from copy import deepcopy - -from pyivastest.constants import LOG_FILE_EXT -from pyivastest.IvasBaseClass import IvasBaseClass -from pyivastest.IvasModeCollector import IvasModeCollector - -INSTRUMENTED_RESULTS = { - "WMOPS": { - "keyword": "total", - "number_format": "{:.5g}", - "position": 2, - "max_or_add": "add", - "keyword_suffix": False, - "strip_suffix": False, - "encdec": 2, - }, - "RAM": { - "keyword": "Maximum RAM (stack + heap) size:", - "number_format": "{:.0f}", - "position": 0, - "max_or_add": "add", - "keyword_suffix": False, - "strip_suffix": False, - "encdec": 2, - }, - "HEAP": { - "keyword": "Maximum inter-frame heap size:", - "number_format": "{:.0f}", - "position": 0, - "max_or_add": "add", - "keyword_suffix": False, - "strip_suffix": False, - "encdec": 2, - }, - "HEAP_INTRA": { - "keyword": "Maximum intra-frame heap size:", - "number_format": "{:.0f}", - "position": 0, - "max_or_add": "add", - "keyword_suffix": False, - "strip_suffix": False, - "encdec": 2, - }, - "STACK": { - "keyword": "Maximum stack size:", - "number_format": "{:.0f}", - "position": 0, - "max_or_add": "max", - "keyword_suffix": False, - "strip_suffix": False, - "encdec": 2, - }, - "PROM": { - "keyword": "Program ROM size", - "number_format": "{:.0f}", - "position": 0, - "max_or_add": "add", - "keyword_suffix": True, - "strip_suffix": True, - "encdec": 4, - }, - "TROM": { - "keyword": "Table ROM (const data) size", - "number_format": "{:.0f}", - "position": 0, - "max_or_add": "add", - "keyword_suffix": True, - "strip_suffix": True, - "encdec": 4, - }, -} -HTML_DOCTYPE = """""" - -HTML_META = ( - """""" -) - -HTML_STYLE = """ -""" - - -class IvasModeAnalyzer(IvasModeCollector): - """ """ - - def __init__( - self, - dir_name=".", - site_config="", - log_dir="logs", - formats_fname=None, - formats_dict={}, - enable_logging=False, - console_logger_level="", - logger_name="IvasModeCollector", - log_level=logging.DEBUG, - **kwargs, - ): - super().__init__( - site_config=site_config, - formats_fname=formats_fname, - formats_dict=formats_dict, - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - **kwargs, - ) - self.dir = dir_name - self.log_dir = log_dir - self.available_logs = {} - self.log_select_list = {} - self.selected_logs = {} - self.check = "" - self.analyze_encoder = True - self.analyze_decoder = True - self.html_table = None - - def ls_modes(self): - """ """ - # check for every ivas_format in all_modes if there are encoder and decoder logs - if not self.flat_mode_list: - self.collect_mode_configs() - log_dir = os.path.join(self.dir, self.log_dir) - all_log_files = os.listdir(log_dir) - for mode in self.flat_mode_list: - for f in all_log_files: - search_string = re.escape("_{}".format(mode)) - if ( - re.search(search_string, f) - and os.path.splitext(f)[1] == LOG_FILE_EXT - ): - # this is a log file belonging to the ivas_format - if mode not in self.available_logs: - new_mode = { - mode: { - "items": {}, - "table_name": self.flat_mode_list[mode]["cmd"][ - "table_name" - ], - "bitrate": self.flat_mode_list[mode]["cmd"]["bitrate"], - "bw": self.flat_mode_list[mode]["cmd"]["bw"], - "oc_list": [], - "ivas_format": self.flat_mode_list[mode]["ivas_format"], - } - } - self.available_logs.update(new_mode) - # get encoder or decoder - f = os.path.splitext(f)[0] - if os.path.splitext(f)[1] == ".enc": - f = os.path.splitext(f)[0] - item = f.split("".join(["_", mode]))[0] - if item not in self.available_logs[mode]["items"]: - self.available_logs[mode]["items"].update( - {item: {"enc": True, "dec": []}} - ) - else: - self.available_logs[mode]["items"][item]["enc"] = True - else: - oc = os.path.splitext(f)[1][1:] - f = os.path.splitext(os.path.splitext(f)[0])[0] - item, suffices = f.split("".join(["_", mode])) - if item not in self.available_logs[mode]["items"]: - self.available_logs[mode]["items"].update( - {item: {"enc": False, "dec": [oc]}} - ) - else: - # filter out also logs for bitstream postprocessing - if ( - oc - not in self.available_logs[mode]["items"][item]["dec"] - and oc != "proc" - ): - self.available_logs[mode]["items"][item]["dec"].append( - oc - ) - if oc not in self.available_logs[mode]["oc_list"]: - self.available_logs[mode]["oc_list"].append(oc) - - @staticmethod - def get_log_value(log, keyword, position, strip_suffix=0): - """ - - Parameters - ---------- - log : - - keyword : - - position : - - strip_suffix : - (Default value = 0) - - Returns - ------- - - """ - value = -1.0 - for line in log: - line = line.rstrip("\n") - foundline = re.findall(keyword, line) - if foundline: - value = line.split()[position] - if strip_suffix == 1: - value = re.search("[0-9\.]*", value)[0] - return float(value) - return float(value) - - @staticmethod - def get_log_value_from_file( - filename: str, keywords: list, position: int, strip_suffix=0 - ): - """ - - Parameters - ---------- - filename : log filename - - keywords : list of keywords to be searched in the log file (must be present on a single line) - - position : index to the list of extracted values - - strip_suffix : - (Default value = 0) - - Returns - ------- - - First value extracted from the line in the log file containing all keywords - - """ - - if type(keywords) != list: - keywords = [keywords] - - if os.path.exists(filename): - fp = open(filename) - loglines = fp.readlines() - fp.close() - matching_lines = [ - line - for line in loglines - if all(keyword in line for keyword in keywords) - ] - - for line in matching_lines: - all_values_on_line = [ - float(s) for s in line.split() if re.match(r"^[0-9\.]*$", s) - ] - if all_values_on_line: - return all_values_on_line[position] - - return -1.0 - - def sort_log_modes(self): - list_to_sort = [] - for mode in self.selected_logs: - bitrate = self.selected_logs[mode]["bitrate"] - if isinstance(bitrate, str): - if "{sw_files_path}" not in bitrate: - bitrate = bitrate.rjust(6, "0") - elif isinstance(bitrate, int): - bitrate = "{:06d}".format(bitrate) - # print(mode) - list_to_sort.append( - ( - mode, - self.selected_logs[mode]["ivas_format"], - self.selected_logs[mode]["bw"], - bitrate, - ) - ) - # sort by BW, descending - list_to_sort.sort(key=operator.itemgetter(3)) - list_to_sort.sort(key=operator.itemgetter(2), reverse=True) - # sort by bitrate, ascending - - # sort by ivas format - list_to_sort.sort(key=operator.itemgetter(1)) - return [mode_tuple[0] for mode_tuple in list_to_sort] - - def get_instrumented_table( - self, - keyword, - position, - number_format="{:.5g}", - strip_suffix=0, - encdec=2, - keyword_suffix=0, - max_or_add="add", - ): - """ - - Parameters - ---------- - ivas_format : - - mode_dict : - - keyword : - - position : - - number_format : - (Default value = "{:.5g}") - strip_suffix : - (Default value = 0) - encdec : - (Default value = 2) - keyword_suffix : - (Default value = 0) - max_or_add : - (Default value = 'add') - binaural : - (Default value = None) - sub_dir : - (Default value = '.') - - Returns - ------- - - """ - - if encdec == 2: - if max_or_add == "add": - result_table = [["conf", "enc", "dec", "total"]] - elif max_or_add == "max": - result_table = [["conf", "enc", "dec", "max"]] - elif encdec == 0: - result_table = [["conf", "enc"]] - elif encdec == 1: - result_table = [["conf", "dec"]] - elif encdec == 3: - result_table = [["conf", "com"]] - else: - if max_or_add == "add": - result_table = [["conf", "enc", "dec", "com", "rend", "total"]] - if max_or_add == "max": - result_table = [["conf", "enc", "dec", "com", "rend", "max"]] - - sorted_modes = self.sort_log_modes() - - for mode in sorted_modes: # sorted(self.selected_logs.keys()): - formatted_name = self.selected_logs[mode]["table_name"] - if encdec == 3 or encdec == 4: - keyword_suffix = 1 - - for item in self.selected_logs[mode]["items"]: - enc_value = -1 - com_value = -1 - if self.selected_logs[mode]["items"][item]["enc"]: - enc_log_name_tmp = "".join([item, "_", mode, ".enc", LOG_FILE_EXT]) - enc_log_name = os.path.join( - self.dir, self.log_dir, enc_log_name_tmp - ) - if encdec == 2 or encdec == 0 or encdec == 4: - # get enc - if keyword_suffix == 1: - enc_value = max( - enc_value, - self.get_log_value_from_file( - enc_log_name, - [keyword, "lib_enc"], - position, - strip_suffix=strip_suffix, - ), - ) - else: - enc_value = max( - enc_value, - self.get_log_value_from_file( - enc_log_name, - keyword, - position, - strip_suffix=strip_suffix, - ), - ) - # print(enc_value) - if encdec == 3 or encdec == 4: - # common counts should be equal in enc and dec, just take the enc value - com_value = max( - com_value, - self.get_log_value_from_file( - enc_log_name, - [keyword, "lib_com"], - position, - strip_suffix=strip_suffix, - ), - ) - - # enc or common only, we do not collect dec values... - if encdec == 0 or encdec == 3: - if encdec == 0: - result_line = [formatted_name, number_format.format(enc_value)] - elif encdec == 3: - result_line = [formatted_name, number_format.format(com_value)] - else: - for oc in self.selected_logs[mode]["oc_list"]: - formatted_name_oc = formatted_name + " to " + oc - dec_value = -1 - rend_value = -1 - for item in self.selected_logs[mode]["items"]: - if oc in self.selected_logs[mode]["items"][item]["dec"]: - dec_log_name = self.get_dec_log_file_name(item, mode, oc) - # get dec - if keyword_suffix == 1: - dec_value = max( - dec_value, - self.get_log_value_from_file( - dec_log_name, - [keyword, "lib_dec"], - position, - strip_suffix=strip_suffix, - ), - ) - else: - dec_value = max( - dec_value, - self.get_log_value_from_file( - dec_log_name, - keyword, - position, - strip_suffix=strip_suffix, - ), - ) - # get rend - if keyword_suffix == 1: - rend_value = max( - rend_value, - self.get_log_value_from_file( - dec_log_name, - [keyword, "lib_rend"], - position, - strip_suffix=strip_suffix, - ), - ) - else: - rend_value = max( - rend_value, - self.get_log_value_from_file( - dec_log_name, - keyword, - position, - strip_suffix=strip_suffix, - ), - ) - if encdec == 2: - if max_or_add == "add": - total = number_format.format( - float(enc_value) + float(dec_value) - ) - elif max_or_add == "max": - total = number_format.format( - max(float(enc_value), float(dec_value)) - ) - result_line = [ - formatted_name_oc, - number_format.format(enc_value), - number_format.format(float(dec_value)), - total, - ] - - elif encdec == 1: - result_line = [ - formatted_name_oc, - number_format.format(dec_value), - ] - - elif encdec == 4: - if max_or_add == "add": - total = number_format.format( - float(enc_value) - + float(dec_value) - + float(com_value) - + float(rend_value) - ) - elif max_or_add == "max": - total = number_format.format( - max( - float(enc_value) + float(com_value), - float(dec_value) - + float(com_value) - + float(rend_value), - ) - ) - result_line = [ - formatted_name_oc, - number_format.format(enc_value), - number_format.format(float(dec_value)), - number_format.format(com_value), - number_format.format(rend_value), - total, - ] - result_table.append(result_line) - return result_table - - @staticmethod - def parse_valgrind_log(filename): - """ - - Parameters - ---------- - filename : - - - Returns - ------- - - """ - loglines = [] - if os.path.exists(filename): - fp = open(filename) - loglines = fp.readlines() - vg_errors = {"errors": 0, "contexts": 0, "heap_bytes": 0, "heap_blocks": 0} - for line in loglines: - # print(line) - if re.findall("ERROR SUMMARY", line): - split_line = line.split() - vg_errors["errors"] = int(split_line[3].replace(",", "")) - vg_errors["contexts"] = int(split_line[6].replace(",", "")) - - elif re.findall("in use at exit", line): - split_line = line.split() - vg_errors["heap_bytes"] = int(split_line[5].replace(",", "")) - vg_errors["heap_blocks"] = int(split_line[8].replace(",", "")) - return vg_errors - - @staticmethod - def parse_build_log(filename): - """ - - Parameters - ---------- - filename : - - - Returns - ------- - - """ - loglines = [] - if os.path.exists(filename): - fp = open(filename) - loglines = fp.readlines() - build_errors = 0 - for line in loglines: - # print(line) - if re.findall("ERROR[ :]", str.upper(line)): - build_errors += 1 - if re.findall("WARNING[ :]", str.upper(line)): - build_errors += 1 - return build_errors - - @staticmethod - def parse_clang_log(filename, clang_num): - """ - Parse the output from Clang sanitizers and count number of sanitizer errors - and general runtime errors - """ - - search_choices = { - 1: "MemorySanitizer:", - 2: "AddressSanitizer", - 3: "runtime error", # for UndefinedBehaviorSanitizer, name of the sanitizer is not printed out - } - search_string = search_choices[clang_num] - - if os.path.exists(filename): - with open(filename) as f: - lines = f.readlines() - else: - lines = list() - - num_sanitizer_errors = 0 - num_run_errors = 0 - for line in lines: - has_search_string = search_string in line - is_error = re.findall("ERROR[ :](?!PATTERN FILE)", str.upper(line)) - is_warn = re.findall("WARNING[ :]", str.upper(line)) - is_assert = re.findall("ASSERTION", str.upper(line)) - - if has_search_string and (is_error or is_warn): - num_sanitizer_errors += 1 - elif (not has_search_string and (is_error or is_warn)) or is_assert: - num_run_errors += 1 - - return num_sanitizer_errors, num_run_errors - - def print_valgrind_errors(self, log_name, vg_errors): - """ - - Parameters - ---------- - log_name : - - vg_errors : - - - Returns - ------- - - """ - if vg_errors["errors"] != 0 or vg_errors["heap_bytes"] != 0: - self.logger.console( - "Valgrind memcheck error for {}".format(log_name), logging.ERROR - ) - if vg_errors["errors"] != 0: - self.logger.console( - " {} errors in {} contexts".format( - str(vg_errors["errors"]), str(vg_errors["contexts"]) - ), - logging.ERROR, - ) - if vg_errors["heap_bytes"] != 0: - self.logger.console( - " Heap not empty: {} bytes in {} blocks".format( - str(vg_errors["heap_bytes"]), str(vg_errors["heap_blocks"]) - ), - logging.ERROR, - ) - - def print_clang_errors(self, log_name, num_errors, clang_num): - if num_errors != 0: - self.logger.console( - "CLANG{} reports {} error(s) for {}".format( - clang_num, num_errors, log_name - ), - logging.ERROR, - ) - - def get_dec_log_file_name(self, item, mode, oc): - suffices = None - if self.global_bitstream_processing is not None: - suffices = self.get_bs_processing_suffices(self.global_bitstream_processing) - - dec_item_base_name = "_".join( - [x for x in [item, mode, suffices] if x is not None] - ) - log_name = IvasBaseClass.get_dec_log_file_name(self.dir, dec_item_base_name, oc) - return log_name - - def get_run_errors(self, failed_modes): - - if self.check.lower().startswith("clang"): - num = int(self.check[-1]) - parse_func = functools.partial(self.parse_clang_log, clang_num=num) - print_func = functools.partial(self.print_clang_errors, clang_num=num) - elif self.check.lower().startswith("valgrind"): - parse_func = self.parse_valgrind_log - print_func = self.print_valgrind_errors - - num_total_errors = 0 - self.ls_modes() - for mode, mode_dict in self.available_logs.items(): - for item, item_dict in mode_dict["items"].items(): - if item_dict["enc"] and self.analyze_encoder: - log_name_tmp = "".join([item, "_", mode, ".enc", LOG_FILE_EXT]) - log_name = os.path.join(self.dir, self.log_dir, log_name_tmp) - if self.check == "VALGRIND": - errors = parse_func(log_name) - num_sanitizer_errors = errors["errors"] - if errors["heap_bytes"] > 0: - num_sanitizer_errors += 1 - num_run_errors = 0 # hack for now - else: - num_sanitizer_errors, num_run_errors = parse_func(log_name) - errors = num_sanitizer_errors - - is_failed_mode = mode in failed_modes["enc"] - - # add error to html report if it is an actual sanitizer error - # or if the en-/decoder crashed - if ( - num_sanitizer_errors > 0 or is_failed_mode - ) and self.html_table is not None: - self.add_error_to_html(mode, item, log_name, "Encoder") - - num_total_errors += num_sanitizer_errors + num_run_errors - print_func(log_name, errors) - if self.analyze_decoder: - for oc in item_dict["dec"]: - log_name = self.get_dec_log_file_name(item, mode, oc) - if self.check == "VALGRIND": - errors = parse_func(log_name) - num_sanitizer_errors = errors["errors"] - num_run_errors = 0 # hack for now - else: - num_sanitizer_errors, num_run_errors = parse_func(log_name) - errors = num_sanitizer_errors - - # check for failed decoder - oc_failed_at_least_once = oc in failed_modes["dec"] - if oc_failed_at_least_once: - mode_failed_for_oc = mode in failed_modes["dec"][oc] - else: - mode_failed_for_oc = False - is_failed_mode = oc_failed_at_least_once and mode_failed_for_oc - - # add error to html report if it is an actual sanitizer error - # or if the en-/decoder crashed - if ( - num_sanitizer_errors > 0 or is_failed_mode - ) and self.html_table is not None: - self.add_error_to_html(mode, item, log_name, "Decoder", oc) - - num_total_errors += num_sanitizer_errors + num_run_errors - print_func(log_name, errors) - if num_total_errors == 0: - self.logger.console("{} reports no errors".format(self.check), logging.INFO) - - return num_total_errors - - def get_valgrind_errors(self): - - total_vg_errors = 0 - self.ls_modes() - for mode, mode_dict in self.available_logs.items(): - for item, item_dict in mode_dict["items"].items(): - if item_dict["enc"]: - log_name_tmp = "".join([item, "_", mode, ".enc", LOG_FILE_EXT]) - log_name = os.path.join(self.dir, self.log_dir, log_name_tmp) - vg_errors = self.parse_valgrind_log(log_name) - - # TODO: restructure to only do stuff once - if vg_errors["errors"] > 0 and self.html_table is not None: - self.add_error_to_html(mode, item, log_name, "Encoder") - - total_vg_errors += vg_errors["errors"] - self.print_valgrind_errors(log_name, vg_errors) - for oc in item_dict["dec"]: - log_name = self.get_dec_log_file_name(item, mode, oc) - vg_errors = self.parse_valgrind_log(log_name) - - if vg_errors["errors"] > 0 and self.html_table is not None: - self.add_error_to_html(mode, item, log_name, "Decoder", oc) - - total_vg_errors += vg_errors["errors"] - self.print_valgrind_errors(log_name, vg_errors) - if total_vg_errors == 0: - self.logger.console("Valgrind reports no errors", logging.INFO) - - def get_build_errors(self): - """ """ - build_log = os.path.join(self.dir, "build" + LOG_FILE_EXT) - build_errors = self.parse_build_log(build_log) - if build_errors > 0: - self.logger.console( - "Building problems, {} warnings or errors reported".format( - str(build_errors) - ), - logging.ERROR, - ) - return build_errors - - def get_errors(self, failed_modes): - """ """ - n_build_err = self.get_build_errors() - n_run_err = 0 - if self.check in ["CLANG1", "CLANG2", "CLANG3", "VALGRIND"]: - n_run_err = self.get_run_errors(failed_modes) - - return n_build_err, n_run_err - - def set_select_list(self, select_list): - self.log_select_list = select_list - pass - - def add_select_list(self, select_list): - for mode in select_list: - if mode not in self.log_select_list: - self.log_select_list.update({mode: select_list[mode]}) - else: - for oc in select_list[mode]: - if oc not in self.log_select_list[mode]: - self.log_select_list[mode].append(oc) - pass - - def select_logs(self): - if self.log_select_list: - self.selected_logs = {} - for mode in self.log_select_list: - if mode in self.available_logs: - self.selected_logs.update( - {mode: deepcopy(self.available_logs[mode])} - ) - new_oc_list = [] - for oc in self.log_select_list[mode]: - if oc in self.selected_logs[mode]["oc_list"]: - new_oc_list.append(oc) - self.selected_logs[mode]["oc_list"] = new_oc_list - else: - self.selected_logs = deepcopy(self.available_logs) - - def get_instrumented_value(self, value, encdec=-1): - - if value in INSTRUMENTED_RESULTS: - self.select_logs() - if encdec == -1: - encdec = INSTRUMENTED_RESULTS[value]["encdec"] - return self.get_instrumented_table( - INSTRUMENTED_RESULTS[value]["keyword"], - INSTRUMENTED_RESULTS[value]["position"], - encdec=encdec, - number_format=INSTRUMENTED_RESULTS[value]["number_format"], - max_or_add=INSTRUMENTED_RESULTS[value]["max_or_add"], - keyword_suffix=INSTRUMENTED_RESULTS[value]["keyword_suffix"], - strip_suffix=INSTRUMENTED_RESULTS[value]["strip_suffix"], - ) - - @staticmethod - def write_confluence_table(f, table): - """ - - Parameters - ---------- - f : - - table : - - - Returns - ------- - - """ - header = table.pop(0) - # write header - f.write("".join(["||", "||".join(header), "||\r\n"])) - for line in table: - f.write("".join(["|", "|".join(line), "|\r\n"])) - - @staticmethod - def write_confluence_table_chart_header(f): - """ - - Parameters - ---------- - f : - - - Returns - ------- - - """ - f.write("{table-chart:type=Stacked Column|column = conf|aggregation=enc}\r\n") - - @staticmethod - def write_confluence_table_chart_footer(f): - """ - - Parameters - ---------- - f : - - - Returns - ------- - - """ - f.write("{table-chart}\r\n") - - @staticmethod - def write_confluence_table_chart(csv_file_name, result_table): - """ - - Parameters - ---------- - csv_file_name : - - result_table : - - - Returns - ------- - - """ - with open(csv_file_name + ".confluence", "w", newline="\n") as f: - IvasModeAnalyzer.write_confluence_table_chart_header(f) - IvasModeAnalyzer.write_confluence_table(f, result_table) - IvasModeAnalyzer.write_confluence_table_chart_footer(f) - - @staticmethod - def write_csv_file(csv_file_name, result_table): - """ - - Parameters - ---------- - csv_file_name : - - result_table : - - - Returns - ------- - - """ - - if not os.path.exists(os.path.dirname(csv_file_name)): - os.makedirs(os.path.dirname(csv_file_name)) - - with open(csv_file_name + ".csv", "w", newline="\n") as f: - header = result_table.pop(0) - # write header - f.write("{}\r\n".format(";".join(header))) - for line in result_table: - f.write("{}\r\n".format(";".join(line))) - f.close() - - def instrumented_to_confluence(self, value, filename, encdec=-1): - table = self.get_instrumented_value(value, encdec=encdec) - IvasModeAnalyzer.write_confluence_table_chart(filename, table) - - def instrumented_to_csv(self, value, filename, encdec=-1): - table = self.get_instrumented_value(value, encdec=encdec) - IvasModeAnalyzer.write_csv_file(filename, table) - - def all_instrumented_to_csv(self, basefilename, encdec=-1): - basefilename = os.path.abspath(basefilename) - for value in INSTRUMENTED_RESULTS: - table = self.get_instrumented_value(value, encdec=encdec) - IvasModeAnalyzer.write_csv_file("".join([basefilename, "_", value]), table) - - def add_error_to_html(self, mode, audiofile, logfile, enc_dec, oc=None): - tbl_cell = "{}" - tbl_row = "\n{}\n" - - upload_location = os.environ.get("UPLOAD_LOCATION", None) - if upload_location is not None: - # environment variable is given, add check subdir - upload_location_logs = upload_location + "/" + self.check + "/logs" - upload_location_fer = upload_location - else: - # use current working copy dir to make links work also on local machines - upload_location_logs = self.dir + "/logs" - upload_location_fer = None - - logfile_url = "{}/{}".format(upload_location_logs, os.path.basename(logfile)) - logfile_link = "{}".format( - logfile_url, os.path.basename(logfile) - ) - - fer_file_link = "-" - if enc_dec == "Decoder" and self.global_bitstream_processing is not None: - for processing in self.global_bitstream_processing["proc_chain"]: - if "-fer" in processing: - # fer file is the 5th argument in the processing command - fer_file = processing[4] - if upload_location_fer is not None: - fer_file_url = "{}/{}".format( - upload_location_fer, os.path.basename(fer_file) - ) - fer_file_link = "{}".format( - fer_file_url, os.path.basename(fer_file) - ) - else: - fer_file_link = os.path.basename(fer_file) - - if oc is not None: - assert enc_dec == "Decoder" - enc_dec = enc_dec + " " + oc - - row_data = [mode, enc_dec, fer_file_link, audiofile, logfile_link] - row = "\n".join([tbl_cell.format(elem) for elem in row_data]) - self.html_table.append(tbl_row.format(row)) - - def write_html_file(self, check, basefilename, revision): - - # create header for table - hdr_tmpl = "{}" - - columns = ["Mode", "Encoder/Decoder", "FER-Pattern", "Item", "Logfile"] - tbl_hdr = "\n".join([hdr_tmpl.format(elem) for elem in columns]) - self.html_table.insert(0, "\n" + tbl_hdr + "\n") - - # assemble page - page_tmpl = "{}\n\n\n{}\n{}\n{}\n\n{}\n" - table_tmpl = "\n{}\n
" - title_tmpl = "Error report for {}" - fname_tmpl = "{}_{}.html" - body_tmpl = "

{} report on revision {}

\n{}" - - table = table_tmpl.format("\n".join(self.html_table)) - title = title_tmpl.format(check) - body = body_tmpl.format(check, revision, table) - page = page_tmpl.format(HTML_DOCTYPE, HTML_META, title, HTML_STYLE, body) - fname = fname_tmpl.format(basefilename, check) - with open(fname, "w") as f: - for line in page: - f.write(line) - - @staticmethod - def get_snr_report(file_name): - SNR_report = {} - if os.path.exists(file_name): - fp = open(file_name, "r") - lines = fp.readlines() - for line in lines: - line = line.rstrip("\n") - if re.findall("SNR report", line): - continue - elif re.findall("SNR", line): - values = line.split() - SNR_report.update( - { - values[0]: { - "SNR": float(values[1]), - "SegSNR": float(values[4]), - "WSegSNR": float(values[7]), - } - } - ) - return SNR_report diff --git a/scripts/pyivastest/IvasModeCollector.py b/scripts/pyivastest/IvasModeCollector.py deleted file mode 100644 index 90274544dcd38a809839eabdcb6f374b888d8263..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/IvasModeCollector.py +++ /dev/null @@ -1,542 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import json -import logging -import os -import os.path -from copy import deepcopy - -from pyivastest import IvasBaseClass, constants - - -class IvasModeCollector(IvasBaseClass.IvasBaseClass): - """ - Basic class for handling IVAS formats, selecting subsets of formats, modes, band width, and output configurations. - Also does the handling of the input files to be coded. - :param site_config: file name of the basis configuration (without the .json file extension), - defaults to the empty string and the uses FhG_{system} depending on the operating system. - """ - - def __init__( - self, - site_config="", - in_dir_dict={}, - formats_fname="", - formats_dict={}, - enable_logging=False, - console_logger_level="", - logger_name="IvasModeCollector", - log_level=logging.DEBUG, - ): - - super().__init__( - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - ) - if formats_dict: - self.all_formats = formats_dict - else: - if not formats_fname: - formats_fname = os.path.join( - constants.SCRIPTS_CONFIGS_DIR, constants.DEFAULT_IVAS_FORMAT_FILE - ) - self.all_formats = self.read_format_dict(formats_fname) - if self.all_formats is None: - # fall back to standard - self.logger.warning( - "IVAS Format dictonary file {} does not exist, falling back to {}!".format( - formats_fname, constants.DEFAULT_IVAS_FORMAT_FILE - ) - ) - self.all_formats = self.read_format_dict( - os.path.join( - constants.SCRIPTS_CONFIGS_DIR, - constants.DEFAULT_IVAS_FORMAT_FILE, - ) - ) - # fp.close() - self.flat_mode_list = None - - have_site_config_file = False - if site_config == "": - site_config = "FhG" - if os.path.splitext(site_config)[1] == ".json": - site_config_file = os.path.realpath(site_config) - site_config_dir, site_config_basename = os.path.split(site_config_file) - site_config = os.path.splitext(site_config_basename)[0] - have_site_config_file = True - else: - site_config_file = os.path.realpath(site_config) - site_config_dir, site_config = os.path.split(site_config_file) - - self.logger.info( - "Looking for site config file {} in {} and {}".format( - site_config, site_config_dir, constants.SCRIPTS_CONFIGS_DIR - ) - ) - site_config_file = self.test_for_config_file( - site_config_dir, "".join([site_config, ".json"]) - ) - if not site_config_file: - # maybe we need to add the platform - if not have_site_config_file: - self.logger.info( - "Site config file {} does not exist, testing for platform".format( - site_config - ) - ) - if ( - self.uname.system == "Windows" - or "cygwin" in self.uname.system.lower() - ): - site_config = "".join([site_config, "_windows"]) - elif self.uname.system == "Linux": - site_config = "".join([site_config, "_linux"]) - elif self.uname.system == "Darwin": - if self.uname.machine.endswith("64"): - site_config = "".join([site_config, "_macos_x86_64"]) - else: - site_config = "".join([site_config, "_macos"]) - self.logger.info( - "Looking for site config file with platform {}".format(site_config) - ) - - site_config_file = self.test_for_config_file( - site_config_dir, "".join([site_config, ".json"]) - ) - if not site_config_file: - self.logger.console("Site config file not found!", logging.ERROR) - else: - fp = open(site_config_file, "r") - self.config = json.load(fp) - if "cygwin" in self.uname.system.lower(): - for key in self.config: - if key == "inpaths": - for path in self.config[key]: - self.config[key][path] = self.transform_path( - self.config[key][path], target="cygwin" - ) - else: - self.config[key] = self.transform_path( - self.config[key], target="cygwin" - ) - fp.close() - self.in_dirs = self.config["inpaths"] - if in_dir_dict: - for in_conf in in_dir_dict: - if in_conf in self.in_dirs: - self.in_dirs[in_conf] = in_dir_dict[in_conf] - else: - self.in_dirs.update({in_conf: in_dir_dict[in_conf]}) - - self.mode_select_list = {} - self.format_select_list = [] - self.bw_select_list = [] - self.global_item_list = [] - self.global_ism_metadata = list() - self.global_masa_metadata = None - self.global_bitstream_processing = None - self.flat_mode_list = None - self.filter = None - - self.__audioextensions = [".wav", ".au"] - - @property - def filter(self): - return self.__filter - - @filter.setter - def filter(self, value): - self.__filter = value - - def test_for_config_file(self, test_dir, file_name): - - self.logger.debug( - "Looking for file {}".format(os.path.join(test_dir, file_name)) - ) - if os.path.exists(os.path.join(test_dir, file_name)): - self.logger.debug("Found file {}".format(os.path.join(test_dir, file_name))) - return os.path.join(test_dir, file_name) - - self.logger.debug( - "Looking for file {}".format( - os.path.join(constants.SCRIPTS_CONFIGS_DIR, file_name) - ) - ) - if os.path.exists(os.path.join(constants.SCRIPTS_CONFIGS_DIR, file_name)): - self.logger.debug( - "Found file {}".format( - os.path.join(constants.SCRIPTS_CONFIGS_DIR, file_name) - ) - ) - return os.path.join(constants.SCRIPTS_CONFIGS_DIR, file_name) - - self.logger.debug( - "File {} not found in either {} or {}".format( - file_name, test_dir, constants.SCRIPTS_CONFIGS_DIR - ) - ) - return None - - def set_config(self, config): - """ - - Parameters - ---------- - config : - - - Returns - ------- - - """ - fp = open("".join([config, ".json"]), "r") - self.config = json.load(fp) - fp.close() - self.in_dirs = self.config["inpaths"] - - def set_in_dirs(self, in_dir_dict): - """ - - Parameters - ---------- - in_dir_dict : - - - Returns - ------- - - """ - for in_conf in in_dir_dict: - if in_conf in self.in_dir_dict: - self.in_dir_dict[in_conf] = in_dir_dict[in_conf] - - def set_format_select_list(self, select_list): - """ - - Parameters - ---------- - select_list : - - - Returns - ------- - - """ - self.format_select_list = select_list - - def set_mode_select_list(self, select_list): - """ - - Parameters - ---------- - select_list : - - - Returns - ------- - - """ - self.mode_select_list = select_list - - def set_bw_select_list(self, bw_select_list): - """ - - Parameters - ---------- - bw_select_list : - - - Returns - ------- - - """ - self.bw_select_list = bw_select_list - - def add_format_select_list(self, select_list): - """ - - Parameters - ---------- - select_list : - - - Returns - ------- - - """ - for ivas_format in select_list: - if ivas_format not in self.format_select_list: - self.format_select_list.append(ivas_format) - - def add_mode_select_list(self, select_list): - """ - - Parameters - ---------- - select_list : - - - Returns - ------- - - """ - for mode in select_list: - if mode in self.mode_select_list: - for out_conf in select_list[mode]: - if out_conf not in self.mode_select_list[mode]: - self.mode_select_list[mode].extend(out_conf) - else: - self.mode_select_list.update({mode: select_list[mode]}) - - def add_bw_select_list(self, select_list): - """ - - Parameters - ---------- - select_list : - - - Returns - ------- - - """ - for bw in select_list: - if bw not in self.bw_select_list: - self.bw_select_list.append(bw.upper()) - - def collect_mode_configs(self): - """ """ - run_dict = {} - self.logger.info("Selecting formats...") - for ivas_format in self.all_formats: - if self.format_select_list: - if ivas_format not in self.format_select_list: - continue - self.logger.info("Add all modes of format {}".format(ivas_format)) - for br_conf in self.all_formats[ivas_format]: - run_dict.update( - { - br_conf: { - "cmd": self.all_formats[ivas_format][br_conf], - "item_list": [], - "ivas_format": ivas_format, - } - } - ) - - if self.mode_select_list: - self.logger.info("Selecting modes...") - tmp_dict = {} - for selected_mode in self.mode_select_list: - if selected_mode in run_dict: - mode_param = run_dict[selected_mode].copy() - output_confs = self.mode_select_list[selected_mode] - if output_confs: - if isinstance(output_confs, list): - if output_confs[0] != all: - mode_param["cmd"]["dec"] = {} - for output_conf in output_confs: - if ( - output_conf - in run_dict[selected_mode]["cmd"]["dec"] - ): - mode_param["cmd"]["dec"].update( - { - output_conf: run_dict[selected_mode][ - "cmd" - ]["dec"][output_conf] - } - ) - else: - mode_param["cmd"]["dec"].update( - {output_conf: []} - ) - elif isinstance(output_confs, dict): - mode_param["cmd"]["dec"] = output_confs - tmp_dict.update({selected_mode: mode_param}) - self.logger.info( - "Selected mode {} with output configs {}".format( - selected_mode, str(output_confs) - ) - ) - run_dict = tmp_dict - - if self.bw_select_list: - tmp_dict = {} - self.logger.info("Selecting band width...") - for selected_mode in run_dict: - if run_dict[selected_mode]["cmd"]["bw"].upper() in self.bw_select_list: - mode_param = run_dict[selected_mode].copy() - self.logger.info("Selected mode {}".format(selected_mode)) - tmp_dict.update({selected_mode: mode_param}) - run_dict = tmp_dict - - if self.filter is not None: - tmp_dict = {} - self.logger.info("Applying filter {}".format(self.filter.pattern)) - for selected_mode in run_dict: - if self.filter.search(selected_mode): - mode_param = run_dict[selected_mode].copy() - self.logger.info("Selected mode {}".format(selected_mode)) - tmp_dict.update({selected_mode: mode_param}) - run_dict = tmp_dict - - if self.global_bitstream_processing is not None: - for mode in run_dict: - if "bitstream_processing" not in run_dict[mode]["cmd"]: - run_dict[mode]["cmd"][ - "bitstream_processing" - ] = self.global_bitstream_processing - else: - self.logger.warning( - "Will not add a global bitstream processing over a already defined one!" - ) - - self.flat_mode_list = run_dict - - def mode_add_items(self): - """ """ - - for mode in self.flat_mode_list: - self.logger.info("Adding items to mode {}...".format(mode)) - in_config = self.flat_mode_list[mode]["cmd"]["in_config"] - - in_dir = self.in_dirs[in_config] - in_files = [] - - if self.global_item_list: - self.mode_add_item_list(mode, deepcopy(self.global_item_list)) - else: - if os.path.isdir(in_dir): - file_list = os.listdir(in_dir) - for fd in file_list: - if os.path.isfile(os.path.join(in_dir, fd)): - if os.path.splitext(fd)[1] in self.__audioextensions: - in_files.append(os.path.join(in_dir, fd)) - elif os.path.isfile(in_dir): # ensure compatibility with runEvsCodec.pl - in_files = [in_dir] - for in_file in in_files: - self.logger.info("Added item {} to mode {}".format(in_file, mode)) - self.flat_mode_list[mode]["item_list"] = in_files - - def mode_add_item_list(self, mode, item_list): - if mode in self.flat_mode_list: - in_config = self.flat_mode_list[mode]["cmd"]["in_config"] - in_dir = self.in_dirs[in_config] - for item in item_list: - # check if item exists, check if we have explicit metadata - if isinstance(item, list): - infile = item.pop(0) - else: - infile = item - item = [] - if not os.path.exists(infile): - infile = os.path.join(in_dir, infile) - if not os.path.exists(infile): - self.logger.console( - "Item {} does not exist!".format(infile), logging.WARNING - ) - continue - if item: - infile = [infile] - for md in item: - if not os.path.exists(md): - md = os.path.join(in_dir, md) - if not os.path.exists(md): - self.logger.console( - "Metadata file {} does not exist!".format(md), - logging.WARNING, - ) - continue - infile.extend([md]) - self.flat_mode_list[mode]["item_list"].extend([infile]) - self.logger.info("Added item {} to mode {}".format(infile, mode)) - - def set_flat_mode_list(self, flat_mode_list): - self.flat_mode_list = flat_mode_list - - def set_global_item_list(self, global_item_list): - self.global_item_list = [os.path.abspath(f) for f in global_item_list] - - def add_format_output_config(self, ivas_format, oc_dict): - """ - - Parameters - ---------- - ivas_format : - - oc_list : - - - Returns - ------- - - """ - if ivas_format in self.all_formats: - for br in self.all_formats[ivas_format]: - for oc in oc_dict: - if oc not in self.all_formats[ivas_format][br]["dec"]: - self.all_formats[ivas_format][br]["dec"].update( - {oc: oc_dict[oc]} - ) - - def set_format_output_config(self, ivas_format, oc_dict): - """ - - Parameters - ---------- - ivas_format : - - oc_list : - - - Returns - ------- - - """ - if ivas_format in self.all_formats: - for mode in self.all_formats[ivas_format]: - self.all_formats[ivas_format][mode]["dec"] = oc_dict - - @staticmethod - def get_bs_processing_suffices(bs_processing_dict): - if bs_processing_dict: - return "_".join([x[-1] for x in bs_processing_dict["proc_chain"]]) - else: - return None - - def set_global_bitstream_processing(self, bs_processing_dict): - self.global_bitstream_processing = bs_processing_dict diff --git a/scripts/pyivastest/IvasModeRunner.py b/scripts/pyivastest/IvasModeRunner.py deleted file mode 100644 index 41dd4d20ab0f296d72b204c6482a50c955e689ed..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/IvasModeRunner.py +++ /dev/null @@ -1,1635 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import concurrent.futures -import json -import logging -import logging.handlers -import os -import subprocess -import threading -import time -import traceback -from copy import deepcopy - -import pyaudio3dtools.audioarray as ar -import pyaudio3dtools.audiofile as af -from pyaudio3dtools.spatialaudioformat import Format as spformat -from pyivastest import IvasModeCollector, constants - -BW_TO_SR = {"nb": 8, "wb": 16, "swb": 32, "fb": 48} - -RET_CODE_TIMEOUT_EXP = 9999 - - -class Error(Exception): - pass - - -class BinaryNotFoundError(Error): - def __init__(self, message): - self.message = message - - -class IvasModeRunner(IvasModeCollector.IvasModeCollector): - """ """ - - def __init__( - self, - dir_name=".", - bin_suffix="", - test_tool="", - run_env={}, - silent=False, - site_config="", - sample_rate_enc_in=None, - sample_rate_dec_out=None, - formats_fname="", - in_dir_dict={}, - encoder_binary="", - decoder_binary="", - max_workers=7, - formats_dict={}, - flat_output_structure=False, - pcm_out=False, - enable_logging=False, - console_logger_level="", - logger_name="IvasBaseClass", - log_level=logging.DEBUG, - timeout=None, - ): - - super().__init__( - site_config=site_config, - formats_fname=formats_fname, - in_dir_dict=in_dir_dict, - formats_dict=formats_dict, - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - ) - self.timeout = timeout - self.lock = threading.Lock() - self.dec_queue = None - self.enc_queue = None - self.bs_processing_queue = None - self.stats = None - self.results = None - self.sample_rate_enc_in = sample_rate_enc_in - self.sample_rate_dec_out = sample_rate_dec_out - self.dir_name = os.path.abspath(dir_name) - if encoder_binary != "": - self.encoder = os.path.abspath(encoder_binary) - else: - self.encoder = "" - if decoder_binary != "": - self.decoder = os.path.abspath(decoder_binary) - else: - self.decoder = "" - self.bin_suffix = bin_suffix - self.test_tool = test_tool - self.run_env = os.environ.copy() - self.run_env.update(run_env) - self.silent = silent - self.failed_threads = None - self.max_workers = max_workers - self.flat_output_structure = flat_output_structure - self.limit_duration = False - self.end_time = 0.0 - self.start_time = 0.0 - self.encoder_cmdline_options = [] - self.decoder_cmdline_options = [] - self.run_encoder = True - self.run_decoder = True - self.multiple_res_dir = False - self.switch_paths_base_dir = constants.SW_FILES_BASE_DIR - if "swPathDir" in self.config: - self.switch_paths_base_dir = self.config["swPathDir"] - self.pcm_out = pcm_out - self.cwd = os.getcwd() - self.pcm_info = {} - self.failed_modes = {"enc": list(), "dec": dict()} - - @property - def pcm_info(self): - return self.__pcm_info - - @pcm_info.setter - def pcm_info(self, value: dict): - if isinstance(value, dict) or value is None: - self.__pcm_info = value - else: - raise TypeError("pcm_info must be a dictionary or None!") - - @property - def multiple_res_dir(self): - return self.__multiple_res_dir - - @multiple_res_dir.setter - def multiple_res_dir(self, value: bool): - if isinstance(value, bool): - self.__multiple_res_dir = value - else: - raise TypeError("multiple_res_dir must be a bool value!") - - def show_progress(self): - """ """ - if self.stats["num_enc_errors"] == 0: - enc_err_str = "{}".format(str(self.stats["num_enc_errors"])) - else: - enc_err_str = "\x1b[31m{}\x1b[0m".format(str(self.stats["num_enc_errors"])) - if self.stats["num_dec_errors"] == 0: - dec_err_str = "{}".format(str(self.stats["num_dec_errors"])) - else: - dec_err_str = "\x1b[31m{}\x1b[0m".format(str(self.stats["num_dec_errors"])) - num_errors = self.stats["num_enc_errors"] + self.stats["num_dec_errors"] - if num_errors == 0: - total_err_str = "no errors" - else: - if num_errors == 1: - total_err_str = "\x1b[31m{} Error\x1b[0m".format(str(num_errors)) - else: - total_err_str = "\x1b[31m{} Errors\x1b[0m".format(str(num_errors)) - stat_format_str = "status: {}/{} ({} running), encs: {}/{}/{} ({} running), decs: {}/{}/{} ({} running), {} " - line = stat_format_str.format( - str(self.stats["num_modes_finished"]), - str(self.stats["num_modes"]), - str(self.stats["num_modes_running"]), - str(self.stats["num_encs_finished"]), - str(self.stats["num_encs_total"]), - enc_err_str, - str(self.stats["num_encs_running"]), - str(self.stats["num_decs_finished"]), - str(self.stats["num_decs_total"]), - dec_err_str, - str(self.stats["num_decs_running"]), - total_err_str, - ) - self.logger.progress(line) - - def show_final_stats(self): - """ """ - if self.stats["num_enc_errors"] == 0: - enc_err_str = "{}".format(str(self.stats["num_enc_errors"])) - else: - enc_err_str = "\x1b[31m{}\x1b[0m".format(str(self.stats["num_enc_errors"])) - if self.stats["num_dec_errors"] == 0: - dec_err_str = "{}".format(str(self.stats["num_dec_errors"])) - else: - dec_err_str = "\x1b[31m{}\x1b[0m".format(str(self.stats["num_dec_errors"])) - num_errors = self.stats["num_enc_errors"] + self.stats["num_dec_errors"] - if num_errors == 0: - total_err_str = "no errors" - else: - if num_errors == 1: - total_err_str = "\x1b[31m{} Error\x1b[0m".format(str(num_errors)) - else: - total_err_str = "\x1b[31m{} Errors\x1b[0m".format(str(num_errors)) - line = "status: {}/{}, encs: {}/{}/{}, decs: {}/{}/{}, {}".format( - str(self.stats["num_modes_finished"]), - str(self.stats["num_modes"]), - str(self.stats["num_encs_finished"]), - str(self.stats["num_encs_total"]), - enc_err_str, - str(self.stats["num_decs_finished"]), - str(self.stats["num_decs_total"]), - dec_err_str, - total_err_str, - ) - self.logger.console("Finished running", logging.INFO) - self.logger.console(line, logging.INFO) - - def ivas_dec_thread(self, config): - """ - - Parameters - ---------- - config : - - - Returns - ------- - - """ - - self.lock.acquire() - if self.stats: - if not self.run_encoder: - if config["config"]["num_dec_remaining"] == config["config"]["num_dec"]: - self.stats["num_modes_running"] += 1 - self.stats["num_decs_running"] += 1 - config["config"]["num_dec_remaining"] -= 1 - self.show_progress() - self.lock.release() - enc_dec_cmd = config["config"]["cmd"] - item_base_name = os.path.splitext(os.path.basename(config["enc_file_name"]))[0] - output_config = config["out_config"] - out_ext = ".wav" - if self.pcm_out is True: - out_ext = ".pcm" - - dec_log_name = self.get_dec_log_file_name( - self.dir_name, item_base_name, output_config - ) - dec_log = open(dec_log_name, "w") - if config["enc_returncode"] == 0: - dec_file_name = self.get_dec_file_name( - self.dir_name, item_base_name, output_config, out_ext - ) - if self.sample_rate_dec_out: - out_sr = self.sample_rate_dec_out - else: - if ( - isinstance(config["dec_options"], dict) - and "fs_out" in config["dec_options"] - ): - out_sr = config["dec_options"]["fs_out"] - else: - out_sr = BW_TO_SR[config["config"]["cmd"]["bw"]] - dec_options = [] - if isinstance(config["dec_options"], dict): - if "dec_options" in config["dec_options"]: - dec_options.extend(config["dec_options"]["dec_options"]) - else: - dec_options.extend(config["dec_options"]) - dec_options.extend(self.decoder_cmdline_options) - - if self.multiple_res_dir is True: - dec_options.extend(["-info", os.path.basename(dec_file_name)]) - - # handle SOFA file passing for group B binaural renderer - try: - br_kbps = int(config["config"]["cmd"]["bitrate"]) // 1000 - except ValueError: - # this handles the case when a bitrate switching file is given - # for now do nothing here - br_kbps = -1 - except Exception as e: - self.logger.error("Exception in ivas_dec_thread(): " + str(e)) - return - - if not config["mono"]: - dec_options.extend([output_config]) - dec_options = [ - x.format(dec_file_name=dec_file_name) if "{dec_file_name}" in x else x - for x in dec_options - if x != [] - ] - enc_file_name = config["enc_file_name"] - self.logger.info("Decoding {} to {}".format(enc_file_name, dec_file_name)) - if self.test_tool != "": - dec_cmd = ( - self.test_tool - + [self.decoder] - + dec_options - + [str(out_sr)] - + [enc_file_name, dec_file_name] - ) - else: - dec_cmd = ( - [self.decoder] - + dec_options - + [str(out_sr)] - + [enc_file_name, dec_file_name] - ) - - dec_log.write(" ".join(dec_cmd)) - try: - cur_dec_result = subprocess.run( - dec_cmd, - capture_output=True, - text=True, - env=self.run_env, - timeout=self.timeout, - ) - returncode = cur_dec_result.returncode - dec_log.write(cur_dec_result.stderr) - dec_log.write(cur_dec_result.stdout) - except subprocess.TimeoutExpired: - returncode = RET_CODE_TIMEOUT_EXP - - if returncode != 0: - fail_string = "Decoding {} to {} failed!" - if returncode == RET_CODE_TIMEOUT_EXP: - fail_string = ( - fail_string[:-1] - + f" due to timeout after {self.timeout} seconds!" - ) - - self.logger.error(fail_string.format(enc_file_name, dec_file_name)) - self.lock.acquire() - if self.stats: - self.stats["num_dec_errors"] += 1 - self.show_progress() - self.results.append( - [ - fail_string.format(output_config, enc_file_name), - config["ivas_format"], - enc_dec_cmd["table_name"], - dec_log_name, - ] - ) - - # get mode from enc_file_name - file_base_no_ext = os.path.basename(enc_file_name)[ - :-4 - ] # NOTE: this assumes that all encoded files still end in ".192" - in_config = config["config"]["cmd"]["in_config"] - mode = file_base_no_ext[file_base_no_ext.rfind(in_config) :] - if output_config in self.failed_modes["dec"]: - self.failed_modes["dec"][output_config].append(mode) - else: - self.failed_modes["dec"][output_config] = [mode] - self.lock.release() - else: - self.logger.info( - "Decoding successful for {} to {}".format( - enc_file_name, dec_file_name - ) - ) - else: - self.logger.error( - "No decoding of {} to {}, encoding failed already".format( - config["enc_file_name"], output_config - ) - ) - dec_log.write( - "No decoding of {} to {}, encoding failed already".format( - config["enc_file_name"], output_config - ) - ) - self.lock.acquire() - - config["config"]["num_dec_done"] += 1 - if self.stats: - self.stats["num_decs_finished"] += 1 - self.stats["num_decs_running"] -= 1 - if config["enc_returncode"] != 0: - self.stats["num_dec_errors"] += 1 - if config["config"]["num_dec_done"] == config["config"]["num_dec"]: - self.stats["num_modes_running"] -= 1 - self.stats["num_modes_finished"] += 1 - self.show_progress() - - self.lock.release() - - def clean_pcm_directory(self): - """ - Remove .LOCK files and corresponding intermediate files from the pcm directory - - - """ - pcm_dir = os.path.join(self.dir_name, "pcm") - pcm_dir_files = os.listdir(pcm_dir) - lock_files = [ - os.path.splitext(x)[0] - for x in pcm_dir_files - if os.path.splitext(x)[1] == ".LOCK" - ] - for lock_file in lock_files: - files_to_clean = [ - os.path.join(pcm_dir, x) for x in pcm_dir_files if lock_file in x - ] - [os.remove(x) for x in files_to_clean] - - def ivas_enc_thread(self, mode, config): - """ - - Parameters - ---------- - mode : - - config : - - - Returns - ------- - - """ - error = 0 - enc_dec_cmd = deepcopy(config["cmd"]) - # get next item - config["lock"].acquire() - self.lock.acquire() - if self.stats: - if config["num_enc_remaining"] == config["num_enc"]: - self.stats["num_modes_running"] += 1 - self.show_progress() - if config["num_enc_remaining"]: - in_file_name = config["item_list"].pop() - config["num_enc_remaining"] -= 1 - else: - config["lock"].release() - return - self.lock.release() - - metadata_file_names = list() - - # TODO: is this still needed - what case does this cover? - if isinstance(in_file_name, list): - metadata_file_names = in_file_name[1:] - in_file_name = in_file_name[0] - self.logger.info("Encoding Mode {} input file {}".format(mode, in_file_name)) - config["lock"].release() - self.lock.acquire() - if self.stats: - self.stats["num_encs_running"] += 1 - self.show_progress() - self.lock.release() - pcm_name_lock = None - item_base_name = os.path.splitext(os.path.basename(in_file_name))[0] - enc_file_name = os.path.join( - self.dir_name, "enc", "".join([item_base_name, "_", mode, ".192"]) - ) - enc_log_name_tmp = "".join( - [item_base_name, "_", mode, ".enc", constants.LOG_FILE_EXT] - ) - enc_log_name = os.path.join(self.dir_name, "logs", enc_log_name_tmp) - in_format_dict = None - in_format = config["cmd"]["in_config"] - if in_format[0:4] == "MASA": - in_format = in_format[0:5] - try: - # prepare PCM # - in_dir = os.path.dirname(in_file_name) - if self.sample_rate_enc_in: - sample_rate_in = self.sample_rate_enc_in - else: - sample_rate_in = BW_TO_SR[config["cmd"]["bw"]] - if ( - os.path.splitext(os.path.basename(in_file_name))[1] - in self._IvasModeCollector__audioextensions - ): - - # use this local variable instead of self.limit_duration to be able to skip the cutting - # of files for individual files if necessary (e.g. when given length is > file length) - do_limit_duration = False - if self.limit_duration: - do_limit_duration = True - pcm_base_name = "".join( - [ - item_base_name, - "_", - str(sample_rate_in), - "_", - config["cmd"]["in_config"].upper(), - "_L{}-{}s".format( - "_".join(str(self.start_time).split(".")), - "_".join(str(self.end_time).split(".")), - ), - ".pcm", - ] - ) - else: - pcm_base_name = "".join( - [ - item_base_name, - "_", - str(sample_rate_in), - "_", - config["cmd"]["in_config"].upper(), - ".pcm", - ] - ) - pcm_name = os.path.join(self.dir_name, "pcm", pcm_base_name) - pcm_name_lock = "".join([pcm_name, ".LOCK"]) - pcm_info_file = f"{pcm_name}.json" - self.lock.acquire() - - if not os.path.exists(pcm_name_lock): - if not os.path.exists(pcm_name): - # create the lock - fp = open(pcm_name_lock, "w") - fp.close() - self.lock.release() - self.logger.info( - "Creating input pcm for item {} at sample rate {}: {}".format( - item_base_name, sample_rate_in, pcm_name - ) - ) - - pcm_log_name_tmp = "".join( - [pcm_base_name, constants.LOG_FILE_EXT] - ) - pcm_log_name = os.path.join( - self.dir_name, "logs", pcm_log_name_tmp - ) - pcm_log = open(pcm_log_name, "w") - - pcm_name_res_tmp = pcm_name + ".res.wav" - pcm_name_cpy_tmp = pcm_name + ".cpy.wav" - in_file_name_transformed = self.transform_path(in_file_name) - pcm_name_cpy_transformed = self.transform_path(pcm_name_cpy_tmp) - - resamp_in_path = in_file_name_transformed - - if config["cmd"]["in_config"] == "SBA": - wav_info = af.get_wav_file_info(in_file_name_transformed) - in_format = spformat.detect_format(wav_info["channels"]) - elif config["cmd"]["in_config"][0:4] == "OSBA": - # get number of ISMs expected - osba_ism_config = config["cmd"]["in_config"][5:9] - osba_ism_format_dict = spformat.get_format_dict( - osba_ism_config - ) - wav_info = af.get_wav_file_info(in_file_name_transformed) - osba_ambi_config = spformat.detect_format( - wav_info["channels"] - osba_ism_format_dict["nchannels"] - ) - in_format = f"OSBA_{osba_ism_config}_{osba_ambi_config}" - - # save in config as json file - in_format_dict = spformat.get_format_dict(in_format) - with open(pcm_info_file, "w") as pcmifp: - json.dump(in_format_dict, pcmifp) - - self.pcm_info.update({pcm_name: in_format_dict}) - - # read signal and sampling rate from file - sig, fs = af.readfile(in_file_name_transformed) - - out_fs = int(sample_rate_in) * 1000 - - # check if the given length with -U is longer than the file itself and avoid cutting then - if do_limit_duration: - in_len = sig.shape[0] - # first check if start time exceeds signal length - start_time_samples = int(float(self.start_time) * fs) - if start_time_samples >= in_len: - raise RuntimeError( - "Signal is shorter than given start time" - ) - - end_time_samples = int(float(self.end_time) * fs) - cut_len_samples = end_time_samples - start_time_samples - - if ( - cut_len_samples + start_time_samples < in_len - or start_time_samples > 0 - ): - end_time_samples = min(end_time_samples, in_len) - sig = ar.cut( - sig, (start_time_samples, end_time_samples) - ) - - pcm_log.write( - "Limit signal length to {}:{} samples".format( - start_time_samples, end_time_samples - ) - ) - af.writefile(pcm_name_cpy_transformed, sig, fs) - - resamp_in_path = pcm_name_cpy_transformed - - pcm_name_transformed = self.transform_path(pcm_name) - - pcm_log.write("Resampling to {}".format(out_fs)) - af.convertfile( - resamp_in_path, - pcm_name_transformed, - in_fs=fs, - out_fs=out_fs, - ) - - in_config = config["cmd"]["in_config"].upper() - - pcm_log.flush() - pcm_log.close() - # remove file lock - self.lock.acquire() - os.remove(pcm_name_lock) - # os.remove(pcm_name_res_tmp) - if do_limit_duration and cut_len_samples < in_len: - os.remove(pcm_name_cpy_tmp) - self.logger.info( - "PCM file {} successfully created!".format(pcm_name) - ) - self.lock.release() - else: - self.lock.release() - else: - # wait for pcm to be ready - self.lock.release() - not_ready = 1 - while not_ready: - time.sleep(1) - self.lock.acquire() - if not os.path.exists(pcm_name_lock): - not_ready = 0 - self.lock.release() - - else: - pcm_name = in_file_name - pcm_info_file = f"{pcm_name}.json" - - # get input format dictionary for the input file - self.lock.acquire() - if pcm_name not in self.pcm_info: - if os.path.exists(pcm_info_file): - with open(pcm_info_file, "r") as pcmifp: - in_format_dict = json.load(pcmifp) - - else: - # add in_format_dict according to the in_format of the mode... - if in_format == "SBA": - # use HOA3 as default for SBA if nothing more is known... - in_format = "HOA3" - in_format_dict = spformat.get_format_dict(in_format) - self.pcm_info.update({pcm_name: in_format_dict}) - self.lock.release() - - # build the encoder commandline - enc_options = enc_dec_cmd["encmodeoption"] - - # metadata is either explicitly taken from the respective command line args or, - # if not given, the default pattern form the config is used to get filenames in - # the same dir as the input file. NULL for ISM MD has to be explicitly given, - # otherwise this may hapen without the user being aware and lead to unexpected results. - # If the default filenames from the configs do not point to existing files, the - # codec will complain later - nummetadata = enc_dec_cmd["nummetadata"] - if nummetadata > 0: - md_files = list() - - if "OMASA" in in_format: - nummetadata -= 1 - - if "ISM" in in_format: - md_files.extend(self.global_ism_metadata[:nummetadata]) - - # if not enough md files explicitly given, try default pattern from config - if len(md_files) != nummetadata: - default = os.path.join( - in_dir, enc_dec_cmd["metadatafilenames"][0] - ) - for i in range(len(md_files), nummetadata): - md_f = default.format(item=item_base_name, mdi=i + 1) - if not os.path.exists(md_f): - self.logger.warning( - f"Can't find default md file {md_f} for item {item_base_name}. Default to NULL" - ) - md_f = "NULL" - md_files.append(md_f) - - if "MASA" in in_format: - masa_md = self.global_masa_metadata - - # if not explicitly given, try default pattern from config - if masa_md is None: - default = os.path.join( - in_dir, enc_dec_cmd["metadatafilenames"][-1] - ) - masa_md = default.format(item=item_base_name) - - md_files.append(masa_md) - - enc_options.extend(md_files) - - enc_options.extend(enc_dec_cmd["encoptions"]) - enc_options.extend(self.encoder_cmdline_options) - - if self.multiple_res_dir is True: - enc_options.extend(["-info"]) - enc_options.extend([os.path.basename(enc_file_name)]) - - bitrate = enc_dec_cmd["bitrate"] - - # inject bit rate switch file path - if isinstance(bitrate, str) and "{sw_files_path}" in bitrate: - bitrate = os.path.realpath( - bitrate.format(sw_files_path=self.switch_paths_base_dir) - ) - - if self.test_tool != "": - enc_cmd = ( - self.test_tool - + [self.encoder] - + enc_options - + [str(bitrate), str(sample_rate_in), pcm_name, enc_file_name] - ) - else: - enc_cmd = ( - [self.encoder] - + enc_options - + [str(bitrate), str(sample_rate_in), pcm_name, enc_file_name] - ) - # inject the input file's ambisonic order - if pcm_name in self.pcm_info: - enc_cmd = [ - ( - x.format(ambi_order=self.pcm_info[pcm_name]["ambi_order"]) - if "{ambi_order}" in x - else x - ) - for x in enc_cmd - ] - - enc_log = open(enc_log_name, "w") - enc_log.write(" ".join(enc_cmd)) - try: - enc_result = subprocess.run( - enc_cmd, - capture_output=True, - text=True, - env=self.run_env, - timeout=self.timeout, - ) - error = enc_result.returncode - enc_log.write(enc_result.stderr) - enc_log.write(enc_result.stdout) - except subprocess.TimeoutExpired: - error = RET_CODE_TIMEOUT_EXP - - if error == 0 and "bitstream_processing" in enc_dec_cmd: - bs_in_file = enc_file_name - proc_chain = deepcopy(enc_dec_cmd["bitstream_processing"]["proc_chain"]) - for processing in proc_chain: - suffix = processing.pop() - bs_out_file = ".".join( - ["_".join([os.path.splitext(bs_in_file)[0], suffix]), "192"] - ) - # process - proc_cmd = deepcopy(processing) - proc_cmd = [ - x.format(in_file=bs_in_file) if "{in_file}" in x else x - for x in proc_cmd - ] - proc_cmd = [ - x.format(out_file=bs_out_file) if "{out_file}" in x else x - for x in proc_cmd - ] - enc_log = open(enc_log_name, "a") - enc_log.write(" ".join(proc_cmd)) - proc_result = subprocess.run( - proc_cmd, capture_output=True, text=True, encoding="utf8" - ) - enc_log.write(proc_result.stderr) - enc_log.write(proc_result.stdout) - error = proc_result.returncode - if error: - self.logger.error( - "Processing step {} for {} failed!".format( - suffix, enc_file_name - ) - ) - self.logger.error(proc_result.stderr) - raise RuntimeError( - "Processing step {} for {} failed!\n{}".format( - suffix, enc_file_name, proc_result.stderr - ) - ) - bs_in_file = bs_out_file - enc_file_name_dec = bs_out_file - else: - enc_file_name_dec = enc_file_name - - except Exception as exc: - # make sure we do not have a deadlock... - self.lock.acquire() - if pcm_name_lock: - - if os.path.exists(pcm_name_lock): - # something went wrong with PCM creation, so make sure all waiting threads can continue... - self.logger.error( - "Something went wrong with creating the PCM file {}".format( - pcm_name - ) - ) - os.remove(pcm_name_lock) - os.remove(pcm_name) - - self.logger.console( - "Exception when encoding item {}: {}".format(enc_file_name, str(exc)), - logging.ERROR, - ) - self.logger.console( - "Traceback: {}".format(traceback.format_tb(exc.__traceback__)), - logging.ERROR, - ) - self.lock.release() - enc_file_name_dec = enc_file_name - error = 1 - - self.lock.acquire() - if self.stats: - config["num_enc_done"] += 1 - if config["num_enc_done"] == config["num_enc"]: - self.enc_queue["num_modes_enc_done"] += 1 - if not self.run_decoder: - self.stats["num_modes_running"] -= 1 - self.stats["num_modes_finished"] -= 1 - if self.enc_queue["num_modes_enc"] == self.enc_queue["num_modes_enc_done"]: - self.dec_queue["all_encoded"] = True - self.stats["num_encs_finished"] += 1 - self.stats["num_encs_running"] -= 1 - self.show_progress() - self.lock.release() - - if error != 0: - fail_string = "Encoding failed for {}" - if error == RET_CODE_TIMEOUT_EXP: - fail_string = ( - fail_string + f" due to timeout after {self.timeout} seconds" - ) - - self.lock.acquire() - if self.stats: - self.stats["num_enc_errors"] += 1 - self.show_progress() - self.results.append( - [ - fail_string.format(enc_file_name), - mode, - enc_dec_cmd["table_name"], - enc_log_name, - ] - ) - self.failed_modes["enc"].append(mode) - self.lock.release() - self.logger.error(fail_string.format(enc_file_name)) - else: - self.logger.info("Encoding successful for {}".format(enc_file_name)) - - self.dec_queue["condition"].acquire() - # create the entry in the decoder queue - - for oc in enc_dec_cmd["dec"]: - dec_options = deepcopy(enc_dec_cmd["dec"][oc]) - if ( - "bitstream_processing" in enc_dec_cmd - and "dec_options" in enc_dec_cmd["bitstream_processing"] - ): - addl_dec_options = deepcopy( - enc_dec_cmd["bitstream_processing"]["dec_options"] - ) - if isinstance(dec_options, dict): - if "dec_options" in dec_options: - dec_options["dec_options"].extend(addl_dec_options) - else: - dec_options["dec_options"] = addl_dec_options - else: - dec_options.extend(addl_dec_options) - dec_config = { - "ivas_format": mode, - "config": config, - "enc_returncode": error, - "enc_file_name": enc_file_name_dec, - "out_config": oc, - "dec_options": dec_options, - "mono": enc_dec_cmd["mono"], - } - - self.dec_queue["dec_entries"].append(dec_config) - - self.dec_queue["condition"].notifyAll() - self.dec_queue["condition"].release() - - def get_modes_initial_statistics(self): - """ """ - self.stats = { - "num_modes": 0, - "num_modes_running": 0, - "num_modes_finished": 0, - "num_encs_total": 0, - "num_encs_running": 0, - "num_enc_errors": 0, - "num_encs_finished": 0, - "num_decs_total": 0, - "num_decs_running": 0, - "num_dec_errors": 0, - "num_decs_finished": 0, - } - ne = 0 - nd = 0 - nm = 0 - for mode in self.flat_mode_list: - nel = len(self.flat_mode_list[mode]["item_list"]) - nd_tmp = len(self.flat_mode_list[mode]["cmd"]["dec"]) * nel - ne_tmp = nel - if nd_tmp != 0 and ne_tmp != 0: - nm += 1 - nd += nd_tmp - ne += ne_tmp - self.stats["num_modes"] = nm - if self.run_encoder: - self.stats["num_encs_total"] = ne - if self.run_decoder: - self.stats["num_decs_total"] = nd - - stat_format_str = "{} modes with {} encs and {} decs" - line = stat_format_str.format( - str(self.stats["num_modes"]), - str(self.stats["num_encs_total"]), - str(self.stats["num_decs_total"]), - ) - - self.logger.console("Start running {}".format(line), logging.INFO) - - def create_enc_queue(self): - """ """ - self.enc_queue = { - "num_modes_enc": 0, - "num_modes_enc_done": 0, - "ivas_formats": deepcopy(self.flat_mode_list), - } - nm = 0 - for config in self.enc_queue["ivas_formats"]: - thread_config = self.enc_queue["ivas_formats"][config] - ne = len(self.enc_queue["ivas_formats"][config]["item_list"]) - nd = len(self.enc_queue["ivas_formats"][config]["cmd"]["dec"]) * ne - nm += 1 - thread_config.update( - { - "running": False, - "num_enc": ne, - "num_enc_remaining": ne, - "num_enc_done": 0, - "num_dec": nd, - "num_dec_remaining": nd, - "num_dec_done": 0, - "lock": threading.Lock(), - } - ) - if self.global_bitstream_processing is not None: - if ( - "bitstream_processing" - not in self.enc_queue["ivas_formats"][config]["cmd"] - ): - self.enc_queue["ivas_formats"][config]["cmd"][ - "bistream_processing" - ] = self.global_bitstream_processing - else: - self.logger.warning( - "Will not add a global bitstream processing over an already defined one!" - ) - self.enc_queue["num_modes_enc"] = nm - - def ls_enc_files(self): - encdir = os.path.join(self.dir_name, "enc") - enc_files = os.listdir(encdir) - global_item_list = [] - if self.global_item_list: - global_item_list = list( - filter( - lambda x: x[0] if isinstance(x, list) else x, self.global_item_list - ) - ) - global_item_list = list( - map( - lambda x: os.path.splitext(os.path.basename(x))[0], global_item_list - ) - ) - for mode in self.flat_mode_list: - if self.flat_mode_list[mode]["item_list"]: - mode_item_list = list( - filter( - lambda x: x[0] if isinstance(x, list) else x, - self.flat_mode_list[mode]["item_list"], - ) - ) - mode_item_list = list( - map( - lambda x: os.path.splitext(os.path.basename(x))[0], - mode_item_list, - ) - ) - mode_enc_files_list = list( - filter(lambda x: x if mode in x else None, enc_files) - ) - mode_enc_items = set( - list( - map(lambda x: x.split("".join(["_", mode]))[0], mode_enc_files_list) - ) - ) - if global_item_list: - mode_enc_items = list( - filter( - lambda x: x if x in global_item_list else None, mode_enc_items - ) - ) - elif mode_item_list: - mode_enc_items = list( - filter(lambda x: x if x in mode_item_list else None, mode_enc_items) - ) - if "bitstream_processing" in self.flat_mode_list[mode]["cmd"]: - suffices = self.get_bs_processing_suffices( - self.flat_mode_list[mode]["cmd"]["bitstream_processing"] - ) - mode_enc_files_processed = [ - ( - os.path.join( - self.dir_name, - "enc", - ".".join(["_".join([x, mode, suffices]), "192"]), - ), - os.path.join( - self.dir_name, "enc", "".join([x, "_", mode, ".192"]) - ), - ) - for x in mode_enc_items - ] - enc_files_to_process = [ - x[1] for x in mode_enc_files_processed if not os.path.exists(x[0]) - ] - if enc_files_to_process != []: - if not self.bs_processing_queue: - self.bs_processing_queue = {"queue": [], "stats": {}} - self.bs_processing_queue["queue"].append( - { - "proc_chain": self.flat_mode_list[mode]["cmd"][ - "bitstream_processing" - ]["proc_chain"], - "item_list": enc_files_to_process, - } - ) - mode_enc_files = [x[0] for x in mode_enc_files_processed] - else: - mode_enc_files = [ - os.path.join(self.dir_name, "enc", "".join([x, "_", mode, ".192"])) - for x in mode_enc_items - ] - - self.flat_mode_list[mode]["item_list"] = mode_enc_files - - def create_missing_dec_mode_list(self): - decdir = os.path.join(self.dir_name, "dec") - # dec_files = os.listdir(decdir) - global_item_list = [] - missing_mode_flat_dict = {} - if self.global_item_list: - global_item_list = list( - filter( - lambda x: x[0] if isinstance(x, list) else x, self.global_item_list - ) - ) - global_item_list = list( - map( - lambda x: os.path.splitext(os.path.basename(x))[0], global_item_list - ) - ) - for mode in self.flat_mode_list: - files_missing = False - if self.flat_mode_list[mode]["item_list"]: - mode_item_list = list( - filter( - lambda x: x[0] if isinstance(x, list) else x, - self.flat_mode_list[mode]["item_list"], - ) - ) - mode_item_list = list( - map( - lambda x: os.path.splitext(os.path.basename(x))[0], - mode_item_list, - ) - ) - suffices = None - if "bitstream_processing" in self.flat_mode_list[mode]["cmd"]: - suffices = self.get_bs_processing_suffices( - self.flat_mode_list[mode]["cmd"]["bitstream_processing"] - ) - mode_enc_files = [ - [x, "_".join([y for y in [x, mode, suffices] if y is not None])] - for x in mode_item_list - ] - for oc in self.flat_mode_list[mode]["cmd"]["dec"]: - mode_dec_files = list( - map( - lambda x: [ - x[0], - os.path.join(decdir, ".".join([x[1], "dec", oc, "wav"])), - ], - mode_enc_files, - ) - ) - missing_dec_items = list( - filter( - None, - list( - map( - lambda x: ( - mode_dec_files[x][0] - if not os.path.exists(mode_dec_files[x][1]) - else None - ), - range(len(mode_dec_files)), - ) - ), - ) - ) - if missing_dec_items: - if not files_missing: - mode_dict = deepcopy(self.flat_mode_list[mode]) - mode_dict["item_list"] = missing_dec_items - mode_dict["cmd"]["dec"] = { - oc: self.flat_mode_list[mode]["cmd"]["dec"][oc] - } - missing_mode_flat_dict.update({mode: mode_dict}) - else: - files_missing = True - missing_mode_flat_dict[mode]["item_list"] = list( - set( - missing_mode_flat_dict[mode]["item_list"].append( - missing_dec_items - ) - ) - ) - missing_mode_flat_dict[mode]["cmd"]["dec"].update( - {oc: self.flat_mode_list[mode]["cmd"]["dec"][oc]} - ) - return missing_mode_flat_dict - - def bs_processing_thread(self, bs_entry): - self.lock.acquire() - self.bs_processing_queue["stats"]["num_bs_running"] += 1 - line = "Bit stream processing: {}/{} ({} running)".format( - self.bs_processing_queue["stats"]["num_bs_done"], - self.bs_processing_queue["stats"]["num_bs_total"], - self.bs_processing_queue["stats"]["num_bs_running"], - ) - self.logger.progress(line) - enc_file_name = bs_entry["item_list"].pop() - self.lock.release() - bs_in_file = enc_file_name - proc_chain = deepcopy(bs_entry["proc_chain"]) - suffices = self.get_bs_processing_suffices(bs_entry) - enc_log_name = os.path.join( - self.dir_name, - "logs", - "".join( - [ - os.path.splitext(os.path.basename(enc_file_name))[0], - "_", - suffices, - ".proc", - constants.LOG_FILE_EXT, - ] - ), - ) - enc_log = open(enc_log_name, "w") - self.logger.info("Processing bit stream {}".format(enc_file_name)) - try: - for processing in proc_chain: - suffix = processing.pop() - bs_out_file = ".".join( - ["_".join([os.path.splitext(bs_in_file)[0], suffix]), "192"] - ) - # process - proc_cmd = deepcopy(processing) - proc_cmd = [ - x.format(in_file=bs_in_file) if "{in_file}" in x else x - for x in proc_cmd - ] - proc_cmd = [ - x.format(out_file=bs_out_file) if "{out_file}" in x else x - for x in proc_cmd - ] - - enc_log.write(" ".join(proc_cmd)) - proc_result = subprocess.run(proc_cmd, capture_output=True, text=True) - enc_log.write(proc_result.stderr) - enc_log.write(proc_result.stdout) - error = proc_result.returncode - if error: - self.logger.error( - "Processing step {} for {} failed!".format( - suffix, enc_file_name - ) - ) - raise RuntimeError( - "Processing step {} for {} failed!".format( - suffix, enc_file_name - ) - ) - bs_in_file = bs_out_file - except Exception as exc: - self.logger.error( - "Exception processing bitstream {}: {}".format(enc_file_name, str(exc)) - ) - self.logger.error("failed command: {}".format(" ".join(proc_cmd))) - self.logger.error( - "Traceback: {}".format(traceback.format_tb(exc.__traceback__)) - ) - self.lock.acquire() - self.bs_processing_queue["stats"]["num_bs_running"] -= 1 - self.bs_processing_queue["stats"]["num_bs_done"] += 1 - line = "Bit stream processing: {}/{} ({} running)".format( - self.bs_processing_queue["stats"]["num_bs_done"], - self.bs_processing_queue["stats"]["num_bs_total"], - self.bs_processing_queue["stats"]["num_bs_running"], - ) - self.logger.progress(line) - self.lock.release() - - def run_bs_processing_queue(self): - self.logger.console("Postprocessing of bit streams ...", logging.INFO) - n_bs = [] - for proc_chain in self.bs_processing_queue["queue"]: - n_bs.append(len(proc_chain["item_list"])) - - self.bs_processing_queue["stats"] = { - "num_bs_total": sum(n_bs), - "num_bs_running": 0, - "num_bs_done": 0, - } - line = "Processing {} bit stream files)".format( - self.bs_processing_queue["stats"]["num_bs_total"] - ) - self.logger.console(line, logging.INFO) - line = "Bit stream processing: {}/{} ({} running)".format( - self.bs_processing_queue["stats"]["num_bs_done"], - self.bs_processing_queue["stats"]["num_bs_total"], - self.bs_processing_queue["stats"]["num_bs_running"], - ) - self.logger.progress(line) - - threads_bs = [] - if self.max_workers == 1: - for k in range(len(self.bs_processing_queue["queue"])): - for i in range(n_bs[k]): - self.bs_processing_thread(self.bs_processing_queue["queue"][k]) - else: - with concurrent.futures.ThreadPoolExecutor( - max_workers=self.max_workers - ) as executor: - for k in range(len(self.bs_processing_queue["queue"])): - for i in range(n_bs[k]): - threads_bs.append( - executor.submit( - self.bs_processing_thread, - self.bs_processing_queue["queue"][k], - ) - ) - - self.logger.console("Done processing bit streams", logging.INFO) - line = "Bit stream processing: {}/{}".format( - self.bs_processing_queue["stats"]["num_bs_done"], - self.bs_processing_queue["stats"]["num_bs_total"], - ) - self.logger.console(line, logging.INFO) - - def create_dec_queue(self): - if not self.flat_mode_list: - self.collect_mode_configs() - self.ls_enc_files() - if self.bs_processing_queue: - self.run_bs_processing_queue() - self.dec_queue = { - "condition": threading.Condition(), - "dec_entries": [], - "all_encoded": True, - } - - for mode in self.flat_mode_list: - thread_config = self.flat_mode_list[mode] - nd = len(self.flat_mode_list[mode]["item_list"]) * len( - self.flat_mode_list[mode]["cmd"]["dec"] - ) - if nd == 0: - self.logger.warning("No item to decode for mode {}!".format(mode)) - thread_config.update( - { - "running": False, - "num_enc": 0, - "num_enc_remaining": 0, - "num_enc_done": 0, - "num_dec": nd, - "num_dec_remaining": nd, - "num_dec_done": 0, - "lock": threading.Lock(), - } - ) - for enc_file_name_dec in self.flat_mode_list[mode]["item_list"]: - for oc in self.flat_mode_list[mode]["cmd"]["dec"]: - dec_options = deepcopy(self.flat_mode_list[mode]["cmd"]["dec"][oc]) - if ( - "bitstream_processing" in self.flat_mode_list[mode]["cmd"] - and "dec_options" - in self.flat_mode_list[mode]["cmd"]["bitstream_processing"] - ): - addl_dec_options = deepcopy( - self.flat_mode_list[mode]["cmd"]["bitstream_processing"][ - "dec_options" - ] - ) - if isinstance(dec_options, dict): - if "dec_options" in dec_options: - dec_options["dec_options"].extend(addl_dec_options) - else: - dec_options["dec_options"] = addl_dec_options - else: - dec_options.extend(addl_dec_options) - dec_config = { - "ivas_format": mode, - "config": thread_config, - "enc_returncode": 0, - "enc_file_name": enc_file_name_dec, - "out_config": oc, - "dec_options": dec_options, - "mono": self.flat_mode_list[mode]["cmd"]["mono"], - } - - self.dec_queue["dec_entries"].append(dec_config) - - def check_binaries(self): - missing_binary = False - if self.run_encoder: - if not self.encoder: - self.encoder = os.path.join(self.dir_name, "IVAS_cod" + self.bin_suffix) - if not os.path.exists(self.encoder): - # maybe we need to attach the run directory? - encoder_tmp = self.encoder - self.encoder = os.path.join(self.dir_name, self.encoder) - if not os.path.exists(self.encoder): - self.logger.console( - "Encoder binary {} does not exist, aborting".format( - encoder_tmp - ), - logging.CRITICAL, - ) - self.encoder = encoder_tmp - missing_binary = True - # test if DEBUG_MODE_INFO is active - if self.multiple_res_dir is True and not missing_binary: - test_cmd = [self.encoder, "-h"] - test_result = subprocess.run(test_cmd, capture_output=True, text=True) - if "-info" not in test_result.stdout: - self.logger.console( - "DEBUG_MODE_INFO is not active in the encoder, disabling multiple res directory output!", - logging.INFO, - ) - self.multiple_res_dir = False - - if self.run_decoder: - if not self.decoder: - self.decoder = os.path.join(self.dir_name, "IVAS_dec" + self.bin_suffix) - if not os.path.exists(self.decoder): - decoder_tmp = self.decoder - self.decoder = os.path.join(self.dir_name, self.decoder) - if not os.path.exists(self.decoder): - self.logger.console( - "Decoder binary {} does not exist, aborting".format( - decoder_tmp - ), - logging.CRITICAL, - ) - self.decoder = decoder_tmp - missing_binary = True - # test if DEBUG_MODE_INFO is active - if self.multiple_res_dir is True and not missing_binary: - test_cmd = [self.decoder, "-h"] - test_result = subprocess.run(test_cmd, capture_output=True, text=True) - if "-info" not in test_result.stdout: - self.logger.console( - "DEBUG_MODE_INFO is not active in the decoder, disabling multiple res directory output!", - logging.INFO, - ) - self.multiple_res_dir = False - - if missing_binary: - raise BinaryNotFoundError( - "Binaries: Encoder {}, Decoder {}".format(self.encoder, self.decoder) - ) - - def check_and_create_out_dirs(self): - if not os.path.exists(self.dir_name): - self.logger.console( - "new directory {} has been created".format(self.dir_name), logging.INFO - ) - os.makedirs(self.dir_name) - os.makedirs(os.path.join(self.dir_name, "enc")) - os.makedirs(os.path.join(self.dir_name, "dec")) - os.makedirs(os.path.join(self.dir_name, "logs")) - os.makedirs(os.path.join(self.dir_name, "pcm")) - os.makedirs(os.path.join(self.dir_name, "res")) - else: - if not os.path.exists(os.path.join(self.dir_name, "enc")): - os.makedirs(os.path.join(self.dir_name, "enc")) - self.logger.info( - "new directory {} has been created".format( - os.path.join(self.dir_name, "enc") - ) - ) - if not os.path.exists(os.path.join(self.dir_name, "dec")): - os.makedirs(os.path.join(self.dir_name, "dec")) - self.logger.info( - "new directory {} has been created".format( - os.path.join(self.dir_name, "dec") - ) - ) - if not os.path.exists(os.path.join(self.dir_name, "logs")): - os.makedirs(os.path.join(self.dir_name, "logs")) - self.logger.info( - "new directory {} has been created".format( - os.path.join(self.dir_name, "logs") - ) - ) - if not os.path.exists(os.path.join(self.dir_name, "pcm")): - os.makedirs(os.path.join(self.dir_name, "pcm")) - self.logger.info( - "new directory {} has been created".format( - os.path.join(self.dir_name, "pcm") - ) - ) - if not os.path.exists(os.path.join(self.dir_name, "res")): - os.makedirs(os.path.join(self.dir_name, "res")) - self.logger.info( - "new directory {} has been created".format( - os.path.join(self.dir_name, "res") - ) - ) - self.create_logging_file(self.dir_name, "run") - - def run(self): - """ """ - self.check_binaries() - self.check_and_create_out_dirs() - # change cwd to make sure res subdir can be reached by the binaries - os.chdir(self.dir_name) - if not self.flat_mode_list: - self.collect_mode_configs() - self.mode_add_items() - if not self.run_encoder: - if self.run_decoder: - self.run_dec_threads() - else: - self.clean_pcm_directory() - self.run_enc_dec_threads() - # set cwd back to initial state - os.chdir(self.cwd) - - def run_dec_threads(self): - self.create_dec_queue() - self.get_modes_initial_statistics() - self.results = [] - tasks_dec = [] - with concurrent.futures.ThreadPoolExecutor( - max_workers=self.max_workers - ) as executor: - for config in self.dec_queue["dec_entries"]: - tasks_dec.append(executor.submit(self.ivas_dec_thread, config)) - self.show_final_stats() - - def run_enc_dec_threads(self): - self.get_modes_initial_statistics() - - self.results = [] - # check if there are any files found - if self.stats["num_encs_total"] == 0 and self.stats["num_decs_total"] == 0: - self.logger.error("Found no items to run the modes.") - raise NoInputForAnyModesFound - - self.create_enc_queue() - - self.dec_queue = { - "condition": threading.Condition(), - "dec_entries": [], - "all_encoded": False, - } - # run all encoders - run_dec = 1 - tasks_enc = [] - tasks_dec = [] - self.failed_threads = [] - if self.max_workers == 1: - for mode in self.enc_queue["ivas_formats"]: - config = self.enc_queue["ivas_formats"][mode] - - config["lock"].acquire() - n_enc = config["num_enc_remaining"] - config["lock"].release() - if n_enc == 0: - self.logger.warning("Mode {} has no input items!".format(mode)) - for n in range(0, n_enc): - self.ivas_enc_thread(mode, config) - - self.dec_queue["condition"].acquire() - while self.dec_queue["dec_entries"] != []: - config = self.dec_queue["dec_entries"].pop(0) - self.ivas_dec_thread(config) - - self.dec_queue["condition"].notifyAll() - self.dec_queue["condition"].release() - - else: - with concurrent.futures.ThreadPoolExecutor( - max_workers=self.max_workers - ) as executor: - for mode in self.enc_queue["ivas_formats"]: - config = self.enc_queue["ivas_formats"][mode] - - config["lock"].acquire() - n_enc = config["num_enc_remaining"] - config["lock"].release() - if n_enc == 0: - self.logger.warning("Mode {} has no input items!".format(mode)) - for n in range(0, n_enc): - tasks_enc.append( - executor.submit(self.ivas_enc_thread, mode, config) - ) - while run_dec: - with self.lock: - # check if all enc tasks are done, either regularily or with exceptions - try: - finished_enc_tasks = concurrent.futures.wait( - tasks_enc, timeout=0.001 - ) - if len(finished_enc_tasks.not_done) == 0: - self.dec_queue["all_encoded"] = True - except concurrent.futures.TimeoutError: - # not all done yet, continue... - pass - - with self.dec_queue["condition"]: - dec_queue_empty = len(self.dec_queue["dec_entries"]) == 0 - all_encoded = self.dec_queue["all_encoded"] - all_modes_done = ( - self.stats["num_modes"] == self.stats["num_modes_finished"] - ) - - if dec_queue_empty and all_encoded and all_modes_done: - self.dec_queue["condition"].notify() - break - else: - self.dec_queue["condition"].wait(1) - - # can not reuse dec_queue_empty here, since there might be new items after waiting - while len(self.dec_queue["dec_entries"]) != 0: - config = self.dec_queue["dec_entries"].pop(0) - tasks_dec.append( - executor.submit(self.ivas_dec_thread, config) - ) - - self.dec_queue["condition"].notify() - - self.show_final_stats() - - def get_decoded_item_list(self): - delete_flat_mode_list = False - if not self.flat_mode_list: - self.collect_mode_configs() - self.mode_add_items() - delete_flat_mode_list = True - decoded_item_list = [] - for mode in self.flat_mode_list: - for in_file_name in self.flat_mode_list[mode]["item_list"]: - if isinstance(in_file_name, list): - in_file_name = in_file_name[0] - item_base_name = os.path.splitext(os.path.basename(in_file_name))[0] - for oc in self.flat_mode_list[mode]["cmd"]["dec"]: - suffices = None - if "bitstream_processing" in self.flat_mode_list[mode]["cmd"]: - suffices = self.get_bs_processing_suffices( - self.flat_mode_list[mode]["cmd"]["bitstream_processing"] - ) - dec_file_name = "".join( - [ - "_".join( - [ - x - for x in [item_base_name, mode, suffices] - if x is not None - ] - ), - ".dec.", - oc, - ".wav", - ] - ) - decoded_item_list.append(dec_file_name) - if delete_flat_mode_list: - self.flat_mode_list = [] - return decoded_item_list - - -class NoInputForAnyModesFound(Exception): - pass diff --git a/scripts/pyivastest/IvasScriptsCommon.py b/scripts/pyivastest/IvasScriptsCommon.py deleted file mode 100644 index f50307fd0d06efa1243e14677ecf74dcac224f0b..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/IvasScriptsCommon.py +++ /dev/null @@ -1,812 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import argparse -import json -import logging -import multiprocessing -import os -import platform -import re - -import pyivastest.constants as constants -from pyivastest.IvasBaseClass import * - -# make sure we have colored output using shell escapes correctly on windows -if platform.system() == "Windows": # Only if we are running on Windows - from ctypes import windll - - k = windll.kernel32 - k.SetConsoleMode(k.GetStdHandle(-11), 7) - - -class ParseOutputConfigs(argparse.Action): - def __call__(self, parser, namespace, values, option_string=None): - oc_dict = {} - if values[0][0] == "{": - oc_dict = json.loads("".join(values)) - else: - for oc in values: - oc_dict.update({oc: []}) - setattr(namespace, self.dest, oc_dict) - - -class ParseEncDecOptions(argparse.Action): - def __call__(self, parser, namespace, values, option_string=None): - encdec_options = [] - if values: - encdec_options = values[0].split(" ") - - setattr(namespace, self.dest, encdec_options) - - -class ParseFilterRegex(argparse.Action): - def __call__(self, parser, namespace, values, option_string=None): - regexpr = None - - if values != "": - regexpr = re.compile(values) - - setattr(namespace, self.dest, regexpr) - - -class ParseItems(argparse.Action): - def __call__(self, parser, namespace, values, option_string=None): - item_list = [] - saved_values = values.copy() - while values: - item = values.pop(0) - if item[0] == "[": - while item[-1] != "]": - # search for the closing bracket - if not values: - parser.error( - 'Could not parse item list"{}" '.format( - " ".join(saved_values) - ) - ) - else: - next_value = values.pop(0) - if next_value[0] == "[": - # next opening without closing bracket - parser.error( - 'Could not parse item list "{}"'.format( - " ".join(saved_values) - ) - ) - else: - item = "".join([item, next_value]) - item = [item[1:-1].split(",")] - else: - item = [item] - item_list.extend(item) - setattr(namespace, self.dest, item_list) - - -class IvasScriptArgParser(argparse.ArgumentParser): - def __init__(self, minimal=False): - super().__init__() - self.minimal = minimal - self.add_argument( - "-z", - "--loglevel", - help="Either show with minimal output (default, 'silent'), or reroute log messages with levels higher than LEVEL to the console", - nargs="?", - const="silent", - default="progress", - choices=[ - "silent", - "console", - "progress", - "debug", - "info", - "warning", - "error", - "critical", - ], - ) - self.add_argument("-g", "--logfile", help="log file") - self.add_argument( - "-t", - "--max_workers", - help="use multithreading with MAX_WORKERS threads (default: number of CPUs available at the machine)", - default=multiprocessing.cpu_count(), - type=int, - ) - self.add_argument( - "--timeout", - help="Timeout duration for an individual encoder/decoder run", - default=None, - ) - if not minimal: - self.add_argument( - "-C", - "--formats", - nargs="*", - default="all", - metavar="FORMAT", - help="List of IVAS formats to run, default all (for possible choices get a list with -L", - ) - self.add_argument( - "-m", - "--modes", - nargs="*", - default="all", - metavar="MODE", - help="List of IVAS modes to run, default all (for possible choices get a list with -l", - ) - self.add_argument( - "--oc", - default="", - dest="oc_dict", - nargs="*", - action=ParseOutputConfigs, - help="List of output formats, either a space separated list or a json string in single quotes", - ) - self.add_argument( - "-E", - "--enc_options", - dest="enc_options_list", - action=ParseEncDecOptions, - metavar='"-opt1 opt2"', - nargs=1, - help='Additional command line options for the encoder (always use it in the form -E="-o -opt ...")', - ) - self.add_argument( - "-D", - "--dec_options", - dest="dec_options_list", - action=ParseEncDecOptions, - metavar='"-opt1 opt2"', - nargs=1, - help='Additional command line options for the decoder (always use it in the form -D="-o -opt ...")', - ) - self.add_argument( - "--format_file", - default="", - help="File name for the IVAS ivas_format dictionary to use (default: ivas_modes_v2.json)", - ) - self.add_argument( - "-I", - "--items", - help="List of items to be coded, allows for explicit definition of metadata files by grouping an item together with its metadata files in square brackets [ITEM,METADATAFILE,...]", - nargs="*", - default=[], - dest="item_list", - metavar="ITEM", - action=ParseItems, - ) - self.add_argument( - "--ism_metadata_files", - metavar="ISM_MDFILE", - help="List of ISM metadata files", - nargs="*", - default=[], - ) - self.add_argument( - "--masa_metadata_file", - metavar="MASA_MDFILE", - help="MASA metadata file", - default=None, - ) - self.add_argument( - "-S", - "--srin", - type=int, - help="Input sample rate for the encoder (either in Hz or kHz)", - default=None, - ) - self.add_argument( - "-R", - "--srout", - type=int, - help="Output sample rate for the decoder (either in Hz or kHz)", - default=None, - ) - self.add_argument( - "-p", - "--config", - help="select site-related config as CONFIG.json", - default="", - ) - self.add_argument( - "-l", - "--list_modes", - help="list all supported IVAS ivas_formats", - action="store_true", - ) - self.add_argument( - "-L", - "--list_formats", - help="list all supported IVAS formats", - action="store_true", - ) - self.add_argument( - "-U", - "--limit_duration", - default=None, - help="limit dUration by specifying start and end of input signal in seconds. Can be either a single float value (will be interpreted as length), or by giving as start: (will be interpreted as start), or by giving as start:end", - type=str, - ) - self.add_argument( - "-f", "--fer_file", default="", help="frame error pattern file" - ) - self.add_argument( - "-y", "--ber_file", default="", help="bit error pattern file" - ) - self.add_argument("-J", "--jbm_file", default="", help="jbm file") - self.add_argument( - "-i", - "--indir", - type=str, - help="Directory for items to be coded, either a single directory or a json string for different directories with the input formats as keys", - default="", - ) - self.add_argument( - "--decoder_only", help="only run the decoder", action="store_true" - ) - self.add_argument( - "-x", - "--filter", - help="Regex for filtering modes", - default="", - action=ParseFilterRegex, - dest="filter_regex", - ) - self.add_argument( - "-s", - "--sidstart", - help="Cut frames from the beginning of the encoded bit stream until the first SID frame", - action="store_true", - ) - self.add_argument( - "--bs_length", - help="Cut bitstream to this (maximum) length. Is applied AFTER --sidstart processing, if this is given", - type=int, - default=-1, - ) - self.add_argument( - "--info", - help="Ouput debug info in subfolders of /res (use with caution, this can generate a huge amount of data)", - action="store_true", - ) - self.add_argument( - "--sofa", - help="Directory for the group B binaural renderer to look for SOFA files", - type=str, - ) - - @staticmethod - def insert_subformats(args, keyword, format_list): - if keyword in args.formats: - for subformat in format_list: - if subformat not in args.formats: - args.formats.append(subformat) - args.formats.remove(keyword) - - def parse_args(self): - args = vars(super().parse_args()) - args["error"] = False - args["exit"] = False - - args["loglevel"] = args["loglevel"].upper() - # do some sanity checks here - - # check if config file exists - if ( - "config" in args.keys() - and args["config"] - and not os.path.isfile(args["config"]) - ): - print( - "Given config file '{}' does not exist! Checking for it in module subfolder...".format( - args["config"] - ) - ) - cfg_path = os.path.realpath( - os.path.join(constants.SCRIPTS_CONFIGS_DIR, args["config"]) - ) - if not cfg_path.endswith(".json"): - cfg_path += ".json" - print(cfg_path) - if os.path.isfile(cfg_path): - print("Found it in default configs.") - else: - print("Could not find it...") - args["error"] = 1 - args["exit"] = 1 - - if args["timeout"] is not None: - try: - timeout = float(args["timeout"]) - args["timeout"] = timeout - except ValueError: - print(f"Given timeout value {args['timeout']} is not a valid number.") - args["error"] = 1 - args["exit"] = 1 - - if not self.minimal: - format_dict = self.get_format_dict(args["format_file"]) - if format_dict == -1: - args["error"] = 1 - args["exit"] = 1 - return args - - all_formats = format_dict.keys() - if "all" in args["formats"]: - args["formats"] = all_formats - else: - for chosen_format in args["formats"]: - if chosen_format not in all_formats: - print( - "Chosen format {} is not in the IVAS format dictionary!".format( - chosen_format - ) - ) - print("Possible formats are:") - args["error"] = True - args["list_formats"] = True - args["list_modes"] = False - args["exit"] = True - - if args["list_modes"] or args["list_formats"]: - args["exit"] = True - if args["list_formats"]: - for ivas_format in all_formats: - print(ivas_format) - if args["list_modes"]: - for ivas_format in args["formats"]: - ivas_modes = format_dict[ivas_format] - for ivas_mode in ivas_modes: - print(ivas_mode) - - if "all" not in args["modes"] and not args["error"]: - for mode in args["modes"]: - found = False - for ivas_format in args["formats"]: - if mode in format_dict[ivas_format]: - found = True - if found == False: - print( - "Mode '{}' is not part of the chosen formats {}".format( - mode, str(args["formats"]) - ) - ) - - indir = args["indir"] - indir_dict = {} - if indir: - # get all needed in formats from the format dict - needed_in_formats = [] - for ivas_format in format_dict: - needed_in_formats.extend( - list( - map( - lambda x: format_dict[ivas_format][x]["in_config"], - format_dict[ivas_format].keys(), - ) - ) - ) - # need to add this here to make -sba 1 work with giving a custom dir - needed_in_formats.append("FOA") - needed_in_formats = set(needed_in_formats) - if indir[0] == "{": - # we have a json string as dict - indir_dict = json.loads(indir) - else: - indir = os.path.abspath(indir) - indir_dict = {} - if not os.path.exists(indir): - print("Given input directory {} does not exist!".format(indir)) - args["error"] = True - args["exit"] = True - elif not os.path.isdir(indir): - print( - "Given input directory {} is not a directory. Did you mean to pass '-I' instead of '-i'?".format( - indir - ) - ) - args["error"] = True - args["exit"] = True - for in_format in needed_in_formats: - indir_dict.update({in_format: indir}) - args["indir_dict"] = indir_dict - - # check output configs - if args["oc_dict"]: - oc_dict = args["oc_dict"] - # do not iterate over dict directly to be able to change it during iteration - for oc in list(oc_dict.keys()): - # allow for ls layout files for arbitrary ls setup rendering - new_oc = oc.upper() - if new_oc not in constants.DECODER_OUTPUT_CONFIGS: - new_oc = os.path.realpath(oc) - if not os.path.exists(new_oc): - print( - f"{oc} is neither a valid standard output config nor a valid file name for a arbitrary loudspeaker setup!" - ) - args["error"] = True - args["exit"] = True - oc_dict[new_oc] = oc_dict.pop(oc) - - # change in and out sampling rates if given in Hz to kHz - if args["srin"]: - if args["srin"] % 1000 == 0: - args["srin"] = int(args["srin"] / 1000) - if args["srout"]: - if args["srout"] % 1000 == 0: - args["srout"] = int(args["srout"] / 1000) - - # test if fer, ber, jbm files exist - if args["fer_file"]: - args["fer_file"] = os.path.realpath(args["fer_file"]) - if not os.path.exists(args["fer_file"]): - print("Given fer file {} does not exist!".format(args["fer_file"])) - args["error"] = True - args["exit"] = True - - if args["ber_file"]: - args["ber_file"] = os.path.realpath(args["ber_file"]) - if not os.path.exists(args["ber_file"]): - print("Given ber file {} does not exist!".format(args["ber_file"])) - args["error"] = True - args["exit"] = True - - if args["jbm_file"]: - args["jbm_file"] = os.path.realpath(args["jbm_file"]) - if not os.path.exists(args["jbm_file"]): - print("Given jbm file {} does not exist!".format(args["jbm_file"])) - args["error"] = True - args["exit"] = True - return args - - def get_format_dict(self, format_file: str): - if not format_file: - format_file = os.path.join( - constants.SCRIPTS_CONFIGS_DIR, constants.DEFAULT_IVAS_FORMAT_FILE - ) - - # if os.path.exists(format_file): - # fp = open(format_file, 'r') - # else: - # # add config path and try again - # format_file = os.path.join(constants.SCRIPTS_CONFIGS_DIR, format_file) - # if os.path.exists(format_file): - # fp = open(format_file, 'r') - # else: - # print("format file {} does not exist!\n".format(format_file)) - # return -1 - # all_formats = json.load(fp) - all_formats = IvasBaseClass.read_format_dict(format_file) - return all_formats - - -class IvasScript(IvasBaseClass): - def __init__( - self, - ivas_parser=True, - enable_logging=False, - console_logger_level="", - logger_name="IvasScript", - log_level=logging.DEBUG, - ): - super().__init__( - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - ) - if ivas_parser: - self.parser = IvasScriptArgParser(minimal=False) - else: - self.parser = IvasScriptArgParser(minimal=True) - self.args = None - - def parse_args(self): - self.args = self.parser.parse_args() - self.set_console_logger(self.args["loglevel"].upper()) - if self.args["logfile"] is not None and self.args["logfile"] != "": - self.create_logging_file(os.getcwd(), self.args["logfile"]) - - @staticmethod - def get_n_channels_from_ls_layout(oc: str): - n_channels = 0 - if os.path.exists(oc): - with open(oc, "r") as ls_layout_file: - n_channels = len(ls_layout_file.readline().strip().split(",")) - ls_layout_file.readline() - lfe_line = ls_layout_file.readline().strip() - if lfe_line != "": - n_channels += 1 # = len(lfe_line.split(",")) # TODO needs update if multiple LFE support is enabled - return n_channels - - -def add_to_proc_chain(bs_proc_chain, proc_cmd, dec_options=[]): - if bs_proc_chain == {}: - bs_proc_chain.update({"proc_chain": [], "dec_options": []}) - - bs_proc_chain["proc_chain"].append(proc_cmd) - if dec_options != []: - bs_proc_chain["dec_options"].extend(dec_options) - - -def runner_setup(runner, args): - bs_proc_chain = {} - if args["enc_options_list"]: - runner.encoder_cmdline_options = args["enc_options_list"] - - if args["dec_options_list"]: - runner.decoder_cmdline_options = args["dec_options_list"] - - if args["limit_duration"]: - runner.limit_duration = True - - # parse given argument - arg = args["limit_duration"] - start = 0 - - try: - end = float(arg) - except ValueError: - try: - start, end = arg.split(":") - start = float(start) - end = float(end) - except ValueError: - raise ValueError(f"Given duration string {arg} is invalid") - - runner.end_time = end - runner.start_time = start - - if "fer_file" in args.keys() or "ber_file" in args.keys(): - # assert that the eid-xor tool is there - bin_ext = "" - if platform.system() == "Windows": - bin_ext = ".exe" - eid_xor_path = os.path.join( - runner.config["utilPath"], "".join(["eid-xor", bin_ext]) - ) - if not os.path.isfile(eid_xor_path): - raise FileNotFoundError( - f"Could not find {eid_xor_path} (needed for error pattern insertion)" - ) - - if args["fer_file"]: - fer_suffix = "fer_{}".format( - "_".join(os.path.basename(args["fer_file"]).split(".")) - ) - fer_cmd = [ - eid_xor_path, - "-vbr", - "-fer", - "{in_file}", - args["fer_file"], - "{out_file}", - fer_suffix, - ] - add_to_proc_chain(bs_proc_chain, fer_cmd) - - if args["ber_file"]: - ber_suffix = "ber_{}".format( - "_".join(os.path.basename(args["ber_file"]).split(".")) - ) - ber_cmd = [ - eid_xor_path, - "-vbr", - "-ber", - "{in_file}", - args["ber_file"], - "{out_file}", - ber_suffix, - ] - add_to_proc_chain(bs_proc_chain, ber_cmd) - - if args["jbm_file"]: - n_frames_per_packet = "1" - if "dly_error_profile_5.dat" in args["jbm_file"]: - n_frames_per_packet = "2" - jbm_suffix = "jbm_{}".format( - "_".join(os.path.basename(args["jbm_file"]).split(".")) - ) - jbm_cmd = [ - os.path.join(runner.config["utilPath"], "networkSimulator_g192"), - args["jbm_file"], - "{in_file}", - "{out_file}", - "{in_file}.tracefile_sim", - n_frames_per_packet, - "0", - jbm_suffix, - ] - dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-VOIP"] - add_to_proc_chain(bs_proc_chain, jbm_cmd, dec_options) - - if args["sidstart"]: - sidstart_cmd = [ - os.path.join(constants.SCRIPTS_BASE_DIR, "cut_bs.py"), - "--sid", - "{in_file}", - "{out_file}", - "sidstart", - ] - add_to_proc_chain(bs_proc_chain, sidstart_cmd) - - if args["bs_length"] > 0: - bs_len = args["bs_length"] - bs_cut_cmd = [ - os.path.join(constants.SCRIPTS_BASE_DIR, "cut_bs.py"), - "--length", - f"{bs_len}", - "{in_file}", - "{out_file}", - f"{bs_len}frames", - ] - add_to_proc_chain(bs_proc_chain, bs_cut_cmd) - - if bs_proc_chain != {}: - runner.global_bitstream_processing = bs_proc_chain - - runner.set_format_select_list(args["formats"]) - - if args["oc_dict"]: - for ivas_format in args["formats"]: - runner.set_format_output_config(ivas_format, args["oc_dict"]) - if args["modes"] and "all" not in args["modes"]: - mode_select_dict = {} - for mode in args["modes"]: - mode_select_dict.update({mode: []}) - runner.set_mode_select_list(mode_select_dict) - if args["formats"]: - runner.set_format_select_list(args["formats"]) - if args["item_list"]: - runner.set_global_item_list(args["item_list"]) - - metadata_files = list() - if args["ism_metadata_files"] != []: - for f in args["ism_metadata_files"]: - md_f = f - if os.path.isfile(f): - md_f = os.path.abspath(f) - metadata_files.append(md_f) - runner.global_ism_metadata = metadata_files - if args["masa_metadata_file"] is not None: - runner.global_masa_metadata = os.path.abspath(args["masa_metadata_file"]) - - if args["decoder_only"]: - runner.run_encoder = False - if args["info"]: - runner.multiple_res_dir = True - - if args["filter_regex"]: - runner.filter = args["filter_regex"] - - if args["timeout"] is not None: - runner.timeout = args["timeout"] - - -def analyzer_setup(analyzer, args): - bs_proc_chain = {} - - if "fer_file" in args.keys() or "ber_file" in args.keys(): - # assert that the eid-xor tool is there - eid_xor_path = os.path.join(analyzer.config["utilPath"], "eid-xor") - if not os.path.isfile(eid_xor_path): - raise FileNotFoundError( - f"Could not find {eid_xor_path} (needed for error pattern insertion)" - ) - - if args["fer_file"]: - fer_suffix = "fer_{}".format( - "_".join(os.path.basename(args["fer_file"]).split(".")) - ) - fer_cmd = [ - eid_xor_path, - "-vbr", - "-fer", - "{in_file}", - args["fer_file"], - "{out_file}", - fer_suffix, - ] - add_to_proc_chain(bs_proc_chain, fer_cmd) - - if args["ber_file"]: - ber_suffix = "ber_{}".format( - "_".join(os.path.basename(args["ber_file"]).split(".")) - ) - ber_cmd = [ - eid_xor_path, - "-vbr", - "-ber", - "{in_file}", - args["ber_file"], - "{out_file}", - ber_suffix, - ] - add_to_proc_chain(bs_proc_chain, ber_cmd) - - if args["jbm_file"]: - n_frames_per_packet = "1" - if "dly_error_profile_5.dat" in args["jbm_file"]: - n_frames_per_packet = "2" - jbm_suffix = "jbm_{}".format( - "_".join(os.path.basename(args["jbm_file"]).split(".")) - ) - jbm_cmd = [ - os.path.join(analyzer.config["utilPath"], "networkSimulator_g192"), - args["jbm_file"], - "{in_file}", - "{out_file}", - "{in_file}.tracefile_sim", - n_frames_per_packet, - "0", - jbm_suffix, - ] - dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-VOIP"] - add_to_proc_chain(bs_proc_chain, jbm_cmd, dec_options) - - if args["sidstart"]: - sidstart_cmd = [ - os.path.join(constants.SCRIPTS_BASE_DIR, "cut_bs.py"), - "--sid", - "{in_file}", - "{out_file}", - "sidstart", - ] - add_to_proc_chain(bs_proc_chain, sidstart_cmd) - - if bs_proc_chain != {}: - analyzer.global_bitstream_processing = bs_proc_chain - analyzer.set_format_select_list(args["formats"]) - - if args["oc_dict"]: - for ivas_format in args["formats"]: - analyzer.set_format_output_config(ivas_format, args["oc_dict"]) - if args["modes"] and "all" not in args["modes"]: - mode_select_dict = {} - for mode in args["modes"]: - mode_select_dict.update({mode: []}) - analyzer.set_mode_select_list(mode_select_dict) - if args["formats"]: - analyzer.set_format_select_list(args["formats"]) - if args.get("create_html_output"): - analyzer.html_table = list() - if args["decoder_only"]: - analyzer.analyze_encoder = False - if args["filter_regex"]: - analyzer.filter = args["filter_regex"] - - -if __name__ == "__main__": - test_parser = IvasScriptArgParser() - args = test_parser.parse_args() - print(args) diff --git a/scripts/pyivastest/IvasSvnBuilder.py b/scripts/pyivastest/IvasSvnBuilder.py deleted file mode 100644 index e437843d166aed0faa37f3f8bca0c77a563e456c..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/IvasSvnBuilder.py +++ /dev/null @@ -1,1535 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import fileinput -import json -import logging -import os -import platform -import re -import shutil -import subprocess -import urllib.parse -import xml.etree.ElementTree -from getpass import getpass -from multiprocessing import cpu_count - -import pyivastest.constants as constants -import pyivastest.ivas_svn as svn -from pyivastest.IvasBaseClass import * -from pyivastest.IvasModeAnalyzer import * -from pyivastest.IvasModeRunner import * - - -class IvasBuilder(IvasBaseClass): - """ """ - - def __init__( - self, - src_dir="", - msbuild="", - enable_logging=False, - console_logger_level="", - logger_name="IvasBuilder", - log_level=logging.DEBUG, - ): - super().__init__( - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - ) - self.src_dir = src_dir - self.binary_ext = "" - if self.system == "Windows": - self.binary_ext = ".exe" - if msbuild: - self.msbuild = msbuild - else: - self.msbuild = self.find_windows_ms_build() - if not os.path.exists(self.msbuild): - self.logger.console( - "MSBuild binary {} does not exist!".format(self.ms_build), - logging.ERROR, - ) - self.encoder = "" - self.decoder = "" - - def get_options_h(self): - """ """ - return os.path.join(self.src_dir, "lib_com", "options.h") - - def find_windows_ms_build(self): - my_sys = platform.system() - ms_build = "" - if my_sys == "Windows": - self.logger.info("Looking for MSBuild...") - vswhere_bin = "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\vswhere.exe" - if not os.path.exists: - self.logger.console( - "Could not determine the VS Version, vswhere.exe was not found, aborting...", - logging.CRITICAL, - ) - raise RuntimeError() - cmd = [vswhere_bin, "-latest", "-format", "json", "-utf8"] - p = subprocess.run(cmd, stdout=subprocess.PIPE) - vs_latest = json.loads(p.stdout)[0] - inst_path = vs_latest["installationPath"] - inst_version = vs_latest["installationVersion"].split(".")[0] - # path changes with ervery version of VS, thank you very much Microsoft... - if inst_version == "15": # Visual Studio 2017 - ms_build = os.path.join( - inst_path, "MSBuild", "15.0", "Bin", "MSBuild.exe" - ) - self.logger.info( - "Found VS {} with msbuild: {}".format(inst_version, ms_build) - ) - elif inst_version == "16": # Visual Studio 2019 - ms_build = os.path.join( - inst_path, "MSBuild", "current", "Bin", "MSBuild.exe" - ) - self.logger.info( - "Found VS {} with msbuild: {}".format(inst_version, ms_build) - ) - else: - self.logger.error( - "Found VS {}, sorry this version cannot be handled yet.".format( - inst_version - ) - ) - raise RuntimeError() - - if not os.path.exists(ms_build): - ms_build = "" - return ms_build - - def disable_options(self, options_h, defines_to_disable): - """ - - Parameters - ---------- - options_h : - - defines_to_disable : - - - Returns - ------- - - """ - # Read in the file - if defines_to_disable is not None: - for cur_define in defines_to_disable: - self.logger.info("Disabling define {}".format(cur_define)) - for line in fileinput.input(options_h, inplace=True): - print( - re.sub( - "".join(["^[ ]*#define[ ]*", cur_define]), - "".join(["/*#define ", cur_define, "*/"]), - line, - ), - end="", - ) - - def enable_options(self, options_h, defines_to_enable): - """ - - Parameters - ---------- - options_h : - - defines_to_enable : - - - Returns - ------- - - """ - # Read in the file - if defines_to_enable is not None: - for cur_define in defines_to_enable: - self.logger.info("Enabling define {}".format(cur_define)) - for line in fileinput.input(options_h, inplace=True): - print( - re.sub( - "".join(["^[ ]*?/\*#define[ ]+?", cur_define, "[ ]*?\*/"]), - "".join(["#define ", cur_define, " "]), - line, - ), - end="", - ) - - def check_for_binaries(self, sub_dir: str) -> bool: - out_dir = os.path.join(self.src_dir, sub_dir) - result = True - if os.path.exists( - os.path.join(out_dir, "".join(["IVAS_cod", self.binary_ext])) - ): - self.encoder = os.path.join(out_dir, "".join(["IVAS_cod", self.binary_ext])) - if os.path.exists( - os.path.join(out_dir, "".join(["IVAS_dec", self.binary_ext])) - ): - self.decoder = os.path.join( - out_dir, "".join(["IVAS_dec", self.binary_ext]) - ) - else: - result = False - elif os.path.exists( - os.path.join(out_dir, "".join(["EVS_cod", self.binary_ext])) - ): - self.encoder = os.path.join(out_dir, "".join(["EVS_cod", self.binary_ext])) - if os.path.exists( - os.path.join(out_dir, "".join(["EVS_dec", self.binary_ext])) - ): - self.decoder = os.path.join( - out_dir, "".join(["EVS_dec", self.binary_ext]) - ) - else: - result = False - else: - result = False - return result - - def build( - self, - sub_dir, - make_options=[], - defines_to_enable=[], - defines_to_disable=[], - instrumented=False, - mem_only=False, - ): - """ - - Parameters - ---------- - sub_dir : - - make_options : - (Default value = []) - defines_to_enable : - (Default value = []) - defines_to_disable : - (Default value = []) - instrumented : - (Default value = False) - - Returns - ------- - - """ - self.create_logging_file(self.src_dir, "IvasBuilder") - self.logger.info("Building...") - options_h = self.get_options_h() - options_h_bak = "".join([options_h, ".unchanged"]) - shutil.copy(options_h, options_h_bak) - success = False - # disable and enable defines - self.enable_options(options_h, defines_to_enable) - self.disable_options(options_h, defines_to_disable) - - if not os.path.exists(sub_dir): - self.logger.info("Created out dir {}".format(sub_dir)) - os.makedirs(sub_dir) - - build_log_name = os.path.join(sub_dir, "build" + constants.LOG_FILE_EXT) - build_log = open(build_log_name, "w") - # build - if instrumented: - self.logger.console("Instrumenting...", logging.INFO) - make_dir = os.path.join(self.src_dir, "scripts", "c-code_instrument") - # remove if it c-code_instrument already exists - if os.path.exists(make_dir): - shutil.rmtree(make_dir) - instrument_cmd = [ - os.path.join(self.src_dir, "scripts", "prepare_instrumentation.sh") - ] - if mem_only: - instrument_cmd.append("mem_only") - build_log.write(" ".join(instrument_cmd)) - build_log.write("\n") - build_result = subprocess.run( - instrument_cmd, capture_output=True, text=True, check=True - ) - build_log.write(build_result.stderr) - build_log.write(build_result.stdout) - build_log.write("\n") - else: - make_dir = self.src_dir - - build_log.write("".join(["Build directory: ", make_dir])) - build_log.write("\n") - self.logger.console("Building...", logging.INFO) - - # to be safe remove existing binaries - if os.path.exists( - os.path.join(make_dir, "".join(["IVAS_cod", self.binary_ext])) - ): - os.remove(os.path.join(make_dir, "".join(["IVAS_cod", self.binary_ext]))) - if os.path.exists( - os.path.join(make_dir, "".join(["IVAS_dec", self.binary_ext])) - ): - os.remove(os.path.join(make_dir, "".join(["IVAS_dec", self.binary_ext]))) - if os.path.exists( - os.path.join(make_dir, "".join(["EVS_cod", self.binary_ext])) - ): - os.remove(os.path.join(make_dir, "".join(["EVS_cod", self.binary_ext]))) - if os.path.exists( - os.path.join(make_dir, "".join(["EVS_dec", self.binary_ext])) - ): - os.remove(os.path.join(make_dir, "".join(["EVS_dec", self.binary_ext]))) - # remove also in the target directory if it exists - if os.path.abspath(make_dir) != os.path.abspath(sub_dir): - if os.path.exists( - os.path.join(sub_dir, "".join(["IVAS_cod", self.binary_ext])) - ): - os.remove(os.path.join(sub_dir, "".join(["IVAS_cod", self.binary_ext]))) - if os.path.exists( - os.path.join(sub_dir, "".join(["IVAS_dec", self.binary_ext])) - ): - os.remove(os.path.join(sub_dir, "".join(["IVAS_dec", self.binary_ext]))) - if os.path.exists( - os.path.join(sub_dir, "".join(["EVS_cod", self.binary_ext])) - ): - os.remove(os.path.join(sub_dir, "".join(["EVS_cod", self.binary_ext]))) - if os.path.exists( - os.path.join(sub_dir, "".join(["EVS_dec", self.binary_ext])) - ): - os.remove(os.path.join(sub_dir, "".join(["EVS_dec", self.binary_ext]))) - - build_success = -1 - if self.system == "Windows": - make_sln = os.path.join(make_dir, "Workspace_msvc", "Workspace_msvc.sln") - clean_cmd = [self.msbuild, make_sln, "/t:clean"] - build_log.write(" ".join(clean_cmd)) - build_log.write("\n") - make_cmd = [self.msbuild, make_sln] + make_options - build_result = subprocess.run( - clean_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) - build_log.write(build_result.stderr.decode("cp1252")) - build_log.write(build_result.stderr.decode("cp1252")) - build_log.write(" ".join(make_cmd)) - build_log.write("\n") - build_result = subprocess.run( - list(filter(None, make_cmd)), - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - build_success = build_result.returncode - build_log.write(build_result.stderr.decode("cp1252")) - build_log.write(build_result.stderr.decode("cp1252")) - else: - clean_cmd = ["make", "-C", make_dir, "clean"] - build_log.write(" ".join(clean_cmd)) - build_log.write("\n") - make_cmd = ["make", "-C", make_dir] + make_options - build_result = subprocess.run( - clean_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) - build_log.write(build_result.stderr.decode()) - build_log.write(build_result.stdout.decode()) - build_log.write(" ".join(make_cmd)) - build_log.write("\n") - build_result = subprocess.run( - list(filter(None, make_cmd)), - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - build_success = build_result.returncode - build_log.write(build_result.stderr.decode()) - build_log.write(build_result.stdout.decode()) - - if build_success != 0: - self.logger.console( - f"Something went wrong with building, please check {build_log_name}!", - logging.ERROR, - ) - build_log.flush() - build_log.close() - else: - success = True - - # test for EVS vs IVAS - # avoid copying if make_dir and sub_dir are identical - if os.path.abspath(make_dir) != os.path.abspath(sub_dir): - if os.path.exists( - os.path.join(make_dir, "".join(["IVAS_cod", self.binary_ext])) - ): - shutil.copy( - os.path.join(make_dir, "".join(["IVAS_cod", self.binary_ext])), - sub_dir, - ) - shutil.copy( - os.path.join(make_dir, "".join(["IVAS_dec", self.binary_ext])), - sub_dir, - ) - self.encoder = os.path.join( - sub_dir, "".join(["IVAS_cod", self.binary_ext]) - ) - self.decoder = os.path.join( - sub_dir, "".join(["IVAS_dec", self.binary_ext]) - ) - elif os.path.exists( - os.path.join(make_dir, "".join(["EVS_cod", self.binary_ext])) - ): - shutil.copy( - os.path.join(make_dir, "".join(["EVS_cod", self.binary_ext])), - sub_dir, - ) - shutil.copy( - os.path.join(make_dir, "".join(["EVS_dec", self.binary_ext])), - sub_dir, - ) - self.encoder = os.path.join( - sub_dir, "".join(["EVS_cod", self.binary_ext]) - ) - self.decoder = os.path.join( - sub_dir, "".join(["EVS_dec", self.binary_ext]) - ) - - # restore state of options.h - if os.path.exists(options_h_bak): - shutil.copy(options_h_bak, options_h) - os.remove(options_h_bak) - - return success - - # TODO: this is not used anywhere, can it go? - def copy_binaries(self, make_dir, target_dir, target_suffix=""): - if os.path.exists( - os.path.join(make_dir, "".join(["IVAS_cod", self.binary_ext])) - ): - shutil.copy( - os.path.join(make_dir, "".join(["IVAS_cod", self.binary_ext])), - os.path.join( - target_dir, "".join(["IVAS_cod", target_suffix, self.binary_ext]) - ), - ) - shutil.copy( - os.path.join(make_dir, "".join(["IVAS_dec", self.binary_ext])), - os.path.join( - target_dir, "".join(["IVAS_dec", target_suffix, self.binary_ext]) - ), - ) - elif os.path.exists( - os.path.join(make_dir, "".join(["EVS_cod", self.binary_ext])) - ): - shutil.copy( - os.path.join(make_dir, "".join(["EVS_cod", self.binary_ext])), - os.path.join( - target_dir, "".join(["EVS_cod", target_suffix, self.binary_ext]) - ), - ) - shutil.copy( - os.path.join(make_dir, "".join(["EVS_dec", self.binary_ext])), - os.path.join( - target_dir, "".join(["EVS_dec", target_suffix, self.binary_ext]) - ), - ) - - -class IvasSvnBuilder(IvasBuilder): - """ """ - - def __init__( - self, - svn_url, - svn_user="", - out_dir=".", - revision=None, - svn_pwd="", - msbuild="", - enable_logging=False, - console_logger_level="", - logger_name="IvasSvnBuilder", - log_level=logging.DEBUG, - ): - super().__init__( - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - msbuild=msbuild, - ) - self.svn_url = svn_url - # check if we have a complete url or just the path part - parsed_url = urllib.parse.urlparse(self.svn_url) - if parsed_url.scheme == "": - # onyl path of the svn url, use the default root - svn_root = constants.DEFAULT_IVAS_REPO_URL - self.svn_url = "/".join([svn_root, self.svn_url]) - self.svn_user = svn_user - self.out_dir = out_dir - self.revision = revision - self.svn_pwd = svn_pwd - self.has_auth_password = False - if self.svn_user == "" or self.svn_pwd == "": - auth_info = svn.get_svn_auth_info(self.svn_url, logger=self.logger) - if svn_user == "": - if auth_info["username"] != "": - # svn can look up auth info itself... - self.svn_user = auth_info["username"] - else: - # ask for the user name - print("SVN user name needed:") - self.svn_user = input(" user>") - if svn_pwd == "": - if auth_info["has_password"] is False: - # ask for the password - print("Password for user {}".format(self.svn_user)) - self.svn_pwd = getpass(" pwd>") - else: - self.has_auth_password = True - - def get_revision_list(self): - """Allow for the most-likely kind of log listing: the complete list, - a FROM and TO timestamp, a FROM timestamp only, or a quantity limit. - """ - self.logger.info("Fetch revision list from svn") - result = svn.run_remote_svn_command( - ["log", "--xml", self.svn_url], - username=self.svn_user, - password=self.svn_pwd, - logger=self.logger, - ) - if result is not None: - root = xml.etree.ElementTree.fromstring(result) - revisions = [int(e.get("revision")) for e in root.iter("logentry")] - return revisions - else: - return None - - def get_svn_source(self): - """ """ - - # get code - if self.src_dir == "" or not os.path.exists(self.src_dir): - self.logger.console("Exporting code from remote SVN", logging.INFO) - self.logger.info( - "SVN url {}, svn user {}".format(self.svn_url, self.svn_user) - ) - try: - svninfo = svn.get_remote_svn_info( - self.svn_url, - username=self.svn_user, - password=self.svn_pwd, - logger=self.logger, - ) - except Exception as exc: - self.logger.console( - "Something went wrong when accessing the remote SVN!", - logging.CRITICAL, - ) - self.logger.console("{}".format(str(exc)), logging.CRITICAL) - raise RuntimeError( - "Could not access remote SVN {} with username{}".format( - self.svn_url, self.svn_user - ) - ) - - latest_revision = svninfo["commit_revision"] - if self.revision: - if self.revision < 1: - self.revision = 1 - if self.revision > latest_revision: - self.logger.console( - "Requested revision {} greater than latest commit revision {}".format( - str(self.revision), str(latest_revision) - ), - logging.INFO, - ) - self.logger.console( - "Getting latest commit revision {}".format( - str(latest_revision) - ), - logging.INFO, - ) - self.revision = latest_revision - else: - rl = self.get_revision_list() - if self.revision in rl: - self.logger.console( - "Requested revision {} exists, getting it...".format( - str(self.revision) - ), - logging.INFO, - ) - latest_revision = self.revision - else: - # find - latest_revision = next( - (x for x in rl if x <= self.revision), None - ) - self.logger.console( - "Requested revision {} does not exist, getting revision {} instead".format( - str(self.revision), str(latest_revision) - ), - logging.INFO, - ) - self.revision = latest_revision - else: - self.logger.console( - "Exporting latest revision {}".format(str(latest_revision)), - logging.INFO, - ) - self.revision = latest_revision - - self.src_dir = os.path.join( - self.out_dir, - svninfo["entry_path"], - "".join(["r", str(latest_revision)]), - ) - self.revision = latest_revision - if os.path.exists(self.src_dir): - self.create_logging_file(self.src_dir, "IvasBuilder") - self.logger.console( - "Revision {} already exported...".format(str(latest_revision)), - logging.INFO, - ) - else: - self.logger.console( - "Exporting to {}...".format(self.src_dir), logging.INFO - ) - svn.svn_export( - self.svn_url, - self.src_dir, - revision=self.revision, - username=self.svn_user, - password=self.svn_pwd, - logger=self.logger, - ) - self.create_logging_file(self.src_dir, "IvasBuilder") - self.logger.console("Done exporting", logging.INFO) - else: - self.logger.console( - "Revision {} already exported...".format(str(self.revision)), - logging.INFO, - ) - - def build( - self, - sub_dir, - make_options=[], - defines_to_enable=[], - defines_to_disable=[], - instrumented=False, - mem_only=False, - ): - """ - - Parameters - ---------- - sub_dir : - - make_options : - (Default value = []) - defines_to_enable : - (Default value = []) - defines_to_disable : - (Default value = []) - instrumented : - (Default value = False) - - Returns - ------- - - """ - - self.get_svn_source() - return super().build( - sub_dir=sub_dir, - make_options=make_options, - defines_to_enable=defines_to_enable, - defines_to_disable=defines_to_disable, - instrumented=instrumented, - mem_only=mem_only, - ) - - -class IvasBuilderAndRunner(IvasBaseClass): - """ """ - - def __init__( - self, - src_dir=None, - svn_url=None, - svn_user=None, - out_dir=None, - revision=None, - svn_pwd=None, - site_config="", - msbuild="", - sample_rate_enc_in=None, - sample_rate_dec_out=None, - enable_logging=False, - console_logger_level="", - logger_name="IvasBuilderAndRunner", - log_level=logging.DEBUG, - ): - super().__init__( - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - ) - if src_dir: - self.builder = IvasBuilder( - src_dir, - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=".".join([logger_name, "builder"]), - log_level=log_level, - msbuild=msbuild, - ) - elif svn_url: - self.builder = IvasSvnBuilder( - svn_url=svn_url, - svn_user=svn_user, - out_dir=out_dir, - revision=revision, - svn_pwd=svn_pwd, - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=".".join([logger_name, "svnbuilder"]), - log_level=log_level, - msbuild=msbuild, - ) - self.build_and_run_dict = {} - self.site_config = site_config - self.sample_rate_enc_in = sample_rate_enc_in - self.sample_rate_dec_out = sample_rate_dec_out - self.force_build = False - - @classmethod - def fromSvn( - cls, - svn_url="", - svn_user="", - out_dir=None, - revision=None, - svn_pwd="", - site_config="", - msbuild="", - sample_rate_enc_in=None, - sample_rate_dec_out=None, - enable_logging=False, - console_logger_level="", - logger_name="IvasBuilderAndRunner", - log_level=logging.DEBUG, - ): - return cls( - svn_url=svn_url, - svn_user=svn_user, - out_dir=out_dir, - revision=revision, - svn_pwd=svn_pwd, - site_config=site_config, - sample_rate_enc_in=sample_rate_enc_in, - sample_rate_dec_out=sample_rate_dec_out, - enable_logging=enable_logging, - console_logger_level=console_logger_level, - logger_name=logger_name, - log_level=log_level, - msbuild=msbuild, - ) - - def add_build_and_run_config( - self, - cfg_name, - run_tool="", - run_env={}, - make_options=[], - defines_to_enable=[], - defines_to_disable=[], - format_select_list=None, - mode_select_list=None, - instrumented=False, - sample_rate_enc_in=None, - sample_rate_dec_out=None, - formats_dict={}, - formats_fname="", - max_workers=1, - timeout=None, - mem_only=False, - ): - """ - - Parameters - ---------- - cfg_name : - - run_tool : - (Default value = "") - make_options : - (Default value = []) - defines_to_enable : - (Default value = []) - defines_to_disable : - (Default value = []) - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - instrumented : - (Default value = False) - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.logger.console( - "config {} already exists, altering it".format(cfg_name), logging.INFO - ) - if format_select_list: - self.build_and_run_dict[cfg_name]["runner"].add_format_select_list( - format_select_list - ) - if mode_select_list: - self.build_and_run_dict[cfg_name]["runner"].add_format_select_list( - mode_select_list - ) - - self.build_and_run_dict[cfg_name]["runner"].test_tool = run_tool - self.build_and_run_dict[cfg_name]["defines_to_enable"] = defines_to_enable - self.build_and_run_dict[cfg_name]["defines_to_disable"] = defines_to_disable - self.build_and_run_dict[cfg_name]["instrumented"] = instrumented - self.build_and_run_dict[cfg_name]["mem_only"] = mem_only - self.build_and_run_dict[cfg_name]["make_options"] = make_options - else: - self.logger.console("Adding config {}".format(cfg_name), logging.INFO) - run_dir = os.path.join(self.builder.src_dir, cfg_name) - if not sample_rate_enc_in: - sample_rate_enc_in = self.sample_rate_enc_in - if not sample_rate_dec_out: - sample_rate_dec_out = self.sample_rate_dec_out - newRunner = IvasModeRunner( - dir_name=run_dir, - bin_suffix=self.builder.binary_ext, - test_tool=run_tool, - run_env=run_env, - site_config=self.site_config, - sample_rate_enc_in=sample_rate_enc_in, - formats_fname=formats_fname, - max_workers=max_workers, - sample_rate_dec_out=sample_rate_dec_out, - formats_dict=formats_dict, - enable_logging=True, - logger_name="{}.{}runner".format(self.logger.name, cfg_name), - log_level=self.logger.level, - timeout=timeout, - ) - if format_select_list: - newRunner.set_format_select_list(format_select_list) - if mode_select_list: - newRunner.set_mode_select_list(mode_select_list) - new_analyzer = IvasModeAnalyzer( - run_dir, - site_config=self.site_config, - formats_dict=formats_dict, - formats_fname=formats_fname, - enable_logging=True, - logger_name="{}.{}analyzer".format(self.logger.name, cfg_name), - log_level=self.logger.level, - ) - cfg_dict = { - cfg_name: { - "runner": newRunner, - "defines_to_enable": defines_to_enable, - "defines_to_disable": defines_to_disable, - "instrumented": instrumented, - "mem_only": mem_only, - "make_options": make_options, - "analyzer": new_analyzer, - } - } - self.build_and_run_dict.update(cfg_dict) - - def set_format_select_list(self, cfg_name, format_select_list): - """ - - Parameters - ---------- - cfg_name : - - format_select_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].set_format_select_list( - format_select_list - ) - - def set_mode_select_list(self, cfg_name, mode_select_list): - """ - - Parameters - ---------- - cfg_name : - - mode_select_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].set_format_select_list( - mode_select_list - ) - - def add_format_select_list(self, cfg_name, format_select_list): - """ - - Parameters - ---------- - cfg_name : - - format_select_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].add_format_select_list( - format_select_list - ) - - def add_mode_select_list(self, cfg_name, mode_select_list): - """ - - Parameters - ---------- - cfg_name : - - mode_select_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].add_mode_select_list( - mode_select_list - ) - - def add_format_output_config(self, cfg_name, ivas_format, oc_list): - """ - - Parameters - ---------- - cfg_name : - - ivas_format : - - oc_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].add_format_output_config( - ivas_format, oc_list - ) - - def set_format_output_config(self, cfg_name, ivas_format, oc_list): - """ - - Parameters - ---------- - cfg_name : - - ivas_format : - - oc_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].set_format_output_config( - ivas_format, oc_list - ) - - def add_bw_select_list(self, cfg_name, bw_list): - """ - - Parameters - ---------- - cfg_name : - - bw_list : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].add_bw_select_list(bw_list) - - def set_run_tool(self, cfg_name, run_tool): - """ - - Parameters - ---------- - cfg_name : - - run_tool : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.build_and_run_dict[cfg_name]["runner"].test_tool = run_tool - - def show_config_list(self): - """ """ - for cfg_name in self.build_and_run_dict: - self.logger.console(cfg_name) - - def build(self, cfg_name): - """ - - Parameters - ---------- - cfg_name : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - out_dir = os.path.join(self.builder.src_dir, cfg_name) - cfg = self.build_and_run_dict[cfg_name] - self.builder.build( - out_dir, - make_options=cfg["make_options"], - defines_to_enable=cfg["defines_to_enable"], - defines_to_disable=cfg["defines_to_disable"], - instrumented=cfg["instrumented"], - mem_only=cfg["mem_only"], - ) - self.build_and_run_dict[cfg_name]["runner"].encoder = self.builder.encoder - self.build_and_run_dict[cfg_name]["runner"].decoder = self.builder.decoder - - def run(self, cfg_name): - """ - - Parameters - ---------- - cfg_name : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.logger.console("--------------------------------------------") - self.logger.console(cfg_name) - self.logger.console("--------------------------------------------") - self.logger.info("running configuration {}".format(cfg_name)) - # make sure we have the right directory for the runner - if self.builder.src_dir == "": - self.builder.get_svn_source() - run_dir = os.path.join(self.builder.src_dir, cfg_name) - if not os.path.exists(run_dir) or self.force_build: - # we have to build first - self.build(cfg_name) - else: - # check if binaries are in the directory - # test for EVS vs IVAS - if os.path.exists( - os.path.join( - run_dir, "".join(["IVAS_cod", self.builder.binary_ext]) - ) - ) and os.path.exists( - os.path.join( - run_dir, "".join(["IVAS_dec", self.builder.binary_ext]) - ) - ): - self.build_and_run_dict[cfg_name]["runner"].encoder = os.path.join( - run_dir, "".join(["IVAS_cod", self.builder.binary_ext]) - ) - self.build_and_run_dict[cfg_name]["runner"].decoder = os.path.join( - run_dir, "".join(["IVAS_dec", self.builder.binary_ext]) - ) - elif os.path.exists( - os.path.join(run_dir, "".join(["EVS_cod", self.builder.binary_ext])) - ) and os.path.exists( - os.path.join(run_dir, "".join(["EVS_dec", self.builder.binary_ext])) - ): - self.build_and_run_dict[cfg_name]["runner"].encoder = os.path.join( - run_dir, "".join(["EVS_cod", self.builder.binary_ext]) - ) - self.build_and_run_dict[cfg_name]["runner"].decoder = os.path.join( - run_dir, "".join(["EVS_dec", self.builder.binary_ext]) - ) - else: - # no binaries there, maybe we need to build again - self.builder.logger.info( - "Binaries for config {} do not exist, trying to rebuild them".format( - cfg_name - ) - ) - self.build(cfg_name) - self.build_and_run_dict[cfg_name]["runner"].dir_name = run_dir - self.build_and_run_dict[cfg_name]["analyzer"].dir = run_dir - self.build_and_run_dict[cfg_name]["runner"].run() - - ret_val = 0 - if self.build_and_run_dict[cfg_name]["analyzer"].get_errors: - failed_modes = self.build_and_run_dict[cfg_name]["runner"].failed_modes - _, n_runtime_err = self.build_and_run_dict[cfg_name][ - "analyzer" - ].get_errors(failed_modes) - ret_val = int(n_runtime_err > 0) - - return ret_val - - def get_run_errors(self, cfg_name): - """ - - Parameters - ---------- - cfg_name : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - if self.build_and_run_dict[cfg_name]["analyzer"]: - if self.build_and_run_dict[cfg_name]["analyzer"].get_run_errors: - self.build_and_run_dict[cfg_name]["analyzer"].get_run_errors() - - def build_and_run_cfg(self, cfg_name): - """ - - Parameters - ---------- - cfg_name : - - - Returns - ------- - - """ - if cfg_name in self.build_and_run_dict: - self.logger.console("--------------------------------------------") - self.logger.console(cfg_name) - self.logger.console("--------------------------------------------") - self.logger.info("Building and running configuration {}".format(cfg_name)) - self.build(cfg_name) - self.run(cfg_name) - - def build_and_run_all(self): - """ """ - for cfg_name in self.build_and_run_dict: - self.build_and_run_cfg(cfg_name) - - def build_all(self): - """ """ - for cfg_name in self.build_and_run_dict: - self.build(cfg_name) - - def run_all(self): - """ """ - for cfg_name in self.build_and_run_dict: - self.run(cfg_name) - - def add_check( - self, - check, - format_select_list=None, - mode_select_list=None, - defines_to_enable=None, - defines_to_disable=None, - formats_fname="", - max_workers=1, - usan_supp_file=None, - ): - - n_cpus = cpu_count() - # do not use all cores to avoid weird getting-stuck issues observed on Mac... - make_options = ["-j", f"{n_cpus - 2}"] - run_tool = "" - run_env = dict() - if defines_to_enable is None: - defines_to_enable_check = [] - else: - defines_to_enable_check = defines_to_enable.copy() - if defines_to_disable is None: - defines_to_disable_check = [] - else: - defines_to_disable_check = defines_to_disable.copy() - if check.startswith("CLANG"): - clang_n = check[-1] - make_options.append("CLANG=" + clang_n) - defines_to_disable_check.extend(["RAM_COUNTING_TOOL"]) - - # for undefined behaviou sanitizer, pass suppression file if given - if clang_n == "3" and usan_supp_file is not None: - run_env["UBSAN_OPTIONS"] = ( - f"suppressions={usan_supp_file},report_error_type=1" - ) - - elif check == "VALGRIND": - defines_to_disable_check.extend(["RAM_COUNTING_TOOL"]) - run_tool = [ - "valgrind", - "-v", - "--tool=memcheck", - "--leak-check=yes", - "--show-reachable=yes", - "--num-callers=20", - ] - - self.add_build_and_run_config( - check, - run_tool=run_tool, - run_env=run_env, - make_options=make_options, - format_select_list=format_select_list, - mode_select_list=mode_select_list, - defines_to_enable=defines_to_enable_check, - defines_to_disable=defines_to_disable_check, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.build_and_run_dict[check]["analyzer"].check = check - - def add_complexity( - self, - format_select_list=None, - mode_select_list=None, - defines_to_enable=None, - defines_to_disable=None, - formats_fname="", - max_workers=1, - mem_only=False, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - if defines_to_enable is None: - defines_to_enable_check = [] - else: - defines_to_enable_check = defines_to_enable.copy() - if defines_to_disable is None: - defines_to_disable_check = [] - else: - defines_to_disable_check = defines_to_disable.copy() - self.add_build_and_run_config( - "COMPLEXITY", - make_options=["DEBUG=0"], - instrumented=True, - format_select_list=format_select_list, - mode_select_list=mode_select_list, - defines_to_enable=defines_to_enable_check, - defines_to_disable=defines_to_disable_check, - formats_fname=formats_fname, - max_workers=max_workers, - mem_only=mem_only, - ) - - # TODO: this is used nowhere, is this still needed? - def add_all_checks( - self, - format_select_list=None, - mode_select_list=None, - defines_to_enable=None, - defines_to_disable=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - checks = ["CLANG1", "CLANG2", "CLANG3", "VALGRIND"] - for check in checks: - self.add_check( - check, - format_select_list=format_select_list, - mode_select_list=mode_select_list, - defines_to_enable=defines_to_enable, - defines_to_disable=defines_to_disable, - formats_fname=formats_fname, - max_workers=max_workers, - ) - - def valgrind( - self, - format_select_list=None, - mode_select_list=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - self.add_check( - self, - "VALGRIND", - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.build_and_run_cfg("VALGRIND") - - def clang1( - self, - format_select_list=None, - mode_select_list=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - self.add_check( - self, - "CLANG1", - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.build_and_run_cfg("CLANG1") - - def clang2( - self, - format_select_list=None, - mode_select_list=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - self.add_check( - self, - "CLANG2", - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.build_and_run_cfg("CLANG2") - - def clang3( - self, - format_select_list=None, - mode_select_list=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - self.add_check( - self, - "CLANG3", - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.build_and_run_cfg("CLANG3") - - def all_tests( - self, - format_select_list=None, - mode_select_list=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - self.clang1( - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.clang2( - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.clang3( - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.valgrind( - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - - def complexity( - self, - format_select_list=None, - mode_select_list=None, - formats_fname="", - max_workers=1, - ): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - mode_select_list : - (Default value = None) - - Returns - ------- - - """ - self.add_complexity( - format_select_list=format_select_list, - mode_select_list=mode_select_list, - formats_fname=formats_fname, - max_workers=max_workers, - ) - self.build_and_run_cfg("COMPLEXITY") - - def get_analyzer(self, cfg_name): - """ - - Parameters - ---------- - format_select_list : - (Default value = None) - format_select_list : - (Default value = None) - - Returns - ------- - - """ - return self.build_and_run_dict[cfg_name]["analyzer"] diff --git a/scripts/pyivastest/__init__.py b/scripts/pyivastest/__init__.py deleted file mode 100644 index 5ab768973f1ed9236776b8afe0f72112cde7b62c..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/__init__.py +++ /dev/null @@ -1,52 +0,0 @@ -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -""" -pyivastest -==== - -Provides - Classes and methods for testing IVAS - -Imports -------- -functions -class -""" -from . import ( - IvasBaseClass, - IvasModeAnalyzer, - IvasModeCollector, - IvasModeRunner, - IvasScriptsCommon, - IvasSvnBuilder, - constants, - ivas_svn, -) diff --git a/scripts/pyivastest/constants.py b/scripts/pyivastest/constants.py deleted file mode 100644 index 5cdf733da16e619e4b64c8cf0c2c18b59c5e9190..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/constants.py +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import os.path - -DEFAULT_IVAS_REPO_URL = "" -WC_BASE_DIR = os.path.realpath( - os.path.join(os.path.realpath(os.path.dirname(__file__)), "../../") -) -SCRIPTS_BASE_DIR = os.path.realpath( - os.path.join(os.path.realpath(os.path.dirname(__file__)), "../") -) -SCRIPTS_CONFIGS_DIR = os.path.realpath(os.path.join(SCRIPTS_BASE_DIR, "config")) -SW_FILES_BASE_DIR = os.path.realpath( - os.path.join( - os.path.dirname(__file__), - "../switchPaths/", - ) -) -OC_TO_NCHANNELS = { - "MONO": 1, - "STEREO": 2, - "BINAURAL": 2, - "BINAURAL_ROOM_IR": 2, - "BINAURAL_ROOM_REVERB": 2, - "5_1": 6, - "7_1": 8, - "5_1_2": 8, - "5_1_4": 10, - "7_1_4": 12, - "FOA": 4, - "HOA2": 9, - "HOA3": 16, - "EXT": 1, - "ISM1": 1, - "ISM2": 2, - "ISM3": 3, - "ISM4": 4, - "MASA1TC": 1, - "MASA2TC": 2, -} -DECODER_OUTPUT_CONFIGS = { - "MONO", - "STEREO", - "BINAURAL", - "BINAURAL_ROOM_IR", - "BINAURAL_ROOM_REVERB", - "5_1", - "7_1", - "5_1_4", - "5_1_2", - "7_1_4", - "FOA", - "HOA2", - "HOA3", - "EXT", -} -LOG_FILE_EXT = ".txt" -LOG_FILE_DIR = "logs" -DEFAULT_IVAS_FORMAT_FILE = "ivas_modes.json" -SPAR_BITRATES = [] diff --git a/scripts/pyivastest/ivas_svn.py b/scripts/pyivastest/ivas_svn.py deleted file mode 100644 index a7b1b9eeb0fd230e231c559a0c6facd2f66a75ae..0000000000000000000000000000000000000000 --- a/scripts/pyivastest/ivas_svn.py +++ /dev/null @@ -1,188 +0,0 @@ -#!/usr/bin/env python3 - -""" - (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. -""" - -import subprocess -import urllib -import xml.etree.ElementTree - - -def run_svn_command(svn_command, logger=None, err_except_list=None): - svn_base_cmd = ["svn", "--non-interactive"] - full_cmd = svn_base_cmd + svn_command - if logger is not None: - logger.info("Running svn command '{}'".format(full_cmd)) - result = subprocess.run( - list(filter(None, full_cmd)), stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) - if logger is not None and result.returncode != 0: - if isinstance(err_except_list, str): - err_except_list = [err_except_list] - if not any([err in result.stderr.decode() for err in err_except_list]): - logger.info( - "svn command failed with returncode {}".format(result.returncode) - ) - logger.info(result.stderr.decode()) - logger.info(result.stdout.decode()) - - if result.returncode == 0: - return result.stdout.decode() - else: - return None - - -def run_local_svn_command(svn_command, logger=None, err_except_list=None): - return run_svn_command(svn_command, logger=logger, err_except_list=err_except_list) - - -def run_remote_svn_command( - svn_command, username="", password="", logger=None, err_except_list=None -): - # always trust server cert cert - remote_cmd = ["--trust-server-cert"] - if username != "": - remote_cmd.extend(["--username", username]) - if password != "": - remote_cmd.extend(["--password", password]) - remote_cmd.extend(svn_command) - return run_svn_command(remote_cmd, logger=logger, err_except_list=err_except_list) - - -def get_local_svn_info(local_path: str, logger=None, err_except_list=None): - # self.logger.info("Fetch svn info") - result = run_local_svn_command( - ["info", "--xml", local_path], logger=logger, err_except_list=err_except_list - ) - if result is not None: - root = xml.etree.ElementTree.fromstring(result) - svn_info = { - "entry_path": root.find("entry").attrib["path"], - "root": root.find("entry/repository/root").text, - "url": root.find("entry/url").text, - "commit_revision": int(root.find("entry/commit").attrib["revision"]), - } - return svn_info - else: - return None - - -def get_remote_svn_info(svn_url, username="", password="", logger=None): - logger.info("Fetch remote svn info for {}".format(svn_url)) - result = run_remote_svn_command( - ["info", "--xml", svn_url], username=username, password=password, logger=logger - ) - if result is not None: - root = xml.etree.ElementTree.fromstring(result) - svn_info = { - "entry_path": root.find("entry").attrib["path"], - "commit_revision": int(root.find("entry/commit").attrib["revision"]), - } - return svn_info - else: - return None - - -def get_svn_auth_info(svn_url, logger=None): - svn_lines = run_local_svn_command(["auth"], logger=logger).split("\n") - found = 0 - credential_type_simple = False - has_password = False - root_url = urllib.parse.urlsplit(svn_url) - base_url = "://".join([root_url.scheme, root_url.netloc]) - username = "" - auth_info = {} - for line in svn_lines: - # print(line) - - if "Credential kind" in line: - if "svn.simple": - credential_type_simple = True - else: - credential_type_simple = False - found = 0 - elif base_url in line and credential_type_simple is True: - # print(line) - found = 1 - elif found: - # print(line) - if "Username:" in line: - username = line.split()[1] - if "Password:" in line: - has_password = True - - auth_info.update({"username": username, "has_password": has_password}) - return auth_info - - -def svn_export( - svn_url, local_dir, revision="HEAD", username="", password="", logger=None -): - logger.info( - "Exporting revision {} of {} to {}".format(revision, svn_url, local_dir) - ) - result = run_remote_svn_command( - ["export", "-q", "-r", str(revision), svn_url, local_dir], - username=username, - password=password, - logger=logger, - ) - - return result - - -def svn_update( - svn_url, local_dir, revision="HEAD", username="", password="", logger=None -): - logger.info("Updating {} to revision {} of {}".format(local_dir, revision, svn_url)) - result = run_remote_svn_command( - ["update", "-q", "-r", str(revision), local_dir], - username=username, - password=password, - logger=logger, - ) - - return result - - -def svn_checkout( - svn_url, local_dir, revision="HEAD", username="", password="", logger=None -): - logger.info( - "Checking out revision {} of {} to {}".format(revision, svn_url, local_dir) - ) - result = run_remote_svn_command( - ["checkout", "-q", "--force", "-r", str(revision), svn_url, local_dir], - username=username, - password=password, - logger=logger, - ) - - return result diff --git a/scripts/strip_split_rendering.py b/scripts/strip_split_rendering.py deleted file mode 100644 index 6ddf3b5f551fea0011734ddf4812d53985b4a4cf..0000000000000000000000000000000000000000 --- a/scripts/strip_split_rendering.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python3 - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -import glob -import os diff --git a/scripts/strip_split_rendering.sh b/scripts/strip_split_rendering.sh deleted file mode 100755 index 916f56e6174fdf845dcd81ce3d458801307e8870..0000000000000000000000000000000000000000 --- a/scripts/strip_split_rendering.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -# -# (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository. All Rights Reserved. -# -# This software is protected by copyright law and by international treaties. -# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -# contributors to this repository retain full ownership rights in their respective contributions in -# the software. This notice grants no license of any kind, including but not limited to patent -# license, nor is any license granted by implication, estoppel or otherwise. -# -# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -# contributions. -# -# This software is provided "AS IS", without any express or implied warranties. The software is in the -# development stage. It is intended exclusively for experts who have experience with such software and -# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -# and fitness for a particular purpose are hereby disclaimed and excluded. -# -# Any dispute, controversy or claim arising under or in relation to providing this software shall be -# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -# the United Nations Convention on Contracts on the International Sales of Goods. -# - -OUTDIR=$1 diff --git a/scripts/switchPaths/sw_13k2_128k.bin b/scripts/switchPaths/sw_13k2_128k.bin deleted file mode 100644 index 0eb823e90dc0209e244a335b77ccd0a3b15db612..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_128k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_192k_50fr.bin b/scripts/switchPaths/sw_13k2_192k_50fr.bin deleted file mode 100644 index 12a49e52559dbecdb062c6ff6c12be72b9cd03b1..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_192k_50fr.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_256k.bin b/scripts/switchPaths/sw_13k2_256k.bin deleted file mode 100644 index f30b41ecbe1492f32567155120d164f669f43ac7..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_256k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k.bin b/scripts/switchPaths/sw_13k2_512k.bin deleted file mode 100644 index 77344f64ad00079391febb4d489acb66794991d8..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin deleted file mode 100644 index fb4508146508b1e8a7bce79f2c1066aa4caf72ec..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin deleted file mode 100644 index 4a1efa5d73629c35839457a883c960ad9886a415..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin deleted file mode 100644 index 4bba9866607fdadaf41b826b7a0f12d93122dd3b..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin deleted file mode 100644 index 94ae9b7986587e003b4382981a43c1a96154e204..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin deleted file mode 100644 index 35d9fb43a9217f53ca1be25a4d54b21caf67f533..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_384k_omasatechs_4ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin deleted file mode 100644 index 13ed310a06d05af474d361d3a06851a565b1c8a1..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin deleted file mode 100644 index 72163f0f9c7f55f564305ef6c9771c01fe3274fd..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin b/scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin deleted file mode 100644 index 5c43c4ea5ff255699431152f8b8dde988fe81e37..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_13k2_to_128k_10fr.bin b/scripts/switchPaths/sw_13k2_to_128k_10fr.bin deleted file mode 100644 index d3464864b0459bb59d04b7ed75fff8592c27393f..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_13k2_to_128k_10fr.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_16k4_128k.bin b/scripts/switchPaths/sw_16k4_128k.bin deleted file mode 100644 index 09d5e366e9ddc9f01c61dfc0ff664e3267f9e3cc..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_16k4_128k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_16k4_128k_evs.bin b/scripts/switchPaths/sw_16k4_128k_evs.bin deleted file mode 100644 index 1109437cb1f2f10a80138519bb6fc028e5f3ea91..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_16k4_128k_evs.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_16k4_256k.bin b/scripts/switchPaths/sw_16k4_256k.bin deleted file mode 100644 index 441667c46b32d89b571ffb8fa50c096fd75b7b98..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_16k4_256k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_16k4_512k_50fr.bin b/scripts/switchPaths/sw_16k4_512k_50fr.bin deleted file mode 100644 index 3983b3188c25a1db1c4fcd0cc7fa71a45d308e87..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_16k4_512k_50fr.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_24k4_256k.bin b/scripts/switchPaths/sw_24k4_256k.bin deleted file mode 100644 index 788e298794589720a78bc074da2b442e12b5b634..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_24k4_256k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_24k4_256k_1.bin b/scripts/switchPaths/sw_24k4_256k_1.bin deleted file mode 100644 index 7f6fd6bdc8b0b1055f62428744763229c0d63778..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_24k4_256k_1.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_24k4_384k.bin b/scripts/switchPaths/sw_24k4_384k.bin deleted file mode 100644 index 5b2297697630244b483a0e830bd769728027240d..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_24k4_384k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_24k4_512k.bin b/scripts/switchPaths/sw_24k4_512k.bin deleted file mode 100644 index 96e869c876720cc4d9f3b89d4ddf5cd0fda439a4..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_24k4_512k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_32k_128k.bin b/scripts/switchPaths/sw_32k_128k.bin deleted file mode 100644 index 7be6e59bcca2f94aea9fe4cd9e0cccd17593ea67..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_32k_128k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_32k_256k.bin b/scripts/switchPaths/sw_32k_256k.bin deleted file mode 100644 index fe28d22c97786672e8e4ac0e9b76a8ed89942855..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_32k_256k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_32k_384k.bin b/scripts/switchPaths/sw_32k_384k.bin deleted file mode 100644 index 73f527446b569fc654f24dc6347cb44fe901034c..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_32k_384k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_32k_512k.bin b/scripts/switchPaths/sw_32k_512k.bin deleted file mode 100644 index 6d25b284f80776de9bc0f3fe42eba1e3254b34b7..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_32k_512k.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_amrwb.bin b/scripts/switchPaths/sw_amrwb.bin deleted file mode 100644 index 4f505c0b345a587c4877c232f5968966e05d369b..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_amrwb.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_amrwb_evs.bin b/scripts/switchPaths/sw_amrwb_evs.bin deleted file mode 100644 index fe2557df06998ea0cee7d5b6eb8f16ea680128bc..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_amrwb_evs.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_amrwb_evs2.bin b/scripts/switchPaths/sw_amrwb_evs2.bin deleted file mode 100644 index e34bbafe52628ec984151f3c8cb3a566fddd41a1..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_amrwb_evs2.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_fb1.bin b/scripts/switchPaths/sw_fb1.bin deleted file mode 100644 index 3c2f1b2bb82cc1f88858b253ff3fc3095a3e1ef5..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_fb1.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_fb2.bin b/scripts/switchPaths/sw_fb2.bin deleted file mode 100644 index 7be6e59bcca2f94aea9fe4cd9e0cccd17593ea67..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_fb2.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_fb3.bin b/scripts/switchPaths/sw_fb3.bin deleted file mode 100644 index a9bf1471ace9ae1109e8806b2e5e33fd6e79e52b..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_fb3.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_highest.bin b/scripts/switchPaths/sw_highest.bin deleted file mode 100644 index 5be49c470f5fcc823563fc18e0afebde009038ca..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_highest.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_mctech_5fr.bin b/scripts/switchPaths/sw_mctech_5fr.bin deleted file mode 100644 index 987b788df3203e3db19d7bada1d69f3bff61bee5..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_mctech_5fr.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_nb1.bin b/scripts/switchPaths/sw_nb1.bin deleted file mode 100644 index 4ddf75a3e7e8c7802f31ed2884f1e1381b95fac6..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_nb1.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_nb5.bin b/scripts/switchPaths/sw_nb5.bin deleted file mode 100644 index 3c3a9a0fbe61317cf045c2e6191d40a366d20af2..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_nb5.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_swb1.bin b/scripts/switchPaths/sw_swb1.bin deleted file mode 100644 index 436d1b66569b002a18304ffb35c89d502a1da5b8..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_swb1.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_wb1.bin b/scripts/switchPaths/sw_wb1.bin deleted file mode 100644 index 922f69066527bd0d60209420923e9b3ea71abae8..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_wb1.bin and /dev/null differ diff --git a/scripts/switchPaths/sw_wb5.bin b/scripts/switchPaths/sw_wb5.bin deleted file mode 100644 index d93b2a3cfc8d3af3a246164b308ea3dcb64d3145..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/sw_wb5.bin and /dev/null differ diff --git a/scripts/switchPaths/swb_high1.bin b/scripts/switchPaths/swb_high1.bin deleted file mode 100644 index f81d1a58ba887149f0c43bcc15936db0398b9b8c..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/swb_high1.bin and /dev/null differ diff --git a/scripts/switchPaths/swb_low1.bin b/scripts/switchPaths/swb_low1.bin deleted file mode 100644 index 0c5e3bdbba9cedab2782e3cd4571f32cdca309fd..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/swb_low1.bin and /dev/null differ diff --git a/scripts/switchPaths/wb_high1.bin b/scripts/switchPaths/wb_high1.bin deleted file mode 100644 index 6e6307a756e1aa72f80be0959c15807ea536aced..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/wb_high1.bin and /dev/null differ diff --git a/scripts/switchPaths/wb_low1.bin b/scripts/switchPaths/wb_low1.bin deleted file mode 100644 index 1341a737e9c95be53d0ee71caf9f98f24f16c0d2..0000000000000000000000000000000000000000 Binary files a/scripts/switchPaths/wb_low1.bin and /dev/null differ diff --git a/scripts/tools/Darwin/wmc_tool b/scripts/tools/Darwin/wmc_tool deleted file mode 100755 index a25a5e9492910f7cdc2e9adcf0b1a3b417036f0e..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Darwin/wmc_tool and /dev/null differ diff --git a/scripts/tools/Linux/eid-xor b/scripts/tools/Linux/eid-xor deleted file mode 100644 index 9d820fff7d84a75839e24c160dbec5ef43799461..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Linux/eid-xor and /dev/null differ diff --git a/scripts/tools/Linux/mld b/scripts/tools/Linux/mld deleted file mode 100644 index 520d59be0ed27b998dc9eaf4ea4d56372e71293a..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Linux/mld and /dev/null differ diff --git a/scripts/tools/Linux/networkSimulator_g192 b/scripts/tools/Linux/networkSimulator_g192 deleted file mode 100644 index 8b1a6de4d97a252e16e8ce1993f46ebcaf5a62ea..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Linux/networkSimulator_g192 and /dev/null differ diff --git a/scripts/tools/Linux/wav-diff b/scripts/tools/Linux/wav-diff deleted file mode 100644 index ad8638be3f21a6706f397d07ced816b8b43f84d6..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Linux/wav-diff and /dev/null differ diff --git a/scripts/tools/Linux/wmc_tool b/scripts/tools/Linux/wmc_tool deleted file mode 100755 index 71329d879c3b6de3006abe68be1fac2b65f52956..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Linux/wmc_tool and /dev/null differ diff --git a/scripts/tools/Win32/eid-xor.exe b/scripts/tools/Win32/eid-xor.exe deleted file mode 100644 index 57d749d42de73f698a8958f7e1bddc24df1463f6..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Win32/eid-xor.exe and /dev/null differ diff --git a/scripts/tools/Win32/mld.exe b/scripts/tools/Win32/mld.exe deleted file mode 100644 index c9c563cd1c586ed5398089606de9afcaa4ca5457..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Win32/mld.exe and /dev/null differ diff --git a/scripts/tools/Win32/networkSimulator_g192.exe b/scripts/tools/Win32/networkSimulator_g192.exe deleted file mode 100644 index 5c0dc15d61995c77d8c0b60fb30d3aba30df709b..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Win32/networkSimulator_g192.exe and /dev/null differ diff --git a/scripts/tools/Win32/wav-diff.exe b/scripts/tools/Win32/wav-diff.exe deleted file mode 100644 index 25496222a10a0e4d18e5feeef5903751a82521d4..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Win32/wav-diff.exe and /dev/null differ diff --git a/scripts/tools/Win32/wmc_tool.exe b/scripts/tools/Win32/wmc_tool.exe deleted file mode 100755 index 3fbba2497511c079830d11d45ad9704425701809..0000000000000000000000000000000000000000 Binary files a/scripts/tools/Win32/wmc_tool.exe and /dev/null differ diff --git a/scripts/trajectories/azi_plus_2-ele_plus_2-every-100-frames-Euler.csv b/scripts/trajectories/azi_plus_2-ele_plus_2-every-100-frames-Euler.csv deleted file mode 100644 index 08bb055d5e734c220ca230455bae225f9ffa621d..0000000000000000000000000000000000000000 --- a/scripts/trajectories/azi_plus_2-ele_plus_2-every-100-frames-Euler.csv +++ /dev/null @@ -1,12000 +0,0 @@ - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 90.000000, 45.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 92.000000, 48.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 94.000000, 51.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 96.000000, 54.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 98.000000, 57.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 100.000000, 60.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 102.000000, 63.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 104.000000, 66.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 106.000000, 69.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 108.000000, 72.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 110.000000, 75.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 112.000000, 78.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 114.000000, 81.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 116.000000, 84.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 118.000000, 87.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 120.000000, 90.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 122.000000, 93.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 124.000000, 96.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 126.000000, 99.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 128.000000, 102.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 130.000000, 105.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 132.000000, 108.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 134.000000, 111.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 136.000000, 114.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 138.000000, 117.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 140.000000, 120.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 142.000000, 123.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 144.000000, 126.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 146.000000, 129.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 148.000000, 132.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 150.000000, 135.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 152.000000, 138.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 154.000000, 141.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 156.000000, 144.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 158.000000, 147.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 160.000000, 150.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 162.000000, 153.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 164.000000, 156.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 166.000000, 159.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 168.000000, 162.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 170.000000, 165.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 172.000000, 168.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 174.000000, 171.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 176.000000, 174.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 178.000000, 177.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 180.000000, 180.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 182.000000, 183.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 184.000000, 186.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 186.000000, 189.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 188.000000, 192.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 190.000000, 195.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 192.000000, 198.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 194.000000, 201.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 196.000000, 204.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 198.000000, 207.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 200.000000, 210.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 202.000000, 213.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 204.000000, 216.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 206.000000, 219.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 208.000000, 222.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 210.000000, 225.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 212.000000, 228.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 214.000000, 231.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 216.000000, 234.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 218.000000, 237.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 220.000000, 240.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 222.000000, 243.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 224.000000, 246.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 226.000000, 249.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 228.000000, 252.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 230.000000, 255.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 232.000000, 258.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 234.000000, 261.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 236.000000, 264.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 238.000000, 267.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 240.000000, 270.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 242.000000, 273.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 244.000000, 276.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 246.000000, 279.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 248.000000, 282.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 250.000000, 285.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 252.000000, 288.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 254.000000, 291.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 256.000000, 294.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 258.000000, 297.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 260.000000, 300.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 262.000000, 303.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 264.000000, 306.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 266.000000, 309.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 268.000000, 312.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 270.000000, 315.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 272.000000, 318.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 274.000000, 321.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 276.000000, 324.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 278.000000, 327.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 280.000000, 330.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 282.000000, 333.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 284.000000, 336.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 286.000000, 339.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 288.000000, 342.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 290.000000, 345.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 292.000000, 348.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 294.000000, 351.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 296.000000, 354.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 298.000000, 357.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 300.000000, 360.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 302.000000, 363.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 304.000000, 366.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 306.000000, 369.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 308.000000, 372.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 310.000000, 375.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 312.000000, 378.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 314.000000, 381.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 316.000000, 384.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 318.000000, 387.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 320.000000, 390.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 322.000000, 393.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 324.000000, 396.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 326.000000, 399.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 - -3.000000, 328.000000, 402.000000, 0.000000 diff --git a/scripts/trajectories/azi_plus_2-ele_plus_2-every-100-frames.csv b/scripts/trajectories/azi_plus_2-ele_plus_2-every-100-frames.csv deleted file mode 100644 index 4bc5b22d937d45c76b666e1f7c94c95b6f316cdb..0000000000000000000000000000000000000000 --- a/scripts/trajectories/azi_plus_2-ele_plus_2-every-100-frames.csv +++ /dev/null @@ -1,12000 +0,0 @@ - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 diff --git a/scripts/trajectories/azi_plus_2-ele_plus_2-every-25-rows.csv b/scripts/trajectories/azi_plus_2-ele_plus_2-every-25-rows.csv deleted file mode 100644 index 4d8eb8d47b98963cf759f1a0a3f52b592f82ce86..0000000000000000000000000000000000000000 --- a/scripts/trajectories/azi_plus_2-ele_plus_2-every-25-rows.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.653281, -0.270598, 0.270598, 0.653281 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.634602, -0.292582, 0.282543, 0.657150 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.615562, -0.314856, 0.293608, 0.660109 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.596200, -0.337381, 0.303779, 0.662147 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.576556, -0.360116, 0.313044, 0.663252 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.556670, -0.383022, 0.321394, 0.663414 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.536584, -0.406058, 0.328819, 0.662626 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.516337, -0.429181, 0.335313, 0.660881 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.495972, -0.452352, 0.340872, 0.658176 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.475528, -0.475528, 0.345492, 0.654508 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.455049, -0.498668, 0.349171, 0.649877 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.434575, -0.521730, 0.351911, 0.644283 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.414147, -0.544673, 0.353715, 0.637730 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.393807, -0.567455, 0.354585, 0.630223 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.373595, -0.590035, 0.354529, 0.621767 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.353553, -0.612372, 0.353553, 0.612372 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.333721, -0.634427, 0.351668, 0.602048 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.314138, -0.656158, 0.348885, 0.590807 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.294843, -0.677527, 0.345217, 0.578662 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.275876, -0.698494, 0.340678, 0.565629 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.257274, -0.719022, 0.335286, 0.551725 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.239074, -0.739074, 0.329057, 0.536969 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.221313, -0.758612, 0.322012, 0.521380 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.204025, -0.777602, 0.314172, 0.504981 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.187247, -0.796008, 0.305559, 0.487794 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.171010, -0.813798, 0.296198, 0.469846 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.155348, -0.830938, 0.286115, 0.451162 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.140291, -0.847398, 0.275336, 0.431771 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.125869, -0.863147, 0.263890, 0.411700 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.112112, -0.878156, 0.251807, 0.390980 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.099046, -0.892399, 0.239118, 0.369644 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.086697, -0.905849, 0.225854, 0.347723 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.075090, -0.918482, 0.212048, 0.325251 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.064248, -0.930274, 0.197736, 0.302264 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.054193, -0.941204, 0.182951, 0.278797 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.044943, -0.951251, 0.167731, 0.254887 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.036519, -0.960398, 0.152112, 0.230571 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.028936, -0.968628, 0.136132, 0.205888 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.022209, -0.975926, 0.119829, 0.180877 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.016352, -0.982278, 0.103242, 0.155578 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.011376, -0.987672, 0.086410, 0.130030 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.007292, -0.992099, 0.069374, 0.104274 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.004106, -0.995551, 0.052175, 0.078352 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.001826, -0.998021, 0.034852, 0.052304 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000457, -0.999505, 0.017446, 0.026173 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000000, -1.000000, 0.000000, 0.000000 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.000457, -0.999505, -0.017446, -0.026173 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.001826, -0.998021, -0.034852, -0.052304 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.004106, -0.995551, -0.052175, -0.078352 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.007292, -0.992099, -0.069374, -0.104274 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.011376, -0.987672, -0.086410, -0.130030 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.016352, -0.982278, -0.103242, -0.155578 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.022209, -0.975926, -0.119829, -0.180877 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.028936, -0.968628, -0.136132, -0.205888 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.036519, -0.960398, -0.152112, -0.230571 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.044943, -0.951251, -0.167731, -0.254887 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.054193, -0.941204, -0.182951, -0.278797 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.064248, -0.930274, -0.197736, -0.302264 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.075090, -0.918482, -0.212048, -0.325251 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.086697, -0.905849, -0.225854, -0.347723 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.099046, -0.892399, -0.239118, -0.369644 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.112112, -0.878156, -0.251807, -0.390980 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.125869, -0.863147, -0.263890, -0.411700 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.140291, -0.847398, -0.275336, -0.431771 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.155348, -0.830938, -0.286115, -0.451162 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.171010, -0.813798, -0.296198, -0.469846 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.187247, -0.796008, -0.305559, -0.487794 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.204025, -0.777602, -0.314172, -0.504981 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.221313, -0.758612, -0.322012, -0.521380 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.239074, -0.739074, -0.329057, -0.536969 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.257274, -0.719022, -0.335286, -0.551725 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.275876, -0.698494, -0.340678, -0.565629 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.294843, -0.677527, -0.345217, -0.578662 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.314138, -0.656158, -0.348885, -0.590807 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.333721, -0.634427, -0.351668, -0.602048 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.353553, -0.612372, -0.353553, -0.612372 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.373595, -0.590035, -0.354529, -0.621767 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.393807, -0.567455, -0.354585, -0.630223 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.414147, -0.544673, -0.353715, -0.637730 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.434575, -0.521730, -0.351911, -0.644283 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.455049, -0.498668, -0.349171, -0.649877 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.475528, -0.475528, -0.345492, -0.654508 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.495972, -0.452352, -0.340872, -0.658176 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.516337, -0.429181, -0.335313, -0.660881 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.536584, -0.406058, -0.328819, -0.662626 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.556670, -0.383022, -0.321394, -0.663414 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.576556, -0.360116, -0.313044, -0.663252 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.596200, -0.337381, -0.303779, -0.662147 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.615562, -0.314856, -0.293608, -0.660109 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.634602, -0.292582, -0.282543, -0.657150 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.653281, -0.270598, -0.270598, -0.653281 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.671562, -0.248943, -0.257788, -0.648519 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.689404, -0.227656, -0.244131, -0.642880 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.706773, -0.206773, -0.229644, -0.636381 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.723630, -0.186331, -0.214349, -0.629042 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.739942, -0.166366, -0.198267, -0.620885 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.755673, -0.146912, -0.181421, -0.611932 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.770791, -0.128003, -0.163837, -0.602208 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.785262, -0.109672, -0.145540, -0.591738 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.799057, -0.091950, -0.126558, -0.580549 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.812144, -0.074867, -0.106921, -0.568669 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.824496, -0.058452, -0.086658, -0.556130 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.836085, -0.042732, -0.065801, -0.542960 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.846886, -0.027734, -0.044383, -0.529193 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.856874, -0.013482, -0.022438, -0.514862 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.866025, -0.000000, -0.000000, -0.500000 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.874320, 0.012691, 0.022895, -0.484643 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.881738, 0.024570, 0.046210, -0.468828 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.888260, 0.035620, 0.069908, -0.452591 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.893870, 0.045822, 0.093950, -0.435970 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.898554, 0.055163, 0.118297, -0.419003 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.902298, 0.063628, 0.142910, -0.401729 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.905091, 0.071205, 0.167749, -0.384188 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.906923, 0.077885, 0.192772, -0.366421 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907786, 0.083659, 0.217940, -0.348466 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.907673, 0.088521, 0.243210, -0.330366 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.906582, 0.092466, 0.268542, -0.312161 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.904508, 0.095492, 0.293893, -0.293893 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.901453, 0.097596, 0.319221, -0.275602 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 - 0.897415, 0.098780, 0.344485, -0.257330 diff --git a/scripts/trajectories/circle-with-up-down-15s.csv b/scripts/trajectories/circle-with-up-down-15s.csv deleted file mode 100644 index 5aff04456aff54b87af3b646dd7ea18a5f2635d0..0000000000000000000000000000000000000000 --- a/scripts/trajectories/circle-with-up-down-15s.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 0.999999, 0.000000, -0.000001, 0.001048 - 0.999998, 0.000000, -0.000005, 0.002095 - 0.999995, 0.000000, -0.000012, 0.003143 - 0.999991, 0.000000, -0.000021, 0.004190 - 0.999986, 0.000000, -0.000034, 0.005238 - 0.999980, 0.000000, -0.000048, 0.006285 - 0.999973, 0.000000, -0.000066, 0.007333 - 0.999965, 0.000001, -0.000086, 0.008380 - 0.999956, 0.000001, -0.000109, 0.009428 - 0.999945, 0.000001, -0.000134, 0.010475 - 0.999934, 0.000002, -0.000162, 0.011523 - 0.999921, 0.000002, -0.000193, 0.012570 - 0.999907, 0.000003, -0.000226, 0.013618 - 0.999892, 0.000004, -0.000263, 0.014665 - 0.999877, 0.000005, -0.000302, 0.015713 - 0.999859, 0.000006, -0.000343, 0.016760 - 0.999841, 0.000007, -0.000387, 0.017807 - 0.999822, 0.000008, -0.000434, 0.018855 - 0.999802, 0.000010, -0.000484, 0.019902 - 0.999780, 0.000011, -0.000536, 0.020949 - 0.999758, 0.000013, -0.000591, 0.021997 - 0.999734, 0.000015, -0.000648, 0.023044 - 0.999710, 0.000017, -0.000708, 0.024091 - 0.999684, 0.000019, -0.000771, 0.025138 - 0.999657, 0.000022, -0.000837, 0.026186 - 0.999629, 0.000025, -0.000905, 0.027233 - 0.999600, 0.000028, -0.000976, 0.028280 - 0.999569, 0.000031, -0.001049, 0.029327 - 0.999538, 0.000034, -0.001126, 0.030374 - 0.999506, 0.000038, -0.001204, 0.031421 - 0.999472, 0.000042, -0.001286, 0.032468 - 0.999437, 0.000046, -0.001370, 0.033515 - 0.999401, 0.000050, -0.001457, 0.034562 - 0.999365, 0.000055, -0.001546, 0.035609 - 0.999327, 0.000060, -0.001638, 0.036656 - 0.999287, 0.000065, -0.001733, 0.037703 - 0.999247, 0.000071, -0.001830, 0.038749 - 0.999206, 0.000077, -0.001930, 0.039796 - 0.999164, 0.000083, -0.002033, 0.040843 - 0.999120, 0.000090, -0.002138, 0.041890 - 0.999075, 0.000097, -0.002246, 0.042936 - 0.999030, 0.000104, -0.002357, 0.043983 - 0.998983, 0.000111, -0.002470, 0.045029 - 0.998935, 0.000119, -0.002585, 0.046076 - 0.998885, 0.000128, -0.002704, 0.047122 - 0.998835, 0.000136, -0.002825, 0.048168 - 0.998784, 0.000145, -0.002948, 0.049215 - 0.998731, 0.000155, -0.003075, 0.050261 - 0.998678, 0.000165, -0.003203, 0.051307 - 0.998623, 0.000175, -0.003335, 0.052353 - 0.998567, 0.000186, -0.003469, 0.053399 - 0.998510, 0.000197, -0.003605, 0.054445 - 0.998452, 0.000208, -0.003745, 0.055491 - 0.998393, 0.000220, -0.003887, 0.056537 - 0.998333, 0.000232, -0.004031, 0.057583 - 0.998271, 0.000245, -0.004178, 0.058628 - 0.998208, 0.000259, -0.004327, 0.059674 - 0.998145, 0.000273, -0.004480, 0.060720 - 0.998080, 0.000287, -0.004634, 0.061765 - 0.998014, 0.000302, -0.004792, 0.062811 - 0.997947, 0.000317, -0.004951, 0.063856 - 0.997879, 0.000333, -0.005114, 0.064901 - 0.997809, 0.000349, -0.005279, 0.065947 - 0.997739, 0.000366, -0.005446, 0.066992 - 0.997667, 0.000383, -0.005616, 0.068037 - 0.997594, 0.000401, -0.005789, 0.069082 - 0.997520, 0.000419, -0.005964, 0.070127 - 0.997445, 0.000438, -0.006142, 0.071172 - 0.997369, 0.000458, -0.006322, 0.072216 - 0.997291, 0.000478, -0.006505, 0.073261 - 0.997213, 0.000498, -0.006690, 0.074306 - 0.997133, 0.000520, -0.006878, 0.075350 - 0.997052, 0.000542, -0.007068, 0.076394 - 0.996971, 0.000564, -0.007261, 0.077439 - 0.996887, 0.000587, -0.007456, 0.078483 - 0.996803, 0.000611, -0.007654, 0.079527 - 0.996718, 0.000635, -0.007854, 0.080571 - 0.996631, 0.000660, -0.008057, 0.081615 - 0.996543, 0.000685, -0.008263, 0.082659 - 0.996455, 0.000712, -0.008470, 0.083703 - 0.996364, 0.000738, -0.008681, 0.084746 - 0.996273, 0.000766, -0.008893, 0.085790 - 0.996181, 0.000794, -0.009108, 0.086833 - 0.996087, 0.000823, -0.009326, 0.087877 - 0.995993, 0.000852, -0.009546, 0.088920 - 0.995897, 0.000882, -0.009769, 0.089963 - 0.995800, 0.000913, -0.009994, 0.091006 - 0.995702, 0.000945, -0.010221, 0.092049 - 0.995602, 0.000977, -0.010451, 0.093092 - 0.995502, 0.001010, -0.010683, 0.094134 - 0.995400, 0.001044, -0.010918, 0.095177 - 0.995297, 0.001078, -0.011155, 0.096219 - 0.995193, 0.001114, -0.011395, 0.097261 - 0.995088, 0.001150, -0.011637, 0.098304 - 0.994981, 0.001186, -0.011881, 0.099346 - 0.994874, 0.001224, -0.012128, 0.100388 - 0.994765, 0.001262, -0.012377, 0.101429 - 0.994655, 0.001301, -0.012629, 0.102471 - 0.994544, 0.001341, -0.012883, 0.103513 - 0.994431, 0.001381, -0.013139, 0.104554 - 0.994318, 0.001423, -0.013398, 0.105595 - 0.994203, 0.001465, -0.013659, 0.106637 - 0.994087, 0.001508, -0.013922, 0.107678 - 0.993970, 0.001552, -0.014188, 0.108718 - 0.993852, 0.001596, -0.014456, 0.109759 - 0.993732, 0.001642, -0.014726, 0.110800 - 0.993612, 0.001688, -0.014999, 0.111840 - 0.993490, 0.001735, -0.015274, 0.112881 - 0.993367, 0.001783, -0.015551, 0.113921 - 0.993242, 0.001832, -0.015831, 0.114961 - 0.993117, 0.001882, -0.016113, 0.116001 - 0.992990, 0.001933, -0.016397, 0.117040 - 0.992862, 0.001984, -0.016683, 0.118080 - 0.992733, 0.002036, -0.016972, 0.119119 - 0.992602, 0.002090, -0.017263, 0.120159 - 0.992471, 0.002144, -0.017556, 0.121198 - 0.992338, 0.002199, -0.017852, 0.122237 - 0.992204, 0.002255, -0.018150, 0.123275 - 0.992069, 0.002312, -0.018450, 0.124314 - 0.991932, 0.002370, -0.018752, 0.125352 - 0.991795, 0.002428, -0.019057, 0.126391 - 0.991656, 0.002488, -0.019363, 0.127429 - 0.991515, 0.002549, -0.019672, 0.128467 - 0.991374, 0.002610, -0.019983, 0.129505 - 0.991231, 0.002673, -0.020297, 0.130542 - 0.991088, 0.002737, -0.020612, 0.131580 - 0.990942, 0.002801, -0.020930, 0.132617 - 0.990796, 0.002867, -0.021250, 0.133654 - 0.990649, 0.002933, -0.021572, 0.134691 - 0.990500, 0.003000, -0.021896, 0.135727 - 0.990350, 0.003069, -0.022223, 0.136764 - 0.990198, 0.003138, -0.022551, 0.137800 - 0.990046, 0.003209, -0.022882, 0.138836 - 0.989892, 0.003280, -0.023214, 0.139872 - 0.989737, 0.003353, -0.023549, 0.140908 - 0.989581, 0.003426, -0.023886, 0.141944 - 0.989423, 0.003501, -0.024226, 0.142979 - 0.989264, 0.003576, -0.024567, 0.144014 - 0.989104, 0.003653, -0.024910, 0.145049 - 0.988943, 0.003731, -0.025255, 0.146084 - 0.988780, 0.003809, -0.025603, 0.147118 - 0.988616, 0.003889, -0.025952, 0.148153 - 0.988451, 0.003970, -0.026304, 0.149187 - 0.988285, 0.004052, -0.026657, 0.150221 - 0.988117, 0.004135, -0.027013, 0.151254 - 0.987948, 0.004219, -0.027371, 0.152288 - 0.987778, 0.004304, -0.027730, 0.153321 - 0.987606, 0.004391, -0.028092, 0.154354 - 0.987434, 0.004478, -0.028456, 0.155387 - 0.987260, 0.004566, -0.028821, 0.156420 - 0.987084, 0.004656, -0.029189, 0.157452 - 0.986908, 0.004747, -0.029559, 0.158484 - 0.986730, 0.004839, -0.029930, 0.159516 - 0.986550, 0.004932, -0.030304, 0.160548 - 0.986370, 0.005026, -0.030679, 0.161579 - 0.986188, 0.005121, -0.031057, 0.162610 - 0.986005, 0.005217, -0.031436, 0.163641 - 0.985821, 0.005315, -0.031817, 0.164672 - 0.985635, 0.005413, -0.032201, 0.165702 - 0.985448, 0.005513, -0.032586, 0.166733 - 0.985260, 0.005614, -0.032973, 0.167763 - 0.985070, 0.005717, -0.033361, 0.168792 - 0.984879, 0.005820, -0.033752, 0.169822 - 0.984687, 0.005924, -0.034145, 0.170851 - 0.984494, 0.006030, -0.034539, 0.171880 - 0.984299, 0.006137, -0.034935, 0.172909 - 0.984103, 0.006245, -0.035334, 0.173937 - 0.983905, 0.006354, -0.035734, 0.174965 - 0.983707, 0.006465, -0.036135, 0.175993 - 0.983507, 0.006577, -0.036539, 0.177021 - 0.983305, 0.006690, -0.036944, 0.178048 - 0.983103, 0.006804, -0.037351, 0.179076 - 0.982898, 0.006919, -0.037760, 0.180102 - 0.982693, 0.007036, -0.038171, 0.181129 - 0.982486, 0.007153, -0.038583, 0.182155 - 0.982278, 0.007272, -0.038998, 0.183181 - 0.982069, 0.007393, -0.039413, 0.184207 - 0.981858, 0.007514, -0.039831, 0.185232 - 0.981646, 0.007637, -0.040250, 0.186257 - 0.981433, 0.007761, -0.040671, 0.187282 - 0.981218, 0.007886, -0.041094, 0.188307 - 0.981002, 0.008013, -0.041519, 0.189331 - 0.980785, 0.008141, -0.041945, 0.190355 - 0.980566, 0.008270, -0.042373, 0.191379 - 0.980346, 0.008400, -0.042802, 0.192402 - 0.980125, 0.008532, -0.043233, 0.193425 - 0.979902, 0.008665, -0.043666, 0.194448 - 0.979678, 0.008799, -0.044100, 0.195470 - 0.979453, 0.008935, -0.044536, 0.196492 - 0.979226, 0.009071, -0.044973, 0.197514 - 0.978998, 0.009209, -0.045413, 0.198536 - 0.978768, 0.009349, -0.045853, 0.199557 - 0.978537, 0.009490, -0.046295, 0.200578 - 0.978305, 0.009632, -0.046739, 0.201598 - 0.978072, 0.009775, -0.047185, 0.202618 - 0.977837, 0.009919, -0.047632, 0.203638 - 0.977600, 0.010065, -0.048080, 0.204658 - 0.977363, 0.010213, -0.048530, 0.205677 - 0.977124, 0.010361, -0.048981, 0.206696 - 0.976883, 0.010511, -0.049434, 0.207714 - 0.976641, 0.010662, -0.049889, 0.208732 - 0.976398, 0.010815, -0.050344, 0.209750 - 0.976154, 0.010969, -0.050802, 0.210768 - 0.975908, 0.011124, -0.051261, 0.211785 - 0.975660, 0.011281, -0.051721, 0.212802 - 0.975412, 0.011439, -0.052182, 0.213818 - 0.975162, 0.011598, -0.052645, 0.214834 - 0.974910, 0.011759, -0.053110, 0.215850 - 0.974657, 0.011921, -0.053576, 0.216865 - 0.974403, 0.012084, -0.054043, 0.217880 - 0.974148, 0.012249, -0.054511, 0.218895 - 0.973891, 0.012415, -0.054981, 0.219909 - 0.973632, 0.012583, -0.055453, 0.220923 - 0.973373, 0.012751, -0.055925, 0.221936 - 0.973111, 0.012922, -0.056399, 0.222949 - 0.972849, 0.013093, -0.056874, 0.223962 - 0.972585, 0.013266, -0.057351, 0.224974 - 0.972320, 0.013441, -0.057829, 0.225986 - 0.972053, 0.013616, -0.058308, 0.226998 - 0.971785, 0.013793, -0.058788, 0.228009 - 0.971515, 0.013972, -0.059270, 0.229020 - 0.971244, 0.014152, -0.059753, 0.230030 - 0.970972, 0.014333, -0.060237, 0.231040 - 0.970698, 0.014516, -0.060722, 0.232049 - 0.970423, 0.014700, -0.061209, 0.233059 - 0.970147, 0.014885, -0.061696, 0.234067 - 0.969869, 0.015072, -0.062185, 0.235076 - 0.969589, 0.015261, -0.062675, 0.236084 - 0.969309, 0.015450, -0.063166, 0.237091 - 0.969026, 0.015642, -0.063659, 0.238098 - 0.968743, 0.015834, -0.064152, 0.239105 - 0.968458, 0.016028, -0.064647, 0.240111 - 0.968171, 0.016223, -0.065143, 0.241117 - 0.967884, 0.016420, -0.065639, 0.242122 - 0.967594, 0.016618, -0.066137, 0.243127 - 0.967304, 0.016818, -0.066636, 0.244132 - 0.967012, 0.017019, -0.067136, 0.245136 - 0.966718, 0.017221, -0.067637, 0.246140 - 0.966423, 0.017425, -0.068139, 0.247143 - 0.966127, 0.017631, -0.068643, 0.248146 - 0.965829, 0.017837, -0.069147, 0.249148 - 0.965530, 0.018045, -0.069652, 0.250150 - 0.965229, 0.018255, -0.070158, 0.251151 - 0.964927, 0.018466, -0.070665, 0.252152 - 0.964624, 0.018678, -0.071173, 0.253153 - 0.964319, 0.018892, -0.071682, 0.254153 - 0.964013, 0.019108, -0.072192, 0.255152 - 0.963705, 0.019324, -0.072703, 0.256151 - 0.963396, 0.019542, -0.073215, 0.257150 - 0.963085, 0.019762, -0.073727, 0.258148 - 0.962773, 0.019983, -0.074241, 0.259146 - 0.962460, 0.020206, -0.074755, 0.260143 - 0.962145, 0.020430, -0.075271, 0.261140 - 0.961829, 0.020655, -0.075787, 0.262136 - 0.961511, 0.020882, -0.076304, 0.263132 - 0.961192, 0.021110, -0.076822, 0.264127 - 0.960871, 0.021340, -0.077340, 0.265122 - 0.960549, 0.021571, -0.077860, 0.266116 - 0.960226, 0.021803, -0.078380, 0.267110 - 0.959901, 0.022037, -0.078901, 0.268103 - 0.959575, 0.022273, -0.079423, 0.269096 - 0.959247, 0.022510, -0.079945, 0.270088 - 0.958918, 0.022748, -0.080468, 0.271080 - 0.958587, 0.022988, -0.080992, 0.272071 - 0.958255, 0.023229, -0.081517, 0.273062 - 0.957921, 0.023472, -0.082042, 0.274052 - 0.957587, 0.023716, -0.082568, 0.275042 - 0.957250, 0.023961, -0.083095, 0.276031 - 0.956912, 0.024208, -0.083623, 0.277020 - 0.956573, 0.024457, -0.084151, 0.278008 - 0.956232, 0.024706, -0.084679, 0.278996 - 0.955890, 0.024958, -0.085208, 0.279983 - 0.955547, 0.025211, -0.085738, 0.280969 - 0.955202, 0.025465, -0.086269, 0.281955 - 0.954855, 0.025720, -0.086800, 0.282941 - 0.954507, 0.025977, -0.087332, 0.283926 - 0.954158, 0.026236, -0.087864, 0.284910 - 0.953807, 0.026496, -0.088396, 0.285894 - 0.953455, 0.026757, -0.088930, 0.286877 - 0.953102, 0.027020, -0.089464, 0.287860 - 0.952747, 0.027284, -0.089998, 0.288842 - 0.952390, 0.027550, -0.090533, 0.289824 - 0.952032, 0.027817, -0.091068, 0.290805 - 0.951673, 0.028086, -0.091604, 0.291785 - 0.951312, 0.028356, -0.092140, 0.292765 - 0.950950, 0.028627, -0.092676, 0.293745 - 0.950586, 0.028900, -0.093213, 0.294724 - 0.950221, 0.029175, -0.093751, 0.295702 - 0.949855, 0.029450, -0.094289, 0.296680 - 0.949487, 0.029727, -0.094827, 0.297657 - 0.949117, 0.030006, -0.095365, 0.298633 - 0.948746, 0.030286, -0.095904, 0.299609 - 0.948374, 0.030568, -0.096444, 0.300584 - 0.948000, 0.030850, -0.096983, 0.301559 - 0.947625, 0.031135, -0.097523, 0.302533 - 0.947249, 0.031420, -0.098064, 0.303507 - 0.946871, 0.031708, -0.098604, 0.304480 - 0.946491, 0.031996, -0.099145, 0.305452 - 0.946110, 0.032286, -0.099686, 0.306424 - 0.945728, 0.032578, -0.100228, 0.307395 - 0.945344, 0.032870, -0.100769, 0.308366 - 0.944959, 0.033165, -0.101311, 0.309336 - 0.944572, 0.033460, -0.101853, 0.310305 - 0.944184, 0.033757, -0.102395, 0.311274 - 0.943795, 0.034056, -0.102938, 0.312242 - 0.943404, 0.034355, -0.103481, 0.313209 - 0.943012, 0.034657, -0.104023, 0.314176 - 0.942618, 0.034959, -0.104566, 0.315142 - 0.942223, 0.035263, -0.105110, 0.316108 - 0.941826, 0.035569, -0.105653, 0.317073 - 0.941428, 0.035876, -0.106196, 0.318037 - 0.941029, 0.036184, -0.106740, 0.319001 - 0.940628, 0.036493, -0.107283, 0.319964 - 0.940226, 0.036804, -0.107827, 0.320927 - 0.939822, 0.037117, -0.108370, 0.321889 - 0.939417, 0.037431, -0.108914, 0.322850 - 0.939011, 0.037746, -0.109458, 0.323810 - 0.938603, 0.038062, -0.110002, 0.324770 - 0.938193, 0.038380, -0.110545, 0.325729 - 0.937783, 0.038699, -0.111089, 0.326688 - 0.937371, 0.039020, -0.111633, 0.327646 - 0.936957, 0.039342, -0.112177, 0.328603 - 0.936542, 0.039665, -0.112720, 0.329560 - 0.936126, 0.039990, -0.113264, 0.330516 - 0.935708, 0.040316, -0.113807, 0.331471 - 0.935289, 0.040643, -0.114351, 0.332426 - 0.934868, 0.040972, -0.114894, 0.333380 - 0.934446, 0.041302, -0.115438, 0.334333 - 0.934023, 0.041634, -0.115981, 0.335286 - 0.933598, 0.041966, -0.116524, 0.336238 - 0.933172, 0.042300, -0.117067, 0.337189 - 0.932744, 0.042636, -0.117609, 0.338139 - 0.932315, 0.042973, -0.118152, 0.339089 - 0.931885, 0.043311, -0.118694, 0.340039 - 0.931453, 0.043650, -0.119236, 0.340987 - 0.931020, 0.043991, -0.119778, 0.341935 - 0.930586, 0.044333, -0.120320, 0.342882 - 0.930150, 0.044676, -0.120861, 0.343829 - 0.929712, 0.045021, -0.121402, 0.344774 - 0.929274, 0.045367, -0.121943, 0.345719 - 0.928834, 0.045714, -0.122484, 0.346664 - 0.928392, 0.046063, -0.123024, 0.347607 - 0.927950, 0.046412, -0.123564, 0.348550 - 0.927505, 0.046764, -0.124104, 0.349493 - 0.927060, 0.047116, -0.124644, 0.350434 - 0.926613, 0.047470, -0.125183, 0.351375 - 0.926165, 0.047825, -0.125721, 0.352315 - 0.925715, 0.048181, -0.126260, 0.353255 - 0.925264, 0.048538, -0.126798, 0.354194 - 0.924812, 0.048897, -0.127335, 0.355132 - 0.924358, 0.049257, -0.127872, 0.356069 - 0.923903, 0.049619, -0.128409, 0.357005 - 0.923446, 0.049981, -0.128945, 0.357941 - 0.922988, 0.050345, -0.129481, 0.358876 - 0.922529, 0.050710, -0.130017, 0.359811 - 0.922069, 0.051076, -0.130552, 0.360745 - 0.921607, 0.051444, -0.131086, 0.361678 - 0.921144, 0.051812, -0.131620, 0.362610 - 0.920679, 0.052182, -0.132153, 0.363541 - 0.920213, 0.052554, -0.132686, 0.364472 - 0.919746, 0.052926, -0.133219, 0.365402 - 0.919278, 0.053299, -0.133751, 0.366331 - 0.918808, 0.053674, -0.134282, 0.367260 - 0.918336, 0.054050, -0.134813, 0.368188 - 0.917864, 0.054427, -0.135343, 0.369115 - 0.917390, 0.054806, -0.135872, 0.370041 - 0.916915, 0.055185, -0.136401, 0.370967 - 0.916438, 0.055566, -0.136929, 0.371892 - 0.915961, 0.055948, -0.137457, 0.372816 - 0.915481, 0.056331, -0.137984, 0.373739 - 0.915001, 0.056715, -0.138510, 0.374662 - 0.914519, 0.057101, -0.139036, 0.375583 - 0.914036, 0.057487, -0.139561, 0.376505 - 0.913552, 0.057875, -0.140085, 0.377425 - 0.913066, 0.058264, -0.140609, 0.378344 - 0.912579, 0.058654, -0.141132, 0.379263 - 0.912091, 0.059045, -0.141654, 0.380181 - 0.911601, 0.059437, -0.142176, 0.381099 - 0.911111, 0.059830, -0.142696, 0.382015 - 0.910618, 0.060225, -0.143216, 0.382931 - 0.910125, 0.060620, -0.143735, 0.383846 - 0.909630, 0.061017, -0.144253, 0.384760 - 0.909134, 0.061415, -0.144771, 0.385674 - 0.908637, 0.061814, -0.145288, 0.386586 - 0.908139, 0.062214, -0.145803, 0.387498 - 0.907639, 0.062615, -0.146319, 0.388409 - 0.907138, 0.063017, -0.146833, 0.389320 - 0.906636, 0.063420, -0.147346, 0.390229 - 0.906132, 0.063824, -0.147858, 0.391138 - 0.905627, 0.064229, -0.148370, 0.392046 - 0.905121, 0.064636, -0.148881, 0.392954 - 0.904614, 0.065043, -0.149390, 0.393860 - 0.904105, 0.065451, -0.149899, 0.394766 - 0.903595, 0.065861, -0.150407, 0.395671 - 0.903084, 0.066271, -0.150914, 0.396575 - 0.902572, 0.066683, -0.151420, 0.397478 - 0.902059, 0.067095, -0.151925, 0.398381 - 0.901544, 0.067509, -0.152429, 0.399283 - 0.901028, 0.067923, -0.152932, 0.400184 - 0.900511, 0.068339, -0.153434, 0.401084 - 0.899992, 0.068755, -0.153935, 0.401983 - 0.899473, 0.069173, -0.154434, 0.402882 - 0.898952, 0.069591, -0.154933, 0.403780 - 0.898430, 0.070010, -0.155431, 0.404677 - 0.897907, 0.070431, -0.155928, 0.405573 - 0.897382, 0.070852, -0.156424, 0.406469 - 0.896857, 0.071274, -0.156918, 0.407363 - 0.896330, 0.071697, -0.157412, 0.408257 - 0.895802, 0.072121, -0.157904, 0.409150 - 0.895272, 0.072546, -0.158395, 0.410043 - 0.894742, 0.072972, -0.158886, 0.410934 - 0.894211, 0.073399, -0.159375, 0.411825 - 0.893678, 0.073827, -0.159862, 0.412715 - 0.893144, 0.074256, -0.160349, 0.413604 - 0.892609, 0.074685, -0.160834, 0.414492 - 0.892073, 0.075116, -0.161319, 0.415380 - 0.891535, 0.075547, -0.161802, 0.416267 - 0.890997, 0.075979, -0.162284, 0.417153 - 0.890457, 0.076412, -0.162764, 0.418038 - 0.889916, 0.076846, -0.163244, 0.418922 - 0.889374, 0.077281, -0.163722, 0.419806 - 0.888831, 0.077716, -0.164199, 0.420688 - 0.888287, 0.078153, -0.164675, 0.421570 - 0.887741, 0.078590, -0.165149, 0.422451 - 0.887195, 0.079028, -0.165622, 0.423332 - 0.886647, 0.079467, -0.166094, 0.424211 - 0.886098, 0.079906, -0.166565, 0.425090 - 0.885548, 0.080347, -0.167034, 0.425968 - 0.884997, 0.080788, -0.167502, 0.426845 - 0.884445, 0.081230, -0.167968, 0.427721 - 0.883892, 0.081673, -0.168433, 0.428597 - 0.883337, 0.082116, -0.168897, 0.429471 - 0.882782, 0.082561, -0.169359, 0.430345 - 0.882225, 0.083006, -0.169821, 0.431218 - 0.881668, 0.083451, -0.170280, 0.432091 - 0.881109, 0.083898, -0.170738, 0.432962 - 0.880549, 0.084345, -0.171195, 0.433833 - 0.879988, 0.084793, -0.171651, 0.434703 - 0.879427, 0.085242, -0.172105, 0.435572 - 0.878864, 0.085691, -0.172557, 0.436440 - 0.878300, 0.086141, -0.173008, 0.437307 - 0.877734, 0.086592, -0.173458, 0.438174 - 0.877168, 0.087043, -0.173906, 0.439040 - 0.876601, 0.087495, -0.174353, 0.439905 - 0.876033, 0.087948, -0.174798, 0.440769 - 0.875463, 0.088402, -0.175242, 0.441633 - 0.874893, 0.088856, -0.175684, 0.442495 - 0.874322, 0.089310, -0.176124, 0.443357 - 0.873749, 0.089766, -0.176564, 0.444218 - 0.873176, 0.090222, -0.177001, 0.445078 - 0.872601, 0.090678, -0.177437, 0.445938 - 0.872026, 0.091135, -0.177872, 0.446796 - 0.871449, 0.091593, -0.178304, 0.447654 - 0.870872, 0.092051, -0.178736, 0.448511 - 0.870294, 0.092510, -0.179165, 0.449367 - 0.869714, 0.092970, -0.179594, 0.450222 - 0.869134, 0.093430, -0.180020, 0.451077 - 0.868552, 0.093890, -0.180445, 0.451931 - 0.867970, 0.094351, -0.180868, 0.452784 - 0.867386, 0.094813, -0.181290, 0.453636 - 0.866802, 0.095275, -0.181710, 0.454487 - 0.866216, 0.095738, -0.182128, 0.455338 - 0.865630, 0.096201, -0.182545, 0.456188 - 0.865043, 0.096665, -0.182960, 0.457037 - 0.864455, 0.097129, -0.183373, 0.457885 - 0.863865, 0.097594, -0.183785, 0.458732 - 0.863275, 0.098059, -0.184194, 0.459579 - 0.862684, 0.098525, -0.184603, 0.460425 - 0.862092, 0.098991, -0.185009, 0.461270 - 0.861499, 0.099457, -0.185414, 0.462114 - 0.860905, 0.099924, -0.185817, 0.462957 - 0.860310, 0.100392, -0.186218, 0.463800 - 0.859715, 0.100859, -0.186618, 0.464642 - 0.859118, 0.101328, -0.187015, 0.465483 - 0.858520, 0.101796, -0.187411, 0.466323 - 0.857922, 0.102265, -0.187806, 0.467162 - 0.857323, 0.102735, -0.188198, 0.468001 - 0.856722, 0.103205, -0.188589, 0.468839 - 0.856121, 0.103675, -0.188977, 0.469676 - 0.855519, 0.104145, -0.189364, 0.470512 - 0.854916, 0.104616, -0.189750, 0.471348 - 0.854312, 0.105087, -0.190133, 0.472183 - 0.853708, 0.105559, -0.190515, 0.473017 - 0.853102, 0.106031, -0.190894, 0.473850 - 0.852496, 0.106503, -0.191272, 0.474682 - 0.851888, 0.106976, -0.191648, 0.475514 - 0.851280, 0.107448, -0.192022, 0.476345 - 0.850671, 0.107921, -0.192394, 0.477175 - 0.850062, 0.108395, -0.192765, 0.478004 - 0.849451, 0.108868, -0.193133, 0.478832 - 0.848839, 0.109342, -0.193500, 0.479660 - 0.848227, 0.109816, -0.193864, 0.480487 - 0.847614, 0.110291, -0.194227, 0.481313 - 0.847000, 0.110765, -0.194588, 0.482139 - 0.846385, 0.111240, -0.194947, 0.482963 - 0.845769, 0.111715, -0.195304, 0.483787 - 0.845153, 0.112191, -0.195659, 0.484610 - 0.844536, 0.112666, -0.196012, 0.485433 - 0.843918, 0.113142, -0.196363, 0.486254 - 0.843299, 0.113617, -0.196712, 0.487075 - 0.842679, 0.114093, -0.197059, 0.487895 - 0.842059, 0.114570, -0.197404, 0.488715 - 0.841438, 0.115046, -0.197747, 0.489533 - 0.840816, 0.115522, -0.198089, 0.490351 - 0.840193, 0.115999, -0.198428, 0.491168 - 0.839570, 0.116475, -0.198765, 0.491984 - 0.838946, 0.116952, -0.199100, 0.492800 - 0.838321, 0.117429, -0.199433, 0.493615 - 0.837695, 0.117906, -0.199764, 0.494429 - 0.837068, 0.118383, -0.200093, 0.495242 - 0.836441, 0.118860, -0.200420, 0.496055 - 0.835813, 0.119337, -0.200745, 0.496866 - 0.835184, 0.119814, -0.201068, 0.497678 - 0.834555, 0.120292, -0.201389, 0.498488 - 0.833925, 0.120769, -0.201708, 0.499297 - 0.833294, 0.121246, -0.202025, 0.500106 - 0.832663, 0.121724, -0.202339, 0.500914 - 0.832030, 0.122201, -0.202652, 0.501722 - 0.831397, 0.122678, -0.202962, 0.502529 - 0.830764, 0.123155, -0.203271, 0.503335 - 0.830129, 0.123633, -0.203577, 0.504140 - 0.829494, 0.124110, -0.203881, 0.504944 - 0.828858, 0.124587, -0.204183, 0.505748 - 0.828222, 0.125064, -0.204483, 0.506551 - 0.827585, 0.125541, -0.204781, 0.507353 - 0.826947, 0.126018, -0.205076, 0.508155 - 0.826309, 0.126495, -0.205370, 0.508956 - 0.825670, 0.126972, -0.205661, 0.509756 - 0.825030, 0.127449, -0.205950, 0.510556 - 0.824389, 0.127925, -0.206237, 0.511354 - 0.823748, 0.128402, -0.206522, 0.512152 - 0.823107, 0.128878, -0.206805, 0.512950 - 0.822464, 0.129354, -0.207085, 0.513746 - 0.821821, 0.129830, -0.207364, 0.514542 - 0.821178, 0.130306, -0.207640, 0.515338 - 0.820534, 0.130782, -0.207914, 0.516132 - 0.819889, 0.131258, -0.208186, 0.516926 - 0.819243, 0.131733, -0.208455, 0.517719 - 0.818597, 0.132208, -0.208723, 0.518512 - 0.817951, 0.132683, -0.208988, 0.519304 - 0.817303, 0.133158, -0.209251, 0.520095 - 0.816655, 0.133632, -0.209511, 0.520885 - 0.816007, 0.134106, -0.209770, 0.521675 - 0.815358, 0.134580, -0.210026, 0.522464 - 0.814708, 0.135054, -0.210280, 0.523252 - 0.814058, 0.135528, -0.210532, 0.524040 - 0.813407, 0.136001, -0.210782, 0.524827 - 0.812756, 0.136474, -0.211029, 0.525614 - 0.812104, 0.136946, -0.211274, 0.526399 - 0.811451, 0.137418, -0.211517, 0.527184 - 0.810798, 0.137890, -0.211757, 0.527969 - 0.810145, 0.138362, -0.211996, 0.528752 - 0.809491, 0.138833, -0.212232, 0.529536 - 0.808836, 0.139304, -0.212465, 0.530318 - 0.808181, 0.139775, -0.212697, 0.531100 - 0.807525, 0.140245, -0.212926, 0.531881 - 0.806869, 0.140715, -0.213153, 0.532661 - 0.806212, 0.141184, -0.213377, 0.533441 - 0.805555, 0.141653, -0.213600, 0.534220 - 0.804897, 0.142122, -0.213820, 0.534999 - 0.804238, 0.142590, -0.214037, 0.535777 - 0.803579, 0.143058, -0.214253, 0.536554 - 0.802920, 0.143525, -0.214466, 0.537331 - 0.802260, 0.143992, -0.214677, 0.538107 - 0.801600, 0.144458, -0.214885, 0.538882 - 0.800939, 0.144924, -0.215091, 0.539657 - 0.800278, 0.145390, -0.215295, 0.540431 - 0.799616, 0.145855, -0.215496, 0.541205 - 0.798953, 0.146319, -0.215695, 0.541978 - 0.798291, 0.146783, -0.215892, 0.542750 - 0.797627, 0.147247, -0.216087, 0.543522 - 0.796963, 0.147709, -0.216279, 0.544293 - 0.796299, 0.148172, -0.216469, 0.545063 - 0.795635, 0.148634, -0.216656, 0.545833 - 0.794969, 0.149095, -0.216841, 0.546602 - 0.794304, 0.149556, -0.217024, 0.547371 - 0.793638, 0.150016, -0.217204, 0.548139 - 0.792971, 0.150475, -0.217382, 0.548907 - 0.792304, 0.150934, -0.217558, 0.549674 - 0.791637, 0.151393, -0.217731, 0.550440 - 0.790969, 0.151850, -0.217902, 0.551206 - 0.790301, 0.152307, -0.218071, 0.551971 - 0.789632, 0.152764, -0.218237, 0.552735 - 0.788963, 0.153220, -0.218401, 0.553499 - 0.788294, 0.153675, -0.218562, 0.554263 - 0.787624, 0.154129, -0.218721, 0.555026 - 0.786954, 0.154583, -0.218878, 0.555788 - 0.786283, 0.155036, -0.219032, 0.556550 - 0.785612, 0.155489, -0.219184, 0.557311 - 0.784940, 0.155940, -0.219334, 0.558072 - 0.784269, 0.156391, -0.219481, 0.558832 - 0.783596, 0.156841, -0.219625, 0.559591 - 0.782924, 0.157291, -0.219768, 0.560350 - 0.782251, 0.157740, -0.219908, 0.561109 - 0.781577, 0.158188, -0.220045, 0.561866 - 0.780903, 0.158635, -0.220180, 0.562624 - 0.780229, 0.159082, -0.220313, 0.563381 - 0.779555, 0.159527, -0.220443, 0.564137 - 0.778880, 0.159972, -0.220571, 0.564893 - 0.778204, 0.160416, -0.220697, 0.565648 - 0.777529, 0.160860, -0.220820, 0.566402 - 0.776853, 0.161302, -0.220941, 0.567157 - 0.776176, 0.161744, -0.221059, 0.567910 - 0.775500, 0.162185, -0.221175, 0.568663 - 0.774823, 0.162624, -0.221288, 0.569416 - 0.774145, 0.163064, -0.221399, 0.570168 - 0.773468, 0.163502, -0.221508, 0.570920 - 0.772790, 0.163939, -0.221614, 0.571671 - 0.772111, 0.164375, -0.221718, 0.572421 - 0.771432, 0.164811, -0.221819, 0.573171 - 0.770753, 0.165246, -0.221918, 0.573921 - 0.770074, 0.165679, -0.222015, 0.574670 - 0.769394, 0.166112, -0.222109, 0.575419 - 0.768714, 0.166544, -0.222201, 0.576167 - 0.768034, 0.166975, -0.222290, 0.576914 - 0.767354, 0.167405, -0.222377, 0.577661 - 0.766673, 0.167834, -0.222461, 0.578408 - 0.765991, 0.168262, -0.222543, 0.579154 - 0.765310, 0.168689, -0.222623, 0.579900 - 0.764628, 0.169115, -0.222700, 0.580645 - 0.763946, 0.169540, -0.222775, 0.581390 - 0.763263, 0.169964, -0.222847, 0.582134 - 0.762581, 0.170387, -0.222917, 0.582878 - 0.761898, 0.170808, -0.222985, 0.583622 - 0.761215, 0.171229, -0.223050, 0.584364 - 0.760531, 0.171649, -0.223112, 0.585107 - 0.759847, 0.172068, -0.223172, 0.585849 - 0.759163, 0.172486, -0.223230, 0.586591 - 0.758479, 0.172902, -0.223285, 0.587332 - 0.757794, 0.173318, -0.223338, 0.588072 - 0.757109, 0.173732, -0.223389, 0.588813 - 0.756424, 0.174145, -0.223437, 0.589552 - 0.755739, 0.174558, -0.223482, 0.590292 - 0.755053, 0.174969, -0.223526, 0.591031 - 0.754367, 0.175379, -0.223566, 0.591769 - 0.753681, 0.175787, -0.223605, 0.592507 - 0.752994, 0.176195, -0.223641, 0.593245 - 0.752308, 0.176601, -0.223674, 0.593982 - 0.751621, 0.177007, -0.223705, 0.594719 - 0.750933, 0.177411, -0.223734, 0.595456 - 0.750246, 0.177814, -0.223760, 0.596192 - 0.749558, 0.178215, -0.223784, 0.596927 - 0.748870, 0.178616, -0.223805, 0.597663 - 0.748182, 0.179015, -0.223824, 0.598398 - 0.747494, 0.179413, -0.223841, 0.599132 - 0.746805, 0.179810, -0.223855, 0.599866 - 0.746116, 0.180205, -0.223867, 0.600600 - 0.745427, 0.180600, -0.223876, 0.601333 - 0.744738, 0.180993, -0.223883, 0.602066 - 0.744049, 0.181384, -0.223887, 0.602798 - 0.743359, 0.181775, -0.223889, 0.603530 - 0.742669, 0.182164, -0.223889, 0.604262 - 0.741979, 0.182552, -0.223886, 0.604994 - 0.741288, 0.182938, -0.223881, 0.605725 - 0.740598, 0.183324, -0.223873, 0.606455 - 0.739907, 0.183708, -0.223863, 0.607186 - 0.739216, 0.184090, -0.223851, 0.607915 - 0.738525, 0.184471, -0.223836, 0.608645 - 0.737833, 0.184851, -0.223819, 0.609374 - 0.737142, 0.185230, -0.223799, 0.610103 - 0.736450, 0.185607, -0.223777, 0.610831 - 0.735758, 0.185983, -0.223753, 0.611560 - 0.735066, 0.186357, -0.223726, 0.612287 - 0.734373, 0.186730, -0.223697, 0.613015 - 0.733681, 0.187102, -0.223665, 0.613742 - 0.732988, 0.187472, -0.223632, 0.614469 - 0.732295, 0.187840, -0.223595, 0.615195 - 0.731602, 0.188208, -0.223556, 0.615921 - 0.730909, 0.188574, -0.223515, 0.616647 - 0.730215, 0.188938, -0.223472, 0.617372 - 0.729521, 0.189301, -0.223426, 0.618098 - 0.728827, 0.189662, -0.223378, 0.618822 - 0.728133, 0.190022, -0.223327, 0.619547 - 0.727439, 0.190381, -0.223274, 0.620271 - 0.726745, 0.190738, -0.223219, 0.620995 - 0.726050, 0.191093, -0.223161, 0.621718 - 0.725355, 0.191448, -0.223101, 0.622442 - 0.724660, 0.191800, -0.223039, 0.623165 - 0.723965, 0.192151, -0.222974, 0.623887 - 0.723270, 0.192500, -0.222907, 0.624609 - 0.722574, 0.192848, -0.222837, 0.625331 - 0.721879, 0.193195, -0.222766, 0.626053 - 0.721183, 0.193539, -0.222691, 0.626775 - 0.720487, 0.193883, -0.222615, 0.627496 - 0.719791, 0.194224, -0.222536, 0.628217 - 0.719094, 0.194564, -0.222455, 0.628937 - 0.718398, 0.194903, -0.222371, 0.629657 - 0.717701, 0.195240, -0.222285, 0.630377 - 0.717004, 0.195575, -0.222197, 0.631097 - 0.716307, 0.195909, -0.222107, 0.631817 - 0.715610, 0.196241, -0.222014, 0.632536 - 0.714913, 0.196571, -0.221919, 0.633255 - 0.714215, 0.196900, -0.221821, 0.633973 - 0.713518, 0.197227, -0.221722, 0.634692 - 0.712820, 0.197552, -0.221620, 0.635410 - 0.712122, 0.197876, -0.221515, 0.636128 - 0.711424, 0.198198, -0.221409, 0.636845 - 0.710726, 0.198519, -0.221300, 0.637562 - 0.710027, 0.198837, -0.221188, 0.638280 - 0.709329, 0.199154, -0.221075, 0.638996 - 0.708630, 0.199470, -0.220959, 0.639713 - 0.707931, 0.199783, -0.220841, 0.640429 - 0.707232, 0.200095, -0.220720, 0.641145 - 0.706533, 0.200406, -0.220598, 0.641861 - 0.705833, 0.200714, -0.220473, 0.642577 - 0.705134, 0.201021, -0.220346, 0.643292 - 0.704434, 0.201326, -0.220216, 0.644007 - 0.703734, 0.201629, -0.220085, 0.644722 - 0.703034, 0.201931, -0.219951, 0.645437 - 0.702334, 0.202230, -0.219814, 0.646151 - 0.701634, 0.202528, -0.219676, 0.646865 - 0.700934, 0.202824, -0.219535, 0.647579 - 0.700233, 0.203119, -0.219392, 0.648293 - 0.699532, 0.203411, -0.219247, 0.649006 - 0.698831, 0.203702, -0.219100, 0.649719 - 0.698130, 0.203991, -0.218950, 0.650433 - 0.697429, 0.204278, -0.218798, 0.651145 - 0.696728, 0.204563, -0.218644, 0.651858 - 0.696026, 0.204847, -0.218488, 0.652570 - 0.695325, 0.205128, -0.218329, 0.653282 - 0.694623, 0.205408, -0.218169, 0.653994 - 0.693921, 0.205686, -0.218006, 0.654706 - 0.693219, 0.205962, -0.217841, 0.655418 - 0.692517, 0.206236, -0.217674, 0.656129 - 0.691814, 0.206509, -0.217504, 0.656840 - 0.691112, 0.206779, -0.217333, 0.657551 - 0.690409, 0.207047, -0.217159, 0.658262 - 0.689706, 0.207314, -0.216983, 0.658972 - 0.689003, 0.207579, -0.216805, 0.659683 - 0.688300, 0.207842, -0.216625, 0.660393 - 0.687597, 0.208103, -0.216442, 0.661103 - 0.686893, 0.208362, -0.216258, 0.661813 - 0.686190, 0.208619, -0.216071, 0.662522 - 0.685486, 0.208874, -0.215882, 0.663231 - 0.684782, 0.209127, -0.215691, 0.663941 - 0.684078, 0.209378, -0.215498, 0.664650 - 0.683373, 0.209627, -0.215303, 0.665358 - 0.682669, 0.209875, -0.215106, 0.666067 - 0.681964, 0.210120, -0.214906, 0.666775 - 0.681260, 0.210363, -0.214705, 0.667484 - 0.680555, 0.210605, -0.214501, 0.668192 - 0.679850, 0.210844, -0.214296, 0.668900 - 0.679144, 0.211081, -0.214088, 0.669607 - 0.678439, 0.211317, -0.213878, 0.670315 - 0.677733, 0.211550, -0.213666, 0.671022 - 0.677028, 0.211782, -0.213452, 0.671729 - 0.676322, 0.212011, -0.213236, 0.672436 - 0.675616, 0.212238, -0.213018, 0.673143 - 0.674910, 0.212463, -0.212798, 0.673850 - 0.674203, 0.212687, -0.212575, 0.674556 - 0.673497, 0.212908, -0.212351, 0.675263 - 0.672790, 0.213127, -0.212125, 0.675969 - 0.672083, 0.213344, -0.211896, 0.676675 - 0.671376, 0.213559, -0.211666, 0.677381 - 0.670669, 0.213772, -0.211434, 0.678086 - 0.669961, 0.213983, -0.211199, 0.678792 - 0.669253, 0.214192, -0.210963, 0.679497 - 0.668546, 0.214399, -0.210725, 0.680202 - 0.667838, 0.214603, -0.210484, 0.680907 - 0.667130, 0.214806, -0.210242, 0.681612 - 0.666421, 0.215006, -0.209998, 0.682317 - 0.665713, 0.215205, -0.209751, 0.683021 - 0.665004, 0.215401, -0.209503, 0.683726 - 0.664295, 0.215595, -0.209253, 0.684430 - 0.663586, 0.215787, -0.209001, 0.685134 - 0.662877, 0.215977, -0.208746, 0.685838 - 0.662167, 0.216165, -0.208490, 0.686541 - 0.661458, 0.216350, -0.208232, 0.687245 - 0.660748, 0.216534, -0.207972, 0.687948 - 0.660038, 0.216715, -0.207710, 0.688652 - 0.659328, 0.216894, -0.207447, 0.689355 - 0.658617, 0.217071, -0.207181, 0.690058 - 0.657907, 0.217246, -0.206913, 0.690760 - 0.657196, 0.217419, -0.206644, 0.691463 - 0.656485, 0.217589, -0.206373, 0.692166 - 0.655773, 0.217758, -0.206099, 0.692868 - 0.655062, 0.217924, -0.205824, 0.693570 - 0.654350, 0.218088, -0.205547, 0.694272 - 0.653638, 0.218249, -0.205268, 0.694974 - 0.652926, 0.218409, -0.204988, 0.695676 - 0.652214, 0.218566, -0.204705, 0.696377 - 0.651502, 0.218722, -0.204421, 0.697079 - 0.650789, 0.218874, -0.204135, 0.697780 - 0.650076, 0.219025, -0.203847, 0.698481 - 0.649363, 0.219174, -0.203557, 0.699182 - 0.648650, 0.219320, -0.203265, 0.699883 - 0.647936, 0.219464, -0.202972, 0.700583 - 0.647222, 0.219606, -0.202676, 0.701284 - 0.646508, 0.219745, -0.202379, 0.701984 - 0.645794, 0.219883, -0.202081, 0.702684 - 0.645079, 0.220018, -0.201780, 0.703384 - 0.644365, 0.220151, -0.201478, 0.704084 - 0.643650, 0.220281, -0.201174, 0.704784 - 0.642934, 0.220410, -0.200868, 0.705484 - 0.642219, 0.220536, -0.200560, 0.706183 - 0.641503, 0.220659, -0.200251, 0.706882 - 0.640787, 0.220781, -0.199940, 0.707581 - 0.640071, 0.220900, -0.199627, 0.708280 - 0.639355, 0.221017, -0.199312, 0.708979 - 0.638638, 0.221132, -0.198996, 0.709678 - 0.637921, 0.221244, -0.198678, 0.710376 - 0.637204, 0.221354, -0.198359, 0.711075 - 0.636486, 0.221462, -0.198037, 0.711773 - 0.635769, 0.221568, -0.197714, 0.712471 - 0.635051, 0.221671, -0.197390, 0.713169 - 0.634333, 0.221772, -0.197064, 0.713867 - 0.633614, 0.221870, -0.196736, 0.714564 - 0.632895, 0.221967, -0.196406, 0.715262 - 0.632176, 0.222061, -0.196075, 0.715959 - 0.631457, 0.222152, -0.195742, 0.716656 - 0.630737, 0.222242, -0.195408, 0.717353 - 0.630017, 0.222329, -0.195071, 0.718049 - 0.629297, 0.222413, -0.194734, 0.718746 - 0.628577, 0.222496, -0.194395, 0.719442 - 0.627856, 0.222576, -0.194054, 0.720139 - 0.627135, 0.222653, -0.193711, 0.720835 - 0.626414, 0.222729, -0.193367, 0.721531 - 0.625692, 0.222802, -0.193022, 0.722226 - 0.624971, 0.222872, -0.192675, 0.722922 - 0.624248, 0.222941, -0.192326, 0.723617 - 0.623526, 0.223007, -0.191976, 0.724313 - 0.622803, 0.223070, -0.191624, 0.725008 - 0.622080, 0.223131, -0.191271, 0.725703 - 0.621357, 0.223190, -0.190916, 0.726397 - 0.620633, 0.223247, -0.190560, 0.727092 - 0.619909, 0.223301, -0.190202, 0.727786 - 0.619185, 0.223353, -0.189843, 0.728480 - 0.618460, 0.223402, -0.189482, 0.729174 - 0.617735, 0.223449, -0.189120, 0.729868 - 0.617010, 0.223494, -0.188756, 0.730562 - 0.616284, 0.223536, -0.188391, 0.731255 - 0.615558, 0.223576, -0.188024, 0.731949 - 0.614832, 0.223614, -0.187656, 0.732642 - 0.614105, 0.223649, -0.187287, 0.733334 - 0.613378, 0.223682, -0.186916, 0.734027 - 0.612651, 0.223712, -0.186544, 0.734720 - 0.611924, 0.223740, -0.186170, 0.735412 - 0.611196, 0.223765, -0.185795, 0.736104 - 0.610467, 0.223789, -0.185419, 0.736796 - 0.609739, 0.223809, -0.185041, 0.737488 - 0.609010, 0.223828, -0.184662, 0.738179 - 0.608280, 0.223844, -0.184281, 0.738870 - 0.607551, 0.223857, -0.183899, 0.739562 - 0.606820, 0.223869, -0.183516, 0.740252 - 0.606090, 0.223877, -0.183131, 0.740943 - 0.605359, 0.223884, -0.182745, 0.741634 - 0.604628, 0.223888, -0.182358, 0.742324 - 0.603896, 0.223889, -0.181970, 0.743014 - 0.603164, 0.223889, -0.181580, 0.743704 - 0.602432, 0.223885, -0.181189, 0.744393 - 0.601699, 0.223880, -0.180796, 0.745083 - 0.600966, 0.223872, -0.180403, 0.745772 - 0.600233, 0.223861, -0.180008, 0.746461 - 0.599499, 0.223848, -0.179612, 0.747150 - 0.598765, 0.223833, -0.179214, 0.747838 - 0.598030, 0.223815, -0.178816, 0.748526 - 0.597295, 0.223795, -0.178416, 0.749214 - 0.596560, 0.223772, -0.178015, 0.749902 - 0.595824, 0.223747, -0.177612, 0.750590 - 0.595088, 0.223720, -0.177209, 0.751277 - 0.594351, 0.223690, -0.176804, 0.751964 - 0.593614, 0.223658, -0.176398, 0.752651 - 0.592876, 0.223623, -0.175991, 0.753338 - 0.592138, 0.223586, -0.175583, 0.754024 - 0.591400, 0.223546, -0.175174, 0.754710 - 0.590661, 0.223504, -0.174763, 0.755396 - 0.589922, 0.223460, -0.174352, 0.756081 - 0.589183, 0.223413, -0.173939, 0.756767 - 0.588443, 0.223364, -0.173525, 0.757452 - 0.587702, 0.223312, -0.173110, 0.758136 - 0.586961, 0.223258, -0.172694, 0.758821 - 0.586220, 0.223202, -0.172277, 0.759505 - 0.585478, 0.223143, -0.171859, 0.760189 - 0.584736, 0.223081, -0.171439, 0.760873 - 0.583993, 0.223017, -0.171019, 0.761556 - 0.583250, 0.222951, -0.170598, 0.762239 - 0.582506, 0.222883, -0.170175, 0.762922 - 0.581762, 0.222811, -0.169752, 0.763605 - 0.581018, 0.222738, -0.169327, 0.764287 - 0.580273, 0.222662, -0.168902, 0.764969 - 0.579527, 0.222584, -0.168475, 0.765651 - 0.578781, 0.222503, -0.168048, 0.766332 - 0.578035, 0.222420, -0.167619, 0.767013 - 0.577288, 0.222334, -0.167190, 0.767694 - 0.576541, 0.222246, -0.166760, 0.768374 - 0.575793, 0.222155, -0.166328, 0.769054 - 0.575044, 0.222062, -0.165896, 0.769734 - 0.574295, 0.221967, -0.165463, 0.770414 - 0.573546, 0.221869, -0.165028, 0.771093 - 0.572796, 0.221769, -0.164593, 0.771772 - 0.572046, 0.221667, -0.164157, 0.772450 - 0.571295, 0.221561, -0.163721, 0.773129 - 0.570544, 0.221454, -0.163283, 0.773807 - 0.569792, 0.221344, -0.162844, 0.774484 - 0.569040, 0.221232, -0.162405, 0.775161 - 0.568287, 0.221117, -0.161964, 0.775838 - 0.567533, 0.221000, -0.161523, 0.776515 - 0.566780, 0.220881, -0.161081, 0.777191 - 0.566025, 0.220759, -0.160638, 0.777867 - 0.565270, 0.220634, -0.160194, 0.778542 - 0.564515, 0.220508, -0.159750, 0.779217 - 0.563759, 0.220379, -0.159305, 0.779892 - 0.563002, 0.220247, -0.158858, 0.780566 - 0.562245, 0.220113, -0.158412, 0.781240 - 0.561488, 0.219977, -0.157964, 0.781914 - 0.560729, 0.219838, -0.157516, 0.782587 - 0.559971, 0.219697, -0.157066, 0.783260 - 0.559211, 0.219553, -0.156616, 0.783932 - 0.558452, 0.219407, -0.156166, 0.784605 - 0.557691, 0.219259, -0.155714, 0.785276 - 0.556930, 0.219108, -0.155262, 0.785948 - 0.556169, 0.218955, -0.154810, 0.786618 - 0.555407, 0.218800, -0.154356, 0.787289 - 0.554644, 0.218642, -0.153902, 0.787959 - 0.553881, 0.218482, -0.153447, 0.788629 - 0.553117, 0.218319, -0.152992, 0.789298 - 0.552353, 0.218154, -0.152536, 0.789967 - 0.551588, 0.217987, -0.152079, 0.790635 - 0.550823, 0.217817, -0.151621, 0.791303 - 0.550057, 0.217645, -0.151163, 0.791971 - 0.549290, 0.217470, -0.150705, 0.792638 - 0.548523, 0.217294, -0.150246, 0.793305 - 0.547755, 0.217114, -0.149786, 0.793971 - 0.546987, 0.216933, -0.149325, 0.794637 - 0.546218, 0.216749, -0.148864, 0.795302 - 0.545448, 0.216563, -0.148403, 0.795967 - 0.544678, 0.216374, -0.147941, 0.796631 - 0.543907, 0.216183, -0.147478, 0.797295 - 0.543136, 0.215990, -0.147015, 0.797959 - 0.542364, 0.215794, -0.146551, 0.798622 - 0.541591, 0.215596, -0.146087, 0.799285 - 0.540818, 0.215396, -0.145622, 0.799947 - 0.540044, 0.215193, -0.145157, 0.800608 - 0.539270, 0.214988, -0.144691, 0.801269 - 0.538495, 0.214781, -0.144225, 0.801930 - 0.537719, 0.214571, -0.143758, 0.802590 - 0.536943, 0.214360, -0.143291, 0.803250 - 0.536166, 0.214145, -0.142824, 0.803909 - 0.535388, 0.213929, -0.142356, 0.804568 - 0.534610, 0.213710, -0.141887, 0.805226 - 0.533831, 0.213489, -0.141419, 0.805883 - 0.533051, 0.213265, -0.140949, 0.806540 - 0.532271, 0.213040, -0.140480, 0.807197 - 0.531490, 0.212812, -0.140010, 0.807853 - 0.530709, 0.212581, -0.139539, 0.808508 - 0.529927, 0.212349, -0.139069, 0.809163 - 0.529144, 0.212114, -0.138598, 0.809818 - 0.528361, 0.211877, -0.138126, 0.810472 - 0.527577, 0.211637, -0.137654, 0.811125 - 0.526792, 0.211396, -0.137182, 0.811778 - 0.526007, 0.211152, -0.136710, 0.812430 - 0.525220, 0.210906, -0.136237, 0.813082 - 0.524434, 0.210657, -0.135764, 0.813733 - 0.523646, 0.210406, -0.135291, 0.814383 - 0.522858, 0.210154, -0.134817, 0.815033 - 0.522070, 0.209898, -0.134343, 0.815682 - 0.521280, 0.209641, -0.133869, 0.816331 - 0.520490, 0.209381, -0.133395, 0.816979 - 0.519699, 0.209120, -0.132920, 0.817627 - 0.518908, 0.208856, -0.132446, 0.818274 - 0.518116, 0.208589, -0.131971, 0.818920 - 0.517323, 0.208321, -0.131495, 0.819566 - 0.516529, 0.208050, -0.131020, 0.820211 - 0.515735, 0.207777, -0.130544, 0.820856 - 0.514940, 0.207502, -0.130068, 0.821500 - 0.514145, 0.207225, -0.129592, 0.822143 - 0.513348, 0.206945, -0.129116, 0.822786 - 0.512551, 0.206664, -0.128640, 0.823428 - 0.511753, 0.206380, -0.128164, 0.824069 - 0.510955, 0.206094, -0.127687, 0.824710 - 0.510156, 0.205806, -0.127210, 0.825350 - 0.509356, 0.205516, -0.126734, 0.825989 - 0.508556, 0.205223, -0.126257, 0.826628 - 0.507754, 0.204929, -0.125780, 0.827266 - 0.506952, 0.204632, -0.125303, 0.827904 - 0.506150, 0.204333, -0.124826, 0.828540 - 0.505346, 0.204032, -0.124349, 0.829176 - 0.504542, 0.203729, -0.123871, 0.829812 - 0.503737, 0.203424, -0.123394, 0.830447 - 0.502932, 0.203117, -0.122917, 0.831081 - 0.502125, 0.202807, -0.122440, 0.831714 - 0.501318, 0.202496, -0.121962, 0.832346 - 0.500511, 0.202182, -0.121485, 0.832978 - 0.499702, 0.201867, -0.121008, 0.833610 - 0.498893, 0.201549, -0.120530, 0.834240 - 0.498083, 0.201229, -0.120053, 0.834870 - 0.497272, 0.200907, -0.119576, 0.835499 - 0.496461, 0.200583, -0.119099, 0.836127 - 0.495648, 0.200257, -0.118621, 0.836755 - 0.494836, 0.199929, -0.118144, 0.837382 - 0.494022, 0.199599, -0.117667, 0.838008 - 0.493207, 0.199267, -0.117191, 0.838633 - 0.492392, 0.198933, -0.116714, 0.839258 - 0.491576, 0.198597, -0.116237, 0.839882 - 0.490760, 0.198258, -0.115760, 0.840505 - 0.489942, 0.197918, -0.115284, 0.841127 - 0.489124, 0.197576, -0.114808, 0.841749 - 0.488305, 0.197232, -0.114331, 0.842369 - 0.487485, 0.196886, -0.113855, 0.842989 - 0.486665, 0.196538, -0.113380, 0.843609 - 0.485844, 0.196187, -0.112904, 0.844227 - 0.485022, 0.195835, -0.112428, 0.844845 - 0.484199, 0.195481, -0.111953, 0.845461 - 0.483375, 0.195125, -0.111478, 0.846077 - 0.482551, 0.194767, -0.111003, 0.846693 - 0.481726, 0.194408, -0.110528, 0.847307 - 0.480900, 0.194046, -0.110054, 0.847921 - 0.480074, 0.193682, -0.109579, 0.848533 - 0.479246, 0.193317, -0.109105, 0.849145 - 0.478418, 0.192949, -0.108632, 0.849756 - 0.477589, 0.192580, -0.108158, 0.850367 - 0.476760, 0.192208, -0.107685, 0.850976 - 0.475929, 0.191835, -0.107212, 0.851584 - 0.475098, 0.191460, -0.106739, 0.852192 - 0.474266, 0.191083, -0.106267, 0.852799 - 0.473433, 0.190705, -0.105795, 0.853405 - 0.472600, 0.190324, -0.105323, 0.854010 - 0.471765, 0.189942, -0.104852, 0.854614 - 0.470930, 0.189557, -0.104381, 0.855218 - 0.470094, 0.189171, -0.103910, 0.855820 - 0.469258, 0.188783, -0.103440, 0.856422 - 0.468420, 0.188394, -0.102970, 0.857023 - 0.467582, 0.188002, -0.102500, 0.857622 - 0.466743, 0.187609, -0.102031, 0.858221 - 0.465903, 0.187214, -0.101562, 0.858819 - 0.465062, 0.186817, -0.101094, 0.859416 - 0.464221, 0.186418, -0.100625, 0.860013 - 0.463379, 0.186018, -0.100158, 0.860608 - 0.462536, 0.185616, -0.099691, 0.861202 - 0.461692, 0.185212, -0.099224, 0.861796 - 0.460847, 0.184806, -0.098758, 0.862388 - 0.460002, 0.184399, -0.098292, 0.862980 - 0.459156, 0.183990, -0.097826, 0.863570 - 0.458309, 0.183579, -0.097361, 0.864160 - 0.457461, 0.183167, -0.096897, 0.864749 - 0.456612, 0.182752, -0.096433, 0.865337 - 0.455763, 0.182337, -0.095970, 0.865923 - 0.454913, 0.181919, -0.095507, 0.866509 - 0.454062, 0.181500, -0.095044, 0.867094 - 0.453210, 0.181079, -0.094582, 0.867678 - 0.452357, 0.180657, -0.094121, 0.868261 - 0.451504, 0.180233, -0.093660, 0.868843 - 0.450650, 0.179807, -0.093200, 0.869424 - 0.449795, 0.179380, -0.092740, 0.870004 - 0.448939, 0.178951, -0.092281, 0.870583 - 0.448083, 0.178520, -0.091822, 0.871161 - 0.447225, 0.178088, -0.091364, 0.871738 - 0.446367, 0.177655, -0.090907, 0.872314 - 0.445508, 0.177219, -0.090450, 0.872889 - 0.444648, 0.176782, -0.089994, 0.873463 - 0.443788, 0.176344, -0.089538, 0.874036 - 0.442926, 0.175904, -0.089083, 0.874608 - 0.442064, 0.175463, -0.088629, 0.875178 - 0.441201, 0.175020, -0.088175, 0.875748 - 0.440337, 0.174576, -0.087722, 0.876317 - 0.439473, 0.174130, -0.087269, 0.876885 - 0.438607, 0.173682, -0.086818, 0.877451 - 0.437741, 0.173233, -0.086367, 0.878017 - 0.436874, 0.172783, -0.085916, 0.878582 - 0.436006, 0.172331, -0.085466, 0.879145 - 0.435137, 0.171878, -0.085017, 0.879708 - 0.434268, 0.171423, -0.084569, 0.880269 - 0.433398, 0.170967, -0.084122, 0.880829 - 0.432527, 0.170509, -0.083675, 0.881389 - 0.431655, 0.170051, -0.083228, 0.881947 - 0.430782, 0.169590, -0.082783, 0.882504 - 0.429908, 0.169128, -0.082338, 0.883060 - 0.429034, 0.168665, -0.081895, 0.883615 - 0.428159, 0.168201, -0.081451, 0.884169 - 0.427283, 0.167735, -0.081009, 0.884721 - 0.426407, 0.167268, -0.080567, 0.885273 - 0.425529, 0.166799, -0.080127, 0.885823 - 0.424651, 0.166329, -0.079686, 0.886373 - 0.423772, 0.165858, -0.079247, 0.886921 - 0.422892, 0.165386, -0.078809, 0.887468 - 0.422011, 0.164912, -0.078371, 0.888014 - 0.421129, 0.164437, -0.077934, 0.888559 - 0.420247, 0.163961, -0.077498, 0.889103 - 0.419364, 0.163483, -0.077063, 0.889645 - 0.418480, 0.163004, -0.076629, 0.890187 - 0.417595, 0.162524, -0.076195, 0.890727 - 0.416710, 0.162043, -0.075763, 0.891266 - 0.415823, 0.161561, -0.075331, 0.891804 - 0.414936, 0.161077, -0.074900, 0.892341 - 0.414048, 0.160592, -0.074470, 0.892876 - 0.413160, 0.160106, -0.074041, 0.893411 - 0.412270, 0.159619, -0.073613, 0.893944 - 0.411380, 0.159130, -0.073186, 0.894476 - 0.410489, 0.158641, -0.072759, 0.895007 - 0.409597, 0.158150, -0.072334, 0.895537 - 0.408704, 0.157658, -0.071909, 0.896066 - 0.407811, 0.157165, -0.071486, 0.896593 - 0.406916, 0.156671, -0.071063, 0.897120 - 0.406021, 0.156176, -0.070641, 0.897645 - 0.405125, 0.155680, -0.070220, 0.898168 - 0.404229, 0.155182, -0.069801, 0.898691 - 0.403331, 0.154684, -0.069382, 0.899212 - 0.402433, 0.154185, -0.068964, 0.899733 - 0.401534, 0.153684, -0.068547, 0.900252 - 0.400634, 0.153183, -0.068131, 0.900770 - 0.399733, 0.152680, -0.067716, 0.901286 - 0.398832, 0.152177, -0.067302, 0.901801 - 0.397930, 0.151672, -0.066889, 0.902316 - 0.397027, 0.151167, -0.066477, 0.902828 - 0.396123, 0.150660, -0.066066, 0.903340 - 0.395218, 0.150153, -0.065656, 0.903851 - 0.394313, 0.149645, -0.065247, 0.904360 - 0.393407, 0.149135, -0.064839, 0.904868 - 0.392500, 0.148625, -0.064432, 0.905374 - 0.391592, 0.148114, -0.064027, 0.905880 - 0.390684, 0.147602, -0.063622, 0.906384 - 0.389775, 0.147089, -0.063218, 0.906887 - 0.388865, 0.146576, -0.062816, 0.907389 - 0.387954, 0.146061, -0.062414, 0.907889 - 0.387042, 0.145546, -0.062014, 0.908388 - 0.386130, 0.145029, -0.061614, 0.908886 - 0.385217, 0.144512, -0.061216, 0.909383 - 0.384303, 0.143994, -0.060819, 0.909878 - 0.383389, 0.143476, -0.060422, 0.910372 - 0.382473, 0.142956, -0.060027, 0.910865 - 0.381557, 0.142436, -0.059634, 0.911356 - 0.380640, 0.141915, -0.059241, 0.911846 - 0.379722, 0.141393, -0.058849, 0.912335 - 0.378804, 0.140871, -0.058459, 0.912823 - 0.377885, 0.140347, -0.058069, 0.913309 - 0.376965, 0.139823, -0.057681, 0.913794 - 0.376044, 0.139299, -0.057294, 0.914278 - 0.375123, 0.138773, -0.056908, 0.914760 - 0.374200, 0.138247, -0.056523, 0.915241 - 0.373277, 0.137721, -0.056139, 0.915721 - 0.372354, 0.137193, -0.055757, 0.916200 - 0.371429, 0.136665, -0.055376, 0.916677 - 0.370504, 0.136137, -0.054995, 0.917153 - 0.369578, 0.135608, -0.054616, 0.917627 - 0.368651, 0.135078, -0.054239, 0.918100 - 0.367724, 0.134547, -0.053862, 0.918572 - 0.366796, 0.134016, -0.053487, 0.919043 - 0.365867, 0.133485, -0.053113, 0.919512 - 0.364937, 0.132953, -0.052740, 0.919980 - 0.364007, 0.132420, -0.052368, 0.920446 - 0.363076, 0.131887, -0.051997, 0.920912 - 0.362144, 0.131353, -0.051628, 0.921376 - 0.361211, 0.130819, -0.051260, 0.921838 - 0.360278, 0.130284, -0.050893, 0.922299 - 0.359344, 0.129749, -0.050527, 0.922759 - 0.358409, 0.129213, -0.050163, 0.923218 - 0.357473, 0.128677, -0.049800, 0.923675 - 0.356537, 0.128141, -0.049438, 0.924130 - 0.355600, 0.127604, -0.049077, 0.924585 - 0.354663, 0.127066, -0.048718, 0.925038 - 0.353724, 0.126529, -0.048360, 0.925490 - 0.352785, 0.125991, -0.048003, 0.925940 - 0.351845, 0.125452, -0.047647, 0.926389 - 0.350905, 0.124913, -0.047293, 0.926836 - 0.349964, 0.124374, -0.046940, 0.927283 - 0.349022, 0.123834, -0.046588, 0.927728 - 0.348079, 0.123294, -0.046237, 0.928171 - 0.347136, 0.122754, -0.045888, 0.928613 - 0.346192, 0.122214, -0.045540, 0.929054 - 0.345247, 0.121673, -0.045194, 0.929493 - 0.344302, 0.121132, -0.044848, 0.929931 - 0.343355, 0.120591, -0.044504, 0.930368 - 0.342409, 0.120049, -0.044162, 0.930803 - 0.341461, 0.119507, -0.043820, 0.931237 - 0.340513, 0.118965, -0.043480, 0.931669 - 0.339564, 0.118423, -0.043141, 0.932100 - 0.338614, 0.117880, -0.042804, 0.932530 - 0.337664, 0.117338, -0.042468, 0.932958 - 0.336713, 0.116795, -0.042133, 0.933385 - 0.335762, 0.116252, -0.041800, 0.933811 - 0.334809, 0.115709, -0.041468, 0.934235 - 0.333856, 0.115166, -0.041137, 0.934657 - 0.332903, 0.114623, -0.040807, 0.935079 - 0.331948, 0.114079, -0.040479, 0.935499 - 0.330994, 0.113536, -0.040153, 0.935917 - 0.330038, 0.112992, -0.039827, 0.936334 - 0.329082, 0.112448, -0.039503, 0.936750 - 0.328125, 0.111905, -0.039181, 0.937164 - 0.327167, 0.111361, -0.038859, 0.937577 - 0.326209, 0.110817, -0.038539, 0.937988 - 0.325250, 0.110273, -0.038221, 0.938398 - 0.324290, 0.109730, -0.037904, 0.938807 - 0.323330, 0.109186, -0.037588, 0.939214 - 0.322369, 0.108642, -0.037273, 0.939620 - 0.321408, 0.108099, -0.036960, 0.940024 - 0.320446, 0.107555, -0.036649, 0.940427 - 0.319483, 0.107011, -0.036338, 0.940829 - 0.318519, 0.106468, -0.036030, 0.941229 - 0.317555, 0.105924, -0.035722, 0.941628 - 0.316591, 0.105381, -0.035416, 0.942025 - 0.315625, 0.104838, -0.035111, 0.942421 - 0.314659, 0.104295, -0.034808, 0.942815 - 0.313693, 0.103752, -0.034506, 0.943208 - 0.312726, 0.103209, -0.034205, 0.943600 - 0.311758, 0.102667, -0.033906, 0.943990 - 0.310789, 0.102124, -0.033609, 0.944379 - 0.309820, 0.101582, -0.033312, 0.944766 - 0.308851, 0.101040, -0.033017, 0.945152 - 0.307881, 0.100498, -0.032724, 0.945536 - 0.306910, 0.099957, -0.032432, 0.945919 - 0.305938, 0.099416, -0.032141, 0.946301 - 0.304966, 0.098875, -0.031852, 0.946681 - 0.303993, 0.098334, -0.031564, 0.947060 - 0.303020, 0.097793, -0.031277, 0.947437 - 0.302046, 0.097253, -0.030992, 0.947813 - 0.301072, 0.096714, -0.030709, 0.948187 - 0.300097, 0.096174, -0.030427, 0.948560 - 0.299121, 0.095635, -0.030146, 0.948932 - 0.298145, 0.095096, -0.029867, 0.949302 - 0.297168, 0.094558, -0.029589, 0.949671 - 0.296191, 0.094020, -0.029312, 0.950038 - 0.295213, 0.093482, -0.029037, 0.950404 - 0.294234, 0.092945, -0.028764, 0.950768 - 0.293255, 0.092408, -0.028491, 0.951131 - 0.292276, 0.091872, -0.028221, 0.951493 - 0.291295, 0.091336, -0.027951, 0.951853 - 0.290314, 0.090800, -0.027684, 0.952211 - 0.289333, 0.090265, -0.027417, 0.952569 - 0.288351, 0.089731, -0.027152, 0.952924 - 0.287369, 0.089197, -0.026889, 0.953279 - 0.286386, 0.088663, -0.026626, 0.953632 - 0.285402, 0.088130, -0.026366, 0.953983 - 0.284418, 0.087598, -0.026107, 0.954333 - 0.283433, 0.087066, -0.025849, 0.954682 - 0.282448, 0.086534, -0.025592, 0.955029 - 0.281462, 0.086004, -0.025337, 0.955374 - 0.280476, 0.085473, -0.025084, 0.955719 - 0.279489, 0.084944, -0.024832, 0.956062 - 0.278502, 0.084415, -0.024581, 0.956403 - 0.277514, 0.083886, -0.024332, 0.956743 - 0.276526, 0.083359, -0.024085, 0.957081 - 0.275537, 0.082832, -0.023838, 0.957419 - 0.274547, 0.082305, -0.023593, 0.957754 - 0.273557, 0.081780, -0.023350, 0.958088 - 0.272567, 0.081255, -0.023108, 0.958421 - 0.271576, 0.080730, -0.022868, 0.958753 - 0.270584, 0.080207, -0.022629, 0.959082 - 0.269592, 0.079684, -0.022391, 0.959411 - 0.268600, 0.079162, -0.022155, 0.959738 - 0.267607, 0.078640, -0.021920, 0.960064 - 0.266613, 0.078120, -0.021687, 0.960388 - 0.265619, 0.077600, -0.021455, 0.960710 - 0.264624, 0.077081, -0.021225, 0.961032 - 0.263629, 0.076563, -0.020996, 0.961352 - 0.262634, 0.076045, -0.020768, 0.961670 - 0.261638, 0.075529, -0.020542, 0.961987 - 0.260641, 0.075013, -0.020317, 0.962303 - 0.259644, 0.074498, -0.020094, 0.962617 - 0.258647, 0.073984, -0.019872, 0.962929 - 0.257649, 0.073471, -0.019652, 0.963241 - 0.256651, 0.072959, -0.019433, 0.963551 - 0.255652, 0.072447, -0.019216, 0.963859 - 0.254652, 0.071937, -0.019000, 0.964166 - 0.253653, 0.071428, -0.018785, 0.964472 - 0.252652, 0.070919, -0.018572, 0.964776 - 0.251652, 0.070411, -0.018360, 0.965079 - 0.250650, 0.069905, -0.018150, 0.965380 - 0.249649, 0.069399, -0.017941, 0.965680 - 0.248647, 0.068895, -0.017734, 0.965978 - 0.247644, 0.068391, -0.017528, 0.966275 - 0.246641, 0.067888, -0.017323, 0.966571 - 0.245638, 0.067387, -0.017120, 0.966865 - 0.244634, 0.066886, -0.016918, 0.967158 - 0.243630, 0.066387, -0.016718, 0.967449 - 0.242625, 0.065888, -0.016519, 0.967739 - 0.241620, 0.065391, -0.016322, 0.968028 - 0.240614, 0.064895, -0.016125, 0.968315 - 0.239608, 0.064399, -0.015931, 0.968600 - 0.238602, 0.063905, -0.015738, 0.968885 - 0.237595, 0.063413, -0.015546, 0.969168 - 0.236587, 0.062921, -0.015355, 0.969449 - 0.235580, 0.062430, -0.015166, 0.969729 - 0.234572, 0.061941, -0.014979, 0.970008 - 0.233563, 0.061452, -0.014793, 0.970285 - 0.232554, 0.060965, -0.014608, 0.970561 - 0.231545, 0.060479, -0.014424, 0.970835 - 0.230535, 0.059995, -0.014242, 0.971108 - 0.229525, 0.059511, -0.014062, 0.971380 - 0.228514, 0.059029, -0.013883, 0.971650 - 0.227503, 0.058548, -0.013705, 0.971919 - 0.226492, 0.058068, -0.013528, 0.972186 - 0.225480, 0.057590, -0.013353, 0.972452 - 0.224468, 0.057113, -0.013180, 0.972717 - 0.223456, 0.056637, -0.013007, 0.972980 - 0.222443, 0.056162, -0.012836, 0.973242 - 0.221429, 0.055689, -0.012667, 0.973503 - 0.220416, 0.055217, -0.012499, 0.973762 - 0.219402, 0.054746, -0.012332, 0.974019 - 0.218387, 0.054277, -0.012166, 0.974276 - 0.217373, 0.053809, -0.012002, 0.974531 - 0.216357, 0.053343, -0.011840, 0.974784 - 0.215342, 0.052877, -0.011678, 0.975036 - 0.214326, 0.052414, -0.011518, 0.975287 - 0.213310, 0.051951, -0.011360, 0.975536 - 0.212293, 0.051490, -0.011202, 0.975784 - 0.211276, 0.051031, -0.011046, 0.976031 - 0.210259, 0.050573, -0.010892, 0.976276 - 0.209241, 0.050116, -0.010739, 0.976520 - 0.208223, 0.049661, -0.010587, 0.976762 - 0.207205, 0.049208, -0.010436, 0.977003 - 0.206186, 0.048755, -0.010287, 0.977243 - 0.205167, 0.048305, -0.010139, 0.977482 - 0.204148, 0.047856, -0.009992, 0.977719 - 0.203128, 0.047408, -0.009847, 0.977954 - 0.202108, 0.046962, -0.009703, 0.978188 - 0.201088, 0.046517, -0.009560, 0.978421 - 0.200067, 0.046074, -0.009419, 0.978653 - 0.199046, 0.045633, -0.009279, 0.978883 - 0.198025, 0.045193, -0.009140, 0.979112 - 0.197003, 0.044754, -0.009003, 0.979339 - 0.195981, 0.044318, -0.008867, 0.979566 - 0.194959, 0.043883, -0.008732, 0.979790 - 0.193937, 0.043449, -0.008598, 0.980014 - 0.192914, 0.043017, -0.008466, 0.980236 - 0.191890, 0.042587, -0.008335, 0.980456 - 0.190867, 0.042158, -0.008205, 0.980676 - 0.189843, 0.041731, -0.008077, 0.980894 - 0.188819, 0.041306, -0.007950, 0.981111 - 0.187795, 0.040883, -0.007824, 0.981326 - 0.186770, 0.040461, -0.007699, 0.981540 - 0.185745, 0.040041, -0.007576, 0.981753 - 0.184720, 0.039622, -0.007453, 0.981964 - 0.183694, 0.039205, -0.007332, 0.982174 - 0.182668, 0.038790, -0.007213, 0.982383 - 0.181642, 0.038377, -0.007094, 0.982590 - 0.180616, 0.037965, -0.006977, 0.982796 - 0.179589, 0.037556, -0.006861, 0.983001 - 0.178562, 0.037148, -0.006746, 0.983204 - 0.177535, 0.036741, -0.006633, 0.983406 - 0.176507, 0.036337, -0.006521, 0.983607 - 0.175479, 0.035934, -0.006410, 0.983806 - 0.174451, 0.035533, -0.006300, 0.984004 - 0.173423, 0.035134, -0.006191, 0.984201 - 0.172395, 0.034737, -0.006083, 0.984396 - 0.171366, 0.034342, -0.005977, 0.984591 - 0.170337, 0.033948, -0.005872, 0.984783 - 0.169307, 0.033557, -0.005768, 0.984975 - 0.168278, 0.033167, -0.005665, 0.985165 - 0.167248, 0.032779, -0.005564, 0.985354 - 0.166218, 0.032393, -0.005463, 0.985542 - 0.165187, 0.032009, -0.005364, 0.985728 - 0.164157, 0.031626, -0.005266, 0.985913 - 0.163126, 0.031246, -0.005169, 0.986097 - 0.162095, 0.030868, -0.005073, 0.986279 - 0.161063, 0.030491, -0.004978, 0.986460 - 0.160032, 0.030117, -0.004885, 0.986640 - 0.159000, 0.029744, -0.004793, 0.986819 - 0.157968, 0.029374, -0.004701, 0.986996 - 0.156936, 0.029005, -0.004611, 0.987172 - 0.155903, 0.028638, -0.004522, 0.987347 - 0.154871, 0.028274, -0.004434, 0.987520 - 0.153838, 0.027911, -0.004347, 0.987692 - 0.152804, 0.027550, -0.004262, 0.987863 - 0.151771, 0.027192, -0.004177, 0.988033 - 0.150738, 0.026835, -0.004093, 0.988201 - 0.149704, 0.026480, -0.004011, 0.988368 - 0.148670, 0.026128, -0.003929, 0.988534 - 0.147635, 0.025777, -0.003849, 0.988698 - 0.146601, 0.025429, -0.003770, 0.988862 - 0.145566, 0.025082, -0.003692, 0.989024 - 0.144532, 0.024738, -0.003615, 0.989184 - 0.143497, 0.024396, -0.003538, 0.989344 - 0.142461, 0.024056, -0.003463, 0.989502 - 0.141426, 0.023718, -0.003389, 0.989659 - 0.140390, 0.023382, -0.003316, 0.989815 - 0.139354, 0.023048, -0.003244, 0.989969 - 0.138318, 0.022716, -0.003173, 0.990122 - 0.137282, 0.022387, -0.003103, 0.990274 - 0.136246, 0.022059, -0.003035, 0.990425 - 0.135209, 0.021734, -0.002967, 0.990574 - 0.134172, 0.021411, -0.002900, 0.990722 - 0.133135, 0.021090, -0.002834, 0.990869 - 0.132098, 0.020771, -0.002769, 0.991015 - 0.131061, 0.020454, -0.002705, 0.991160 - 0.130023, 0.020140, -0.002642, 0.991303 - 0.128986, 0.019828, -0.002580, 0.991445 - 0.127948, 0.019518, -0.002518, 0.991586 - 0.126910, 0.019210, -0.002458, 0.991725 - 0.125872, 0.018904, -0.002399, 0.991864 - 0.124833, 0.018601, -0.002341, 0.992001 - 0.123795, 0.018299, -0.002283, 0.992136 - 0.122756, 0.018001, -0.002227, 0.992271 - 0.121717, 0.017704, -0.002171, 0.992405 - 0.120678, 0.017409, -0.002117, 0.992537 - 0.119639, 0.017117, -0.002063, 0.992668 - 0.118600, 0.016827, -0.002010, 0.992798 - 0.117560, 0.016540, -0.001958, 0.992926 - 0.116520, 0.016254, -0.001907, 0.993053 - 0.115481, 0.015971, -0.001857, 0.993180 - 0.114441, 0.015690, -0.001808, 0.993305 - 0.113401, 0.015412, -0.001759, 0.993428 - 0.112360, 0.015136, -0.001712, 0.993551 - 0.111320, 0.014862, -0.001665, 0.993672 - 0.110279, 0.014590, -0.001619, 0.993792 - 0.109239, 0.014321, -0.001574, 0.993911 - 0.108198, 0.014054, -0.001530, 0.994029 - 0.107157, 0.013790, -0.001486, 0.994145 - 0.106116, 0.013528, -0.001444, 0.994261 - 0.105075, 0.013268, -0.001402, 0.994375 - 0.104033, 0.013010, -0.001361, 0.994488 - 0.102992, 0.012755, -0.001321, 0.994600 - 0.101950, 0.012503, -0.001281, 0.994710 - 0.100909, 0.012252, -0.001243, 0.994819 - 0.099867, 0.012004, -0.001205, 0.994928 - 0.098825, 0.011759, -0.001168, 0.995035 - 0.097783, 0.011516, -0.001132, 0.995141 - 0.096740, 0.011275, -0.001096, 0.995245 - 0.095698, 0.011036, -0.001061, 0.995349 - 0.094655, 0.010801, -0.001027, 0.995451 - 0.093613, 0.010567, -0.000994, 0.995552 - 0.092570, 0.010336, -0.000961, 0.995652 - 0.091527, 0.010107, -0.000929, 0.995751 - 0.090484, 0.009881, -0.000898, 0.995848 - 0.089441, 0.009657, -0.000867, 0.995945 - 0.088398, 0.009436, -0.000837, 0.996040 - 0.087355, 0.009217, -0.000808, 0.996134 - 0.086312, 0.009001, -0.000780, 0.996227 - 0.085268, 0.008787, -0.000752, 0.996319 - 0.084224, 0.008575, -0.000725, 0.996410 - 0.083181, 0.008366, -0.000698, 0.996499 - 0.082137, 0.008160, -0.000672, 0.996587 - 0.081093, 0.007956, -0.000647, 0.996675 - 0.080049, 0.007754, -0.000623, 0.996761 - 0.079005, 0.007555, -0.000599, 0.996845 - 0.077961, 0.007358, -0.000575, 0.996929 - 0.076917, 0.007164, -0.000553, 0.997012 - 0.075872, 0.006973, -0.000531, 0.997093 - 0.074828, 0.006784, -0.000509, 0.997173 - 0.073783, 0.006597, -0.000488, 0.997252 - 0.072739, 0.006413, -0.000468, 0.997330 - 0.071694, 0.006232, -0.000448, 0.997407 - 0.070649, 0.006053, -0.000429, 0.997483 - 0.069604, 0.005876, -0.000410, 0.997557 - 0.068559, 0.005702, -0.000392, 0.997631 - 0.067514, 0.005531, -0.000374, 0.997703 - 0.066469, 0.005362, -0.000357, 0.997774 - 0.065424, 0.005196, -0.000341, 0.997844 - 0.064379, 0.005032, -0.000325, 0.997913 - 0.063333, 0.004871, -0.000309, 0.997980 - 0.062288, 0.004713, -0.000294, 0.998047 - 0.061242, 0.004557, -0.000280, 0.998112 - 0.060197, 0.004403, -0.000266, 0.998177 - 0.059151, 0.004252, -0.000252, 0.998240 - 0.058106, 0.004104, -0.000239, 0.998302 - 0.057060, 0.003958, -0.000226, 0.998363 - 0.056014, 0.003815, -0.000214, 0.998423 - 0.054968, 0.003675, -0.000202, 0.998481 - 0.053922, 0.003537, -0.000191, 0.998539 - 0.052876, 0.003402, -0.000180, 0.998595 - 0.051830, 0.003269, -0.000170, 0.998651 - 0.050784, 0.003139, -0.000160, 0.998705 - 0.049738, 0.003011, -0.000150, 0.998758 - 0.048691, 0.002886, -0.000141, 0.998810 - 0.047645, 0.002764, -0.000132, 0.998860 - 0.046599, 0.002644, -0.000123, 0.998910 - 0.045552, 0.002527, -0.000115, 0.998959 - 0.044506, 0.002413, -0.000107, 0.999006 - 0.043459, 0.002301, -0.000100, 0.999053 - 0.042413, 0.002192, -0.000093, 0.999098 - 0.041366, 0.002085, -0.000086, 0.999142 - 0.040320, 0.001981, -0.000080, 0.999185 - 0.039273, 0.001880, -0.000074, 0.999227 - 0.038226, 0.001781, -0.000068, 0.999268 - 0.037179, 0.001685, -0.000063, 0.999307 - 0.036132, 0.001592, -0.000058, 0.999346 - 0.035086, 0.001501, -0.000053, 0.999383 - 0.034039, 0.001413, -0.000048, 0.999420 - 0.032992, 0.001328, -0.000044, 0.999455 - 0.031945, 0.001245, -0.000040, 0.999489 - 0.030898, 0.001165, -0.000036, 0.999522 - 0.029851, 0.001087, -0.000032, 0.999554 - 0.028804, 0.001012, -0.000029, 0.999585 - 0.027756, 0.000940, -0.000026, 0.999614 - 0.026709, 0.000871, -0.000023, 0.999643 - 0.025662, 0.000804, -0.000021, 0.999670 - 0.024615, 0.000740, -0.000018, 0.999697 - 0.023568, 0.000678, -0.000016, 0.999722 - 0.022520, 0.000619, -0.000014, 0.999746 - 0.021473, 0.000563, -0.000012, 0.999769 - 0.020426, 0.000509, -0.000010, 0.999791 - 0.019378, 0.000459, -0.000009, 0.999812 - 0.018331, 0.000410, -0.000008, 0.999832 - 0.017284, 0.000365, -0.000006, 0.999851 - 0.016236, 0.000322, -0.000005, 0.999868 - 0.015189, 0.000282, -0.000004, 0.999885 - 0.014141, 0.000244, -0.000003, 0.999900 - 0.013094, 0.000209, -0.000003, 0.999914 - 0.012046, 0.000177, -0.000002, 0.999927 - 0.010999, 0.000148, -0.000002, 0.999939 - 0.009952, 0.000121, -0.000001, 0.999950 - 0.008904, 0.000097, -0.000001, 0.999960 - 0.007857, 0.000075, -0.000001, 0.999969 - 0.006809, 0.000057, -0.000000, 0.999977 - 0.005761, 0.000041, -0.000000, 0.999983 - 0.004714, 0.000027, -0.000000, 0.999989 - 0.003666, 0.000016, -0.000000, 0.999993 - 0.002619, 0.000008, -0.000000, 0.999997 - 0.001571, 0.000003, -0.000000, 0.999999 - 0.000524, 0.000000, -0.000000, 1.000000 - -0.000524, 0.000000, 0.000000, 1.000000 - -0.001571, 0.000003, 0.000000, 0.999999 - -0.002619, 0.000008, 0.000000, 0.999997 - -0.003666, 0.000016, 0.000000, 0.999993 - -0.004714, 0.000027, 0.000000, 0.999989 - -0.005761, 0.000041, 0.000000, 0.999983 - -0.006809, 0.000057, 0.000000, 0.999977 - -0.007857, 0.000075, 0.000001, 0.999969 - -0.008904, 0.000097, 0.000001, 0.999960 - -0.009952, 0.000121, 0.000001, 0.999950 - -0.010999, 0.000148, 0.000002, 0.999939 - -0.012046, 0.000177, 0.000002, 0.999927 - -0.013094, 0.000209, 0.000003, 0.999914 - -0.014141, 0.000244, 0.000003, 0.999900 - -0.015189, 0.000282, 0.000004, 0.999885 - -0.016236, 0.000322, 0.000005, 0.999868 - -0.017284, 0.000365, 0.000006, 0.999851 - -0.018331, 0.000410, 0.000008, 0.999832 - -0.019378, 0.000459, 0.000009, 0.999812 - -0.020426, 0.000509, 0.000010, 0.999791 - -0.021473, 0.000563, 0.000012, 0.999769 - -0.022520, 0.000619, 0.000014, 0.999746 - -0.023568, 0.000678, 0.000016, 0.999722 - -0.024615, 0.000740, 0.000018, 0.999697 - -0.025662, 0.000804, 0.000021, 0.999670 - -0.026709, 0.000871, 0.000023, 0.999643 - -0.027756, 0.000940, 0.000026, 0.999614 - -0.028804, 0.001012, 0.000029, 0.999585 - -0.029851, 0.001087, 0.000032, 0.999554 - -0.030898, 0.001165, 0.000036, 0.999522 - -0.031945, 0.001245, 0.000040, 0.999489 - -0.032992, 0.001328, 0.000044, 0.999455 - -0.034039, 0.001413, 0.000048, 0.999420 - -0.035086, 0.001501, 0.000053, 0.999383 - -0.036132, 0.001592, 0.000058, 0.999346 - -0.037179, 0.001685, 0.000063, 0.999307 - -0.038226, 0.001781, 0.000068, 0.999268 - -0.039273, 0.001880, 0.000074, 0.999227 - -0.040320, 0.001981, 0.000080, 0.999185 - -0.041366, 0.002085, 0.000086, 0.999142 - -0.042413, 0.002192, 0.000093, 0.999098 - -0.043459, 0.002301, 0.000100, 0.999053 - -0.044506, 0.002413, 0.000107, 0.999006 - -0.045552, 0.002527, 0.000115, 0.998959 - -0.046599, 0.002644, 0.000123, 0.998910 - -0.047645, 0.002764, 0.000132, 0.998860 - -0.048691, 0.002886, 0.000141, 0.998810 - -0.049738, 0.003011, 0.000150, 0.998758 - -0.050784, 0.003139, 0.000160, 0.998705 - -0.051830, 0.003269, 0.000170, 0.998651 - -0.052876, 0.003402, 0.000180, 0.998595 - -0.053922, 0.003537, 0.000191, 0.998539 - -0.054968, 0.003675, 0.000202, 0.998481 - -0.056014, 0.003815, 0.000214, 0.998423 - -0.057060, 0.003958, 0.000226, 0.998363 - -0.058106, 0.004104, 0.000239, 0.998302 - -0.059151, 0.004252, 0.000252, 0.998240 - -0.060197, 0.004403, 0.000266, 0.998177 - -0.061242, 0.004557, 0.000280, 0.998112 - -0.062288, 0.004713, 0.000294, 0.998047 - -0.063333, 0.004871, 0.000309, 0.997980 - -0.064379, 0.005032, 0.000325, 0.997913 - -0.065424, 0.005196, 0.000341, 0.997844 - -0.066469, 0.005362, 0.000357, 0.997774 - -0.067514, 0.005531, 0.000374, 0.997703 - -0.068559, 0.005702, 0.000392, 0.997631 - -0.069604, 0.005876, 0.000410, 0.997557 - -0.070649, 0.006053, 0.000429, 0.997483 - -0.071694, 0.006232, 0.000448, 0.997407 - -0.072739, 0.006413, 0.000468, 0.997330 - -0.073783, 0.006597, 0.000488, 0.997252 - -0.074828, 0.006784, 0.000509, 0.997173 - -0.075872, 0.006973, 0.000531, 0.997093 - -0.076917, 0.007164, 0.000553, 0.997012 - -0.077961, 0.007358, 0.000575, 0.996929 - -0.079005, 0.007555, 0.000599, 0.996845 - -0.080049, 0.007754, 0.000623, 0.996761 - -0.081093, 0.007956, 0.000647, 0.996675 - -0.082137, 0.008160, 0.000672, 0.996587 - -0.083181, 0.008366, 0.000698, 0.996499 - -0.084224, 0.008575, 0.000725, 0.996410 - -0.085268, 0.008787, 0.000752, 0.996319 - -0.086312, 0.009001, 0.000780, 0.996227 - -0.087355, 0.009217, 0.000808, 0.996134 - -0.088398, 0.009436, 0.000837, 0.996040 - -0.089441, 0.009657, 0.000867, 0.995945 - -0.090484, 0.009881, 0.000898, 0.995848 - -0.091527, 0.010107, 0.000929, 0.995751 - -0.092570, 0.010336, 0.000961, 0.995652 - -0.093613, 0.010567, 0.000994, 0.995552 - -0.094655, 0.010801, 0.001027, 0.995451 - -0.095698, 0.011036, 0.001061, 0.995349 - -0.096740, 0.011275, 0.001096, 0.995245 - -0.097783, 0.011516, 0.001132, 0.995141 - -0.098825, 0.011759, 0.001168, 0.995035 - -0.099867, 0.012004, 0.001205, 0.994928 - -0.100909, 0.012252, 0.001243, 0.994819 - -0.101950, 0.012503, 0.001281, 0.994710 - -0.102992, 0.012755, 0.001321, 0.994600 - -0.104033, 0.013010, 0.001361, 0.994488 - -0.105075, 0.013268, 0.001402, 0.994375 - -0.106116, 0.013528, 0.001444, 0.994261 - -0.107157, 0.013790, 0.001486, 0.994145 - -0.108198, 0.014054, 0.001530, 0.994029 - -0.109239, 0.014321, 0.001574, 0.993911 - -0.110279, 0.014590, 0.001619, 0.993792 - -0.111320, 0.014862, 0.001665, 0.993672 - -0.112360, 0.015136, 0.001712, 0.993551 - -0.113401, 0.015412, 0.001759, 0.993428 - -0.114441, 0.015690, 0.001808, 0.993305 - -0.115481, 0.015971, 0.001857, 0.993180 - -0.116520, 0.016254, 0.001907, 0.993053 - -0.117560, 0.016540, 0.001958, 0.992926 - -0.118600, 0.016827, 0.002010, 0.992798 - -0.119639, 0.017117, 0.002063, 0.992668 - -0.120678, 0.017409, 0.002117, 0.992537 - -0.121717, 0.017704, 0.002171, 0.992405 - -0.122756, 0.018001, 0.002227, 0.992271 - -0.123795, 0.018299, 0.002283, 0.992136 - -0.124833, 0.018601, 0.002341, 0.992001 - -0.125872, 0.018904, 0.002399, 0.991864 - -0.126910, 0.019210, 0.002458, 0.991725 - -0.127948, 0.019518, 0.002518, 0.991586 - -0.128986, 0.019828, 0.002580, 0.991445 - -0.130023, 0.020140, 0.002642, 0.991303 - -0.131061, 0.020454, 0.002705, 0.991160 - -0.132098, 0.020771, 0.002769, 0.991015 - -0.133135, 0.021090, 0.002834, 0.990869 - -0.134172, 0.021411, 0.002900, 0.990722 - -0.135209, 0.021734, 0.002967, 0.990574 - -0.136246, 0.022059, 0.003035, 0.990425 - -0.137282, 0.022387, 0.003103, 0.990274 - -0.138318, 0.022716, 0.003173, 0.990122 - -0.139354, 0.023048, 0.003244, 0.989969 - -0.140390, 0.023382, 0.003316, 0.989815 - -0.141426, 0.023718, 0.003389, 0.989659 - -0.142461, 0.024056, 0.003463, 0.989502 - -0.143497, 0.024396, 0.003538, 0.989344 - -0.144532, 0.024738, 0.003615, 0.989184 - -0.145566, 0.025082, 0.003692, 0.989024 - -0.146601, 0.025429, 0.003770, 0.988862 - -0.147635, 0.025777, 0.003849, 0.988698 - -0.148670, 0.026128, 0.003929, 0.988534 - -0.149704, 0.026480, 0.004011, 0.988368 - -0.150738, 0.026835, 0.004093, 0.988201 - -0.151771, 0.027192, 0.004177, 0.988033 - -0.152804, 0.027550, 0.004262, 0.987863 - -0.153838, 0.027911, 0.004347, 0.987692 - -0.154871, 0.028274, 0.004434, 0.987520 - -0.155903, 0.028638, 0.004522, 0.987347 - -0.156936, 0.029005, 0.004611, 0.987172 - -0.157968, 0.029374, 0.004701, 0.986996 - -0.159000, 0.029744, 0.004793, 0.986819 - -0.160032, 0.030117, 0.004885, 0.986640 - -0.161063, 0.030491, 0.004978, 0.986460 - -0.162095, 0.030868, 0.005073, 0.986279 - -0.163126, 0.031246, 0.005169, 0.986097 - -0.164157, 0.031626, 0.005266, 0.985913 - -0.165187, 0.032009, 0.005364, 0.985728 - -0.166218, 0.032393, 0.005463, 0.985542 - -0.167248, 0.032779, 0.005564, 0.985354 - -0.168278, 0.033167, 0.005665, 0.985165 - -0.169307, 0.033557, 0.005768, 0.984975 - -0.170337, 0.033948, 0.005872, 0.984783 - -0.171366, 0.034342, 0.005977, 0.984591 - -0.172395, 0.034737, 0.006083, 0.984396 - -0.173423, 0.035134, 0.006191, 0.984201 - -0.174451, 0.035533, 0.006300, 0.984004 - -0.175479, 0.035934, 0.006410, 0.983806 - -0.176507, 0.036337, 0.006521, 0.983607 - -0.177535, 0.036741, 0.006633, 0.983406 - -0.178562, 0.037148, 0.006746, 0.983204 - -0.179589, 0.037556, 0.006861, 0.983001 - -0.180616, 0.037965, 0.006977, 0.982796 - -0.181642, 0.038377, 0.007094, 0.982590 - -0.182668, 0.038790, 0.007213, 0.982383 - -0.183694, 0.039205, 0.007332, 0.982174 - -0.184720, 0.039622, 0.007453, 0.981964 - -0.185745, 0.040041, 0.007576, 0.981753 - -0.186770, 0.040461, 0.007699, 0.981540 - -0.187795, 0.040883, 0.007824, 0.981326 - -0.188819, 0.041306, 0.007950, 0.981111 - -0.189843, 0.041731, 0.008077, 0.980894 - -0.190867, 0.042158, 0.008205, 0.980676 - -0.191890, 0.042587, 0.008335, 0.980456 - -0.192914, 0.043017, 0.008466, 0.980236 - -0.193937, 0.043449, 0.008598, 0.980014 - -0.194959, 0.043883, 0.008732, 0.979790 - -0.195981, 0.044318, 0.008867, 0.979566 - -0.197003, 0.044754, 0.009003, 0.979339 - -0.198025, 0.045193, 0.009140, 0.979112 - -0.199046, 0.045633, 0.009279, 0.978883 - -0.200067, 0.046074, 0.009419, 0.978653 - -0.201088, 0.046517, 0.009560, 0.978421 - -0.202108, 0.046962, 0.009703, 0.978188 - -0.203128, 0.047408, 0.009847, 0.977954 - -0.204148, 0.047856, 0.009992, 0.977719 - -0.205167, 0.048305, 0.010139, 0.977482 - -0.206186, 0.048755, 0.010287, 0.977243 - -0.207205, 0.049208, 0.010436, 0.977003 - -0.208223, 0.049661, 0.010587, 0.976762 - -0.209241, 0.050116, 0.010739, 0.976520 - -0.210259, 0.050573, 0.010892, 0.976276 - -0.211276, 0.051031, 0.011046, 0.976031 - -0.212293, 0.051490, 0.011202, 0.975784 - -0.213310, 0.051951, 0.011360, 0.975536 - -0.214326, 0.052414, 0.011518, 0.975287 - -0.215342, 0.052877, 0.011678, 0.975036 - -0.216357, 0.053343, 0.011840, 0.974784 - -0.217373, 0.053809, 0.012002, 0.974531 - -0.218387, 0.054277, 0.012166, 0.974276 - -0.219402, 0.054746, 0.012332, 0.974019 - -0.220416, 0.055217, 0.012499, 0.973762 - -0.221429, 0.055689, 0.012667, 0.973503 - -0.222443, 0.056162, 0.012836, 0.973242 - -0.223456, 0.056637, 0.013007, 0.972980 - -0.224468, 0.057113, 0.013180, 0.972717 - -0.225480, 0.057590, 0.013353, 0.972452 - -0.226492, 0.058068, 0.013528, 0.972186 - -0.227503, 0.058548, 0.013705, 0.971919 - -0.228514, 0.059029, 0.013883, 0.971650 - -0.229525, 0.059511, 0.014062, 0.971380 - -0.230535, 0.059995, 0.014242, 0.971108 - -0.231545, 0.060479, 0.014424, 0.970835 - -0.232554, 0.060965, 0.014608, 0.970561 - -0.233563, 0.061452, 0.014793, 0.970285 - -0.234572, 0.061941, 0.014979, 0.970008 - -0.235580, 0.062430, 0.015166, 0.969729 - -0.236587, 0.062921, 0.015355, 0.969449 - -0.237595, 0.063413, 0.015546, 0.969168 - -0.238602, 0.063905, 0.015738, 0.968885 - -0.239608, 0.064399, 0.015931, 0.968600 - -0.240614, 0.064895, 0.016125, 0.968315 - -0.241620, 0.065391, 0.016322, 0.968028 - -0.242625, 0.065888, 0.016519, 0.967739 - -0.243630, 0.066387, 0.016718, 0.967449 - -0.244634, 0.066886, 0.016918, 0.967158 - -0.245638, 0.067387, 0.017120, 0.966865 - -0.246641, 0.067888, 0.017323, 0.966571 - -0.247644, 0.068391, 0.017528, 0.966275 - -0.248647, 0.068895, 0.017734, 0.965978 - -0.249649, 0.069399, 0.017941, 0.965680 - -0.250650, 0.069905, 0.018150, 0.965380 - -0.251652, 0.070411, 0.018360, 0.965079 - -0.252652, 0.070919, 0.018572, 0.964776 - -0.253653, 0.071428, 0.018785, 0.964472 - -0.254652, 0.071937, 0.019000, 0.964166 - -0.255652, 0.072447, 0.019216, 0.963859 - -0.256651, 0.072959, 0.019433, 0.963551 - -0.257649, 0.073471, 0.019652, 0.963241 - -0.258647, 0.073984, 0.019872, 0.962929 - -0.259644, 0.074498, 0.020094, 0.962617 - -0.260641, 0.075013, 0.020317, 0.962303 - -0.261638, 0.075529, 0.020542, 0.961987 - -0.262634, 0.076045, 0.020768, 0.961670 - -0.263629, 0.076563, 0.020996, 0.961352 - -0.264624, 0.077081, 0.021225, 0.961032 - -0.265619, 0.077600, 0.021455, 0.960710 - -0.266613, 0.078120, 0.021687, 0.960388 - -0.267607, 0.078640, 0.021920, 0.960064 - -0.268600, 0.079162, 0.022155, 0.959738 - -0.269592, 0.079684, 0.022391, 0.959411 - -0.270584, 0.080207, 0.022629, 0.959082 - -0.271576, 0.080730, 0.022868, 0.958753 - -0.272567, 0.081255, 0.023108, 0.958421 - -0.273557, 0.081780, 0.023350, 0.958088 - -0.274547, 0.082305, 0.023593, 0.957754 - -0.275537, 0.082832, 0.023838, 0.957419 - -0.276526, 0.083359, 0.024085, 0.957081 - -0.277514, 0.083886, 0.024332, 0.956743 - -0.278502, 0.084415, 0.024581, 0.956403 - -0.279489, 0.084944, 0.024832, 0.956062 - -0.280476, 0.085473, 0.025084, 0.955719 - -0.281462, 0.086004, 0.025337, 0.955374 - -0.282448, 0.086534, 0.025592, 0.955029 - -0.283433, 0.087066, 0.025849, 0.954682 - -0.284418, 0.087598, 0.026107, 0.954333 - -0.285402, 0.088130, 0.026366, 0.953983 - -0.286386, 0.088663, 0.026626, 0.953632 - -0.287369, 0.089197, 0.026889, 0.953279 - -0.288351, 0.089731, 0.027152, 0.952924 - -0.289333, 0.090265, 0.027417, 0.952569 - -0.290314, 0.090800, 0.027684, 0.952211 - -0.291295, 0.091336, 0.027951, 0.951853 - -0.292276, 0.091872, 0.028221, 0.951493 - -0.293255, 0.092408, 0.028491, 0.951131 - -0.294234, 0.092945, 0.028764, 0.950768 - -0.295213, 0.093482, 0.029037, 0.950404 - -0.296191, 0.094020, 0.029312, 0.950038 - -0.297168, 0.094558, 0.029589, 0.949671 - -0.298145, 0.095096, 0.029867, 0.949302 - -0.299121, 0.095635, 0.030146, 0.948932 - -0.300097, 0.096174, 0.030427, 0.948560 - -0.301072, 0.096714, 0.030709, 0.948187 - -0.302046, 0.097253, 0.030992, 0.947813 - -0.303020, 0.097793, 0.031277, 0.947437 - -0.303993, 0.098334, 0.031564, 0.947060 - -0.304966, 0.098875, 0.031852, 0.946681 - -0.305938, 0.099416, 0.032141, 0.946301 - -0.306910, 0.099957, 0.032432, 0.945919 - -0.307881, 0.100498, 0.032724, 0.945536 - -0.308851, 0.101040, 0.033017, 0.945152 - -0.309820, 0.101582, 0.033312, 0.944766 - -0.310789, 0.102124, 0.033609, 0.944379 - -0.311758, 0.102667, 0.033906, 0.943990 - -0.312726, 0.103209, 0.034205, 0.943600 - -0.313693, 0.103752, 0.034506, 0.943208 - -0.314659, 0.104295, 0.034808, 0.942815 - -0.315625, 0.104838, 0.035111, 0.942421 - -0.316591, 0.105381, 0.035416, 0.942025 - -0.317555, 0.105924, 0.035722, 0.941628 - -0.318519, 0.106468, 0.036030, 0.941229 - -0.319483, 0.107011, 0.036338, 0.940829 - -0.320446, 0.107555, 0.036649, 0.940427 - -0.321408, 0.108099, 0.036960, 0.940024 - -0.322369, 0.108642, 0.037273, 0.939620 - -0.323330, 0.109186, 0.037588, 0.939214 - -0.324290, 0.109730, 0.037904, 0.938807 - -0.325250, 0.110273, 0.038221, 0.938398 - -0.326209, 0.110817, 0.038539, 0.937988 - -0.327167, 0.111361, 0.038859, 0.937577 - -0.328125, 0.111905, 0.039181, 0.937164 - -0.329082, 0.112448, 0.039503, 0.936750 - -0.330038, 0.112992, 0.039827, 0.936334 - -0.330994, 0.113536, 0.040153, 0.935917 - -0.331948, 0.114079, 0.040479, 0.935499 - -0.332903, 0.114623, 0.040807, 0.935079 - -0.333856, 0.115166, 0.041137, 0.934657 - -0.334809, 0.115709, 0.041468, 0.934235 - -0.335762, 0.116252, 0.041800, 0.933811 - -0.336713, 0.116795, 0.042133, 0.933385 - -0.337664, 0.117338, 0.042468, 0.932958 - -0.338614, 0.117880, 0.042804, 0.932530 - -0.339564, 0.118423, 0.043141, 0.932100 - -0.340513, 0.118965, 0.043480, 0.931669 - -0.341461, 0.119507, 0.043820, 0.931237 - -0.342409, 0.120049, 0.044162, 0.930803 - -0.343355, 0.120591, 0.044504, 0.930368 - -0.344302, 0.121132, 0.044848, 0.929931 - -0.345247, 0.121673, 0.045194, 0.929493 - -0.346192, 0.122214, 0.045540, 0.929054 - -0.347136, 0.122754, 0.045888, 0.928613 - -0.348079, 0.123294, 0.046237, 0.928171 - -0.349022, 0.123834, 0.046588, 0.927728 - -0.349964, 0.124374, 0.046940, 0.927283 - -0.350905, 0.124913, 0.047293, 0.926836 - -0.351845, 0.125452, 0.047647, 0.926389 - -0.352785, 0.125991, 0.048003, 0.925940 - -0.353724, 0.126529, 0.048360, 0.925490 - -0.354663, 0.127066, 0.048718, 0.925038 - -0.355600, 0.127604, 0.049077, 0.924585 - -0.356537, 0.128141, 0.049438, 0.924130 - -0.357473, 0.128677, 0.049800, 0.923675 - -0.358409, 0.129213, 0.050163, 0.923218 - -0.359344, 0.129749, 0.050527, 0.922759 - -0.360278, 0.130284, 0.050893, 0.922299 - -0.361211, 0.130819, 0.051260, 0.921838 - -0.362144, 0.131353, 0.051628, 0.921376 - -0.363076, 0.131887, 0.051997, 0.920912 - -0.364007, 0.132420, 0.052368, 0.920446 - -0.364937, 0.132953, 0.052740, 0.919980 - -0.365867, 0.133485, 0.053113, 0.919512 - -0.366796, 0.134016, 0.053487, 0.919043 - -0.367724, 0.134547, 0.053862, 0.918572 - -0.368651, 0.135078, 0.054239, 0.918100 - -0.369578, 0.135608, 0.054616, 0.917627 - -0.370504, 0.136137, 0.054995, 0.917153 - -0.371429, 0.136665, 0.055376, 0.916677 - -0.372354, 0.137193, 0.055757, 0.916200 - -0.373277, 0.137721, 0.056139, 0.915721 - -0.374200, 0.138247, 0.056523, 0.915241 - -0.375123, 0.138773, 0.056908, 0.914760 - -0.376044, 0.139299, 0.057294, 0.914278 - -0.376965, 0.139823, 0.057681, 0.913794 - -0.377885, 0.140347, 0.058069, 0.913309 - -0.378804, 0.140871, 0.058459, 0.912823 - -0.379722, 0.141393, 0.058849, 0.912335 - -0.380640, 0.141915, 0.059241, 0.911846 - -0.381557, 0.142436, 0.059634, 0.911356 - -0.382473, 0.142956, 0.060027, 0.910865 - -0.383389, 0.143476, 0.060422, 0.910372 - -0.384303, 0.143994, 0.060819, 0.909878 - -0.385217, 0.144512, 0.061216, 0.909383 - -0.386130, 0.145029, 0.061614, 0.908886 - -0.387042, 0.145546, 0.062014, 0.908388 - -0.387954, 0.146061, 0.062414, 0.907889 - -0.388865, 0.146576, 0.062816, 0.907389 - -0.389775, 0.147089, 0.063218, 0.906887 - -0.390684, 0.147602, 0.063622, 0.906384 - -0.391592, 0.148114, 0.064027, 0.905880 - -0.392500, 0.148625, 0.064432, 0.905374 - -0.393407, 0.149135, 0.064839, 0.904868 - -0.394313, 0.149645, 0.065247, 0.904360 - -0.395218, 0.150153, 0.065656, 0.903851 - -0.396123, 0.150660, 0.066066, 0.903340 - -0.397027, 0.151167, 0.066477, 0.902828 - -0.397930, 0.151672, 0.066889, 0.902316 - -0.398832, 0.152177, 0.067302, 0.901801 - -0.399733, 0.152680, 0.067716, 0.901286 - -0.400634, 0.153183, 0.068131, 0.900770 - -0.401534, 0.153684, 0.068547, 0.900252 - -0.402433, 0.154185, 0.068964, 0.899733 - -0.403331, 0.154684, 0.069382, 0.899212 - -0.404229, 0.155182, 0.069801, 0.898691 - -0.405125, 0.155680, 0.070220, 0.898168 - -0.406021, 0.156176, 0.070641, 0.897645 - -0.406916, 0.156671, 0.071063, 0.897120 - -0.407811, 0.157165, 0.071486, 0.896593 - -0.408704, 0.157658, 0.071909, 0.896066 - -0.409597, 0.158150, 0.072334, 0.895537 - -0.410489, 0.158641, 0.072759, 0.895007 - -0.411380, 0.159130, 0.073186, 0.894476 - -0.412270, 0.159619, 0.073613, 0.893944 - -0.413160, 0.160106, 0.074041, 0.893411 - -0.414048, 0.160592, 0.074470, 0.892876 - -0.414936, 0.161077, 0.074900, 0.892341 - -0.415823, 0.161561, 0.075331, 0.891804 - -0.416710, 0.162043, 0.075763, 0.891266 - -0.417595, 0.162524, 0.076195, 0.890727 - -0.418480, 0.163004, 0.076629, 0.890187 - -0.419364, 0.163483, 0.077063, 0.889645 - -0.420247, 0.163961, 0.077498, 0.889103 - -0.421129, 0.164437, 0.077934, 0.888559 - -0.422011, 0.164912, 0.078371, 0.888014 - -0.422892, 0.165386, 0.078809, 0.887468 - -0.423772, 0.165858, 0.079247, 0.886921 - -0.424651, 0.166329, 0.079686, 0.886373 - -0.425529, 0.166799, 0.080127, 0.885823 - -0.426407, 0.167268, 0.080567, 0.885273 - -0.427283, 0.167735, 0.081009, 0.884721 - -0.428159, 0.168201, 0.081451, 0.884169 - -0.429034, 0.168665, 0.081895, 0.883615 - -0.429908, 0.169128, 0.082338, 0.883060 - -0.430782, 0.169590, 0.082783, 0.882504 - -0.431655, 0.170051, 0.083228, 0.881947 - -0.432527, 0.170509, 0.083675, 0.881389 - -0.433398, 0.170967, 0.084122, 0.880829 - -0.434268, 0.171423, 0.084569, 0.880269 - -0.435137, 0.171878, 0.085017, 0.879708 - -0.436006, 0.172331, 0.085466, 0.879145 - -0.436874, 0.172783, 0.085916, 0.878582 - -0.437741, 0.173233, 0.086367, 0.878017 - -0.438607, 0.173682, 0.086818, 0.877451 - -0.439473, 0.174130, 0.087269, 0.876885 - -0.440337, 0.174576, 0.087722, 0.876317 - -0.441201, 0.175020, 0.088175, 0.875748 - -0.442064, 0.175463, 0.088629, 0.875178 - -0.442926, 0.175904, 0.089083, 0.874608 - -0.443788, 0.176344, 0.089538, 0.874036 - -0.444648, 0.176782, 0.089994, 0.873463 - -0.445508, 0.177219, 0.090450, 0.872889 - -0.446367, 0.177655, 0.090907, 0.872314 - -0.447225, 0.178088, 0.091364, 0.871738 - -0.448083, 0.178520, 0.091822, 0.871161 - -0.448939, 0.178951, 0.092281, 0.870583 - -0.449795, 0.179380, 0.092740, 0.870004 - -0.450650, 0.179807, 0.093200, 0.869424 - -0.451504, 0.180233, 0.093660, 0.868843 - -0.452357, 0.180657, 0.094121, 0.868261 - -0.453210, 0.181079, 0.094582, 0.867678 - -0.454062, 0.181500, 0.095044, 0.867094 - -0.454913, 0.181919, 0.095507, 0.866509 - -0.455763, 0.182337, 0.095970, 0.865923 - -0.456612, 0.182752, 0.096433, 0.865337 - -0.457461, 0.183167, 0.096897, 0.864749 - -0.458309, 0.183579, 0.097361, 0.864160 - -0.459156, 0.183990, 0.097826, 0.863570 - -0.460002, 0.184399, 0.098292, 0.862980 - -0.460847, 0.184806, 0.098758, 0.862388 - -0.461692, 0.185212, 0.099224, 0.861796 - -0.462536, 0.185616, 0.099691, 0.861202 - -0.463379, 0.186018, 0.100158, 0.860608 - -0.464221, 0.186418, 0.100625, 0.860013 - -0.465062, 0.186817, 0.101094, 0.859416 - -0.465903, 0.187214, 0.101562, 0.858819 - -0.466743, 0.187609, 0.102031, 0.858221 - -0.467582, 0.188002, 0.102500, 0.857622 - -0.468420, 0.188394, 0.102970, 0.857023 - -0.469258, 0.188783, 0.103440, 0.856422 - -0.470094, 0.189171, 0.103910, 0.855820 - -0.470930, 0.189557, 0.104381, 0.855218 - -0.471765, 0.189942, 0.104852, 0.854614 - -0.472600, 0.190324, 0.105323, 0.854010 - -0.473433, 0.190705, 0.105795, 0.853405 - -0.474266, 0.191083, 0.106267, 0.852799 - -0.475098, 0.191460, 0.106739, 0.852192 - -0.475929, 0.191835, 0.107212, 0.851584 - -0.476760, 0.192208, 0.107685, 0.850976 - -0.477589, 0.192580, 0.108158, 0.850367 - -0.478418, 0.192949, 0.108632, 0.849756 - -0.479246, 0.193317, 0.109105, 0.849145 - -0.480074, 0.193682, 0.109579, 0.848533 - -0.480900, 0.194046, 0.110054, 0.847921 - -0.481726, 0.194408, 0.110528, 0.847307 - -0.482551, 0.194767, 0.111003, 0.846693 - -0.483375, 0.195125, 0.111478, 0.846077 - -0.484199, 0.195481, 0.111953, 0.845461 - -0.485022, 0.195835, 0.112428, 0.844845 - -0.485844, 0.196187, 0.112904, 0.844227 - -0.486665, 0.196538, 0.113380, 0.843609 - -0.487485, 0.196886, 0.113855, 0.842989 - -0.488305, 0.197232, 0.114331, 0.842369 - -0.489124, 0.197576, 0.114808, 0.841749 - -0.489942, 0.197918, 0.115284, 0.841127 - -0.490760, 0.198258, 0.115760, 0.840505 - -0.491576, 0.198597, 0.116237, 0.839882 - -0.492392, 0.198933, 0.116714, 0.839258 - -0.493207, 0.199267, 0.117191, 0.838633 - -0.494022, 0.199599, 0.117667, 0.838008 - -0.494836, 0.199929, 0.118144, 0.837382 - -0.495648, 0.200257, 0.118621, 0.836755 - -0.496461, 0.200583, 0.119099, 0.836127 - -0.497272, 0.200907, 0.119576, 0.835499 - -0.498083, 0.201229, 0.120053, 0.834870 - -0.498893, 0.201549, 0.120530, 0.834240 - -0.499702, 0.201867, 0.121008, 0.833610 - -0.500511, 0.202182, 0.121485, 0.832978 - -0.501318, 0.202496, 0.121962, 0.832346 - -0.502125, 0.202807, 0.122440, 0.831714 - -0.502932, 0.203117, 0.122917, 0.831081 - -0.503737, 0.203424, 0.123394, 0.830447 - -0.504542, 0.203729, 0.123871, 0.829812 - -0.505346, 0.204032, 0.124349, 0.829176 - -0.506150, 0.204333, 0.124826, 0.828540 - -0.506952, 0.204632, 0.125303, 0.827904 - -0.507754, 0.204929, 0.125780, 0.827266 - -0.508556, 0.205223, 0.126257, 0.826628 - -0.509356, 0.205516, 0.126734, 0.825989 - -0.510156, 0.205806, 0.127210, 0.825350 - -0.510955, 0.206094, 0.127687, 0.824710 - -0.511753, 0.206380, 0.128164, 0.824069 - -0.512551, 0.206664, 0.128640, 0.823428 - -0.513348, 0.206945, 0.129116, 0.822786 - -0.514145, 0.207225, 0.129592, 0.822143 - -0.514940, 0.207502, 0.130068, 0.821500 - -0.515735, 0.207777, 0.130544, 0.820856 - -0.516529, 0.208050, 0.131020, 0.820211 - -0.517323, 0.208321, 0.131495, 0.819566 - -0.518116, 0.208589, 0.131971, 0.818920 - -0.518908, 0.208856, 0.132446, 0.818274 - -0.519699, 0.209120, 0.132920, 0.817627 - -0.520490, 0.209381, 0.133395, 0.816979 - -0.521280, 0.209641, 0.133869, 0.816331 - -0.522070, 0.209898, 0.134343, 0.815682 - -0.522858, 0.210154, 0.134817, 0.815033 - -0.523646, 0.210406, 0.135291, 0.814383 - -0.524434, 0.210657, 0.135764, 0.813733 - -0.525220, 0.210906, 0.136237, 0.813082 - -0.526007, 0.211152, 0.136710, 0.812430 - -0.526792, 0.211396, 0.137182, 0.811778 - -0.527577, 0.211637, 0.137654, 0.811125 - -0.528361, 0.211877, 0.138126, 0.810472 - -0.529144, 0.212114, 0.138598, 0.809818 - -0.529927, 0.212349, 0.139069, 0.809163 - -0.530709, 0.212581, 0.139539, 0.808508 - -0.531490, 0.212812, 0.140010, 0.807853 - -0.532271, 0.213040, 0.140480, 0.807197 - -0.533051, 0.213265, 0.140949, 0.806540 - -0.533831, 0.213489, 0.141419, 0.805883 - -0.534610, 0.213710, 0.141887, 0.805226 - -0.535388, 0.213929, 0.142356, 0.804568 - -0.536166, 0.214145, 0.142824, 0.803909 - -0.536943, 0.214360, 0.143291, 0.803250 - -0.537719, 0.214571, 0.143758, 0.802590 - -0.538495, 0.214781, 0.144225, 0.801930 - -0.539270, 0.214988, 0.144691, 0.801269 - -0.540044, 0.215193, 0.145157, 0.800608 - -0.540818, 0.215396, 0.145622, 0.799947 - -0.541591, 0.215596, 0.146087, 0.799285 - -0.542364, 0.215794, 0.146551, 0.798622 - -0.543136, 0.215990, 0.147015, 0.797959 - -0.543907, 0.216183, 0.147478, 0.797295 - -0.544678, 0.216374, 0.147941, 0.796631 - -0.545448, 0.216563, 0.148403, 0.795967 - -0.546218, 0.216749, 0.148864, 0.795302 - -0.546987, 0.216933, 0.149325, 0.794637 - -0.547755, 0.217114, 0.149786, 0.793971 - -0.548523, 0.217294, 0.150246, 0.793305 - -0.549290, 0.217470, 0.150705, 0.792638 - -0.550057, 0.217645, 0.151163, 0.791971 - -0.550823, 0.217817, 0.151621, 0.791303 - -0.551588, 0.217987, 0.152079, 0.790635 - -0.552353, 0.218154, 0.152536, 0.789967 - -0.553117, 0.218319, 0.152992, 0.789298 - -0.553881, 0.218482, 0.153447, 0.788629 - -0.554644, 0.218642, 0.153902, 0.787959 - -0.555407, 0.218800, 0.154356, 0.787289 - -0.556169, 0.218955, 0.154810, 0.786618 - -0.556930, 0.219108, 0.155262, 0.785948 - -0.557691, 0.219259, 0.155714, 0.785276 - -0.558452, 0.219407, 0.156166, 0.784605 - -0.559211, 0.219553, 0.156616, 0.783932 - -0.559971, 0.219697, 0.157066, 0.783260 - -0.560729, 0.219838, 0.157516, 0.782587 - -0.561488, 0.219977, 0.157964, 0.781914 - -0.562245, 0.220113, 0.158412, 0.781240 - -0.563002, 0.220247, 0.158858, 0.780566 - -0.563759, 0.220379, 0.159305, 0.779892 - -0.564515, 0.220508, 0.159750, 0.779217 - -0.565270, 0.220634, 0.160194, 0.778542 - -0.566025, 0.220759, 0.160638, 0.777867 - -0.566780, 0.220881, 0.161081, 0.777191 - -0.567533, 0.221000, 0.161523, 0.776515 - -0.568287, 0.221117, 0.161964, 0.775838 - -0.569040, 0.221232, 0.162405, 0.775161 - -0.569792, 0.221344, 0.162844, 0.774484 - -0.570544, 0.221454, 0.163283, 0.773807 - -0.571295, 0.221561, 0.163721, 0.773129 - -0.572046, 0.221667, 0.164157, 0.772450 - -0.572796, 0.221769, 0.164593, 0.771772 - -0.573546, 0.221869, 0.165028, 0.771093 - -0.574295, 0.221967, 0.165463, 0.770414 - -0.575044, 0.222062, 0.165896, 0.769734 - -0.575793, 0.222155, 0.166328, 0.769054 - -0.576541, 0.222246, 0.166760, 0.768374 - -0.577288, 0.222334, 0.167190, 0.767694 - -0.578035, 0.222420, 0.167619, 0.767013 - -0.578781, 0.222503, 0.168048, 0.766332 - -0.579527, 0.222584, 0.168475, 0.765651 - -0.580273, 0.222662, 0.168902, 0.764969 - -0.581018, 0.222738, 0.169327, 0.764287 - -0.581762, 0.222811, 0.169752, 0.763605 - -0.582506, 0.222883, 0.170175, 0.762922 - -0.583250, 0.222951, 0.170598, 0.762239 - -0.583993, 0.223017, 0.171019, 0.761556 - -0.584736, 0.223081, 0.171439, 0.760873 - -0.585478, 0.223143, 0.171859, 0.760189 - -0.586220, 0.223202, 0.172277, 0.759505 - -0.586961, 0.223258, 0.172694, 0.758821 - -0.587702, 0.223312, 0.173110, 0.758136 - -0.588443, 0.223364, 0.173525, 0.757452 - -0.589183, 0.223413, 0.173939, 0.756767 - -0.589922, 0.223460, 0.174352, 0.756081 - -0.590661, 0.223504, 0.174763, 0.755396 - -0.591400, 0.223546, 0.175174, 0.754710 - -0.592138, 0.223586, 0.175583, 0.754024 - -0.592876, 0.223623, 0.175991, 0.753338 - -0.593614, 0.223658, 0.176398, 0.752651 - -0.594351, 0.223690, 0.176804, 0.751964 - -0.595088, 0.223720, 0.177209, 0.751277 - -0.595824, 0.223747, 0.177612, 0.750590 - -0.596560, 0.223772, 0.178015, 0.749902 - -0.597295, 0.223795, 0.178416, 0.749214 - -0.598030, 0.223815, 0.178816, 0.748526 - -0.598765, 0.223833, 0.179214, 0.747838 - -0.599499, 0.223848, 0.179612, 0.747150 - -0.600233, 0.223861, 0.180008, 0.746461 - -0.600966, 0.223872, 0.180403, 0.745772 - -0.601699, 0.223880, 0.180796, 0.745083 - -0.602432, 0.223885, 0.181189, 0.744393 - -0.603164, 0.223889, 0.181580, 0.743704 - -0.603896, 0.223889, 0.181970, 0.743014 - -0.604628, 0.223888, 0.182358, 0.742324 - -0.605359, 0.223884, 0.182745, 0.741634 - -0.606090, 0.223877, 0.183131, 0.740943 - -0.606820, 0.223869, 0.183516, 0.740252 - -0.607551, 0.223857, 0.183899, 0.739562 - -0.608280, 0.223844, 0.184281, 0.738870 - -0.609010, 0.223828, 0.184662, 0.738179 - -0.609739, 0.223809, 0.185041, 0.737488 - -0.610467, 0.223789, 0.185419, 0.736796 - -0.611196, 0.223765, 0.185795, 0.736104 - -0.611924, 0.223740, 0.186170, 0.735412 - -0.612651, 0.223712, 0.186544, 0.734720 - -0.613378, 0.223682, 0.186916, 0.734027 - -0.614105, 0.223649, 0.187287, 0.733334 - -0.614832, 0.223614, 0.187656, 0.732642 - -0.615558, 0.223576, 0.188024, 0.731949 - -0.616284, 0.223536, 0.188391, 0.731255 - -0.617010, 0.223494, 0.188756, 0.730562 - -0.617735, 0.223449, 0.189120, 0.729868 - -0.618460, 0.223402, 0.189482, 0.729174 - -0.619185, 0.223353, 0.189843, 0.728480 - -0.619909, 0.223301, 0.190202, 0.727786 - -0.620633, 0.223247, 0.190560, 0.727092 - -0.621357, 0.223190, 0.190916, 0.726397 - -0.622080, 0.223131, 0.191271, 0.725703 - -0.622803, 0.223070, 0.191624, 0.725008 - -0.623526, 0.223007, 0.191976, 0.724313 - -0.624248, 0.222941, 0.192326, 0.723617 - -0.624971, 0.222872, 0.192675, 0.722922 - -0.625692, 0.222802, 0.193022, 0.722226 - -0.626414, 0.222729, 0.193367, 0.721531 - -0.627135, 0.222653, 0.193711, 0.720835 - -0.627856, 0.222576, 0.194054, 0.720139 - -0.628577, 0.222496, 0.194395, 0.719442 - -0.629297, 0.222413, 0.194734, 0.718746 - -0.630017, 0.222329, 0.195071, 0.718049 - -0.630737, 0.222242, 0.195408, 0.717353 - -0.631457, 0.222152, 0.195742, 0.716656 - -0.632176, 0.222061, 0.196075, 0.715959 - -0.632895, 0.221967, 0.196406, 0.715262 - -0.633614, 0.221870, 0.196736, 0.714564 - -0.634333, 0.221772, 0.197064, 0.713867 - -0.635051, 0.221671, 0.197390, 0.713169 - -0.635769, 0.221568, 0.197714, 0.712471 - -0.636486, 0.221462, 0.198037, 0.711773 - -0.637204, 0.221354, 0.198359, 0.711075 - -0.637921, 0.221244, 0.198678, 0.710376 - -0.638638, 0.221132, 0.198996, 0.709678 - -0.639355, 0.221017, 0.199312, 0.708979 - -0.640071, 0.220900, 0.199627, 0.708280 - -0.640787, 0.220781, 0.199940, 0.707581 - -0.641503, 0.220659, 0.200251, 0.706882 - -0.642219, 0.220536, 0.200560, 0.706183 - -0.642934, 0.220410, 0.200868, 0.705484 - -0.643650, 0.220281, 0.201174, 0.704784 - -0.644365, 0.220151, 0.201478, 0.704084 - -0.645079, 0.220018, 0.201780, 0.703384 - -0.645794, 0.219883, 0.202081, 0.702684 - -0.646508, 0.219745, 0.202379, 0.701984 - -0.647222, 0.219606, 0.202676, 0.701284 - -0.647936, 0.219464, 0.202972, 0.700583 - -0.648650, 0.219320, 0.203265, 0.699883 - -0.649363, 0.219174, 0.203557, 0.699182 - -0.650076, 0.219025, 0.203847, 0.698481 - -0.650789, 0.218874, 0.204135, 0.697780 - -0.651502, 0.218722, 0.204421, 0.697079 - -0.652214, 0.218566, 0.204705, 0.696377 - -0.652926, 0.218409, 0.204988, 0.695676 - -0.653638, 0.218249, 0.205268, 0.694974 - -0.654350, 0.218088, 0.205547, 0.694272 - -0.655062, 0.217924, 0.205824, 0.693570 - -0.655773, 0.217758, 0.206099, 0.692868 - -0.656485, 0.217589, 0.206373, 0.692166 - -0.657196, 0.217419, 0.206644, 0.691463 - -0.657907, 0.217246, 0.206913, 0.690760 - -0.658617, 0.217071, 0.207181, 0.690058 - -0.659328, 0.216894, 0.207447, 0.689355 - -0.660038, 0.216715, 0.207710, 0.688652 - -0.660748, 0.216534, 0.207972, 0.687948 - -0.661458, 0.216350, 0.208232, 0.687245 - -0.662167, 0.216165, 0.208490, 0.686541 - -0.662877, 0.215977, 0.208746, 0.685838 - -0.663586, 0.215787, 0.209001, 0.685134 - -0.664295, 0.215595, 0.209253, 0.684430 - -0.665004, 0.215401, 0.209503, 0.683726 - -0.665713, 0.215205, 0.209751, 0.683021 - -0.666421, 0.215006, 0.209998, 0.682317 - -0.667130, 0.214806, 0.210242, 0.681612 - -0.667838, 0.214603, 0.210484, 0.680907 - -0.668546, 0.214399, 0.210725, 0.680202 - -0.669253, 0.214192, 0.210963, 0.679497 - -0.669961, 0.213983, 0.211199, 0.678792 - -0.670669, 0.213772, 0.211434, 0.678086 - -0.671376, 0.213559, 0.211666, 0.677381 - -0.672083, 0.213344, 0.211896, 0.676675 - -0.672790, 0.213127, 0.212125, 0.675969 - -0.673497, 0.212908, 0.212351, 0.675263 - -0.674203, 0.212687, 0.212575, 0.674556 - -0.674910, 0.212463, 0.212798, 0.673850 - -0.675616, 0.212238, 0.213018, 0.673143 - -0.676322, 0.212011, 0.213236, 0.672436 - -0.677028, 0.211782, 0.213452, 0.671729 - -0.677733, 0.211550, 0.213666, 0.671022 - -0.678439, 0.211317, 0.213878, 0.670315 - -0.679144, 0.211081, 0.214088, 0.669607 - -0.679850, 0.210844, 0.214296, 0.668900 - -0.680555, 0.210605, 0.214501, 0.668192 - -0.681260, 0.210363, 0.214705, 0.667484 - -0.681964, 0.210120, 0.214906, 0.666775 - -0.682669, 0.209875, 0.215106, 0.666067 - -0.683373, 0.209627, 0.215303, 0.665358 - -0.684078, 0.209378, 0.215498, 0.664650 - -0.684782, 0.209127, 0.215691, 0.663941 - -0.685486, 0.208874, 0.215882, 0.663231 - -0.686190, 0.208619, 0.216071, 0.662522 - -0.686893, 0.208362, 0.216258, 0.661813 - -0.687597, 0.208103, 0.216442, 0.661103 - -0.688300, 0.207842, 0.216625, 0.660393 - -0.689003, 0.207579, 0.216805, 0.659683 - -0.689706, 0.207314, 0.216983, 0.658972 - -0.690409, 0.207047, 0.217159, 0.658262 - -0.691112, 0.206779, 0.217333, 0.657551 - -0.691814, 0.206509, 0.217504, 0.656840 - -0.692517, 0.206236, 0.217674, 0.656129 - -0.693219, 0.205962, 0.217841, 0.655418 - -0.693921, 0.205686, 0.218006, 0.654706 - -0.694623, 0.205408, 0.218169, 0.653994 - -0.695325, 0.205128, 0.218329, 0.653282 - -0.696026, 0.204847, 0.218488, 0.652570 - -0.696728, 0.204563, 0.218644, 0.651858 - -0.697429, 0.204278, 0.218798, 0.651145 - -0.698130, 0.203991, 0.218950, 0.650433 - -0.698831, 0.203702, 0.219100, 0.649719 - -0.699532, 0.203411, 0.219247, 0.649006 - -0.700233, 0.203119, 0.219392, 0.648293 - -0.700934, 0.202824, 0.219535, 0.647579 - -0.701634, 0.202528, 0.219676, 0.646865 - -0.702334, 0.202230, 0.219814, 0.646151 - -0.703034, 0.201931, 0.219951, 0.645437 - -0.703734, 0.201629, 0.220085, 0.644722 - -0.704434, 0.201326, 0.220216, 0.644007 - -0.705134, 0.201021, 0.220346, 0.643292 - -0.705833, 0.200714, 0.220473, 0.642577 - -0.706533, 0.200406, 0.220598, 0.641861 - -0.707232, 0.200095, 0.220720, 0.641145 - -0.707931, 0.199783, 0.220841, 0.640429 - -0.708630, 0.199470, 0.220959, 0.639713 - -0.709329, 0.199154, 0.221075, 0.638996 - -0.710027, 0.198837, 0.221188, 0.638280 - -0.710726, 0.198519, 0.221300, 0.637562 - -0.711424, 0.198198, 0.221409, 0.636845 - -0.712122, 0.197876, 0.221515, 0.636128 - -0.712820, 0.197552, 0.221620, 0.635410 - -0.713518, 0.197227, 0.221722, 0.634692 - -0.714215, 0.196900, 0.221821, 0.633973 - -0.714913, 0.196571, 0.221919, 0.633255 - -0.715610, 0.196241, 0.222014, 0.632536 - -0.716307, 0.195909, 0.222107, 0.631817 - -0.717004, 0.195575, 0.222197, 0.631097 - -0.717701, 0.195240, 0.222285, 0.630377 - -0.718398, 0.194903, 0.222371, 0.629657 - -0.719094, 0.194564, 0.222455, 0.628937 - -0.719791, 0.194224, 0.222536, 0.628217 - -0.720487, 0.193883, 0.222615, 0.627496 - -0.721183, 0.193539, 0.222691, 0.626775 - -0.721879, 0.193195, 0.222766, 0.626053 - -0.722574, 0.192848, 0.222837, 0.625331 - -0.723270, 0.192500, 0.222907, 0.624609 - -0.723965, 0.192151, 0.222974, 0.623887 - -0.724660, 0.191800, 0.223039, 0.623165 - -0.725355, 0.191448, 0.223101, 0.622442 - -0.726050, 0.191093, 0.223161, 0.621718 - -0.726745, 0.190738, 0.223219, 0.620995 - -0.727439, 0.190381, 0.223274, 0.620271 - -0.728133, 0.190022, 0.223327, 0.619547 - -0.728827, 0.189662, 0.223378, 0.618822 - -0.729521, 0.189301, 0.223426, 0.618098 - -0.730215, 0.188938, 0.223472, 0.617372 - -0.730909, 0.188574, 0.223515, 0.616647 - -0.731602, 0.188208, 0.223556, 0.615921 - -0.732295, 0.187840, 0.223595, 0.615195 - -0.732988, 0.187472, 0.223632, 0.614469 - -0.733681, 0.187102, 0.223665, 0.613742 - -0.734373, 0.186730, 0.223697, 0.613015 - -0.735066, 0.186357, 0.223726, 0.612287 - -0.735758, 0.185983, 0.223753, 0.611560 - -0.736450, 0.185607, 0.223777, 0.610831 - -0.737142, 0.185230, 0.223799, 0.610103 - -0.737833, 0.184851, 0.223819, 0.609374 - -0.738525, 0.184471, 0.223836, 0.608645 - -0.739216, 0.184090, 0.223851, 0.607915 - -0.739907, 0.183708, 0.223863, 0.607186 - -0.740598, 0.183324, 0.223873, 0.606455 - -0.741288, 0.182938, 0.223881, 0.605725 - -0.741979, 0.182552, 0.223886, 0.604994 - -0.742669, 0.182164, 0.223889, 0.604262 - -0.743359, 0.181775, 0.223889, 0.603530 - -0.744049, 0.181384, 0.223887, 0.602798 - -0.744738, 0.180993, 0.223883, 0.602066 - -0.745427, 0.180600, 0.223876, 0.601333 - -0.746116, 0.180205, 0.223867, 0.600600 - -0.746805, 0.179810, 0.223855, 0.599866 - -0.747494, 0.179413, 0.223841, 0.599132 - -0.748182, 0.179015, 0.223824, 0.598398 - -0.748870, 0.178616, 0.223805, 0.597663 - -0.749558, 0.178215, 0.223784, 0.596927 - -0.750246, 0.177814, 0.223760, 0.596192 - -0.750933, 0.177411, 0.223734, 0.595456 - -0.751621, 0.177007, 0.223705, 0.594719 - -0.752308, 0.176601, 0.223674, 0.593982 - -0.752994, 0.176195, 0.223641, 0.593245 - -0.753681, 0.175787, 0.223605, 0.592507 - -0.754367, 0.175379, 0.223566, 0.591769 - -0.755053, 0.174969, 0.223526, 0.591031 - -0.755739, 0.174558, 0.223482, 0.590292 - -0.756424, 0.174145, 0.223437, 0.589552 - -0.757109, 0.173732, 0.223389, 0.588813 - -0.757794, 0.173318, 0.223338, 0.588072 - -0.758479, 0.172902, 0.223285, 0.587332 - -0.759163, 0.172486, 0.223230, 0.586591 - -0.759847, 0.172068, 0.223172, 0.585849 - -0.760531, 0.171649, 0.223112, 0.585107 - -0.761215, 0.171229, 0.223050, 0.584364 - -0.761898, 0.170808, 0.222985, 0.583622 - -0.762581, 0.170387, 0.222917, 0.582878 - -0.763263, 0.169964, 0.222847, 0.582134 - -0.763946, 0.169540, 0.222775, 0.581390 - -0.764628, 0.169115, 0.222700, 0.580645 - -0.765310, 0.168689, 0.222623, 0.579900 - -0.765991, 0.168262, 0.222543, 0.579154 - -0.766673, 0.167834, 0.222461, 0.578408 - -0.767354, 0.167405, 0.222377, 0.577661 - -0.768034, 0.166975, 0.222290, 0.576914 - -0.768714, 0.166544, 0.222201, 0.576167 - -0.769394, 0.166112, 0.222109, 0.575419 - -0.770074, 0.165679, 0.222015, 0.574670 - -0.770753, 0.165246, 0.221918, 0.573921 - -0.771432, 0.164811, 0.221819, 0.573171 - -0.772111, 0.164375, 0.221718, 0.572421 - -0.772790, 0.163939, 0.221614, 0.571671 - -0.773468, 0.163502, 0.221508, 0.570920 - -0.774145, 0.163064, 0.221399, 0.570168 - -0.774823, 0.162624, 0.221288, 0.569416 - -0.775500, 0.162185, 0.221175, 0.568663 - -0.776176, 0.161744, 0.221059, 0.567910 - -0.776853, 0.161302, 0.220941, 0.567157 - -0.777529, 0.160860, 0.220820, 0.566402 - -0.778204, 0.160416, 0.220697, 0.565648 - -0.778880, 0.159972, 0.220571, 0.564893 - -0.779555, 0.159527, 0.220443, 0.564137 - -0.780229, 0.159082, 0.220313, 0.563381 - -0.780903, 0.158635, 0.220180, 0.562624 - -0.781577, 0.158188, 0.220045, 0.561866 - -0.782251, 0.157740, 0.219908, 0.561109 - -0.782924, 0.157291, 0.219768, 0.560350 - -0.783596, 0.156841, 0.219625, 0.559591 - -0.784269, 0.156391, 0.219481, 0.558832 - -0.784940, 0.155940, 0.219334, 0.558072 - -0.785612, 0.155489, 0.219184, 0.557311 - -0.786283, 0.155036, 0.219032, 0.556550 - -0.786954, 0.154583, 0.218878, 0.555788 - -0.787624, 0.154129, 0.218721, 0.555026 - -0.788294, 0.153675, 0.218562, 0.554263 - -0.788963, 0.153220, 0.218401, 0.553499 - -0.789632, 0.152764, 0.218237, 0.552735 - -0.790301, 0.152307, 0.218071, 0.551971 - -0.790969, 0.151850, 0.217902, 0.551206 - -0.791637, 0.151393, 0.217731, 0.550440 - -0.792304, 0.150934, 0.217558, 0.549674 - -0.792971, 0.150475, 0.217382, 0.548907 - -0.793638, 0.150016, 0.217204, 0.548139 - -0.794304, 0.149556, 0.217024, 0.547371 - -0.794969, 0.149095, 0.216841, 0.546602 - -0.795635, 0.148634, 0.216656, 0.545833 - -0.796299, 0.148172, 0.216469, 0.545063 - -0.796963, 0.147709, 0.216279, 0.544293 - -0.797627, 0.147247, 0.216087, 0.543522 - -0.798291, 0.146783, 0.215892, 0.542750 - -0.798953, 0.146319, 0.215695, 0.541978 - -0.799616, 0.145855, 0.215496, 0.541205 - -0.800278, 0.145390, 0.215295, 0.540431 - -0.800939, 0.144924, 0.215091, 0.539657 - -0.801600, 0.144458, 0.214885, 0.538882 - -0.802260, 0.143992, 0.214677, 0.538107 - -0.802920, 0.143525, 0.214466, 0.537331 - -0.803579, 0.143058, 0.214253, 0.536554 - -0.804238, 0.142590, 0.214037, 0.535777 - -0.804897, 0.142122, 0.213820, 0.534999 - -0.805555, 0.141653, 0.213600, 0.534220 - -0.806212, 0.141184, 0.213377, 0.533441 - -0.806869, 0.140715, 0.213153, 0.532661 - -0.807525, 0.140245, 0.212926, 0.531881 - -0.808181, 0.139775, 0.212697, 0.531100 - -0.808836, 0.139304, 0.212465, 0.530318 - -0.809491, 0.138833, 0.212232, 0.529536 - -0.810145, 0.138362, 0.211996, 0.528752 - -0.810798, 0.137890, 0.211757, 0.527969 - -0.811451, 0.137418, 0.211517, 0.527184 - -0.812104, 0.136946, 0.211274, 0.526399 - -0.812756, 0.136474, 0.211029, 0.525614 - -0.813407, 0.136001, 0.210782, 0.524827 - -0.814058, 0.135528, 0.210532, 0.524040 - -0.814708, 0.135054, 0.210280, 0.523252 - -0.815358, 0.134580, 0.210026, 0.522464 - -0.816007, 0.134106, 0.209770, 0.521675 - -0.816655, 0.133632, 0.209511, 0.520885 - -0.817303, 0.133158, 0.209251, 0.520095 - -0.817951, 0.132683, 0.208988, 0.519304 - -0.818597, 0.132208, 0.208723, 0.518512 - -0.819243, 0.131733, 0.208455, 0.517719 - -0.819889, 0.131258, 0.208186, 0.516926 - -0.820534, 0.130782, 0.207914, 0.516132 - -0.821178, 0.130306, 0.207640, 0.515338 - -0.821821, 0.129830, 0.207364, 0.514542 - -0.822464, 0.129354, 0.207085, 0.513746 - -0.823107, 0.128878, 0.206805, 0.512950 - -0.823748, 0.128402, 0.206522, 0.512152 - -0.824389, 0.127925, 0.206237, 0.511354 - -0.825030, 0.127449, 0.205950, 0.510556 - -0.825670, 0.126972, 0.205661, 0.509756 - -0.826309, 0.126495, 0.205370, 0.508956 - -0.826947, 0.126018, 0.205076, 0.508155 - -0.827585, 0.125541, 0.204781, 0.507353 - -0.828222, 0.125064, 0.204483, 0.506551 - -0.828858, 0.124587, 0.204183, 0.505748 - -0.829494, 0.124110, 0.203881, 0.504944 - -0.830129, 0.123633, 0.203577, 0.504140 - -0.830764, 0.123155, 0.203271, 0.503335 - -0.831397, 0.122678, 0.202962, 0.502529 - -0.832030, 0.122201, 0.202652, 0.501722 - -0.832663, 0.121724, 0.202339, 0.500914 - -0.833294, 0.121246, 0.202025, 0.500106 - -0.833925, 0.120769, 0.201708, 0.499297 - -0.834555, 0.120292, 0.201389, 0.498488 - -0.835184, 0.119814, 0.201068, 0.497678 - -0.835813, 0.119337, 0.200745, 0.496866 - -0.836441, 0.118860, 0.200420, 0.496055 - -0.837068, 0.118383, 0.200093, 0.495242 - -0.837695, 0.117906, 0.199764, 0.494429 - -0.838321, 0.117429, 0.199433, 0.493615 - -0.838946, 0.116952, 0.199100, 0.492800 - -0.839570, 0.116475, 0.198765, 0.491984 - -0.840193, 0.115999, 0.198428, 0.491168 - -0.840816, 0.115522, 0.198089, 0.490351 - -0.841438, 0.115046, 0.197747, 0.489533 - -0.842059, 0.114570, 0.197404, 0.488715 - -0.842679, 0.114093, 0.197059, 0.487895 - -0.843299, 0.113617, 0.196712, 0.487075 - -0.843918, 0.113142, 0.196363, 0.486254 - -0.844536, 0.112666, 0.196012, 0.485433 - -0.845153, 0.112191, 0.195659, 0.484610 - -0.845769, 0.111715, 0.195304, 0.483787 - -0.846385, 0.111240, 0.194947, 0.482963 - -0.847000, 0.110765, 0.194588, 0.482139 - -0.847614, 0.110291, 0.194227, 0.481313 - -0.848227, 0.109816, 0.193864, 0.480487 - -0.848839, 0.109342, 0.193500, 0.479660 - -0.849451, 0.108868, 0.193133, 0.478832 - -0.850062, 0.108395, 0.192765, 0.478004 - -0.850671, 0.107921, 0.192394, 0.477175 - -0.851280, 0.107448, 0.192022, 0.476345 - -0.851888, 0.106976, 0.191648, 0.475514 - -0.852496, 0.106503, 0.191272, 0.474682 - -0.853102, 0.106031, 0.190894, 0.473850 - -0.853708, 0.105559, 0.190515, 0.473017 - -0.854312, 0.105087, 0.190133, 0.472183 - -0.854916, 0.104616, 0.189750, 0.471348 - -0.855519, 0.104145, 0.189364, 0.470512 - -0.856121, 0.103675, 0.188977, 0.469676 - -0.856722, 0.103205, 0.188589, 0.468839 - -0.857323, 0.102735, 0.188198, 0.468001 - -0.857922, 0.102265, 0.187806, 0.467162 - -0.858520, 0.101796, 0.187411, 0.466323 - -0.859118, 0.101328, 0.187015, 0.465483 - -0.859715, 0.100859, 0.186618, 0.464642 - -0.860310, 0.100392, 0.186218, 0.463800 - -0.860905, 0.099924, 0.185817, 0.462957 - -0.861499, 0.099457, 0.185414, 0.462114 - -0.862092, 0.098991, 0.185009, 0.461270 - -0.862684, 0.098525, 0.184603, 0.460425 - -0.863275, 0.098059, 0.184194, 0.459579 - -0.863865, 0.097594, 0.183785, 0.458732 - -0.864455, 0.097129, 0.183373, 0.457885 - -0.865043, 0.096665, 0.182960, 0.457037 - -0.865630, 0.096201, 0.182545, 0.456188 - -0.866216, 0.095738, 0.182128, 0.455338 - -0.866802, 0.095275, 0.181710, 0.454487 - -0.867386, 0.094813, 0.181290, 0.453636 - -0.867970, 0.094351, 0.180868, 0.452784 - -0.868552, 0.093890, 0.180445, 0.451931 - -0.869134, 0.093430, 0.180020, 0.451077 - -0.869714, 0.092970, 0.179594, 0.450222 - -0.870294, 0.092510, 0.179165, 0.449367 - -0.870872, 0.092051, 0.178736, 0.448511 - -0.871449, 0.091593, 0.178304, 0.447654 - -0.872026, 0.091135, 0.177872, 0.446796 - -0.872601, 0.090678, 0.177437, 0.445938 - -0.873176, 0.090222, 0.177001, 0.445078 - -0.873749, 0.089766, 0.176564, 0.444218 - -0.874322, 0.089310, 0.176124, 0.443357 - -0.874893, 0.088856, 0.175684, 0.442495 - -0.875463, 0.088402, 0.175242, 0.441633 - -0.876033, 0.087948, 0.174798, 0.440769 - -0.876601, 0.087495, 0.174353, 0.439905 - -0.877168, 0.087043, 0.173906, 0.439040 - -0.877734, 0.086592, 0.173458, 0.438174 - -0.878300, 0.086141, 0.173008, 0.437307 - -0.878864, 0.085691, 0.172557, 0.436440 - -0.879427, 0.085242, 0.172105, 0.435572 - -0.879988, 0.084793, 0.171651, 0.434703 - -0.880549, 0.084345, 0.171195, 0.433833 - -0.881109, 0.083898, 0.170738, 0.432962 - -0.881668, 0.083451, 0.170280, 0.432091 - -0.882225, 0.083006, 0.169821, 0.431218 - -0.882782, 0.082561, 0.169359, 0.430345 - -0.883337, 0.082116, 0.168897, 0.429471 - -0.883892, 0.081673, 0.168433, 0.428597 - -0.884445, 0.081230, 0.167968, 0.427721 - -0.884997, 0.080788, 0.167502, 0.426845 - -0.885548, 0.080347, 0.167034, 0.425968 - -0.886098, 0.079906, 0.166565, 0.425090 - -0.886647, 0.079467, 0.166094, 0.424211 - -0.887195, 0.079028, 0.165622, 0.423332 - -0.887741, 0.078590, 0.165149, 0.422451 - -0.888287, 0.078153, 0.164675, 0.421570 - -0.888831, 0.077716, 0.164199, 0.420688 - -0.889374, 0.077281, 0.163722, 0.419806 - -0.889916, 0.076846, 0.163244, 0.418922 - -0.890457, 0.076412, 0.162764, 0.418038 - -0.890997, 0.075979, 0.162284, 0.417153 - -0.891535, 0.075547, 0.161802, 0.416267 - -0.892073, 0.075116, 0.161319, 0.415380 - -0.892609, 0.074685, 0.160834, 0.414492 - -0.893144, 0.074256, 0.160349, 0.413604 - -0.893678, 0.073827, 0.159862, 0.412715 - -0.894211, 0.073399, 0.159375, 0.411825 - -0.894742, 0.072972, 0.158886, 0.410934 - -0.895272, 0.072546, 0.158395, 0.410043 - -0.895802, 0.072121, 0.157904, 0.409150 - -0.896330, 0.071697, 0.157412, 0.408257 - -0.896857, 0.071274, 0.156918, 0.407363 - -0.897382, 0.070852, 0.156424, 0.406469 - -0.897907, 0.070431, 0.155928, 0.405573 - -0.898430, 0.070010, 0.155431, 0.404677 - -0.898952, 0.069591, 0.154933, 0.403780 - -0.899473, 0.069173, 0.154434, 0.402882 - -0.899992, 0.068755, 0.153935, 0.401983 - -0.900511, 0.068339, 0.153434, 0.401084 - -0.901028, 0.067923, 0.152932, 0.400184 - -0.901544, 0.067509, 0.152429, 0.399283 - -0.902059, 0.067095, 0.151925, 0.398381 - -0.902572, 0.066683, 0.151420, 0.397478 - -0.903084, 0.066271, 0.150914, 0.396575 - -0.903595, 0.065861, 0.150407, 0.395671 - -0.904105, 0.065451, 0.149899, 0.394766 - -0.904614, 0.065043, 0.149390, 0.393860 - -0.905121, 0.064636, 0.148881, 0.392954 - -0.905627, 0.064229, 0.148370, 0.392046 - -0.906132, 0.063824, 0.147858, 0.391138 - -0.906636, 0.063420, 0.147346, 0.390229 - -0.907138, 0.063017, 0.146833, 0.389320 - -0.907639, 0.062615, 0.146319, 0.388409 - -0.908139, 0.062214, 0.145803, 0.387498 - -0.908637, 0.061814, 0.145288, 0.386586 - -0.909134, 0.061415, 0.144771, 0.385674 - -0.909630, 0.061017, 0.144253, 0.384760 - -0.910125, 0.060620, 0.143735, 0.383846 - -0.910618, 0.060225, 0.143216, 0.382931 - -0.911111, 0.059830, 0.142696, 0.382015 - -0.911601, 0.059437, 0.142176, 0.381099 - -0.912091, 0.059045, 0.141654, 0.380181 - -0.912579, 0.058654, 0.141132, 0.379263 - -0.913066, 0.058264, 0.140609, 0.378344 - -0.913552, 0.057875, 0.140085, 0.377425 - -0.914036, 0.057487, 0.139561, 0.376505 - -0.914519, 0.057101, 0.139036, 0.375583 - -0.915001, 0.056715, 0.138510, 0.374662 - -0.915481, 0.056331, 0.137984, 0.373739 - -0.915961, 0.055948, 0.137457, 0.372816 - -0.916438, 0.055566, 0.136929, 0.371892 - -0.916915, 0.055185, 0.136401, 0.370967 - -0.917390, 0.054806, 0.135872, 0.370041 - -0.917864, 0.054427, 0.135343, 0.369115 - -0.918336, 0.054050, 0.134813, 0.368188 - -0.918808, 0.053674, 0.134282, 0.367260 - -0.919278, 0.053299, 0.133751, 0.366331 - -0.919746, 0.052926, 0.133219, 0.365402 - -0.920213, 0.052554, 0.132686, 0.364472 - -0.920679, 0.052182, 0.132153, 0.363541 - -0.921144, 0.051812, 0.131620, 0.362610 - -0.921607, 0.051444, 0.131086, 0.361678 - -0.922069, 0.051076, 0.130552, 0.360745 - -0.922529, 0.050710, 0.130017, 0.359811 - -0.922988, 0.050345, 0.129481, 0.358876 - -0.923446, 0.049981, 0.128945, 0.357941 - -0.923903, 0.049619, 0.128409, 0.357005 - -0.924358, 0.049257, 0.127872, 0.356069 - -0.924812, 0.048897, 0.127335, 0.355132 - -0.925264, 0.048538, 0.126798, 0.354194 - -0.925715, 0.048181, 0.126260, 0.353255 - -0.926165, 0.047825, 0.125721, 0.352315 - -0.926613, 0.047470, 0.125183, 0.351375 - -0.927060, 0.047116, 0.124644, 0.350434 - -0.927505, 0.046764, 0.124104, 0.349493 - -0.927950, 0.046412, 0.123564, 0.348550 - -0.928392, 0.046063, 0.123024, 0.347607 - -0.928834, 0.045714, 0.122484, 0.346664 - -0.929274, 0.045367, 0.121943, 0.345719 - -0.929712, 0.045021, 0.121402, 0.344774 - -0.930150, 0.044676, 0.120861, 0.343829 - -0.930586, 0.044333, 0.120320, 0.342882 - -0.931020, 0.043991, 0.119778, 0.341935 - -0.931453, 0.043650, 0.119236, 0.340987 - -0.931885, 0.043311, 0.118694, 0.340039 - -0.932315, 0.042973, 0.118152, 0.339089 - -0.932744, 0.042636, 0.117609, 0.338139 - -0.933172, 0.042300, 0.117067, 0.337189 - -0.933598, 0.041966, 0.116524, 0.336238 - -0.934023, 0.041634, 0.115981, 0.335286 - -0.934446, 0.041302, 0.115438, 0.334333 - -0.934868, 0.040972, 0.114894, 0.333380 - -0.935289, 0.040643, 0.114351, 0.332426 - -0.935708, 0.040316, 0.113807, 0.331471 - -0.936126, 0.039990, 0.113264, 0.330516 - -0.936542, 0.039665, 0.112720, 0.329560 - -0.936957, 0.039342, 0.112177, 0.328603 - -0.937371, 0.039020, 0.111633, 0.327646 - -0.937783, 0.038699, 0.111089, 0.326688 - -0.938193, 0.038380, 0.110545, 0.325729 - -0.938603, 0.038062, 0.110002, 0.324770 - -0.939011, 0.037746, 0.109458, 0.323810 - -0.939417, 0.037431, 0.108914, 0.322850 - -0.939822, 0.037117, 0.108370, 0.321889 - -0.940226, 0.036804, 0.107827, 0.320927 - -0.940628, 0.036493, 0.107283, 0.319964 - -0.941029, 0.036184, 0.106740, 0.319001 - -0.941428, 0.035876, 0.106196, 0.318037 - -0.941826, 0.035569, 0.105653, 0.317073 - -0.942223, 0.035263, 0.105110, 0.316108 - -0.942618, 0.034959, 0.104566, 0.315142 - -0.943012, 0.034657, 0.104023, 0.314176 - -0.943404, 0.034355, 0.103481, 0.313209 - -0.943795, 0.034056, 0.102938, 0.312242 - -0.944184, 0.033757, 0.102395, 0.311274 - -0.944572, 0.033460, 0.101853, 0.310305 - -0.944959, 0.033165, 0.101311, 0.309336 - -0.945344, 0.032870, 0.100769, 0.308366 - -0.945728, 0.032578, 0.100228, 0.307395 - -0.946110, 0.032286, 0.099686, 0.306424 - -0.946491, 0.031996, 0.099145, 0.305452 - -0.946871, 0.031708, 0.098604, 0.304480 - -0.947249, 0.031420, 0.098064, 0.303507 - -0.947625, 0.031135, 0.097523, 0.302533 - -0.948000, 0.030850, 0.096983, 0.301559 - -0.948374, 0.030568, 0.096444, 0.300584 - -0.948746, 0.030286, 0.095904, 0.299609 - -0.949117, 0.030006, 0.095365, 0.298633 - -0.949487, 0.029727, 0.094827, 0.297657 - -0.949855, 0.029450, 0.094289, 0.296680 - -0.950221, 0.029175, 0.093751, 0.295702 - -0.950586, 0.028900, 0.093213, 0.294724 - -0.950950, 0.028627, 0.092676, 0.293745 - -0.951312, 0.028356, 0.092140, 0.292765 - -0.951673, 0.028086, 0.091604, 0.291785 - -0.952032, 0.027817, 0.091068, 0.290805 - -0.952390, 0.027550, 0.090533, 0.289824 - -0.952747, 0.027284, 0.089998, 0.288842 - -0.953102, 0.027020, 0.089464, 0.287860 - -0.953455, 0.026757, 0.088930, 0.286877 - -0.953807, 0.026496, 0.088396, 0.285894 - -0.954158, 0.026236, 0.087864, 0.284910 - -0.954507, 0.025977, 0.087332, 0.283926 - -0.954855, 0.025720, 0.086800, 0.282941 - -0.955202, 0.025465, 0.086269, 0.281955 - -0.955547, 0.025211, 0.085738, 0.280969 - -0.955890, 0.024958, 0.085208, 0.279983 - -0.956232, 0.024706, 0.084679, 0.278996 - -0.956573, 0.024457, 0.084151, 0.278008 - -0.956912, 0.024208, 0.083623, 0.277020 - -0.957250, 0.023961, 0.083095, 0.276031 - -0.957587, 0.023716, 0.082568, 0.275042 - -0.957921, 0.023472, 0.082042, 0.274052 - -0.958255, 0.023229, 0.081517, 0.273062 - -0.958587, 0.022988, 0.080992, 0.272071 - -0.958918, 0.022748, 0.080468, 0.271080 - -0.959247, 0.022510, 0.079945, 0.270088 - -0.959575, 0.022273, 0.079423, 0.269096 - -0.959901, 0.022037, 0.078901, 0.268103 - -0.960226, 0.021803, 0.078380, 0.267110 - -0.960549, 0.021571, 0.077860, 0.266116 - -0.960871, 0.021340, 0.077340, 0.265122 - -0.961192, 0.021110, 0.076822, 0.264127 - -0.961511, 0.020882, 0.076304, 0.263132 - -0.961829, 0.020655, 0.075787, 0.262136 - -0.962145, 0.020430, 0.075271, 0.261140 - -0.962460, 0.020206, 0.074755, 0.260143 - -0.962773, 0.019983, 0.074241, 0.259146 - -0.963085, 0.019762, 0.073727, 0.258148 - -0.963396, 0.019542, 0.073215, 0.257150 - -0.963705, 0.019324, 0.072703, 0.256151 - -0.964013, 0.019108, 0.072192, 0.255152 - -0.964319, 0.018892, 0.071682, 0.254153 - -0.964624, 0.018678, 0.071173, 0.253153 - -0.964927, 0.018466, 0.070665, 0.252152 - -0.965229, 0.018255, 0.070158, 0.251151 - -0.965530, 0.018045, 0.069652, 0.250150 - -0.965829, 0.017837, 0.069147, 0.249148 - -0.966127, 0.017631, 0.068643, 0.248146 - -0.966423, 0.017425, 0.068139, 0.247143 - -0.966718, 0.017221, 0.067637, 0.246140 - -0.967012, 0.017019, 0.067136, 0.245136 - -0.967304, 0.016818, 0.066636, 0.244132 - -0.967594, 0.016618, 0.066137, 0.243127 - -0.967884, 0.016420, 0.065639, 0.242122 - -0.968171, 0.016223, 0.065143, 0.241117 - -0.968458, 0.016028, 0.064647, 0.240111 - -0.968743, 0.015834, 0.064152, 0.239105 - -0.969026, 0.015642, 0.063659, 0.238098 - -0.969309, 0.015450, 0.063166, 0.237091 - -0.969589, 0.015261, 0.062675, 0.236084 - -0.969869, 0.015072, 0.062185, 0.235076 - -0.970147, 0.014885, 0.061696, 0.234067 - -0.970423, 0.014700, 0.061209, 0.233059 - -0.970698, 0.014516, 0.060722, 0.232049 - -0.970972, 0.014333, 0.060237, 0.231040 - -0.971244, 0.014152, 0.059753, 0.230030 - -0.971515, 0.013972, 0.059270, 0.229020 - -0.971785, 0.013793, 0.058788, 0.228009 - -0.972053, 0.013616, 0.058308, 0.226998 - -0.972320, 0.013441, 0.057829, 0.225986 - -0.972585, 0.013266, 0.057351, 0.224974 - -0.972849, 0.013093, 0.056874, 0.223962 - -0.973111, 0.012922, 0.056399, 0.222949 - -0.973373, 0.012751, 0.055925, 0.221936 - -0.973632, 0.012583, 0.055453, 0.220923 - -0.973891, 0.012415, 0.054981, 0.219909 - -0.974148, 0.012249, 0.054511, 0.218895 - -0.974403, 0.012084, 0.054043, 0.217880 - -0.974657, 0.011921, 0.053576, 0.216865 - -0.974910, 0.011759, 0.053110, 0.215850 - -0.975162, 0.011598, 0.052645, 0.214834 - -0.975412, 0.011439, 0.052182, 0.213818 - -0.975660, 0.011281, 0.051721, 0.212802 - -0.975908, 0.011124, 0.051261, 0.211785 - -0.976154, 0.010969, 0.050802, 0.210768 - -0.976398, 0.010815, 0.050344, 0.209750 - -0.976641, 0.010662, 0.049889, 0.208732 - -0.976883, 0.010511, 0.049434, 0.207714 - -0.977124, 0.010361, 0.048981, 0.206696 - -0.977363, 0.010213, 0.048530, 0.205677 - -0.977600, 0.010065, 0.048080, 0.204658 - -0.977837, 0.009919, 0.047632, 0.203638 - -0.978072, 0.009775, 0.047185, 0.202618 - -0.978305, 0.009632, 0.046739, 0.201598 - -0.978537, 0.009490, 0.046295, 0.200578 - -0.978768, 0.009349, 0.045853, 0.199557 - -0.978998, 0.009209, 0.045413, 0.198536 - -0.979226, 0.009071, 0.044973, 0.197514 - -0.979453, 0.008935, 0.044536, 0.196492 - -0.979678, 0.008799, 0.044100, 0.195470 - -0.979902, 0.008665, 0.043666, 0.194448 - -0.980125, 0.008532, 0.043233, 0.193425 - -0.980346, 0.008400, 0.042802, 0.192402 - -0.980566, 0.008270, 0.042373, 0.191379 - -0.980785, 0.008141, 0.041945, 0.190355 - -0.981002, 0.008013, 0.041519, 0.189331 - -0.981218, 0.007886, 0.041094, 0.188307 - -0.981433, 0.007761, 0.040671, 0.187282 - -0.981646, 0.007637, 0.040250, 0.186257 - -0.981858, 0.007514, 0.039831, 0.185232 - -0.982069, 0.007393, 0.039413, 0.184207 - -0.982278, 0.007272, 0.038998, 0.183181 - -0.982486, 0.007153, 0.038583, 0.182155 - -0.982693, 0.007036, 0.038171, 0.181129 - -0.982898, 0.006919, 0.037760, 0.180102 - -0.983103, 0.006804, 0.037351, 0.179076 - -0.983305, 0.006690, 0.036944, 0.178048 - -0.983507, 0.006577, 0.036539, 0.177021 - -0.983707, 0.006465, 0.036135, 0.175993 - -0.983905, 0.006354, 0.035734, 0.174965 - -0.984103, 0.006245, 0.035334, 0.173937 - -0.984299, 0.006137, 0.034935, 0.172909 - -0.984494, 0.006030, 0.034539, 0.171880 - -0.984687, 0.005924, 0.034145, 0.170851 - -0.984879, 0.005820, 0.033752, 0.169822 - -0.985070, 0.005717, 0.033361, 0.168792 - -0.985260, 0.005614, 0.032973, 0.167763 - -0.985448, 0.005513, 0.032586, 0.166733 - -0.985635, 0.005413, 0.032201, 0.165702 - -0.985821, 0.005315, 0.031817, 0.164672 - -0.986005, 0.005217, 0.031436, 0.163641 - -0.986188, 0.005121, 0.031057, 0.162610 - -0.986370, 0.005026, 0.030679, 0.161579 - -0.986550, 0.004932, 0.030304, 0.160548 - -0.986730, 0.004839, 0.029930, 0.159516 - -0.986908, 0.004747, 0.029559, 0.158484 - -0.987084, 0.004656, 0.029189, 0.157452 - -0.987260, 0.004566, 0.028821, 0.156420 - -0.987434, 0.004478, 0.028456, 0.155387 - -0.987606, 0.004391, 0.028092, 0.154354 - -0.987778, 0.004304, 0.027730, 0.153321 - -0.987948, 0.004219, 0.027371, 0.152288 - -0.988117, 0.004135, 0.027013, 0.151254 - -0.988285, 0.004052, 0.026657, 0.150221 - -0.988451, 0.003970, 0.026304, 0.149187 - -0.988616, 0.003889, 0.025952, 0.148153 - -0.988780, 0.003809, 0.025603, 0.147118 - -0.988943, 0.003731, 0.025255, 0.146084 - -0.989104, 0.003653, 0.024910, 0.145049 - -0.989264, 0.003576, 0.024567, 0.144014 - -0.989423, 0.003501, 0.024226, 0.142979 - -0.989581, 0.003426, 0.023886, 0.141944 - -0.989737, 0.003353, 0.023549, 0.140908 - -0.989892, 0.003280, 0.023214, 0.139872 - -0.990046, 0.003209, 0.022882, 0.138836 - -0.990198, 0.003138, 0.022551, 0.137800 - -0.990350, 0.003069, 0.022223, 0.136764 - -0.990500, 0.003000, 0.021896, 0.135727 - -0.990649, 0.002933, 0.021572, 0.134691 - -0.990796, 0.002867, 0.021250, 0.133654 - -0.990942, 0.002801, 0.020930, 0.132617 - -0.991088, 0.002737, 0.020612, 0.131580 - -0.991231, 0.002673, 0.020297, 0.130542 - -0.991374, 0.002610, 0.019983, 0.129505 - -0.991515, 0.002549, 0.019672, 0.128467 - -0.991656, 0.002488, 0.019363, 0.127429 - -0.991795, 0.002428, 0.019057, 0.126391 - -0.991932, 0.002370, 0.018752, 0.125352 - -0.992069, 0.002312, 0.018450, 0.124314 - -0.992204, 0.002255, 0.018150, 0.123275 - -0.992338, 0.002199, 0.017852, 0.122237 - -0.992471, 0.002144, 0.017556, 0.121198 - -0.992602, 0.002090, 0.017263, 0.120159 - -0.992733, 0.002036, 0.016972, 0.119119 - -0.992862, 0.001984, 0.016683, 0.118080 - -0.992990, 0.001933, 0.016397, 0.117040 - -0.993117, 0.001882, 0.016113, 0.116001 - -0.993242, 0.001832, 0.015831, 0.114961 - -0.993367, 0.001783, 0.015551, 0.113921 - -0.993490, 0.001735, 0.015274, 0.112881 - -0.993612, 0.001688, 0.014999, 0.111840 - -0.993732, 0.001642, 0.014726, 0.110800 - -0.993852, 0.001596, 0.014456, 0.109759 - -0.993970, 0.001552, 0.014188, 0.108718 - -0.994087, 0.001508, 0.013922, 0.107678 - -0.994203, 0.001465, 0.013659, 0.106637 - -0.994318, 0.001423, 0.013398, 0.105595 - -0.994431, 0.001381, 0.013139, 0.104554 - -0.994544, 0.001341, 0.012883, 0.103513 - -0.994655, 0.001301, 0.012629, 0.102471 - -0.994765, 0.001262, 0.012377, 0.101429 - -0.994874, 0.001224, 0.012128, 0.100388 - -0.994981, 0.001186, 0.011881, 0.099346 - -0.995088, 0.001150, 0.011637, 0.098304 - -0.995193, 0.001114, 0.011395, 0.097261 - -0.995297, 0.001078, 0.011155, 0.096219 - -0.995400, 0.001044, 0.010918, 0.095177 - -0.995502, 0.001010, 0.010683, 0.094134 - -0.995602, 0.000977, 0.010451, 0.093092 - -0.995702, 0.000945, 0.010221, 0.092049 - -0.995800, 0.000913, 0.009994, 0.091006 - -0.995897, 0.000882, 0.009769, 0.089963 - -0.995993, 0.000852, 0.009546, 0.088920 - -0.996087, 0.000823, 0.009326, 0.087877 - -0.996181, 0.000794, 0.009108, 0.086833 - -0.996273, 0.000766, 0.008893, 0.085790 - -0.996364, 0.000738, 0.008681, 0.084746 - -0.996455, 0.000712, 0.008470, 0.083703 - -0.996543, 0.000685, 0.008263, 0.082659 - -0.996631, 0.000660, 0.008057, 0.081615 - -0.996718, 0.000635, 0.007854, 0.080571 - -0.996803, 0.000611, 0.007654, 0.079527 - -0.996887, 0.000587, 0.007456, 0.078483 - -0.996971, 0.000564, 0.007261, 0.077439 - -0.997052, 0.000542, 0.007068, 0.076394 - -0.997133, 0.000520, 0.006878, 0.075350 - -0.997213, 0.000498, 0.006690, 0.074306 - -0.997291, 0.000478, 0.006505, 0.073261 - -0.997369, 0.000458, 0.006322, 0.072216 - -0.997445, 0.000438, 0.006142, 0.071172 - -0.997520, 0.000419, 0.005964, 0.070127 - -0.997594, 0.000401, 0.005789, 0.069082 - -0.997667, 0.000383, 0.005616, 0.068037 - -0.997739, 0.000366, 0.005446, 0.066992 - -0.997809, 0.000349, 0.005279, 0.065947 - -0.997879, 0.000333, 0.005114, 0.064901 - -0.997947, 0.000317, 0.004951, 0.063856 - -0.998014, 0.000302, 0.004792, 0.062811 - -0.998080, 0.000287, 0.004634, 0.061765 - -0.998145, 0.000273, 0.004480, 0.060720 - -0.998208, 0.000259, 0.004327, 0.059674 - -0.998271, 0.000245, 0.004178, 0.058628 - -0.998333, 0.000232, 0.004031, 0.057583 - -0.998393, 0.000220, 0.003887, 0.056537 - -0.998452, 0.000208, 0.003745, 0.055491 - -0.998510, 0.000197, 0.003605, 0.054445 - -0.998567, 0.000186, 0.003469, 0.053399 - -0.998623, 0.000175, 0.003335, 0.052353 - -0.998678, 0.000165, 0.003203, 0.051307 - -0.998731, 0.000155, 0.003075, 0.050261 - -0.998784, 0.000145, 0.002948, 0.049215 - -0.998835, 0.000136, 0.002825, 0.048168 - -0.998885, 0.000128, 0.002704, 0.047122 - -0.998935, 0.000119, 0.002585, 0.046076 - -0.998983, 0.000111, 0.002470, 0.045029 - -0.999030, 0.000104, 0.002357, 0.043983 - -0.999075, 0.000097, 0.002246, 0.042936 - -0.999120, 0.000090, 0.002138, 0.041890 - -0.999164, 0.000083, 0.002033, 0.040843 - -0.999206, 0.000077, 0.001930, 0.039796 - -0.999247, 0.000071, 0.001830, 0.038749 - -0.999287, 0.000065, 0.001733, 0.037703 - -0.999327, 0.000060, 0.001638, 0.036656 - -0.999365, 0.000055, 0.001546, 0.035609 - -0.999401, 0.000050, 0.001457, 0.034562 - -0.999437, 0.000046, 0.001370, 0.033515 - -0.999472, 0.000042, 0.001286, 0.032468 - -0.999506, 0.000038, 0.001204, 0.031421 - -0.999538, 0.000034, 0.001126, 0.030374 - -0.999569, 0.000031, 0.001049, 0.029327 - -0.999600, 0.000028, 0.000976, 0.028280 - -0.999629, 0.000025, 0.000905, 0.027233 - -0.999657, 0.000022, 0.000837, 0.026186 - -0.999684, 0.000019, 0.000771, 0.025138 - -0.999710, 0.000017, 0.000708, 0.024091 - -0.999734, 0.000015, 0.000648, 0.023044 - -0.999758, 0.000013, 0.000591, 0.021997 - -0.999780, 0.000011, 0.000536, 0.020949 - -0.999802, 0.000010, 0.000484, 0.019902 - -0.999822, 0.000008, 0.000434, 0.018855 - -0.999841, 0.000007, 0.000387, 0.017807 - -0.999859, 0.000006, 0.000343, 0.016760 - -0.999877, 0.000005, 0.000302, 0.015713 - -0.999892, 0.000004, 0.000263, 0.014665 - -0.999907, 0.000003, 0.000226, 0.013618 - -0.999921, 0.000002, 0.000193, 0.012570 - -0.999934, 0.000002, 0.000162, 0.011523 - -0.999945, 0.000001, 0.000134, 0.010475 - -0.999956, 0.000001, 0.000109, 0.009428 - -0.999965, 0.000001, 0.000086, 0.008380 - -0.999973, 0.000000, 0.000066, 0.007333 - -0.999980, 0.000000, 0.000048, 0.006285 - -0.999986, 0.000000, 0.000034, 0.005238 - -0.999991, 0.000000, 0.000021, 0.004190 - -0.999995, 0.000000, 0.000012, 0.003143 - -0.999998, 0.000000, 0.000005, 0.002095 - -0.999999, 0.000000, 0.000001, 0.001048 - -1.000000, 0.000000, 0.000000, 0.000000 diff --git a/scripts/trajectories/const000-Vector3.csv b/scripts/trajectories/const000-Vector3.csv deleted file mode 100644 index f47ae12e5defebf51cff611c9887c231cfdb2327..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const000-Vector3.csv +++ /dev/null @@ -1,4 +0,0 @@ -0.0, 0.0, 0.0, 1.0, 0.0, 0.0 -0.0, 0.0, 0.0, 1.0, 0.0, 0.0 -0.0, 0.0, 0.0, 1.0, 0.0, 0.0 -0.0, 0.0, 0.0, 1.0, 0.0, 0.0 diff --git a/scripts/trajectories/const000.csv b/scripts/trajectories/const000.csv deleted file mode 100644 index b69f77196165e60736457b510bf97578b4f25a93..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const000.csv +++ /dev/null @@ -1,4 +0,0 @@ -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 diff --git a/scripts/trajectories/const030.csv b/scripts/trajectories/const030.csv deleted file mode 100644 index 4377d01caafd23618010ba4e1c27cff3e6afac6d..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const030.csv +++ /dev/null @@ -1,4 +0,0 @@ - 0.965926, 0.000000, 0.000000, 0.258819 - 0.965926, 0.000000, 0.000000, 0.258819 - 0.965926, 0.000000, 0.000000, 0.258819 - 0.965926, 0.000000, 0.000000, 0.258819 diff --git a/scripts/trajectories/const090.csv b/scripts/trajectories/const090.csv deleted file mode 100644 index 405dd208e65d7fb0dccdacb51561c37c34a1d11c..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const090.csv +++ /dev/null @@ -1,4 +0,0 @@ - 0.707107, 0.000000, 0.000000, 0.707107 - 0.707107, 0.000000, 0.000000, 0.707107 - 0.707107, 0.000000, 0.000000, 0.707107 - 0.707107, 0.000000, 0.000000, 0.707107 diff --git a/scripts/trajectories/const120.csv b/scripts/trajectories/const120.csv deleted file mode 100644 index 67c810003afe5c5d94700f3b335b1f201fc7a466..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const120.csv +++ /dev/null @@ -1,4 +0,0 @@ -0.500000, 0.000000, 0.000000, 0.866025 -0.500000, 0.000000, 0.000000, 0.866025 -0.500000, 0.000000, 0.000000, 0.866025 -0.500000, 0.000000, 0.000000, 0.866025 diff --git a/scripts/trajectories/const180.csv b/scripts/trajectories/const180.csv deleted file mode 100644 index ac03b841e6ef9ed64998bfe2e741a2a23c0b5f62..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const180.csv +++ /dev/null @@ -1,4 +0,0 @@ - 0.000000, 0.000000, 0.000000, 1.000000 - 0.000000, 0.000000, 0.000000, 1.000000 - 0.000000, 0.000000, 0.000000, 1.000000 - 0.000000, 0.000000, 0.000000, 1.000000 diff --git a/scripts/trajectories/const240.csv b/scripts/trajectories/const240.csv deleted file mode 100644 index 889f1305e9e16f188339181b6c4e3d038443aa21..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const240.csv +++ /dev/null @@ -1,4 +0,0 @@ --0.500000,-0.000000,0.000000,0.866025 --0.500000,-0.000000,0.000000,0.866025 --0.500000,-0.000000,0.000000,0.866025 --0.500000,-0.000000,0.000000,0.866025 diff --git a/scripts/trajectories/const250.csv b/scripts/trajectories/const250.csv deleted file mode 100644 index c4e9b663ad8b57d4cb2942c0233f17d463591ef6..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const250.csv +++ /dev/null @@ -1,4 +0,0 @@ --0.573576, -0.000000, 0.000000, 0.819152 --0.573576, -0.000000, 0.000000, 0.819152 --0.573576, -0.000000, 0.000000, 0.819152 --0.573576, -0.000000, 0.000000, 0.819152 diff --git a/scripts/trajectories/const270.csv b/scripts/trajectories/const270.csv deleted file mode 100644 index 5545542b3e043c41970dc71a608726138f4ed188..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const270.csv +++ /dev/null @@ -1,4 +0,0 @@ --0.707107, -0.000000, 0.000000, 0.707107 --0.707107, -0.000000, 0.000000, 0.707107 --0.707107, -0.000000, 0.000000, 0.707107 --0.707107, -0.000000, 0.000000, 0.707107 diff --git a/scripts/trajectories/const320.csv b/scripts/trajectories/const320.csv deleted file mode 100644 index 04daca18edf4b9cce92bf800790783bc2537ad40..0000000000000000000000000000000000000000 --- a/scripts/trajectories/const320.csv +++ /dev/null @@ -1,4 +0,0 @@ --0.939693, -0.000000, 0.000000, 0.342020 --0.939693, -0.000000, 0.000000, 0.342020 --0.939693, -0.000000, 0.000000, 0.342020 --0.939693, -0.000000, 0.000000, 0.342020 diff --git a/scripts/trajectories/full-circle-15s.csv b/scripts/trajectories/full-circle-15s.csv deleted file mode 100644 index 768535c1c1f5a2f98b3f5d2ad838528178214442..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-15s.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 0.999999, 0.000000, 0.000000, 0.001048 - 0.999998, 0.000000, 0.000000, 0.002095 - 0.999995, 0.000000, 0.000000, 0.003143 - 0.999991, 0.000000, 0.000000, 0.004190 - 0.999986, 0.000000, 0.000000, 0.005238 - 0.999980, 0.000000, 0.000000, 0.006285 - 0.999973, 0.000000, 0.000000, 0.007333 - 0.999965, 0.000000, 0.000000, 0.008380 - 0.999956, 0.000000, 0.000000, 0.009428 - 0.999945, 0.000000, 0.000000, 0.010475 - 0.999934, 0.000000, 0.000000, 0.011523 - 0.999921, 0.000000, 0.000000, 0.012570 - 0.999907, 0.000000, 0.000000, 0.013618 - 0.999892, 0.000000, 0.000000, 0.014665 - 0.999877, 0.000000, 0.000000, 0.015713 - 0.999860, 0.000000, 0.000000, 0.016760 - 0.999841, 0.000000, 0.000000, 0.017807 - 0.999822, 0.000000, 0.000000, 0.018855 - 0.999802, 0.000000, 0.000000, 0.019902 - 0.999781, 0.000000, 0.000000, 0.020949 - 0.999758, 0.000000, 0.000000, 0.021997 - 0.999734, 0.000000, 0.000000, 0.023044 - 0.999710, 0.000000, 0.000000, 0.024091 - 0.999684, 0.000000, 0.000000, 0.025138 - 0.999657, 0.000000, 0.000000, 0.026186 - 0.999629, 0.000000, 0.000000, 0.027233 - 0.999600, 0.000000, 0.000000, 0.028280 - 0.999570, 0.000000, 0.000000, 0.029327 - 0.999539, 0.000000, 0.000000, 0.030374 - 0.999506, 0.000000, 0.000000, 0.031421 - 0.999473, 0.000000, 0.000000, 0.032468 - 0.999438, 0.000000, 0.000000, 0.033515 - 0.999403, 0.000000, 0.000000, 0.034562 - 0.999366, 0.000000, 0.000000, 0.035609 - 0.999328, 0.000000, 0.000000, 0.036656 - 0.999289, 0.000000, 0.000000, 0.037703 - 0.999249, 0.000000, 0.000000, 0.038750 - 0.999208, 0.000000, 0.000000, 0.039796 - 0.999166, 0.000000, 0.000000, 0.040843 - 0.999122, 0.000000, 0.000000, 0.041890 - 0.999078, 0.000000, 0.000000, 0.042936 - 0.999032, 0.000000, 0.000000, 0.043983 - 0.998986, 0.000000, 0.000000, 0.045029 - 0.998938, 0.000000, 0.000000, 0.046076 - 0.998889, 0.000000, 0.000000, 0.047122 - 0.998839, 0.000000, 0.000000, 0.048169 - 0.998788, 0.000000, 0.000000, 0.049215 - 0.998736, 0.000000, 0.000000, 0.050261 - 0.998683, 0.000000, 0.000000, 0.051307 - 0.998629, 0.000000, 0.000000, 0.052353 - 0.998573, 0.000000, 0.000000, 0.053399 - 0.998517, 0.000000, 0.000000, 0.054445 - 0.998459, 0.000000, 0.000000, 0.055491 - 0.998400, 0.000000, 0.000000, 0.056537 - 0.998341, 0.000000, 0.000000, 0.057583 - 0.998280, 0.000000, 0.000000, 0.058629 - 0.998218, 0.000000, 0.000000, 0.059675 - 0.998155, 0.000000, 0.000000, 0.060720 - 0.998091, 0.000000, 0.000000, 0.061766 - 0.998025, 0.000000, 0.000000, 0.062811 - 0.997959, 0.000000, 0.000000, 0.063857 - 0.997892, 0.000000, 0.000000, 0.064902 - 0.997823, 0.000000, 0.000000, 0.065948 - 0.997753, 0.000000, 0.000000, 0.066993 - 0.997683, 0.000000, 0.000000, 0.068038 - 0.997611, 0.000000, 0.000000, 0.069083 - 0.997538, 0.000000, 0.000000, 0.070128 - 0.997464, 0.000000, 0.000000, 0.071173 - 0.997389, 0.000000, 0.000000, 0.072218 - 0.997313, 0.000000, 0.000000, 0.073263 - 0.997235, 0.000000, 0.000000, 0.074307 - 0.997157, 0.000000, 0.000000, 0.075352 - 0.997078, 0.000000, 0.000000, 0.076396 - 0.996997, 0.000000, 0.000000, 0.077441 - 0.996915, 0.000000, 0.000000, 0.078485 - 0.996833, 0.000000, 0.000000, 0.079529 - 0.996749, 0.000000, 0.000000, 0.080574 - 0.996664, 0.000000, 0.000000, 0.081618 - 0.996578, 0.000000, 0.000000, 0.082662 - 0.996491, 0.000000, 0.000000, 0.083706 - 0.996402, 0.000000, 0.000000, 0.084750 - 0.996313, 0.000000, 0.000000, 0.085793 - 0.996223, 0.000000, 0.000000, 0.086837 - 0.996131, 0.000000, 0.000000, 0.087880 - 0.996038, 0.000000, 0.000000, 0.088924 - 0.995945, 0.000000, 0.000000, 0.089967 - 0.995850, 0.000000, 0.000000, 0.091010 - 0.995754, 0.000000, 0.000000, 0.092054 - 0.995657, 0.000000, 0.000000, 0.093097 - 0.995559, 0.000000, 0.000000, 0.094140 - 0.995460, 0.000000, 0.000000, 0.095182 - 0.995360, 0.000000, 0.000000, 0.096225 - 0.995258, 0.000000, 0.000000, 0.097268 - 0.995156, 0.000000, 0.000000, 0.098310 - 0.995052, 0.000000, 0.000000, 0.099353 - 0.994948, 0.000000, 0.000000, 0.100395 - 0.994842, 0.000000, 0.000000, 0.101437 - 0.994735, 0.000000, 0.000000, 0.102479 - 0.994627, 0.000000, 0.000000, 0.103521 - 0.994518, 0.000000, 0.000000, 0.104563 - 0.994408, 0.000000, 0.000000, 0.105605 - 0.994297, 0.000000, 0.000000, 0.106647 - 0.994185, 0.000000, 0.000000, 0.107688 - 0.994071, 0.000000, 0.000000, 0.108729 - 0.993957, 0.000000, 0.000000, 0.109771 - 0.993841, 0.000000, 0.000000, 0.110812 - 0.993725, 0.000000, 0.000000, 0.111853 - 0.993607, 0.000000, 0.000000, 0.112894 - 0.993488, 0.000000, 0.000000, 0.113935 - 0.993368, 0.000000, 0.000000, 0.114975 - 0.993247, 0.000000, 0.000000, 0.116016 - 0.993125, 0.000000, 0.000000, 0.117056 - 0.993002, 0.000000, 0.000000, 0.118097 - 0.992878, 0.000000, 0.000000, 0.119137 - 0.992753, 0.000000, 0.000000, 0.120177 - 0.992626, 0.000000, 0.000000, 0.121217 - 0.992499, 0.000000, 0.000000, 0.122256 - 0.992370, 0.000000, 0.000000, 0.123296 - 0.992240, 0.000000, 0.000000, 0.124335 - 0.992109, 0.000000, 0.000000, 0.125375 - 0.991978, 0.000000, 0.000000, 0.126414 - 0.991845, 0.000000, 0.000000, 0.127453 - 0.991711, 0.000000, 0.000000, 0.128492 - 0.991575, 0.000000, 0.000000, 0.129531 - 0.991439, 0.000000, 0.000000, 0.130569 - 0.991302, 0.000000, 0.000000, 0.131608 - 0.991163, 0.000000, 0.000000, 0.132646 - 0.991024, 0.000000, 0.000000, 0.133685 - 0.990883, 0.000000, 0.000000, 0.134723 - 0.990742, 0.000000, 0.000000, 0.135761 - 0.990599, 0.000000, 0.000000, 0.136798 - 0.990455, 0.000000, 0.000000, 0.137836 - 0.990310, 0.000000, 0.000000, 0.138873 - 0.990164, 0.000000, 0.000000, 0.139911 - 0.990017, 0.000000, 0.000000, 0.140948 - 0.989869, 0.000000, 0.000000, 0.141985 - 0.989720, 0.000000, 0.000000, 0.143022 - 0.989569, 0.000000, 0.000000, 0.144058 - 0.989418, 0.000000, 0.000000, 0.145095 - 0.989265, 0.000000, 0.000000, 0.146131 - 0.989112, 0.000000, 0.000000, 0.147168 - 0.988957, 0.000000, 0.000000, 0.148204 - 0.988801, 0.000000, 0.000000, 0.149240 - 0.988644, 0.000000, 0.000000, 0.150275 - 0.988486, 0.000000, 0.000000, 0.151311 - 0.988327, 0.000000, 0.000000, 0.152346 - 0.988167, 0.000000, 0.000000, 0.153382 - 0.988006, 0.000000, 0.000000, 0.154417 - 0.987844, 0.000000, 0.000000, 0.155451 - 0.987680, 0.000000, 0.000000, 0.156486 - 0.987516, 0.000000, 0.000000, 0.157521 - 0.987350, 0.000000, 0.000000, 0.158555 - 0.987183, 0.000000, 0.000000, 0.159589 - 0.987016, 0.000000, 0.000000, 0.160623 - 0.986847, 0.000000, 0.000000, 0.161657 - 0.986677, 0.000000, 0.000000, 0.162691 - 0.986506, 0.000000, 0.000000, 0.163724 - 0.986334, 0.000000, 0.000000, 0.164758 - 0.986161, 0.000000, 0.000000, 0.165791 - 0.985987, 0.000000, 0.000000, 0.166824 - 0.985811, 0.000000, 0.000000, 0.167857 - 0.985635, 0.000000, 0.000000, 0.168889 - 0.985458, 0.000000, 0.000000, 0.169922 - 0.985279, 0.000000, 0.000000, 0.170954 - 0.985099, 0.000000, 0.000000, 0.171986 - 0.984919, 0.000000, 0.000000, 0.173018 - 0.984737, 0.000000, 0.000000, 0.174049 - 0.984554, 0.000000, 0.000000, 0.175081 - 0.984370, 0.000000, 0.000000, 0.176112 - 0.984185, 0.000000, 0.000000, 0.177143 - 0.983999, 0.000000, 0.000000, 0.178174 - 0.983812, 0.000000, 0.000000, 0.179205 - 0.983624, 0.000000, 0.000000, 0.180235 - 0.983434, 0.000000, 0.000000, 0.181266 - 0.983244, 0.000000, 0.000000, 0.182296 - 0.983052, 0.000000, 0.000000, 0.183326 - 0.982860, 0.000000, 0.000000, 0.184355 - 0.982666, 0.000000, 0.000000, 0.185385 - 0.982471, 0.000000, 0.000000, 0.186414 - 0.982275, 0.000000, 0.000000, 0.187443 - 0.982079, 0.000000, 0.000000, 0.188472 - 0.981881, 0.000000, 0.000000, 0.189501 - 0.981682, 0.000000, 0.000000, 0.190529 - 0.981481, 0.000000, 0.000000, 0.191557 - 0.981280, 0.000000, 0.000000, 0.192585 - 0.981078, 0.000000, 0.000000, 0.193613 - 0.980875, 0.000000, 0.000000, 0.194641 - 0.980670, 0.000000, 0.000000, 0.195668 - 0.980465, 0.000000, 0.000000, 0.196695 - 0.980258, 0.000000, 0.000000, 0.197722 - 0.980050, 0.000000, 0.000000, 0.198749 - 0.979842, 0.000000, 0.000000, 0.199776 - 0.979632, 0.000000, 0.000000, 0.200802 - 0.979421, 0.000000, 0.000000, 0.201828 - 0.979209, 0.000000, 0.000000, 0.202854 - 0.978996, 0.000000, 0.000000, 0.203880 - 0.978782, 0.000000, 0.000000, 0.204905 - 0.978567, 0.000000, 0.000000, 0.205930 - 0.978350, 0.000000, 0.000000, 0.206955 - 0.978133, 0.000000, 0.000000, 0.207980 - 0.977915, 0.000000, 0.000000, 0.209005 - 0.977695, 0.000000, 0.000000, 0.210029 - 0.977475, 0.000000, 0.000000, 0.211053 - 0.977253, 0.000000, 0.000000, 0.212077 - 0.977030, 0.000000, 0.000000, 0.213100 - 0.976807, 0.000000, 0.000000, 0.214124 - 0.976582, 0.000000, 0.000000, 0.215147 - 0.976356, 0.000000, 0.000000, 0.216170 - 0.976129, 0.000000, 0.000000, 0.217192 - 0.975901, 0.000000, 0.000000, 0.218215 - 0.975672, 0.000000, 0.000000, 0.219237 - 0.975441, 0.000000, 0.000000, 0.220259 - 0.975210, 0.000000, 0.000000, 0.221281 - 0.974978, 0.000000, 0.000000, 0.222302 - 0.974744, 0.000000, 0.000000, 0.223323 - 0.974510, 0.000000, 0.000000, 0.224344 - 0.974274, 0.000000, 0.000000, 0.225365 - 0.974038, 0.000000, 0.000000, 0.226385 - 0.973800, 0.000000, 0.000000, 0.227406 - 0.973561, 0.000000, 0.000000, 0.228426 - 0.973322, 0.000000, 0.000000, 0.229445 - 0.973081, 0.000000, 0.000000, 0.230465 - 0.972839, 0.000000, 0.000000, 0.231484 - 0.972596, 0.000000, 0.000000, 0.232503 - 0.972352, 0.000000, 0.000000, 0.233522 - 0.972106, 0.000000, 0.000000, 0.234540 - 0.971860, 0.000000, 0.000000, 0.235558 - 0.971613, 0.000000, 0.000000, 0.236576 - 0.971365, 0.000000, 0.000000, 0.237594 - 0.971115, 0.000000, 0.000000, 0.238611 - 0.970865, 0.000000, 0.000000, 0.239629 - 0.970613, 0.000000, 0.000000, 0.240646 - 0.970360, 0.000000, 0.000000, 0.241662 - 0.970107, 0.000000, 0.000000, 0.242678 - 0.969852, 0.000000, 0.000000, 0.243695 - 0.969596, 0.000000, 0.000000, 0.244710 - 0.969339, 0.000000, 0.000000, 0.245726 - 0.969081, 0.000000, 0.000000, 0.246741 - 0.968822, 0.000000, 0.000000, 0.247756 - 0.968562, 0.000000, 0.000000, 0.248771 - 0.968301, 0.000000, 0.000000, 0.249786 - 0.968039, 0.000000, 0.000000, 0.250800 - 0.967776, 0.000000, 0.000000, 0.251814 - 0.967511, 0.000000, 0.000000, 0.252827 - 0.967246, 0.000000, 0.000000, 0.253841 - 0.966980, 0.000000, 0.000000, 0.254854 - 0.966712, 0.000000, 0.000000, 0.255867 - 0.966444, 0.000000, 0.000000, 0.256879 - 0.966174, 0.000000, 0.000000, 0.257891 - 0.965903, 0.000000, 0.000000, 0.258903 - 0.965631, 0.000000, 0.000000, 0.259915 - 0.965359, 0.000000, 0.000000, 0.260926 - 0.965085, 0.000000, 0.000000, 0.261938 - 0.964810, 0.000000, 0.000000, 0.262948 - 0.964534, 0.000000, 0.000000, 0.263959 - 0.964257, 0.000000, 0.000000, 0.264969 - 0.963979, 0.000000, 0.000000, 0.265979 - 0.963700, 0.000000, 0.000000, 0.266989 - 0.963419, 0.000000, 0.000000, 0.267998 - 0.963138, 0.000000, 0.000000, 0.269007 - 0.962856, 0.000000, 0.000000, 0.270016 - 0.962572, 0.000000, 0.000000, 0.271025 - 0.962288, 0.000000, 0.000000, 0.272033 - 0.962003, 0.000000, 0.000000, 0.273041 - 0.961716, 0.000000, 0.000000, 0.274048 - 0.961428, 0.000000, 0.000000, 0.275056 - 0.961140, 0.000000, 0.000000, 0.276062 - 0.960850, 0.000000, 0.000000, 0.277069 - 0.960559, 0.000000, 0.000000, 0.278076 - 0.960267, 0.000000, 0.000000, 0.279082 - 0.959975, 0.000000, 0.000000, 0.280087 - 0.959681, 0.000000, 0.000000, 0.281093 - 0.959386, 0.000000, 0.000000, 0.282098 - 0.959090, 0.000000, 0.000000, 0.283103 - 0.958792, 0.000000, 0.000000, 0.284107 - 0.958494, 0.000000, 0.000000, 0.285112 - 0.958195, 0.000000, 0.000000, 0.286116 - 0.957895, 0.000000, 0.000000, 0.287119 - 0.957594, 0.000000, 0.000000, 0.288122 - 0.957291, 0.000000, 0.000000, 0.289125 - 0.956988, 0.000000, 0.000000, 0.290128 - 0.956683, 0.000000, 0.000000, 0.291130 - 0.956378, 0.000000, 0.000000, 0.292132 - 0.956071, 0.000000, 0.000000, 0.293134 - 0.955764, 0.000000, 0.000000, 0.294135 - 0.955455, 0.000000, 0.000000, 0.295136 - 0.955145, 0.000000, 0.000000, 0.296137 - 0.954835, 0.000000, 0.000000, 0.297138 - 0.954523, 0.000000, 0.000000, 0.298138 - 0.954210, 0.000000, 0.000000, 0.299137 - 0.953896, 0.000000, 0.000000, 0.300137 - 0.953581, 0.000000, 0.000000, 0.301136 - 0.953265, 0.000000, 0.000000, 0.302135 - 0.952948, 0.000000, 0.000000, 0.303133 - 0.952630, 0.000000, 0.000000, 0.304131 - 0.952311, 0.000000, 0.000000, 0.305129 - 0.951991, 0.000000, 0.000000, 0.306126 - 0.951670, 0.000000, 0.000000, 0.307123 - 0.951347, 0.000000, 0.000000, 0.308120 - 0.951024, 0.000000, 0.000000, 0.309117 - 0.950700, 0.000000, 0.000000, 0.310113 - 0.950374, 0.000000, 0.000000, 0.311108 - 0.950048, 0.000000, 0.000000, 0.312104 - 0.949721, 0.000000, 0.000000, 0.313099 - 0.949392, 0.000000, 0.000000, 0.314094 - 0.949062, 0.000000, 0.000000, 0.315088 - 0.948732, 0.000000, 0.000000, 0.316082 - 0.948400, 0.000000, 0.000000, 0.317076 - 0.948068, 0.000000, 0.000000, 0.318069 - 0.947734, 0.000000, 0.000000, 0.319062 - 0.947399, 0.000000, 0.000000, 0.320055 - 0.947063, 0.000000, 0.000000, 0.321047 - 0.946727, 0.000000, 0.000000, 0.322039 - 0.946389, 0.000000, 0.000000, 0.323030 - 0.946050, 0.000000, 0.000000, 0.324021 - 0.945710, 0.000000, 0.000000, 0.325012 - 0.945369, 0.000000, 0.000000, 0.326003 - 0.945027, 0.000000, 0.000000, 0.326993 - 0.944684, 0.000000, 0.000000, 0.327983 - 0.944340, 0.000000, 0.000000, 0.328972 - 0.943994, 0.000000, 0.000000, 0.329961 - 0.943648, 0.000000, 0.000000, 0.330950 - 0.943301, 0.000000, 0.000000, 0.331938 - 0.942953, 0.000000, 0.000000, 0.332926 - 0.942604, 0.000000, 0.000000, 0.333914 - 0.942253, 0.000000, 0.000000, 0.334901 - 0.941902, 0.000000, 0.000000, 0.335888 - 0.941550, 0.000000, 0.000000, 0.336874 - 0.941196, 0.000000, 0.000000, 0.337861 - 0.940842, 0.000000, 0.000000, 0.338846 - 0.940486, 0.000000, 0.000000, 0.339832 - 0.940130, 0.000000, 0.000000, 0.340817 - 0.939772, 0.000000, 0.000000, 0.341801 - 0.939414, 0.000000, 0.000000, 0.342786 - 0.939054, 0.000000, 0.000000, 0.343770 - 0.938693, 0.000000, 0.000000, 0.344753 - 0.938332, 0.000000, 0.000000, 0.345736 - 0.937969, 0.000000, 0.000000, 0.346719 - 0.937605, 0.000000, 0.000000, 0.347701 - 0.937241, 0.000000, 0.000000, 0.348683 - 0.936875, 0.000000, 0.000000, 0.349665 - 0.936508, 0.000000, 0.000000, 0.350646 - 0.936140, 0.000000, 0.000000, 0.351627 - 0.935771, 0.000000, 0.000000, 0.352607 - 0.935401, 0.000000, 0.000000, 0.353588 - 0.935031, 0.000000, 0.000000, 0.354567 - 0.934659, 0.000000, 0.000000, 0.355547 - 0.934286, 0.000000, 0.000000, 0.356525 - 0.933912, 0.000000, 0.000000, 0.357504 - 0.933537, 0.000000, 0.000000, 0.358482 - 0.933161, 0.000000, 0.000000, 0.359460 - 0.932784, 0.000000, 0.000000, 0.360437 - 0.932405, 0.000000, 0.000000, 0.361414 - 0.932026, 0.000000, 0.000000, 0.362391 - 0.931646, 0.000000, 0.000000, 0.363367 - 0.931265, 0.000000, 0.000000, 0.364342 - 0.930883, 0.000000, 0.000000, 0.365318 - 0.930500, 0.000000, 0.000000, 0.366293 - 0.930115, 0.000000, 0.000000, 0.367267 - 0.929730, 0.000000, 0.000000, 0.368241 - 0.929344, 0.000000, 0.000000, 0.369215 - 0.928957, 0.000000, 0.000000, 0.370188 - 0.928568, 0.000000, 0.000000, 0.371161 - 0.928179, 0.000000, 0.000000, 0.372134 - 0.927789, 0.000000, 0.000000, 0.373106 - 0.927397, 0.000000, 0.000000, 0.374078 - 0.927005, 0.000000, 0.000000, 0.375049 - 0.926612, 0.000000, 0.000000, 0.376020 - 0.926217, 0.000000, 0.000000, 0.376990 - 0.925822, 0.000000, 0.000000, 0.377960 - 0.925425, 0.000000, 0.000000, 0.378930 - 0.925028, 0.000000, 0.000000, 0.379899 - 0.924629, 0.000000, 0.000000, 0.380868 - 0.924230, 0.000000, 0.000000, 0.381836 - 0.923829, 0.000000, 0.000000, 0.382804 - 0.923428, 0.000000, 0.000000, 0.383772 - 0.923025, 0.000000, 0.000000, 0.384739 - 0.922622, 0.000000, 0.000000, 0.385706 - 0.922217, 0.000000, 0.000000, 0.386672 - 0.921812, 0.000000, 0.000000, 0.387638 - 0.921405, 0.000000, 0.000000, 0.388603 - 0.920998, 0.000000, 0.000000, 0.389568 - 0.920589, 0.000000, 0.000000, 0.390533 - 0.920179, 0.000000, 0.000000, 0.391497 - 0.919769, 0.000000, 0.000000, 0.392461 - 0.919357, 0.000000, 0.000000, 0.393424 - 0.918944, 0.000000, 0.000000, 0.394387 - 0.918531, 0.000000, 0.000000, 0.395349 - 0.918116, 0.000000, 0.000000, 0.396311 - 0.917701, 0.000000, 0.000000, 0.397273 - 0.917284, 0.000000, 0.000000, 0.398234 - 0.916866, 0.000000, 0.000000, 0.399195 - 0.916448, 0.000000, 0.000000, 0.400155 - 0.916028, 0.000000, 0.000000, 0.401115 - 0.915607, 0.000000, 0.000000, 0.402074 - 0.915185, 0.000000, 0.000000, 0.403033 - 0.914763, 0.000000, 0.000000, 0.403991 - 0.914339, 0.000000, 0.000000, 0.404950 - 0.913914, 0.000000, 0.000000, 0.405907 - 0.913489, 0.000000, 0.000000, 0.406864 - 0.913062, 0.000000, 0.000000, 0.407821 - 0.912634, 0.000000, 0.000000, 0.408777 - 0.912206, 0.000000, 0.000000, 0.409733 - 0.911776, 0.000000, 0.000000, 0.410688 - 0.911345, 0.000000, 0.000000, 0.411643 - 0.910913, 0.000000, 0.000000, 0.412598 - 0.910481, 0.000000, 0.000000, 0.413552 - 0.910047, 0.000000, 0.000000, 0.414505 - 0.909612, 0.000000, 0.000000, 0.415458 - 0.909177, 0.000000, 0.000000, 0.416411 - 0.908740, 0.000000, 0.000000, 0.417363 - 0.908302, 0.000000, 0.000000, 0.418315 - 0.907863, 0.000000, 0.000000, 0.419266 - 0.907424, 0.000000, 0.000000, 0.420217 - 0.906983, 0.000000, 0.000000, 0.421167 - 0.906541, 0.000000, 0.000000, 0.422117 - 0.906099, 0.000000, 0.000000, 0.423067 - 0.905655, 0.000000, 0.000000, 0.424015 - 0.905210, 0.000000, 0.000000, 0.424964 - 0.904765, 0.000000, 0.000000, 0.425912 - 0.904318, 0.000000, 0.000000, 0.426860 - 0.903870, 0.000000, 0.000000, 0.427807 - 0.903422, 0.000000, 0.000000, 0.428753 - 0.902972, 0.000000, 0.000000, 0.429699 - 0.902521, 0.000000, 0.000000, 0.430645 - 0.902070, 0.000000, 0.000000, 0.431590 - 0.901617, 0.000000, 0.000000, 0.432535 - 0.901164, 0.000000, 0.000000, 0.433479 - 0.900709, 0.000000, 0.000000, 0.434423 - 0.900253, 0.000000, 0.000000, 0.435366 - 0.899797, 0.000000, 0.000000, 0.436309 - 0.899339, 0.000000, 0.000000, 0.437251 - 0.898881, 0.000000, 0.000000, 0.438193 - 0.898421, 0.000000, 0.000000, 0.439135 - 0.897961, 0.000000, 0.000000, 0.440076 - 0.897499, 0.000000, 0.000000, 0.441016 - 0.897037, 0.000000, 0.000000, 0.441956 - 0.896573, 0.000000, 0.000000, 0.442895 - 0.896109, 0.000000, 0.000000, 0.443834 - 0.895643, 0.000000, 0.000000, 0.444773 - 0.895177, 0.000000, 0.000000, 0.445711 - 0.894710, 0.000000, 0.000000, 0.446648 - 0.894241, 0.000000, 0.000000, 0.447585 - 0.893772, 0.000000, 0.000000, 0.448522 - 0.893302, 0.000000, 0.000000, 0.449458 - 0.892830, 0.000000, 0.000000, 0.450393 - 0.892358, 0.000000, 0.000000, 0.451328 - 0.891885, 0.000000, 0.000000, 0.452263 - 0.891410, 0.000000, 0.000000, 0.453197 - 0.890935, 0.000000, 0.000000, 0.454130 - 0.890459, 0.000000, 0.000000, 0.455064 - 0.889982, 0.000000, 0.000000, 0.455996 - 0.889504, 0.000000, 0.000000, 0.456928 - 0.889024, 0.000000, 0.000000, 0.457860 - 0.888544, 0.000000, 0.000000, 0.458791 - 0.888063, 0.000000, 0.000000, 0.459721 - 0.887581, 0.000000, 0.000000, 0.460651 - 0.887098, 0.000000, 0.000000, 0.461581 - 0.886614, 0.000000, 0.000000, 0.462510 - 0.886129, 0.000000, 0.000000, 0.463438 - 0.885643, 0.000000, 0.000000, 0.464366 - 0.885156, 0.000000, 0.000000, 0.465294 - 0.884668, 0.000000, 0.000000, 0.466221 - 0.884179, 0.000000, 0.000000, 0.467147 - 0.883690, 0.000000, 0.000000, 0.468073 - 0.883199, 0.000000, 0.000000, 0.468999 - 0.882707, 0.000000, 0.000000, 0.469924 - 0.882214, 0.000000, 0.000000, 0.470848 - 0.881721, 0.000000, 0.000000, 0.471772 - 0.881226, 0.000000, 0.000000, 0.472695 - 0.880730, 0.000000, 0.000000, 0.473618 - 0.880234, 0.000000, 0.000000, 0.474541 - 0.879736, 0.000000, 0.000000, 0.475462 - 0.879237, 0.000000, 0.000000, 0.476384 - 0.878738, 0.000000, 0.000000, 0.477305 - 0.878237, 0.000000, 0.000000, 0.478225 - 0.877736, 0.000000, 0.000000, 0.479145 - 0.877234, 0.000000, 0.000000, 0.480064 - 0.876730, 0.000000, 0.000000, 0.480982 - 0.876226, 0.000000, 0.000000, 0.481901 - 0.875721, 0.000000, 0.000000, 0.482818 - 0.875214, 0.000000, 0.000000, 0.483735 - 0.874707, 0.000000, 0.000000, 0.484652 - 0.874199, 0.000000, 0.000000, 0.485568 - 0.873690, 0.000000, 0.000000, 0.486483 - 0.873180, 0.000000, 0.000000, 0.487398 - 0.872669, 0.000000, 0.000000, 0.488313 - 0.872157, 0.000000, 0.000000, 0.489227 - 0.871644, 0.000000, 0.000000, 0.490140 - 0.871130, 0.000000, 0.000000, 0.491053 - 0.870615, 0.000000, 0.000000, 0.491965 - 0.870099, 0.000000, 0.000000, 0.492877 - 0.869582, 0.000000, 0.000000, 0.493788 - 0.869065, 0.000000, 0.000000, 0.494699 - 0.868546, 0.000000, 0.000000, 0.495609 - 0.868026, 0.000000, 0.000000, 0.496518 - 0.867506, 0.000000, 0.000000, 0.497427 - 0.866984, 0.000000, 0.000000, 0.498336 - 0.866462, 0.000000, 0.000000, 0.499244 - 0.865938, 0.000000, 0.000000, 0.500151 - 0.865414, 0.000000, 0.000000, 0.501058 - 0.864888, 0.000000, 0.000000, 0.501964 - 0.864362, 0.000000, 0.000000, 0.502870 - 0.863835, 0.000000, 0.000000, 0.503775 - 0.863307, 0.000000, 0.000000, 0.504680 - 0.862777, 0.000000, 0.000000, 0.505584 - 0.862247, 0.000000, 0.000000, 0.506487 - 0.861716, 0.000000, 0.000000, 0.507390 - 0.861184, 0.000000, 0.000000, 0.508293 - 0.860651, 0.000000, 0.000000, 0.509195 - 0.860117, 0.000000, 0.000000, 0.510096 - 0.859583, 0.000000, 0.000000, 0.510997 - 0.859047, 0.000000, 0.000000, 0.511897 - 0.858510, 0.000000, 0.000000, 0.512797 - 0.857973, 0.000000, 0.000000, 0.513696 - 0.857434, 0.000000, 0.000000, 0.514594 - 0.856894, 0.000000, 0.000000, 0.515492 - 0.856354, 0.000000, 0.000000, 0.516389 - 0.855813, 0.000000, 0.000000, 0.517286 - 0.855270, 0.000000, 0.000000, 0.518182 - 0.854727, 0.000000, 0.000000, 0.519078 - 0.854183, 0.000000, 0.000000, 0.519973 - 0.853638, 0.000000, 0.000000, 0.520868 - 0.853091, 0.000000, 0.000000, 0.521761 - 0.852544, 0.000000, 0.000000, 0.522655 - 0.851996, 0.000000, 0.000000, 0.523548 - 0.851447, 0.000000, 0.000000, 0.524440 - 0.850898, 0.000000, 0.000000, 0.525332 - 0.850347, 0.000000, 0.000000, 0.526223 - 0.849795, 0.000000, 0.000000, 0.527113 - 0.849243, 0.000000, 0.000000, 0.528003 - 0.848689, 0.000000, 0.000000, 0.528892 - 0.848134, 0.000000, 0.000000, 0.529781 - 0.847579, 0.000000, 0.000000, 0.530669 - 0.847023, 0.000000, 0.000000, 0.531557 - 0.846465, 0.000000, 0.000000, 0.532444 - 0.845907, 0.000000, 0.000000, 0.533330 - 0.845348, 0.000000, 0.000000, 0.534216 - 0.844788, 0.000000, 0.000000, 0.535101 - 0.844227, 0.000000, 0.000000, 0.535986 - 0.843665, 0.000000, 0.000000, 0.536870 - 0.843102, 0.000000, 0.000000, 0.537754 - 0.842538, 0.000000, 0.000000, 0.538636 - 0.841974, 0.000000, 0.000000, 0.539519 - 0.841408, 0.000000, 0.000000, 0.540400 - 0.840841, 0.000000, 0.000000, 0.541282 - 0.840274, 0.000000, 0.000000, 0.542162 - 0.839706, 0.000000, 0.000000, 0.543042 - 0.839136, 0.000000, 0.000000, 0.543921 - 0.838566, 0.000000, 0.000000, 0.544800 - 0.837995, 0.000000, 0.000000, 0.545678 - 0.837423, 0.000000, 0.000000, 0.546556 - 0.836850, 0.000000, 0.000000, 0.547433 - 0.836276, 0.000000, 0.000000, 0.548309 - 0.835701, 0.000000, 0.000000, 0.549185 - 0.835125, 0.000000, 0.000000, 0.550060 - 0.834549, 0.000000, 0.000000, 0.550934 - 0.833971, 0.000000, 0.000000, 0.551808 - 0.833392, 0.000000, 0.000000, 0.552682 - 0.832813, 0.000000, 0.000000, 0.553554 - 0.832233, 0.000000, 0.000000, 0.554427 - 0.831651, 0.000000, 0.000000, 0.555298 - 0.831069, 0.000000, 0.000000, 0.556169 - 0.830486, 0.000000, 0.000000, 0.557039 - 0.829902, 0.000000, 0.000000, 0.557909 - 0.829317, 0.000000, 0.000000, 0.558778 - 0.828732, 0.000000, 0.000000, 0.559646 - 0.828145, 0.000000, 0.000000, 0.560514 - 0.827557, 0.000000, 0.000000, 0.561381 - 0.826969, 0.000000, 0.000000, 0.562248 - 0.826379, 0.000000, 0.000000, 0.563114 - 0.825789, 0.000000, 0.000000, 0.563979 - 0.825198, 0.000000, 0.000000, 0.564844 - 0.824606, 0.000000, 0.000000, 0.565708 - 0.824012, 0.000000, 0.000000, 0.566572 - 0.823418, 0.000000, 0.000000, 0.567435 - 0.822824, 0.000000, 0.000000, 0.568297 - 0.822228, 0.000000, 0.000000, 0.569158 - 0.821631, 0.000000, 0.000000, 0.570019 - 0.821034, 0.000000, 0.000000, 0.570880 - 0.820435, 0.000000, 0.000000, 0.571740 - 0.819836, 0.000000, 0.000000, 0.572599 - 0.819235, 0.000000, 0.000000, 0.573457 - 0.818634, 0.000000, 0.000000, 0.574315 - 0.818032, 0.000000, 0.000000, 0.575172 - 0.817429, 0.000000, 0.000000, 0.576029 - 0.816825, 0.000000, 0.000000, 0.576885 - 0.816221, 0.000000, 0.000000, 0.577740 - 0.815615, 0.000000, 0.000000, 0.578595 - 0.815008, 0.000000, 0.000000, 0.579449 - 0.814401, 0.000000, 0.000000, 0.580303 - 0.813793, 0.000000, 0.000000, 0.581155 - 0.813183, 0.000000, 0.000000, 0.582008 - 0.812573, 0.000000, 0.000000, 0.582859 - 0.811962, 0.000000, 0.000000, 0.583710 - 0.811350, 0.000000, 0.000000, 0.584560 - 0.810738, 0.000000, 0.000000, 0.585410 - 0.810124, 0.000000, 0.000000, 0.586259 - 0.809509, 0.000000, 0.000000, 0.587107 - 0.808894, 0.000000, 0.000000, 0.587955 - 0.808277, 0.000000, 0.000000, 0.588802 - 0.807660, 0.000000, 0.000000, 0.589648 - 0.807042, 0.000000, 0.000000, 0.590494 - 0.806423, 0.000000, 0.000000, 0.591339 - 0.805803, 0.000000, 0.000000, 0.592183 - 0.805182, 0.000000, 0.000000, 0.593027 - 0.804561, 0.000000, 0.000000, 0.593870 - 0.803938, 0.000000, 0.000000, 0.594713 - 0.803315, 0.000000, 0.000000, 0.595555 - 0.802690, 0.000000, 0.000000, 0.596396 - 0.802065, 0.000000, 0.000000, 0.597236 - 0.801439, 0.000000, 0.000000, 0.598076 - 0.800812, 0.000000, 0.000000, 0.598915 - 0.800184, 0.000000, 0.000000, 0.599754 - 0.799556, 0.000000, 0.000000, 0.600592 - 0.798926, 0.000000, 0.000000, 0.601429 - 0.798296, 0.000000, 0.000000, 0.602266 - 0.797664, 0.000000, 0.000000, 0.603102 - 0.797032, 0.000000, 0.000000, 0.603937 - 0.796399, 0.000000, 0.000000, 0.604772 - 0.795765, 0.000000, 0.000000, 0.605605 - 0.795130, 0.000000, 0.000000, 0.606439 - 0.794494, 0.000000, 0.000000, 0.607271 - 0.793858, 0.000000, 0.000000, 0.608103 - 0.793220, 0.000000, 0.000000, 0.608935 - 0.792582, 0.000000, 0.000000, 0.609765 - 0.791943, 0.000000, 0.000000, 0.610595 - 0.791303, 0.000000, 0.000000, 0.611424 - 0.790662, 0.000000, 0.000000, 0.612253 - 0.790020, 0.000000, 0.000000, 0.613081 - 0.789377, 0.000000, 0.000000, 0.613908 - 0.788734, 0.000000, 0.000000, 0.614735 - 0.788090, 0.000000, 0.000000, 0.615561 - 0.787444, 0.000000, 0.000000, 0.616386 - 0.786798, 0.000000, 0.000000, 0.617210 - 0.786151, 0.000000, 0.000000, 0.618034 - 0.785503, 0.000000, 0.000000, 0.618857 - 0.784855, 0.000000, 0.000000, 0.619680 - 0.784205, 0.000000, 0.000000, 0.620502 - 0.783555, 0.000000, 0.000000, 0.621323 - 0.782903, 0.000000, 0.000000, 0.622143 - 0.782251, 0.000000, 0.000000, 0.622963 - 0.781598, 0.000000, 0.000000, 0.623782 - 0.780944, 0.000000, 0.000000, 0.624601 - 0.780290, 0.000000, 0.000000, 0.625418 - 0.779634, 0.000000, 0.000000, 0.626235 - 0.778978, 0.000000, 0.000000, 0.627052 - 0.778320, 0.000000, 0.000000, 0.627867 - 0.777662, 0.000000, 0.000000, 0.628682 - 0.777003, 0.000000, 0.000000, 0.629497 - 0.776343, 0.000000, 0.000000, 0.630310 - 0.775683, 0.000000, 0.000000, 0.631123 - 0.775021, 0.000000, 0.000000, 0.631935 - 0.774359, 0.000000, 0.000000, 0.632747 - 0.773695, 0.000000, 0.000000, 0.633558 - 0.773031, 0.000000, 0.000000, 0.634368 - 0.772366, 0.000000, 0.000000, 0.635177 - 0.771700, 0.000000, 0.000000, 0.635986 - 0.771034, 0.000000, 0.000000, 0.636794 - 0.770366, 0.000000, 0.000000, 0.637602 - 0.769698, 0.000000, 0.000000, 0.638408 - 0.769029, 0.000000, 0.000000, 0.639214 - 0.768359, 0.000000, 0.000000, 0.640019 - 0.767688, 0.000000, 0.000000, 0.640824 - 0.767016, 0.000000, 0.000000, 0.641628 - 0.766344, 0.000000, 0.000000, 0.642431 - 0.765670, 0.000000, 0.000000, 0.643233 - 0.764996, 0.000000, 0.000000, 0.644035 - 0.764321, 0.000000, 0.000000, 0.644836 - 0.763645, 0.000000, 0.000000, 0.645636 - 0.762968, 0.000000, 0.000000, 0.646436 - 0.762291, 0.000000, 0.000000, 0.647235 - 0.761612, 0.000000, 0.000000, 0.648033 - 0.760933, 0.000000, 0.000000, 0.648830 - 0.760253, 0.000000, 0.000000, 0.649627 - 0.759572, 0.000000, 0.000000, 0.650423 - 0.758890, 0.000000, 0.000000, 0.651219 - 0.758208, 0.000000, 0.000000, 0.652013 - 0.757524, 0.000000, 0.000000, 0.652807 - 0.756840, 0.000000, 0.000000, 0.653600 - 0.756155, 0.000000, 0.000000, 0.654393 - 0.755469, 0.000000, 0.000000, 0.655185 - 0.754782, 0.000000, 0.000000, 0.655976 - 0.754095, 0.000000, 0.000000, 0.656766 - 0.753406, 0.000000, 0.000000, 0.657555 - 0.752717, 0.000000, 0.000000, 0.658344 - 0.752027, 0.000000, 0.000000, 0.659132 - 0.751336, 0.000000, 0.000000, 0.659920 - 0.750644, 0.000000, 0.000000, 0.660707 - 0.749952, 0.000000, 0.000000, 0.661493 - 0.749258, 0.000000, 0.000000, 0.662278 - 0.748564, 0.000000, 0.000000, 0.663062 - 0.747869, 0.000000, 0.000000, 0.663846 - 0.747173, 0.000000, 0.000000, 0.664629 - 0.746477, 0.000000, 0.000000, 0.665412 - 0.745779, 0.000000, 0.000000, 0.666193 - 0.745081, 0.000000, 0.000000, 0.666974 - 0.744382, 0.000000, 0.000000, 0.667754 - 0.743682, 0.000000, 0.000000, 0.668534 - 0.742981, 0.000000, 0.000000, 0.669312 - 0.742280, 0.000000, 0.000000, 0.670090 - 0.741577, 0.000000, 0.000000, 0.670867 - 0.740874, 0.000000, 0.000000, 0.671644 - 0.740170, 0.000000, 0.000000, 0.672420 - 0.739465, 0.000000, 0.000000, 0.673195 - 0.738760, 0.000000, 0.000000, 0.673969 - 0.738053, 0.000000, 0.000000, 0.674742 - 0.737346, 0.000000, 0.000000, 0.675515 - 0.736638, 0.000000, 0.000000, 0.676287 - 0.735929, 0.000000, 0.000000, 0.677058 - 0.735220, 0.000000, 0.000000, 0.677829 - 0.734509, 0.000000, 0.000000, 0.678599 - 0.733798, 0.000000, 0.000000, 0.679368 - 0.733086, 0.000000, 0.000000, 0.680136 - 0.732373, 0.000000, 0.000000, 0.680904 - 0.731659, 0.000000, 0.000000, 0.681671 - 0.730945, 0.000000, 0.000000, 0.682437 - 0.730229, 0.000000, 0.000000, 0.683202 - 0.729513, 0.000000, 0.000000, 0.683967 - 0.728797, 0.000000, 0.000000, 0.684730 - 0.728079, 0.000000, 0.000000, 0.685493 - 0.727360, 0.000000, 0.000000, 0.686256 - 0.726641, 0.000000, 0.000000, 0.687017 - 0.725921, 0.000000, 0.000000, 0.687778 - 0.725200, 0.000000, 0.000000, 0.688538 - 0.724478, 0.000000, 0.000000, 0.689297 - 0.723756, 0.000000, 0.000000, 0.690056 - 0.723033, 0.000000, 0.000000, 0.690814 - 0.722309, 0.000000, 0.000000, 0.691571 - 0.721584, 0.000000, 0.000000, 0.692327 - 0.720858, 0.000000, 0.000000, 0.693083 - 0.720132, 0.000000, 0.000000, 0.693837 - 0.719404, 0.000000, 0.000000, 0.694591 - 0.718676, 0.000000, 0.000000, 0.695345 - 0.717948, 0.000000, 0.000000, 0.696097 - 0.717218, 0.000000, 0.000000, 0.696849 - 0.716488, 0.000000, 0.000000, 0.697600 - 0.715757, 0.000000, 0.000000, 0.698350 - 0.715025, 0.000000, 0.000000, 0.699099 - 0.714292, 0.000000, 0.000000, 0.699848 - 0.713558, 0.000000, 0.000000, 0.700596 - 0.712824, 0.000000, 0.000000, 0.701343 - 0.712089, 0.000000, 0.000000, 0.702089 - 0.711353, 0.000000, 0.000000, 0.702835 - 0.710616, 0.000000, 0.000000, 0.703580 - 0.709879, 0.000000, 0.000000, 0.704324 - 0.709141, 0.000000, 0.000000, 0.705067 - 0.708402, 0.000000, 0.000000, 0.705809 - 0.707662, 0.000000, 0.000000, 0.706551 - 0.706922, 0.000000, 0.000000, 0.707292 - 0.706180, 0.000000, 0.000000, 0.708032 - 0.705438, 0.000000, 0.000000, 0.708771 - 0.704695, 0.000000, 0.000000, 0.709510 - 0.703952, 0.000000, 0.000000, 0.710248 - 0.703207, 0.000000, 0.000000, 0.710985 - 0.702462, 0.000000, 0.000000, 0.711721 - 0.701716, 0.000000, 0.000000, 0.712457 - 0.700969, 0.000000, 0.000000, 0.713191 - 0.700222, 0.000000, 0.000000, 0.713925 - 0.699474, 0.000000, 0.000000, 0.714658 - 0.698725, 0.000000, 0.000000, 0.715391 - 0.697975, 0.000000, 0.000000, 0.716122 - 0.697224, 0.000000, 0.000000, 0.716853 - 0.696473, 0.000000, 0.000000, 0.717583 - 0.695721, 0.000000, 0.000000, 0.718312 - 0.694968, 0.000000, 0.000000, 0.719041 - 0.694214, 0.000000, 0.000000, 0.719768 - 0.693460, 0.000000, 0.000000, 0.720495 - 0.692705, 0.000000, 0.000000, 0.721221 - 0.691949, 0.000000, 0.000000, 0.721946 - 0.691192, 0.000000, 0.000000, 0.722671 - 0.690435, 0.000000, 0.000000, 0.723394 - 0.689677, 0.000000, 0.000000, 0.724117 - 0.688918, 0.000000, 0.000000, 0.724839 - 0.688158, 0.000000, 0.000000, 0.725561 - 0.687398, 0.000000, 0.000000, 0.726281 - 0.686637, 0.000000, 0.000000, 0.727001 - 0.685875, 0.000000, 0.000000, 0.727720 - 0.685112, 0.000000, 0.000000, 0.728438 - 0.684349, 0.000000, 0.000000, 0.729155 - 0.683584, 0.000000, 0.000000, 0.729872 - 0.682819, 0.000000, 0.000000, 0.730587 - 0.682054, 0.000000, 0.000000, 0.731302 - 0.681287, 0.000000, 0.000000, 0.732016 - 0.680520, 0.000000, 0.000000, 0.732729 - 0.679752, 0.000000, 0.000000, 0.733442 - 0.678983, 0.000000, 0.000000, 0.734154 - 0.678214, 0.000000, 0.000000, 0.734864 - 0.677444, 0.000000, 0.000000, 0.735575 - 0.676673, 0.000000, 0.000000, 0.736284 - 0.675901, 0.000000, 0.000000, 0.736992 - 0.675129, 0.000000, 0.000000, 0.737700 - 0.674356, 0.000000, 0.000000, 0.738407 - 0.673582, 0.000000, 0.000000, 0.739113 - 0.672807, 0.000000, 0.000000, 0.739818 - 0.672032, 0.000000, 0.000000, 0.740522 - 0.671256, 0.000000, 0.000000, 0.741226 - 0.670479, 0.000000, 0.000000, 0.741929 - 0.669701, 0.000000, 0.000000, 0.742631 - 0.668923, 0.000000, 0.000000, 0.743332 - 0.668144, 0.000000, 0.000000, 0.744032 - 0.667364, 0.000000, 0.000000, 0.744732 - 0.666584, 0.000000, 0.000000, 0.745430 - 0.665802, 0.000000, 0.000000, 0.746128 - 0.665020, 0.000000, 0.000000, 0.746825 - 0.664238, 0.000000, 0.000000, 0.747521 - 0.663454, 0.000000, 0.000000, 0.748217 - 0.662670, 0.000000, 0.000000, 0.748911 - 0.661885, 0.000000, 0.000000, 0.749605 - 0.661100, 0.000000, 0.000000, 0.750298 - 0.660313, 0.000000, 0.000000, 0.750990 - 0.659526, 0.000000, 0.000000, 0.751682 - 0.658739, 0.000000, 0.000000, 0.752372 - 0.657950, 0.000000, 0.000000, 0.753062 - 0.657161, 0.000000, 0.000000, 0.753750 - 0.656371, 0.000000, 0.000000, 0.754438 - 0.655580, 0.000000, 0.000000, 0.755126 - 0.654789, 0.000000, 0.000000, 0.755812 - 0.653997, 0.000000, 0.000000, 0.756497 - 0.653204, 0.000000, 0.000000, 0.757182 - 0.652410, 0.000000, 0.000000, 0.757866 - 0.651616, 0.000000, 0.000000, 0.758549 - 0.650821, 0.000000, 0.000000, 0.759231 - 0.650025, 0.000000, 0.000000, 0.759913 - 0.649229, 0.000000, 0.000000, 0.760593 - 0.648432, 0.000000, 0.000000, 0.761273 - 0.647634, 0.000000, 0.000000, 0.761952 - 0.646835, 0.000000, 0.000000, 0.762630 - 0.646036, 0.000000, 0.000000, 0.763307 - 0.645236, 0.000000, 0.000000, 0.763983 - 0.644436, 0.000000, 0.000000, 0.764659 - 0.643634, 0.000000, 0.000000, 0.765333 - 0.642832, 0.000000, 0.000000, 0.766007 - 0.642029, 0.000000, 0.000000, 0.766680 - 0.641226, 0.000000, 0.000000, 0.767352 - 0.640422, 0.000000, 0.000000, 0.768023 - 0.639617, 0.000000, 0.000000, 0.768694 - 0.638811, 0.000000, 0.000000, 0.769363 - 0.638005, 0.000000, 0.000000, 0.770032 - 0.637198, 0.000000, 0.000000, 0.770700 - 0.636390, 0.000000, 0.000000, 0.771367 - 0.635582, 0.000000, 0.000000, 0.772033 - 0.634773, 0.000000, 0.000000, 0.772699 - 0.633963, 0.000000, 0.000000, 0.773363 - 0.633153, 0.000000, 0.000000, 0.774027 - 0.632341, 0.000000, 0.000000, 0.774690 - 0.631529, 0.000000, 0.000000, 0.775352 - 0.630717, 0.000000, 0.000000, 0.776013 - 0.629904, 0.000000, 0.000000, 0.776673 - 0.629090, 0.000000, 0.000000, 0.777333 - 0.628275, 0.000000, 0.000000, 0.777991 - 0.627460, 0.000000, 0.000000, 0.778649 - 0.626644, 0.000000, 0.000000, 0.779306 - 0.625827, 0.000000, 0.000000, 0.779962 - 0.625010, 0.000000, 0.000000, 0.780617 - 0.624192, 0.000000, 0.000000, 0.781271 - 0.623373, 0.000000, 0.000000, 0.781925 - 0.622553, 0.000000, 0.000000, 0.782577 - 0.621733, 0.000000, 0.000000, 0.783229 - 0.620912, 0.000000, 0.000000, 0.783880 - 0.620091, 0.000000, 0.000000, 0.784530 - 0.619269, 0.000000, 0.000000, 0.785179 - 0.618446, 0.000000, 0.000000, 0.785827 - 0.617622, 0.000000, 0.000000, 0.786475 - 0.616798, 0.000000, 0.000000, 0.787121 - 0.615973, 0.000000, 0.000000, 0.787767 - 0.615148, 0.000000, 0.000000, 0.788412 - 0.614321, 0.000000, 0.000000, 0.789056 - 0.613495, 0.000000, 0.000000, 0.789699 - 0.612667, 0.000000, 0.000000, 0.790341 - 0.611839, 0.000000, 0.000000, 0.790983 - 0.611010, 0.000000, 0.000000, 0.791623 - 0.610180, 0.000000, 0.000000, 0.792263 - 0.609350, 0.000000, 0.000000, 0.792901 - 0.608519, 0.000000, 0.000000, 0.793539 - 0.607687, 0.000000, 0.000000, 0.794176 - 0.606855, 0.000000, 0.000000, 0.794812 - 0.606022, 0.000000, 0.000000, 0.795448 - 0.605189, 0.000000, 0.000000, 0.796082 - 0.604354, 0.000000, 0.000000, 0.796716 - 0.603519, 0.000000, 0.000000, 0.797348 - 0.602684, 0.000000, 0.000000, 0.797980 - 0.601848, 0.000000, 0.000000, 0.798611 - 0.601011, 0.000000, 0.000000, 0.799241 - 0.600173, 0.000000, 0.000000, 0.799870 - 0.599335, 0.000000, 0.000000, 0.800498 - 0.598496, 0.000000, 0.000000, 0.801126 - 0.597656, 0.000000, 0.000000, 0.801752 - 0.596816, 0.000000, 0.000000, 0.802378 - 0.595975, 0.000000, 0.000000, 0.803003 - 0.595134, 0.000000, 0.000000, 0.803627 - 0.594292, 0.000000, 0.000000, 0.804250 - 0.593449, 0.000000, 0.000000, 0.804872 - 0.592605, 0.000000, 0.000000, 0.805493 - 0.591761, 0.000000, 0.000000, 0.806113 - 0.590917, 0.000000, 0.000000, 0.806733 - 0.590071, 0.000000, 0.000000, 0.807351 - 0.589225, 0.000000, 0.000000, 0.807969 - 0.588378, 0.000000, 0.000000, 0.808586 - 0.587531, 0.000000, 0.000000, 0.809202 - 0.586683, 0.000000, 0.000000, 0.809817 - 0.585834, 0.000000, 0.000000, 0.810431 - 0.584985, 0.000000, 0.000000, 0.811044 - 0.584135, 0.000000, 0.000000, 0.811656 - 0.583285, 0.000000, 0.000000, 0.812268 - 0.582433, 0.000000, 0.000000, 0.812878 - 0.581581, 0.000000, 0.000000, 0.813488 - 0.580729, 0.000000, 0.000000, 0.814097 - 0.579876, 0.000000, 0.000000, 0.814705 - 0.579022, 0.000000, 0.000000, 0.815312 - 0.578168, 0.000000, 0.000000, 0.815918 - 0.577313, 0.000000, 0.000000, 0.816523 - 0.576457, 0.000000, 0.000000, 0.817127 - 0.575601, 0.000000, 0.000000, 0.817731 - 0.574744, 0.000000, 0.000000, 0.818333 - 0.573886, 0.000000, 0.000000, 0.818935 - 0.573028, 0.000000, 0.000000, 0.819536 - 0.572169, 0.000000, 0.000000, 0.820136 - 0.571310, 0.000000, 0.000000, 0.820734 - 0.570450, 0.000000, 0.000000, 0.821333 - 0.569589, 0.000000, 0.000000, 0.821930 - 0.568728, 0.000000, 0.000000, 0.822526 - 0.567866, 0.000000, 0.000000, 0.823121 - 0.567003, 0.000000, 0.000000, 0.823716 - 0.566140, 0.000000, 0.000000, 0.824309 - 0.565276, 0.000000, 0.000000, 0.824902 - 0.564412, 0.000000, 0.000000, 0.825493 - 0.563547, 0.000000, 0.000000, 0.826084 - 0.562681, 0.000000, 0.000000, 0.826674 - 0.561815, 0.000000, 0.000000, 0.827263 - 0.560948, 0.000000, 0.000000, 0.827851 - 0.560080, 0.000000, 0.000000, 0.828438 - 0.559212, 0.000000, 0.000000, 0.829025 - 0.558343, 0.000000, 0.000000, 0.829610 - 0.557474, 0.000000, 0.000000, 0.830194 - 0.556604, 0.000000, 0.000000, 0.830778 - 0.555734, 0.000000, 0.000000, 0.831360 - 0.554862, 0.000000, 0.000000, 0.831942 - 0.553991, 0.000000, 0.000000, 0.832523 - 0.553118, 0.000000, 0.000000, 0.833103 - 0.552245, 0.000000, 0.000000, 0.833682 - 0.551371, 0.000000, 0.000000, 0.834260 - 0.550497, 0.000000, 0.000000, 0.834837 - 0.549622, 0.000000, 0.000000, 0.835413 - 0.548747, 0.000000, 0.000000, 0.835988 - 0.547871, 0.000000, 0.000000, 0.836563 - 0.546994, 0.000000, 0.000000, 0.837136 - 0.546117, 0.000000, 0.000000, 0.837709 - 0.545239, 0.000000, 0.000000, 0.838280 - 0.544361, 0.000000, 0.000000, 0.838851 - 0.543482, 0.000000, 0.000000, 0.839421 - 0.542602, 0.000000, 0.000000, 0.839990 - 0.541722, 0.000000, 0.000000, 0.840558 - 0.540841, 0.000000, 0.000000, 0.841125 - 0.539960, 0.000000, 0.000000, 0.841691 - 0.539078, 0.000000, 0.000000, 0.842256 - 0.538195, 0.000000, 0.000000, 0.842820 - 0.537312, 0.000000, 0.000000, 0.843384 - 0.536428, 0.000000, 0.000000, 0.843946 - 0.535544, 0.000000, 0.000000, 0.844507 - 0.534659, 0.000000, 0.000000, 0.845068 - 0.533773, 0.000000, 0.000000, 0.845628 - 0.532887, 0.000000, 0.000000, 0.846186 - 0.532000, 0.000000, 0.000000, 0.846744 - 0.531113, 0.000000, 0.000000, 0.847301 - 0.530225, 0.000000, 0.000000, 0.847857 - 0.529337, 0.000000, 0.000000, 0.848412 - 0.528448, 0.000000, 0.000000, 0.848966 - 0.527558, 0.000000, 0.000000, 0.849519 - 0.526668, 0.000000, 0.000000, 0.850071 - 0.525777, 0.000000, 0.000000, 0.850622 - 0.524886, 0.000000, 0.000000, 0.851173 - 0.523994, 0.000000, 0.000000, 0.851722 - 0.523101, 0.000000, 0.000000, 0.852270 - 0.522208, 0.000000, 0.000000, 0.852818 - 0.521315, 0.000000, 0.000000, 0.853365 - 0.520420, 0.000000, 0.000000, 0.853910 - 0.519526, 0.000000, 0.000000, 0.854455 - 0.518630, 0.000000, 0.000000, 0.854999 - 0.517734, 0.000000, 0.000000, 0.855541 - 0.516838, 0.000000, 0.000000, 0.856083 - 0.515941, 0.000000, 0.000000, 0.856624 - 0.515043, 0.000000, 0.000000, 0.857164 - 0.514145, 0.000000, 0.000000, 0.857703 - 0.513246, 0.000000, 0.000000, 0.858241 - 0.512347, 0.000000, 0.000000, 0.858779 - 0.511447, 0.000000, 0.000000, 0.859315 - 0.510546, 0.000000, 0.000000, 0.859850 - 0.509645, 0.000000, 0.000000, 0.860385 - 0.508744, 0.000000, 0.000000, 0.860918 - 0.507842, 0.000000, 0.000000, 0.861450 - 0.506939, 0.000000, 0.000000, 0.861982 - 0.506036, 0.000000, 0.000000, 0.862512 - 0.505132, 0.000000, 0.000000, 0.863042 - 0.504228, 0.000000, 0.000000, 0.863571 - 0.503323, 0.000000, 0.000000, 0.864099 - 0.502417, 0.000000, 0.000000, 0.864625 - 0.501511, 0.000000, 0.000000, 0.865151 - 0.500605, 0.000000, 0.000000, 0.865676 - 0.499698, 0.000000, 0.000000, 0.866200 - 0.498790, 0.000000, 0.000000, 0.866723 - 0.497882, 0.000000, 0.000000, 0.867245 - 0.496973, 0.000000, 0.000000, 0.867766 - 0.496064, 0.000000, 0.000000, 0.868286 - 0.495154, 0.000000, 0.000000, 0.868805 - 0.494243, 0.000000, 0.000000, 0.869324 - 0.493332, 0.000000, 0.000000, 0.869841 - 0.492421, 0.000000, 0.000000, 0.870357 - 0.491509, 0.000000, 0.000000, 0.870872 - 0.490596, 0.000000, 0.000000, 0.871387 - 0.489683, 0.000000, 0.000000, 0.871900 - 0.488770, 0.000000, 0.000000, 0.872413 - 0.487856, 0.000000, 0.000000, 0.872924 - 0.486941, 0.000000, 0.000000, 0.873435 - 0.486026, 0.000000, 0.000000, 0.873945 - 0.485110, 0.000000, 0.000000, 0.874453 - 0.484194, 0.000000, 0.000000, 0.874961 - 0.483277, 0.000000, 0.000000, 0.875468 - 0.482359, 0.000000, 0.000000, 0.875973 - 0.481442, 0.000000, 0.000000, 0.876478 - 0.480523, 0.000000, 0.000000, 0.876982 - 0.479604, 0.000000, 0.000000, 0.877485 - 0.478685, 0.000000, 0.000000, 0.877987 - 0.477765, 0.000000, 0.000000, 0.878488 - 0.476844, 0.000000, 0.000000, 0.878988 - 0.475923, 0.000000, 0.000000, 0.879487 - 0.475002, 0.000000, 0.000000, 0.879985 - 0.474079, 0.000000, 0.000000, 0.880482 - 0.473157, 0.000000, 0.000000, 0.880978 - 0.472234, 0.000000, 0.000000, 0.881473 - 0.471310, 0.000000, 0.000000, 0.881968 - 0.470386, 0.000000, 0.000000, 0.882461 - 0.469461, 0.000000, 0.000000, 0.882953 - 0.468536, 0.000000, 0.000000, 0.883444 - 0.467610, 0.000000, 0.000000, 0.883935 - 0.466684, 0.000000, 0.000000, 0.884424 - 0.465757, 0.000000, 0.000000, 0.884912 - 0.464830, 0.000000, 0.000000, 0.885400 - 0.463902, 0.000000, 0.000000, 0.885886 - 0.462974, 0.000000, 0.000000, 0.886372 - 0.462045, 0.000000, 0.000000, 0.886856 - 0.461116, 0.000000, 0.000000, 0.887340 - 0.460186, 0.000000, 0.000000, 0.887822 - 0.459256, 0.000000, 0.000000, 0.888304 - 0.458325, 0.000000, 0.000000, 0.888785 - 0.457394, 0.000000, 0.000000, 0.889264 - 0.456462, 0.000000, 0.000000, 0.889743 - 0.455530, 0.000000, 0.000000, 0.890220 - 0.454597, 0.000000, 0.000000, 0.890697 - 0.453664, 0.000000, 0.000000, 0.891173 - 0.452730, 0.000000, 0.000000, 0.891648 - 0.451796, 0.000000, 0.000000, 0.892121 - 0.450861, 0.000000, 0.000000, 0.892594 - 0.449926, 0.000000, 0.000000, 0.893066 - 0.448990, 0.000000, 0.000000, 0.893537 - 0.448054, 0.000000, 0.000000, 0.894007 - 0.447117, 0.000000, 0.000000, 0.894476 - 0.446180, 0.000000, 0.000000, 0.894943 - 0.445242, 0.000000, 0.000000, 0.895410 - 0.444304, 0.000000, 0.000000, 0.895876 - 0.443365, 0.000000, 0.000000, 0.896341 - 0.442426, 0.000000, 0.000000, 0.896805 - 0.441486, 0.000000, 0.000000, 0.897268 - 0.440546, 0.000000, 0.000000, 0.897730 - 0.439605, 0.000000, 0.000000, 0.898191 - 0.438664, 0.000000, 0.000000, 0.898651 - 0.437722, 0.000000, 0.000000, 0.899110 - 0.436780, 0.000000, 0.000000, 0.899568 - 0.435838, 0.000000, 0.000000, 0.900025 - 0.434895, 0.000000, 0.000000, 0.900481 - 0.433951, 0.000000, 0.000000, 0.900936 - 0.433007, 0.000000, 0.000000, 0.901390 - 0.432063, 0.000000, 0.000000, 0.901844 - 0.431118, 0.000000, 0.000000, 0.902296 - 0.430172, 0.000000, 0.000000, 0.902747 - 0.429226, 0.000000, 0.000000, 0.903197 - 0.428280, 0.000000, 0.000000, 0.903646 - 0.427333, 0.000000, 0.000000, 0.904094 - 0.426386, 0.000000, 0.000000, 0.904541 - 0.425438, 0.000000, 0.000000, 0.904988 - 0.424490, 0.000000, 0.000000, 0.905433 - 0.423541, 0.000000, 0.000000, 0.905877 - 0.422592, 0.000000, 0.000000, 0.906320 - 0.421642, 0.000000, 0.000000, 0.906762 - 0.420692, 0.000000, 0.000000, 0.907203 - 0.419742, 0.000000, 0.000000, 0.907644 - 0.418791, 0.000000, 0.000000, 0.908083 - 0.417839, 0.000000, 0.000000, 0.908521 - 0.416887, 0.000000, 0.000000, 0.908958 - 0.415935, 0.000000, 0.000000, 0.909394 - 0.414982, 0.000000, 0.000000, 0.909830 - 0.414029, 0.000000, 0.000000, 0.910264 - 0.413075, 0.000000, 0.000000, 0.910697 - 0.412121, 0.000000, 0.000000, 0.911129 - 0.411166, 0.000000, 0.000000, 0.911561 - 0.410211, 0.000000, 0.000000, 0.911991 - 0.409255, 0.000000, 0.000000, 0.912420 - 0.408299, 0.000000, 0.000000, 0.912848 - 0.407343, 0.000000, 0.000000, 0.913275 - 0.406386, 0.000000, 0.000000, 0.913702 - 0.405428, 0.000000, 0.000000, 0.914127 - 0.404471, 0.000000, 0.000000, 0.914551 - 0.403512, 0.000000, 0.000000, 0.914974 - 0.402554, 0.000000, 0.000000, 0.915396 - 0.401594, 0.000000, 0.000000, 0.915818 - 0.400635, 0.000000, 0.000000, 0.916238 - 0.399675, 0.000000, 0.000000, 0.916657 - 0.398714, 0.000000, 0.000000, 0.917075 - 0.397753, 0.000000, 0.000000, 0.917492 - 0.396792, 0.000000, 0.000000, 0.917908 - 0.395830, 0.000000, 0.000000, 0.918324 - 0.394868, 0.000000, 0.000000, 0.918738 - 0.393906, 0.000000, 0.000000, 0.919151 - 0.392942, 0.000000, 0.000000, 0.919563 - 0.391979, 0.000000, 0.000000, 0.919974 - 0.391015, 0.000000, 0.000000, 0.920384 - 0.390051, 0.000000, 0.000000, 0.920793 - 0.389086, 0.000000, 0.000000, 0.921201 - 0.388121, 0.000000, 0.000000, 0.921609 - 0.387155, 0.000000, 0.000000, 0.922015 - 0.386189, 0.000000, 0.000000, 0.922420 - 0.385222, 0.000000, 0.000000, 0.922824 - 0.384256, 0.000000, 0.000000, 0.923227 - 0.383288, 0.000000, 0.000000, 0.923629 - 0.382320, 0.000000, 0.000000, 0.924030 - 0.381352, 0.000000, 0.000000, 0.924430 - 0.380384, 0.000000, 0.000000, 0.924829 - 0.379415, 0.000000, 0.000000, 0.925227 - 0.378445, 0.000000, 0.000000, 0.925624 - 0.377475, 0.000000, 0.000000, 0.926020 - 0.376505, 0.000000, 0.000000, 0.926415 - 0.375535, 0.000000, 0.000000, 0.926808 - 0.374563, 0.000000, 0.000000, 0.927201 - 0.373592, 0.000000, 0.000000, 0.927593 - 0.372620, 0.000000, 0.000000, 0.927984 - 0.371648, 0.000000, 0.000000, 0.928374 - 0.370675, 0.000000, 0.000000, 0.928763 - 0.369702, 0.000000, 0.000000, 0.929150 - 0.368728, 0.000000, 0.000000, 0.929537 - 0.367754, 0.000000, 0.000000, 0.929923 - 0.366780, 0.000000, 0.000000, 0.930308 - 0.365805, 0.000000, 0.000000, 0.930691 - 0.364830, 0.000000, 0.000000, 0.931074 - 0.363855, 0.000000, 0.000000, 0.931456 - 0.362879, 0.000000, 0.000000, 0.931836 - 0.361902, 0.000000, 0.000000, 0.932216 - 0.360926, 0.000000, 0.000000, 0.932595 - 0.359948, 0.000000, 0.000000, 0.932972 - 0.358971, 0.000000, 0.000000, 0.933349 - 0.357993, 0.000000, 0.000000, 0.933724 - 0.357015, 0.000000, 0.000000, 0.934099 - 0.356036, 0.000000, 0.000000, 0.934472 - 0.355057, 0.000000, 0.000000, 0.934845 - 0.354077, 0.000000, 0.000000, 0.935216 - 0.353098, 0.000000, 0.000000, 0.935587 - 0.352117, 0.000000, 0.000000, 0.935956 - 0.351137, 0.000000, 0.000000, 0.936324 - 0.350156, 0.000000, 0.000000, 0.936692 - 0.349174, 0.000000, 0.000000, 0.937058 - 0.348192, 0.000000, 0.000000, 0.937423 - 0.347210, 0.000000, 0.000000, 0.937787 - 0.346228, 0.000000, 0.000000, 0.938151 - 0.345245, 0.000000, 0.000000, 0.938513 - 0.344261, 0.000000, 0.000000, 0.938874 - 0.343278, 0.000000, 0.000000, 0.939234 - 0.342294, 0.000000, 0.000000, 0.939593 - 0.341309, 0.000000, 0.000000, 0.939951 - 0.340324, 0.000000, 0.000000, 0.940308 - 0.339339, 0.000000, 0.000000, 0.940664 - 0.338354, 0.000000, 0.000000, 0.941019 - 0.337368, 0.000000, 0.000000, 0.941373 - 0.336381, 0.000000, 0.000000, 0.941726 - 0.335395, 0.000000, 0.000000, 0.942078 - 0.334407, 0.000000, 0.000000, 0.942429 - 0.333420, 0.000000, 0.000000, 0.942778 - 0.332432, 0.000000, 0.000000, 0.943127 - 0.331444, 0.000000, 0.000000, 0.943475 - 0.330456, 0.000000, 0.000000, 0.943822 - 0.329467, 0.000000, 0.000000, 0.944167 - 0.328478, 0.000000, 0.000000, 0.944512 - 0.327488, 0.000000, 0.000000, 0.944855 - 0.326498, 0.000000, 0.000000, 0.945198 - 0.325508, 0.000000, 0.000000, 0.945539 - 0.324517, 0.000000, 0.000000, 0.945880 - 0.323526, 0.000000, 0.000000, 0.946219 - 0.322535, 0.000000, 0.000000, 0.946558 - 0.321543, 0.000000, 0.000000, 0.946895 - 0.320551, 0.000000, 0.000000, 0.947231 - 0.319558, 0.000000, 0.000000, 0.947567 - 0.318565, 0.000000, 0.000000, 0.947901 - 0.317572, 0.000000, 0.000000, 0.948234 - 0.316579, 0.000000, 0.000000, 0.948566 - 0.315585, 0.000000, 0.000000, 0.948897 - 0.314591, 0.000000, 0.000000, 0.949227 - 0.313596, 0.000000, 0.000000, 0.949556 - 0.312601, 0.000000, 0.000000, 0.949884 - 0.311606, 0.000000, 0.000000, 0.950211 - 0.310611, 0.000000, 0.000000, 0.950537 - 0.309615, 0.000000, 0.000000, 0.950862 - 0.308618, 0.000000, 0.000000, 0.951186 - 0.307622, 0.000000, 0.000000, 0.951509 - 0.306625, 0.000000, 0.000000, 0.951830 - 0.305628, 0.000000, 0.000000, 0.952151 - 0.304630, 0.000000, 0.000000, 0.952471 - 0.303632, 0.000000, 0.000000, 0.952789 - 0.302634, 0.000000, 0.000000, 0.953107 - 0.301635, 0.000000, 0.000000, 0.953423 - 0.300636, 0.000000, 0.000000, 0.953739 - 0.299637, 0.000000, 0.000000, 0.954053 - 0.298638, 0.000000, 0.000000, 0.954367 - 0.297638, 0.000000, 0.000000, 0.954679 - 0.296637, 0.000000, 0.000000, 0.954990 - 0.295637, 0.000000, 0.000000, 0.955300 - 0.294636, 0.000000, 0.000000, 0.955610 - 0.293635, 0.000000, 0.000000, 0.955918 - 0.292633, 0.000000, 0.000000, 0.956225 - 0.291631, 0.000000, 0.000000, 0.956531 - 0.290629, 0.000000, 0.000000, 0.956836 - 0.289627, 0.000000, 0.000000, 0.957140 - 0.288624, 0.000000, 0.000000, 0.957443 - 0.287621, 0.000000, 0.000000, 0.957744 - 0.286617, 0.000000, 0.000000, 0.958045 - 0.285614, 0.000000, 0.000000, 0.958345 - 0.284610, 0.000000, 0.000000, 0.958644 - 0.283605, 0.000000, 0.000000, 0.958941 - 0.282600, 0.000000, 0.000000, 0.959238 - 0.281595, 0.000000, 0.000000, 0.959533 - 0.280590, 0.000000, 0.000000, 0.959828 - 0.279585, 0.000000, 0.000000, 0.960121 - 0.278579, 0.000000, 0.000000, 0.960413 - 0.277572, 0.000000, 0.000000, 0.960705 - 0.276566, 0.000000, 0.000000, 0.960995 - 0.275559, 0.000000, 0.000000, 0.961284 - 0.274552, 0.000000, 0.000000, 0.961572 - 0.273544, 0.000000, 0.000000, 0.961859 - 0.272537, 0.000000, 0.000000, 0.962145 - 0.271529, 0.000000, 0.000000, 0.962430 - 0.270520, 0.000000, 0.000000, 0.962714 - 0.269512, 0.000000, 0.000000, 0.962997 - 0.268503, 0.000000, 0.000000, 0.963279 - 0.267494, 0.000000, 0.000000, 0.963560 - 0.266484, 0.000000, 0.000000, 0.963839 - 0.265474, 0.000000, 0.000000, 0.964118 - 0.264464, 0.000000, 0.000000, 0.964396 - 0.263454, 0.000000, 0.000000, 0.964672 - 0.262443, 0.000000, 0.000000, 0.964947 - 0.261432, 0.000000, 0.000000, 0.965222 - 0.260421, 0.000000, 0.000000, 0.965495 - 0.259409, 0.000000, 0.000000, 0.965767 - 0.258397, 0.000000, 0.000000, 0.966039 - 0.257385, 0.000000, 0.000000, 0.966309 - 0.256373, 0.000000, 0.000000, 0.966578 - 0.255360, 0.000000, 0.000000, 0.966846 - 0.254347, 0.000000, 0.000000, 0.967113 - 0.253334, 0.000000, 0.000000, 0.967379 - 0.252321, 0.000000, 0.000000, 0.967644 - 0.251307, 0.000000, 0.000000, 0.967907 - 0.250293, 0.000000, 0.000000, 0.968170 - 0.249278, 0.000000, 0.000000, 0.968432 - 0.248264, 0.000000, 0.000000, 0.968692 - 0.247249, 0.000000, 0.000000, 0.968952 - 0.246234, 0.000000, 0.000000, 0.969210 - 0.245218, 0.000000, 0.000000, 0.969468 - 0.244203, 0.000000, 0.000000, 0.969724 - 0.243187, 0.000000, 0.000000, 0.969980 - 0.242170, 0.000000, 0.000000, 0.970234 - 0.241154, 0.000000, 0.000000, 0.970487 - 0.240137, 0.000000, 0.000000, 0.970739 - 0.239120, 0.000000, 0.000000, 0.970990 - 0.238103, 0.000000, 0.000000, 0.971240 - 0.237085, 0.000000, 0.000000, 0.971489 - 0.236067, 0.000000, 0.000000, 0.971737 - 0.235049, 0.000000, 0.000000, 0.971983 - 0.234031, 0.000000, 0.000000, 0.972229 - 0.233012, 0.000000, 0.000000, 0.972474 - 0.231994, 0.000000, 0.000000, 0.972717 - 0.230975, 0.000000, 0.000000, 0.972960 - 0.229955, 0.000000, 0.000000, 0.973201 - 0.228936, 0.000000, 0.000000, 0.973442 - 0.227916, 0.000000, 0.000000, 0.973681 - 0.226896, 0.000000, 0.000000, 0.973919 - 0.225875, 0.000000, 0.000000, 0.974156 - 0.224855, 0.000000, 0.000000, 0.974392 - 0.223834, 0.000000, 0.000000, 0.974627 - 0.222813, 0.000000, 0.000000, 0.974861 - 0.221791, 0.000000, 0.000000, 0.975094 - 0.220770, 0.000000, 0.000000, 0.975326 - 0.219748, 0.000000, 0.000000, 0.975557 - 0.218726, 0.000000, 0.000000, 0.975786 - 0.217704, 0.000000, 0.000000, 0.976015 - 0.216681, 0.000000, 0.000000, 0.976242 - 0.215658, 0.000000, 0.000000, 0.976469 - 0.214635, 0.000000, 0.000000, 0.976694 - 0.213612, 0.000000, 0.000000, 0.976919 - 0.212589, 0.000000, 0.000000, 0.977142 - 0.211565, 0.000000, 0.000000, 0.977364 - 0.210541, 0.000000, 0.000000, 0.977585 - 0.209517, 0.000000, 0.000000, 0.977805 - 0.208492, 0.000000, 0.000000, 0.978024 - 0.207468, 0.000000, 0.000000, 0.978242 - 0.206443, 0.000000, 0.000000, 0.978459 - 0.205418, 0.000000, 0.000000, 0.978674 - 0.204392, 0.000000, 0.000000, 0.978889 - 0.203367, 0.000000, 0.000000, 0.979103 - 0.202341, 0.000000, 0.000000, 0.979315 - 0.201315, 0.000000, 0.000000, 0.979527 - 0.200289, 0.000000, 0.000000, 0.979737 - 0.199262, 0.000000, 0.000000, 0.979946 - 0.198236, 0.000000, 0.000000, 0.980154 - 0.197209, 0.000000, 0.000000, 0.980361 - 0.196182, 0.000000, 0.000000, 0.980568 - 0.195155, 0.000000, 0.000000, 0.980773 - 0.194127, 0.000000, 0.000000, 0.980976 - 0.193099, 0.000000, 0.000000, 0.981179 - 0.192071, 0.000000, 0.000000, 0.981381 - 0.191043, 0.000000, 0.000000, 0.981582 - 0.190015, 0.000000, 0.000000, 0.981781 - 0.188986, 0.000000, 0.000000, 0.981980 - 0.187958, 0.000000, 0.000000, 0.982177 - 0.186929, 0.000000, 0.000000, 0.982374 - 0.185899, 0.000000, 0.000000, 0.982569 - 0.184870, 0.000000, 0.000000, 0.982763 - 0.183840, 0.000000, 0.000000, 0.982956 - 0.182811, 0.000000, 0.000000, 0.983148 - 0.181781, 0.000000, 0.000000, 0.983339 - 0.180750, 0.000000, 0.000000, 0.983529 - 0.179720, 0.000000, 0.000000, 0.983718 - 0.178689, 0.000000, 0.000000, 0.983906 - 0.177659, 0.000000, 0.000000, 0.984092 - 0.176628, 0.000000, 0.000000, 0.984278 - 0.175596, 0.000000, 0.000000, 0.984462 - 0.174565, 0.000000, 0.000000, 0.984646 - 0.173534, 0.000000, 0.000000, 0.984828 - 0.172502, 0.000000, 0.000000, 0.985009 - 0.171470, 0.000000, 0.000000, 0.985189 - 0.170438, 0.000000, 0.000000, 0.985368 - 0.169405, 0.000000, 0.000000, 0.985546 - 0.168373, 0.000000, 0.000000, 0.985723 - 0.167340, 0.000000, 0.000000, 0.985899 - 0.166307, 0.000000, 0.000000, 0.986074 - 0.165274, 0.000000, 0.000000, 0.986248 - 0.164241, 0.000000, 0.000000, 0.986420 - 0.163208, 0.000000, 0.000000, 0.986592 - 0.162174, 0.000000, 0.000000, 0.986762 - 0.161140, 0.000000, 0.000000, 0.986932 - 0.160106, 0.000000, 0.000000, 0.987100 - 0.159072, 0.000000, 0.000000, 0.987267 - 0.158038, 0.000000, 0.000000, 0.987433 - 0.157003, 0.000000, 0.000000, 0.987598 - 0.155969, 0.000000, 0.000000, 0.987762 - 0.154934, 0.000000, 0.000000, 0.987925 - 0.153899, 0.000000, 0.000000, 0.988087 - 0.152864, 0.000000, 0.000000, 0.988247 - 0.151829, 0.000000, 0.000000, 0.988407 - 0.150793, 0.000000, 0.000000, 0.988565 - 0.149757, 0.000000, 0.000000, 0.988723 - 0.148722, 0.000000, 0.000000, 0.988879 - 0.147686, 0.000000, 0.000000, 0.989034 - 0.146650, 0.000000, 0.000000, 0.989189 - 0.145613, 0.000000, 0.000000, 0.989342 - 0.144577, 0.000000, 0.000000, 0.989494 - 0.143540, 0.000000, 0.000000, 0.989644 - 0.142503, 0.000000, 0.000000, 0.989794 - 0.141466, 0.000000, 0.000000, 0.989943 - 0.140429, 0.000000, 0.000000, 0.990091 - 0.139392, 0.000000, 0.000000, 0.990237 - 0.138355, 0.000000, 0.000000, 0.990383 - 0.137317, 0.000000, 0.000000, 0.990527 - 0.136279, 0.000000, 0.000000, 0.990670 - 0.135242, 0.000000, 0.000000, 0.990813 - 0.134204, 0.000000, 0.000000, 0.990954 - 0.133165, 0.000000, 0.000000, 0.991094 - 0.132127, 0.000000, 0.000000, 0.991233 - 0.131089, 0.000000, 0.000000, 0.991371 - 0.130050, 0.000000, 0.000000, 0.991507 - 0.129011, 0.000000, 0.000000, 0.991643 - 0.127973, 0.000000, 0.000000, 0.991778 - 0.126934, 0.000000, 0.000000, 0.991911 - 0.125894, 0.000000, 0.000000, 0.992044 - 0.124855, 0.000000, 0.000000, 0.992175 - 0.123816, 0.000000, 0.000000, 0.992305 - 0.122776, 0.000000, 0.000000, 0.992434 - 0.121736, 0.000000, 0.000000, 0.992562 - 0.120697, 0.000000, 0.000000, 0.992689 - 0.119657, 0.000000, 0.000000, 0.992815 - 0.118617, 0.000000, 0.000000, 0.992940 - 0.117576, 0.000000, 0.000000, 0.993064 - 0.116536, 0.000000, 0.000000, 0.993186 - 0.115496, 0.000000, 0.000000, 0.993308 - 0.114455, 0.000000, 0.000000, 0.993428 - 0.113414, 0.000000, 0.000000, 0.993548 - 0.112373, 0.000000, 0.000000, 0.993666 - 0.111332, 0.000000, 0.000000, 0.993783 - 0.110291, 0.000000, 0.000000, 0.993899 - 0.109250, 0.000000, 0.000000, 0.994014 - 0.108209, 0.000000, 0.000000, 0.994128 - 0.107167, 0.000000, 0.000000, 0.994241 - 0.106126, 0.000000, 0.000000, 0.994353 - 0.105084, 0.000000, 0.000000, 0.994463 - 0.104042, 0.000000, 0.000000, 0.994573 - 0.103000, 0.000000, 0.000000, 0.994681 - 0.101958, 0.000000, 0.000000, 0.994789 - 0.100916, 0.000000, 0.000000, 0.994895 - 0.099874, 0.000000, 0.000000, 0.995000 - 0.098832, 0.000000, 0.000000, 0.995104 - 0.097789, 0.000000, 0.000000, 0.995207 - 0.096747, 0.000000, 0.000000, 0.995309 - 0.095704, 0.000000, 0.000000, 0.995410 - 0.094661, 0.000000, 0.000000, 0.995510 - 0.093618, 0.000000, 0.000000, 0.995608 - 0.092575, 0.000000, 0.000000, 0.995706 - 0.091532, 0.000000, 0.000000, 0.995802 - 0.090489, 0.000000, 0.000000, 0.995897 - 0.089446, 0.000000, 0.000000, 0.995992 - 0.088402, 0.000000, 0.000000, 0.996085 - 0.087359, 0.000000, 0.000000, 0.996177 - 0.086315, 0.000000, 0.000000, 0.996268 - 0.085271, 0.000000, 0.000000, 0.996358 - 0.084228, 0.000000, 0.000000, 0.996447 - 0.083184, 0.000000, 0.000000, 0.996534 - 0.082140, 0.000000, 0.000000, 0.996621 - 0.081096, 0.000000, 0.000000, 0.996706 - 0.080052, 0.000000, 0.000000, 0.996791 - 0.079007, 0.000000, 0.000000, 0.996874 - 0.077963, 0.000000, 0.000000, 0.996956 - 0.076919, 0.000000, 0.000000, 0.997037 - 0.075874, 0.000000, 0.000000, 0.997117 - 0.074830, 0.000000, 0.000000, 0.997196 - 0.073785, 0.000000, 0.000000, 0.997274 - 0.072740, 0.000000, 0.000000, 0.997351 - 0.071695, 0.000000, 0.000000, 0.997427 - 0.070650, 0.000000, 0.000000, 0.997501 - 0.069606, 0.000000, 0.000000, 0.997575 - 0.068560, 0.000000, 0.000000, 0.997647 - 0.067515, 0.000000, 0.000000, 0.997718 - 0.066470, 0.000000, 0.000000, 0.997788 - 0.065425, 0.000000, 0.000000, 0.997857 - 0.064380, 0.000000, 0.000000, 0.997925 - 0.063334, 0.000000, 0.000000, 0.997992 - 0.062289, 0.000000, 0.000000, 0.998058 - 0.061243, 0.000000, 0.000000, 0.998123 - 0.060198, 0.000000, 0.000000, 0.998186 - 0.059152, 0.000000, 0.000000, 0.998249 - 0.058106, 0.000000, 0.000000, 0.998310 - 0.057060, 0.000000, 0.000000, 0.998371 - 0.056014, 0.000000, 0.000000, 0.998430 - 0.054968, 0.000000, 0.000000, 0.998488 - 0.053922, 0.000000, 0.000000, 0.998545 - 0.052876, 0.000000, 0.000000, 0.998601 - 0.051830, 0.000000, 0.000000, 0.998656 - 0.050784, 0.000000, 0.000000, 0.998710 - 0.049738, 0.000000, 0.000000, 0.998762 - 0.048692, 0.000000, 0.000000, 0.998814 - 0.047645, 0.000000, 0.000000, 0.998864 - 0.046599, 0.000000, 0.000000, 0.998914 - 0.045553, 0.000000, 0.000000, 0.998962 - 0.044506, 0.000000, 0.000000, 0.999009 - 0.043459, 0.000000, 0.000000, 0.999055 - 0.042413, 0.000000, 0.000000, 0.999100 - 0.041366, 0.000000, 0.000000, 0.999144 - 0.040320, 0.000000, 0.000000, 0.999187 - 0.039273, 0.000000, 0.000000, 0.999229 - 0.038226, 0.000000, 0.000000, 0.999269 - 0.037179, 0.000000, 0.000000, 0.999309 - 0.036132, 0.000000, 0.000000, 0.999347 - 0.035086, 0.000000, 0.000000, 0.999384 - 0.034039, 0.000000, 0.000000, 0.999421 - 0.032992, 0.000000, 0.000000, 0.999456 - 0.031945, 0.000000, 0.000000, 0.999490 - 0.030898, 0.000000, 0.000000, 0.999523 - 0.029851, 0.000000, 0.000000, 0.999554 - 0.028804, 0.000000, 0.000000, 0.999585 - 0.027756, 0.000000, 0.000000, 0.999615 - 0.026709, 0.000000, 0.000000, 0.999643 - 0.025662, 0.000000, 0.000000, 0.999671 - 0.024615, 0.000000, 0.000000, 0.999697 - 0.023568, 0.000000, 0.000000, 0.999722 - 0.022520, 0.000000, 0.000000, 0.999746 - 0.021473, 0.000000, 0.000000, 0.999769 - 0.020426, 0.000000, 0.000000, 0.999791 - 0.019378, 0.000000, 0.000000, 0.999812 - 0.018331, 0.000000, 0.000000, 0.999832 - 0.017284, 0.000000, 0.000000, 0.999851 - 0.016236, 0.000000, 0.000000, 0.999868 - 0.015189, 0.000000, 0.000000, 0.999885 - 0.014141, 0.000000, 0.000000, 0.999900 - 0.013094, 0.000000, 0.000000, 0.999914 - 0.012046, 0.000000, 0.000000, 0.999927 - 0.010999, 0.000000, 0.000000, 0.999940 - 0.009952, 0.000000, 0.000000, 0.999950 - 0.008904, 0.000000, 0.000000, 0.999960 - 0.007857, 0.000000, 0.000000, 0.999969 - 0.006809, 0.000000, 0.000000, 0.999977 - 0.005761, 0.000000, 0.000000, 0.999983 - 0.004714, 0.000000, 0.000000, 0.999989 - 0.003666, 0.000000, 0.000000, 0.999993 - 0.002619, 0.000000, 0.000000, 0.999997 - 0.001571, 0.000000, 0.000000, 0.999999 - 0.000524, 0.000000, 0.000000, 1.000000 - -0.000524, -0.000000, 0.000000, 1.000000 - -0.001571, -0.000000, 0.000000, 0.999999 - -0.002619, -0.000000, 0.000000, 0.999997 - -0.003666, -0.000000, 0.000000, 0.999993 - -0.004714, -0.000000, 0.000000, 0.999989 - -0.005761, -0.000000, 0.000000, 0.999983 - -0.006809, -0.000000, 0.000000, 0.999977 - -0.007857, -0.000000, 0.000000, 0.999969 - -0.008904, -0.000000, 0.000000, 0.999960 - -0.009952, -0.000000, 0.000000, 0.999950 - -0.010999, -0.000000, 0.000000, 0.999940 - -0.012046, -0.000000, 0.000000, 0.999927 - -0.013094, -0.000000, 0.000000, 0.999914 - -0.014141, -0.000000, 0.000000, 0.999900 - -0.015189, -0.000000, 0.000000, 0.999885 - -0.016236, -0.000000, 0.000000, 0.999868 - -0.017284, -0.000000, 0.000000, 0.999851 - -0.018331, -0.000000, 0.000000, 0.999832 - -0.019378, -0.000000, 0.000000, 0.999812 - -0.020426, -0.000000, 0.000000, 0.999791 - -0.021473, -0.000000, 0.000000, 0.999769 - -0.022520, -0.000000, 0.000000, 0.999746 - -0.023568, -0.000000, 0.000000, 0.999722 - -0.024615, -0.000000, 0.000000, 0.999697 - -0.025662, -0.000000, 0.000000, 0.999671 - -0.026709, -0.000000, 0.000000, 0.999643 - -0.027756, -0.000000, 0.000000, 0.999615 - -0.028804, -0.000000, 0.000000, 0.999585 - -0.029851, -0.000000, 0.000000, 0.999554 - -0.030898, -0.000000, 0.000000, 0.999523 - -0.031945, -0.000000, 0.000000, 0.999490 - -0.032992, -0.000000, 0.000000, 0.999456 - -0.034039, -0.000000, 0.000000, 0.999421 - -0.035086, -0.000000, 0.000000, 0.999384 - -0.036132, -0.000000, 0.000000, 0.999347 - -0.037179, -0.000000, 0.000000, 0.999309 - -0.038226, -0.000000, 0.000000, 0.999269 - -0.039273, -0.000000, 0.000000, 0.999229 - -0.040320, -0.000000, 0.000000, 0.999187 - -0.041366, -0.000000, 0.000000, 0.999144 - -0.042413, -0.000000, 0.000000, 0.999100 - -0.043459, -0.000000, 0.000000, 0.999055 - -0.044506, -0.000000, 0.000000, 0.999009 - -0.045553, -0.000000, 0.000000, 0.998962 - -0.046599, -0.000000, 0.000000, 0.998914 - -0.047645, -0.000000, 0.000000, 0.998864 - -0.048692, -0.000000, 0.000000, 0.998814 - -0.049738, -0.000000, 0.000000, 0.998762 - -0.050784, -0.000000, 0.000000, 0.998710 - -0.051830, -0.000000, 0.000000, 0.998656 - -0.052876, -0.000000, 0.000000, 0.998601 - -0.053922, -0.000000, 0.000000, 0.998545 - -0.054968, -0.000000, 0.000000, 0.998488 - -0.056014, -0.000000, 0.000000, 0.998430 - -0.057060, -0.000000, 0.000000, 0.998371 - -0.058106, -0.000000, 0.000000, 0.998310 - -0.059152, -0.000000, 0.000000, 0.998249 - -0.060198, -0.000000, 0.000000, 0.998186 - -0.061243, -0.000000, 0.000000, 0.998123 - -0.062289, -0.000000, 0.000000, 0.998058 - -0.063334, -0.000000, 0.000000, 0.997992 - -0.064380, -0.000000, 0.000000, 0.997925 - -0.065425, -0.000000, 0.000000, 0.997857 - -0.066470, -0.000000, 0.000000, 0.997788 - -0.067515, -0.000000, 0.000000, 0.997718 - -0.068560, -0.000000, 0.000000, 0.997647 - -0.069606, -0.000000, 0.000000, 0.997575 - -0.070650, -0.000000, 0.000000, 0.997501 - -0.071695, -0.000000, 0.000000, 0.997427 - -0.072740, -0.000000, 0.000000, 0.997351 - -0.073785, -0.000000, 0.000000, 0.997274 - -0.074830, -0.000000, 0.000000, 0.997196 - -0.075874, -0.000000, 0.000000, 0.997117 - -0.076919, -0.000000, 0.000000, 0.997037 - -0.077963, -0.000000, 0.000000, 0.996956 - -0.079007, -0.000000, 0.000000, 0.996874 - -0.080052, -0.000000, 0.000000, 0.996791 - -0.081096, -0.000000, 0.000000, 0.996706 - -0.082140, -0.000000, 0.000000, 0.996621 - -0.083184, -0.000000, 0.000000, 0.996534 - -0.084228, -0.000000, 0.000000, 0.996447 - -0.085271, -0.000000, 0.000000, 0.996358 - -0.086315, -0.000000, 0.000000, 0.996268 - -0.087359, -0.000000, 0.000000, 0.996177 - -0.088402, -0.000000, 0.000000, 0.996085 - -0.089446, -0.000000, 0.000000, 0.995992 - -0.090489, -0.000000, 0.000000, 0.995897 - -0.091532, -0.000000, 0.000000, 0.995802 - -0.092575, -0.000000, 0.000000, 0.995706 - -0.093618, -0.000000, 0.000000, 0.995608 - -0.094661, -0.000000, 0.000000, 0.995510 - -0.095704, -0.000000, 0.000000, 0.995410 - -0.096747, -0.000000, 0.000000, 0.995309 - -0.097789, -0.000000, 0.000000, 0.995207 - -0.098832, -0.000000, 0.000000, 0.995104 - -0.099874, -0.000000, 0.000000, 0.995000 - -0.100916, -0.000000, 0.000000, 0.994895 - -0.101958, -0.000000, 0.000000, 0.994789 - -0.103000, -0.000000, 0.000000, 0.994681 - -0.104042, -0.000000, 0.000000, 0.994573 - -0.105084, -0.000000, 0.000000, 0.994463 - -0.106126, -0.000000, 0.000000, 0.994353 - -0.107167, -0.000000, 0.000000, 0.994241 - -0.108209, -0.000000, 0.000000, 0.994128 - -0.109250, -0.000000, 0.000000, 0.994014 - -0.110291, -0.000000, 0.000000, 0.993899 - -0.111332, -0.000000, 0.000000, 0.993783 - -0.112373, -0.000000, 0.000000, 0.993666 - -0.113414, -0.000000, 0.000000, 0.993548 - -0.114455, -0.000000, 0.000000, 0.993428 - -0.115496, -0.000000, 0.000000, 0.993308 - -0.116536, -0.000000, 0.000000, 0.993186 - -0.117576, -0.000000, 0.000000, 0.993064 - -0.118617, -0.000000, 0.000000, 0.992940 - -0.119657, -0.000000, 0.000000, 0.992815 - -0.120697, -0.000000, 0.000000, 0.992689 - -0.121736, -0.000000, 0.000000, 0.992562 - -0.122776, -0.000000, 0.000000, 0.992434 - -0.123816, -0.000000, 0.000000, 0.992305 - -0.124855, -0.000000, 0.000000, 0.992175 - -0.125894, -0.000000, 0.000000, 0.992044 - -0.126934, -0.000000, 0.000000, 0.991911 - -0.127973, -0.000000, 0.000000, 0.991778 - -0.129011, -0.000000, 0.000000, 0.991643 - -0.130050, -0.000000, 0.000000, 0.991507 - -0.131089, -0.000000, 0.000000, 0.991371 - -0.132127, -0.000000, 0.000000, 0.991233 - -0.133165, -0.000000, 0.000000, 0.991094 - -0.134204, -0.000000, 0.000000, 0.990954 - -0.135242, -0.000000, 0.000000, 0.990813 - -0.136279, -0.000000, 0.000000, 0.990670 - -0.137317, -0.000000, 0.000000, 0.990527 - -0.138355, -0.000000, 0.000000, 0.990383 - -0.139392, -0.000000, 0.000000, 0.990237 - -0.140429, -0.000000, 0.000000, 0.990091 - -0.141466, -0.000000, 0.000000, 0.989943 - -0.142503, -0.000000, 0.000000, 0.989794 - -0.143540, -0.000000, 0.000000, 0.989644 - -0.144577, -0.000000, 0.000000, 0.989494 - -0.145613, -0.000000, 0.000000, 0.989342 - -0.146650, -0.000000, 0.000000, 0.989189 - -0.147686, -0.000000, 0.000000, 0.989034 - -0.148722, -0.000000, 0.000000, 0.988879 - -0.149757, -0.000000, 0.000000, 0.988723 - -0.150793, -0.000000, 0.000000, 0.988565 - -0.151829, -0.000000, 0.000000, 0.988407 - -0.152864, -0.000000, 0.000000, 0.988247 - -0.153899, -0.000000, 0.000000, 0.988087 - -0.154934, -0.000000, 0.000000, 0.987925 - -0.155969, -0.000000, 0.000000, 0.987762 - -0.157003, -0.000000, 0.000000, 0.987598 - -0.158038, -0.000000, 0.000000, 0.987433 - -0.159072, -0.000000, 0.000000, 0.987267 - -0.160106, -0.000000, 0.000000, 0.987100 - -0.161140, -0.000000, 0.000000, 0.986932 - -0.162174, -0.000000, 0.000000, 0.986762 - -0.163208, -0.000000, 0.000000, 0.986592 - -0.164241, -0.000000, 0.000000, 0.986420 - -0.165274, -0.000000, 0.000000, 0.986248 - -0.166307, -0.000000, 0.000000, 0.986074 - -0.167340, -0.000000, 0.000000, 0.985899 - -0.168373, -0.000000, 0.000000, 0.985723 - -0.169405, -0.000000, 0.000000, 0.985546 - -0.170438, -0.000000, 0.000000, 0.985368 - -0.171470, -0.000000, 0.000000, 0.985189 - -0.172502, -0.000000, 0.000000, 0.985009 - -0.173534, -0.000000, 0.000000, 0.984828 - -0.174565, -0.000000, 0.000000, 0.984646 - -0.175596, -0.000000, 0.000000, 0.984462 - -0.176628, -0.000000, 0.000000, 0.984278 - -0.177659, -0.000000, 0.000000, 0.984092 - -0.178689, -0.000000, 0.000000, 0.983906 - -0.179720, -0.000000, 0.000000, 0.983718 - -0.180750, -0.000000, 0.000000, 0.983529 - -0.181781, -0.000000, 0.000000, 0.983339 - -0.182811, -0.000000, 0.000000, 0.983148 - -0.183840, -0.000000, 0.000000, 0.982956 - -0.184870, -0.000000, 0.000000, 0.982763 - -0.185899, -0.000000, 0.000000, 0.982569 - -0.186929, -0.000000, 0.000000, 0.982374 - -0.187958, -0.000000, 0.000000, 0.982177 - -0.188986, -0.000000, 0.000000, 0.981980 - -0.190015, -0.000000, 0.000000, 0.981781 - -0.191043, -0.000000, 0.000000, 0.981582 - -0.192071, -0.000000, 0.000000, 0.981381 - -0.193099, -0.000000, 0.000000, 0.981179 - -0.194127, -0.000000, 0.000000, 0.980976 - -0.195155, -0.000000, 0.000000, 0.980773 - -0.196182, -0.000000, 0.000000, 0.980568 - -0.197209, -0.000000, 0.000000, 0.980361 - -0.198236, -0.000000, 0.000000, 0.980154 - -0.199262, -0.000000, 0.000000, 0.979946 - -0.200289, -0.000000, 0.000000, 0.979737 - -0.201315, -0.000000, 0.000000, 0.979527 - -0.202341, -0.000000, 0.000000, 0.979315 - -0.203367, -0.000000, 0.000000, 0.979103 - -0.204392, -0.000000, 0.000000, 0.978889 - -0.205418, -0.000000, 0.000000, 0.978674 - -0.206443, -0.000000, 0.000000, 0.978459 - -0.207468, -0.000000, 0.000000, 0.978242 - -0.208492, -0.000000, 0.000000, 0.978024 - -0.209517, -0.000000, 0.000000, 0.977805 - -0.210541, -0.000000, 0.000000, 0.977585 - -0.211565, -0.000000, 0.000000, 0.977364 - -0.212589, -0.000000, 0.000000, 0.977142 - -0.213612, -0.000000, 0.000000, 0.976919 - -0.214635, -0.000000, 0.000000, 0.976694 - -0.215658, -0.000000, 0.000000, 0.976469 - -0.216681, -0.000000, 0.000000, 0.976242 - -0.217704, -0.000000, 0.000000, 0.976015 - -0.218726, -0.000000, 0.000000, 0.975786 - -0.219748, -0.000000, 0.000000, 0.975557 - -0.220770, -0.000000, 0.000000, 0.975326 - -0.221791, -0.000000, 0.000000, 0.975094 - -0.222813, -0.000000, 0.000000, 0.974861 - -0.223834, -0.000000, 0.000000, 0.974627 - -0.224855, -0.000000, 0.000000, 0.974392 - -0.225875, -0.000000, 0.000000, 0.974156 - -0.226896, -0.000000, 0.000000, 0.973919 - -0.227916, -0.000000, 0.000000, 0.973681 - -0.228936, -0.000000, 0.000000, 0.973442 - -0.229955, -0.000000, 0.000000, 0.973201 - -0.230975, -0.000000, 0.000000, 0.972960 - -0.231994, -0.000000, 0.000000, 0.972717 - -0.233012, -0.000000, 0.000000, 0.972474 - -0.234031, -0.000000, 0.000000, 0.972229 - -0.235049, -0.000000, 0.000000, 0.971983 - -0.236067, -0.000000, 0.000000, 0.971737 - -0.237085, -0.000000, 0.000000, 0.971489 - -0.238103, -0.000000, 0.000000, 0.971240 - -0.239120, -0.000000, 0.000000, 0.970990 - -0.240137, -0.000000, 0.000000, 0.970739 - -0.241154, -0.000000, 0.000000, 0.970487 - -0.242170, -0.000000, 0.000000, 0.970234 - -0.243187, -0.000000, 0.000000, 0.969980 - -0.244203, -0.000000, 0.000000, 0.969724 - -0.245218, -0.000000, 0.000000, 0.969468 - -0.246234, -0.000000, 0.000000, 0.969210 - -0.247249, -0.000000, 0.000000, 0.968952 - -0.248264, -0.000000, 0.000000, 0.968692 - -0.249278, -0.000000, 0.000000, 0.968432 - -0.250293, -0.000000, 0.000000, 0.968170 - -0.251307, -0.000000, 0.000000, 0.967907 - -0.252321, -0.000000, 0.000000, 0.967644 - -0.253334, -0.000000, 0.000000, 0.967379 - -0.254347, -0.000000, 0.000000, 0.967113 - -0.255360, -0.000000, 0.000000, 0.966846 - -0.256373, -0.000000, 0.000000, 0.966578 - -0.257385, -0.000000, 0.000000, 0.966309 - -0.258397, -0.000000, 0.000000, 0.966039 - -0.259409, -0.000000, 0.000000, 0.965767 - -0.260421, -0.000000, 0.000000, 0.965495 - -0.261432, -0.000000, 0.000000, 0.965222 - -0.262443, -0.000000, 0.000000, 0.964947 - -0.263454, -0.000000, 0.000000, 0.964672 - -0.264464, -0.000000, 0.000000, 0.964396 - -0.265474, -0.000000, 0.000000, 0.964118 - -0.266484, -0.000000, 0.000000, 0.963839 - -0.267494, -0.000000, 0.000000, 0.963560 - -0.268503, -0.000000, 0.000000, 0.963279 - -0.269512, -0.000000, 0.000000, 0.962997 - -0.270520, -0.000000, 0.000000, 0.962714 - -0.271529, -0.000000, 0.000000, 0.962430 - -0.272537, -0.000000, 0.000000, 0.962145 - -0.273544, -0.000000, 0.000000, 0.961859 - -0.274552, -0.000000, 0.000000, 0.961572 - -0.275559, -0.000000, 0.000000, 0.961284 - -0.276566, -0.000000, 0.000000, 0.960995 - -0.277572, -0.000000, 0.000000, 0.960705 - -0.278579, -0.000000, 0.000000, 0.960413 - -0.279585, -0.000000, 0.000000, 0.960121 - -0.280590, -0.000000, 0.000000, 0.959828 - -0.281595, -0.000000, 0.000000, 0.959533 - -0.282600, -0.000000, 0.000000, 0.959238 - -0.283605, -0.000000, 0.000000, 0.958941 - -0.284610, -0.000000, 0.000000, 0.958644 - -0.285614, -0.000000, 0.000000, 0.958345 - -0.286617, -0.000000, 0.000000, 0.958045 - -0.287621, -0.000000, 0.000000, 0.957744 - -0.288624, -0.000000, 0.000000, 0.957443 - -0.289627, -0.000000, 0.000000, 0.957140 - -0.290629, -0.000000, 0.000000, 0.956836 - -0.291631, -0.000000, 0.000000, 0.956531 - -0.292633, -0.000000, 0.000000, 0.956225 - -0.293635, -0.000000, 0.000000, 0.955918 - -0.294636, -0.000000, 0.000000, 0.955610 - -0.295637, -0.000000, 0.000000, 0.955300 - -0.296637, -0.000000, 0.000000, 0.954990 - -0.297638, -0.000000, 0.000000, 0.954679 - -0.298638, -0.000000, 0.000000, 0.954367 - -0.299637, -0.000000, 0.000000, 0.954053 - -0.300636, -0.000000, 0.000000, 0.953739 - -0.301635, -0.000000, 0.000000, 0.953423 - -0.302634, -0.000000, 0.000000, 0.953107 - -0.303632, -0.000000, 0.000000, 0.952789 - -0.304630, -0.000000, 0.000000, 0.952471 - -0.305628, -0.000000, 0.000000, 0.952151 - -0.306625, -0.000000, 0.000000, 0.951830 - -0.307622, -0.000000, 0.000000, 0.951509 - -0.308618, -0.000000, 0.000000, 0.951186 - -0.309615, -0.000000, 0.000000, 0.950862 - -0.310611, -0.000000, 0.000000, 0.950537 - -0.311606, -0.000000, 0.000000, 0.950211 - -0.312601, -0.000000, 0.000000, 0.949884 - -0.313596, -0.000000, 0.000000, 0.949556 - -0.314591, -0.000000, 0.000000, 0.949227 - -0.315585, -0.000000, 0.000000, 0.948897 - -0.316579, -0.000000, 0.000000, 0.948566 - -0.317572, -0.000000, 0.000000, 0.948234 - -0.318565, -0.000000, 0.000000, 0.947901 - -0.319558, -0.000000, 0.000000, 0.947567 - -0.320551, -0.000000, 0.000000, 0.947231 - -0.321543, -0.000000, 0.000000, 0.946895 - -0.322535, -0.000000, 0.000000, 0.946558 - -0.323526, -0.000000, 0.000000, 0.946219 - -0.324517, -0.000000, 0.000000, 0.945880 - -0.325508, -0.000000, 0.000000, 0.945539 - -0.326498, -0.000000, 0.000000, 0.945198 - -0.327488, -0.000000, 0.000000, 0.944855 - -0.328478, -0.000000, 0.000000, 0.944512 - -0.329467, -0.000000, 0.000000, 0.944167 - -0.330456, -0.000000, 0.000000, 0.943822 - -0.331444, -0.000000, 0.000000, 0.943475 - -0.332432, -0.000000, 0.000000, 0.943127 - -0.333420, -0.000000, 0.000000, 0.942778 - -0.334407, -0.000000, 0.000000, 0.942429 - -0.335395, -0.000000, 0.000000, 0.942078 - -0.336381, -0.000000, 0.000000, 0.941726 - -0.337368, -0.000000, 0.000000, 0.941373 - -0.338354, -0.000000, 0.000000, 0.941019 - -0.339339, -0.000000, 0.000000, 0.940664 - -0.340324, -0.000000, 0.000000, 0.940308 - -0.341309, -0.000000, 0.000000, 0.939951 - -0.342294, -0.000000, 0.000000, 0.939593 - -0.343278, -0.000000, 0.000000, 0.939234 - -0.344261, -0.000000, 0.000000, 0.938874 - -0.345245, -0.000000, 0.000000, 0.938513 - -0.346228, -0.000000, 0.000000, 0.938151 - -0.347210, -0.000000, 0.000000, 0.937787 - -0.348192, -0.000000, 0.000000, 0.937423 - -0.349174, -0.000000, 0.000000, 0.937058 - -0.350156, -0.000000, 0.000000, 0.936692 - -0.351137, -0.000000, 0.000000, 0.936324 - -0.352117, -0.000000, 0.000000, 0.935956 - -0.353098, -0.000000, 0.000000, 0.935587 - -0.354077, -0.000000, 0.000000, 0.935216 - -0.355057, -0.000000, 0.000000, 0.934845 - -0.356036, -0.000000, 0.000000, 0.934472 - -0.357015, -0.000000, 0.000000, 0.934099 - -0.357993, -0.000000, 0.000000, 0.933724 - -0.358971, -0.000000, 0.000000, 0.933349 - -0.359948, -0.000000, 0.000000, 0.932972 - -0.360926, -0.000000, 0.000000, 0.932595 - -0.361902, -0.000000, 0.000000, 0.932216 - -0.362879, -0.000000, 0.000000, 0.931836 - -0.363855, -0.000000, 0.000000, 0.931456 - -0.364830, -0.000000, 0.000000, 0.931074 - -0.365805, -0.000000, 0.000000, 0.930691 - -0.366780, -0.000000, 0.000000, 0.930308 - -0.367754, -0.000000, 0.000000, 0.929923 - -0.368728, -0.000000, 0.000000, 0.929537 - -0.369702, -0.000000, 0.000000, 0.929150 - -0.370675, -0.000000, 0.000000, 0.928763 - -0.371648, -0.000000, 0.000000, 0.928374 - -0.372620, -0.000000, 0.000000, 0.927984 - -0.373592, -0.000000, 0.000000, 0.927593 - -0.374563, -0.000000, 0.000000, 0.927201 - -0.375535, -0.000000, 0.000000, 0.926808 - -0.376505, -0.000000, 0.000000, 0.926415 - -0.377475, -0.000000, 0.000000, 0.926020 - -0.378445, -0.000000, 0.000000, 0.925624 - -0.379415, -0.000000, 0.000000, 0.925227 - -0.380384, -0.000000, 0.000000, 0.924829 - -0.381352, -0.000000, 0.000000, 0.924430 - -0.382320, -0.000000, 0.000000, 0.924030 - -0.383288, -0.000000, 0.000000, 0.923629 - -0.384256, -0.000000, 0.000000, 0.923227 - -0.385222, -0.000000, 0.000000, 0.922824 - -0.386189, -0.000000, 0.000000, 0.922420 - -0.387155, -0.000000, 0.000000, 0.922015 - -0.388121, -0.000000, 0.000000, 0.921609 - -0.389086, -0.000000, 0.000000, 0.921201 - -0.390051, -0.000000, 0.000000, 0.920793 - -0.391015, -0.000000, 0.000000, 0.920384 - -0.391979, -0.000000, 0.000000, 0.919974 - -0.392942, -0.000000, 0.000000, 0.919563 - -0.393906, -0.000000, 0.000000, 0.919151 - -0.394868, -0.000000, 0.000000, 0.918738 - -0.395830, -0.000000, 0.000000, 0.918324 - -0.396792, -0.000000, 0.000000, 0.917908 - -0.397753, -0.000000, 0.000000, 0.917492 - -0.398714, -0.000000, 0.000000, 0.917075 - -0.399675, -0.000000, 0.000000, 0.916657 - -0.400635, -0.000000, 0.000000, 0.916238 - -0.401594, -0.000000, 0.000000, 0.915818 - -0.402554, -0.000000, 0.000000, 0.915396 - -0.403512, -0.000000, 0.000000, 0.914974 - -0.404471, -0.000000, 0.000000, 0.914551 - -0.405428, -0.000000, 0.000000, 0.914127 - -0.406386, -0.000000, 0.000000, 0.913702 - -0.407343, -0.000000, 0.000000, 0.913275 - -0.408299, -0.000000, 0.000000, 0.912848 - -0.409255, -0.000000, 0.000000, 0.912420 - -0.410211, -0.000000, 0.000000, 0.911991 - -0.411166, -0.000000, 0.000000, 0.911561 - -0.412121, -0.000000, 0.000000, 0.911129 - -0.413075, -0.000000, 0.000000, 0.910697 - -0.414029, -0.000000, 0.000000, 0.910264 - -0.414982, -0.000000, 0.000000, 0.909830 - -0.415935, -0.000000, 0.000000, 0.909394 - -0.416887, -0.000000, 0.000000, 0.908958 - -0.417839, -0.000000, 0.000000, 0.908521 - -0.418791, -0.000000, 0.000000, 0.908083 - -0.419742, -0.000000, 0.000000, 0.907644 - -0.420692, -0.000000, 0.000000, 0.907203 - -0.421642, -0.000000, 0.000000, 0.906762 - -0.422592, -0.000000, 0.000000, 0.906320 - -0.423541, -0.000000, 0.000000, 0.905877 - -0.424490, -0.000000, 0.000000, 0.905433 - -0.425438, -0.000000, 0.000000, 0.904988 - -0.426386, -0.000000, 0.000000, 0.904541 - -0.427333, -0.000000, 0.000000, 0.904094 - -0.428280, -0.000000, 0.000000, 0.903646 - -0.429226, -0.000000, 0.000000, 0.903197 - -0.430172, -0.000000, 0.000000, 0.902747 - -0.431118, -0.000000, 0.000000, 0.902296 - -0.432063, -0.000000, 0.000000, 0.901844 - -0.433007, -0.000000, 0.000000, 0.901390 - -0.433951, -0.000000, 0.000000, 0.900936 - -0.434895, -0.000000, 0.000000, 0.900481 - -0.435838, -0.000000, 0.000000, 0.900025 - -0.436780, -0.000000, 0.000000, 0.899568 - -0.437722, -0.000000, 0.000000, 0.899110 - -0.438664, -0.000000, 0.000000, 0.898651 - -0.439605, -0.000000, 0.000000, 0.898191 - -0.440546, -0.000000, 0.000000, 0.897730 - -0.441486, -0.000000, 0.000000, 0.897268 - -0.442426, -0.000000, 0.000000, 0.896805 - -0.443365, -0.000000, 0.000000, 0.896341 - -0.444304, -0.000000, 0.000000, 0.895876 - -0.445242, -0.000000, 0.000000, 0.895410 - -0.446180, -0.000000, 0.000000, 0.894943 - -0.447117, -0.000000, 0.000000, 0.894476 - -0.448054, -0.000000, 0.000000, 0.894007 - -0.448990, -0.000000, 0.000000, 0.893537 - -0.449926, -0.000000, 0.000000, 0.893066 - -0.450861, -0.000000, 0.000000, 0.892594 - -0.451796, -0.000000, 0.000000, 0.892121 - -0.452730, -0.000000, 0.000000, 0.891648 - -0.453664, -0.000000, 0.000000, 0.891173 - -0.454597, -0.000000, 0.000000, 0.890697 - -0.455530, -0.000000, 0.000000, 0.890220 - -0.456462, -0.000000, 0.000000, 0.889743 - -0.457394, -0.000000, 0.000000, 0.889264 - -0.458325, -0.000000, 0.000000, 0.888785 - -0.459256, -0.000000, 0.000000, 0.888304 - -0.460186, -0.000000, 0.000000, 0.887822 - -0.461116, -0.000000, 0.000000, 0.887340 - -0.462045, -0.000000, 0.000000, 0.886856 - -0.462974, -0.000000, 0.000000, 0.886372 - -0.463902, -0.000000, 0.000000, 0.885886 - -0.464830, -0.000000, 0.000000, 0.885400 - -0.465757, -0.000000, 0.000000, 0.884912 - -0.466684, -0.000000, 0.000000, 0.884424 - -0.467610, -0.000000, 0.000000, 0.883935 - -0.468536, -0.000000, 0.000000, 0.883444 - -0.469461, -0.000000, 0.000000, 0.882953 - -0.470386, -0.000000, 0.000000, 0.882461 - -0.471310, -0.000000, 0.000000, 0.881968 - -0.472234, -0.000000, 0.000000, 0.881473 - -0.473157, -0.000000, 0.000000, 0.880978 - -0.474079, -0.000000, 0.000000, 0.880482 - -0.475002, -0.000000, 0.000000, 0.879985 - -0.475923, -0.000000, 0.000000, 0.879487 - -0.476844, -0.000000, 0.000000, 0.878988 - -0.477765, -0.000000, 0.000000, 0.878488 - -0.478685, -0.000000, 0.000000, 0.877987 - -0.479604, -0.000000, 0.000000, 0.877485 - -0.480523, -0.000000, 0.000000, 0.876982 - -0.481442, -0.000000, 0.000000, 0.876478 - -0.482359, -0.000000, 0.000000, 0.875973 - -0.483277, -0.000000, 0.000000, 0.875468 - -0.484194, -0.000000, 0.000000, 0.874961 - -0.485110, -0.000000, 0.000000, 0.874453 - -0.486026, -0.000000, 0.000000, 0.873945 - -0.486941, -0.000000, 0.000000, 0.873435 - -0.487856, -0.000000, 0.000000, 0.872924 - -0.488770, -0.000000, 0.000000, 0.872413 - -0.489683, -0.000000, 0.000000, 0.871900 - -0.490596, -0.000000, 0.000000, 0.871387 - -0.491509, -0.000000, 0.000000, 0.870872 - -0.492421, -0.000000, 0.000000, 0.870357 - -0.493332, -0.000000, 0.000000, 0.869841 - -0.494243, -0.000000, 0.000000, 0.869324 - -0.495154, -0.000000, 0.000000, 0.868805 - -0.496064, -0.000000, 0.000000, 0.868286 - -0.496973, -0.000000, 0.000000, 0.867766 - -0.497882, -0.000000, 0.000000, 0.867245 - -0.498790, -0.000000, 0.000000, 0.866723 - -0.499698, -0.000000, 0.000000, 0.866200 - -0.500605, -0.000000, 0.000000, 0.865676 - -0.501511, -0.000000, 0.000000, 0.865151 - -0.502417, -0.000000, 0.000000, 0.864625 - -0.503323, -0.000000, 0.000000, 0.864099 - -0.504228, -0.000000, 0.000000, 0.863571 - -0.505132, -0.000000, 0.000000, 0.863042 - -0.506036, -0.000000, 0.000000, 0.862512 - -0.506939, -0.000000, 0.000000, 0.861982 - -0.507842, -0.000000, 0.000000, 0.861450 - -0.508744, -0.000000, 0.000000, 0.860918 - -0.509645, -0.000000, 0.000000, 0.860385 - -0.510546, -0.000000, 0.000000, 0.859850 - -0.511447, -0.000000, 0.000000, 0.859315 - -0.512347, -0.000000, 0.000000, 0.858779 - -0.513246, -0.000000, 0.000000, 0.858241 - -0.514145, -0.000000, 0.000000, 0.857703 - -0.515043, -0.000000, 0.000000, 0.857164 - -0.515941, -0.000000, 0.000000, 0.856624 - -0.516838, -0.000000, 0.000000, 0.856083 - -0.517734, -0.000000, 0.000000, 0.855541 - -0.518630, -0.000000, 0.000000, 0.854999 - -0.519526, -0.000000, 0.000000, 0.854455 - -0.520420, -0.000000, 0.000000, 0.853910 - -0.521315, -0.000000, 0.000000, 0.853365 - -0.522208, -0.000000, 0.000000, 0.852818 - -0.523101, -0.000000, 0.000000, 0.852270 - -0.523994, -0.000000, 0.000000, 0.851722 - -0.524886, -0.000000, 0.000000, 0.851173 - -0.525777, -0.000000, 0.000000, 0.850622 - -0.526668, -0.000000, 0.000000, 0.850071 - -0.527558, -0.000000, 0.000000, 0.849519 - -0.528448, -0.000000, 0.000000, 0.848966 - -0.529337, -0.000000, 0.000000, 0.848412 - -0.530225, -0.000000, 0.000000, 0.847857 - -0.531113, -0.000000, 0.000000, 0.847301 - -0.532000, -0.000000, 0.000000, 0.846744 - -0.532887, -0.000000, 0.000000, 0.846186 - -0.533773, -0.000000, 0.000000, 0.845628 - -0.534659, -0.000000, 0.000000, 0.845068 - -0.535544, -0.000000, 0.000000, 0.844507 - -0.536428, -0.000000, 0.000000, 0.843946 - -0.537312, -0.000000, 0.000000, 0.843384 - -0.538195, -0.000000, 0.000000, 0.842820 - -0.539078, -0.000000, 0.000000, 0.842256 - -0.539960, -0.000000, 0.000000, 0.841691 - -0.540841, -0.000000, 0.000000, 0.841125 - -0.541722, -0.000000, 0.000000, 0.840558 - -0.542602, -0.000000, 0.000000, 0.839990 - -0.543482, -0.000000, 0.000000, 0.839421 - -0.544361, -0.000000, 0.000000, 0.838851 - -0.545239, -0.000000, 0.000000, 0.838280 - -0.546117, -0.000000, 0.000000, 0.837709 - -0.546994, -0.000000, 0.000000, 0.837136 - -0.547871, -0.000000, 0.000000, 0.836563 - -0.548747, -0.000000, 0.000000, 0.835988 - -0.549622, -0.000000, 0.000000, 0.835413 - -0.550497, -0.000000, 0.000000, 0.834837 - -0.551371, -0.000000, 0.000000, 0.834260 - -0.552245, -0.000000, 0.000000, 0.833682 - -0.553118, -0.000000, 0.000000, 0.833103 - -0.553991, -0.000000, 0.000000, 0.832523 - -0.554862, -0.000000, 0.000000, 0.831942 - -0.555734, -0.000000, 0.000000, 0.831360 - -0.556604, -0.000000, 0.000000, 0.830778 - -0.557474, -0.000000, 0.000000, 0.830194 - -0.558343, -0.000000, 0.000000, 0.829610 - -0.559212, -0.000000, 0.000000, 0.829025 - -0.560080, -0.000000, 0.000000, 0.828438 - -0.560948, -0.000000, 0.000000, 0.827851 - -0.561815, -0.000000, 0.000000, 0.827263 - -0.562681, -0.000000, 0.000000, 0.826674 - -0.563547, -0.000000, 0.000000, 0.826084 - -0.564412, -0.000000, 0.000000, 0.825493 - -0.565276, -0.000000, 0.000000, 0.824902 - -0.566140, -0.000000, 0.000000, 0.824309 - -0.567003, -0.000000, 0.000000, 0.823716 - -0.567866, -0.000000, 0.000000, 0.823121 - -0.568728, -0.000000, 0.000000, 0.822526 - -0.569589, -0.000000, 0.000000, 0.821930 - -0.570450, -0.000000, 0.000000, 0.821333 - -0.571310, -0.000000, 0.000000, 0.820734 - -0.572169, -0.000000, 0.000000, 0.820136 - -0.573028, -0.000000, 0.000000, 0.819536 - -0.573886, -0.000000, 0.000000, 0.818935 - -0.574744, -0.000000, 0.000000, 0.818333 - -0.575601, -0.000000, 0.000000, 0.817731 - -0.576457, -0.000000, 0.000000, 0.817127 - -0.577313, -0.000000, 0.000000, 0.816523 - -0.578168, -0.000000, 0.000000, 0.815918 - -0.579022, -0.000000, 0.000000, 0.815312 - -0.579876, -0.000000, 0.000000, 0.814705 - -0.580729, -0.000000, 0.000000, 0.814097 - -0.581581, -0.000000, 0.000000, 0.813488 - -0.582433, -0.000000, 0.000000, 0.812878 - -0.583285, -0.000000, 0.000000, 0.812268 - -0.584135, -0.000000, 0.000000, 0.811656 - -0.584985, -0.000000, 0.000000, 0.811044 - -0.585834, -0.000000, 0.000000, 0.810431 - -0.586683, -0.000000, 0.000000, 0.809817 - -0.587531, -0.000000, 0.000000, 0.809202 - -0.588378, -0.000000, 0.000000, 0.808586 - -0.589225, -0.000000, 0.000000, 0.807969 - -0.590071, -0.000000, 0.000000, 0.807351 - -0.590917, -0.000000, 0.000000, 0.806733 - -0.591761, -0.000000, 0.000000, 0.806113 - -0.592605, -0.000000, 0.000000, 0.805493 - -0.593449, -0.000000, 0.000000, 0.804872 - -0.594292, -0.000000, 0.000000, 0.804250 - -0.595134, -0.000000, 0.000000, 0.803627 - -0.595975, -0.000000, 0.000000, 0.803003 - -0.596816, -0.000000, 0.000000, 0.802378 - -0.597656, -0.000000, 0.000000, 0.801752 - -0.598496, -0.000000, 0.000000, 0.801126 - -0.599335, -0.000000, 0.000000, 0.800498 - -0.600173, -0.000000, 0.000000, 0.799870 - -0.601011, -0.000000, 0.000000, 0.799241 - -0.601848, -0.000000, 0.000000, 0.798611 - -0.602684, -0.000000, 0.000000, 0.797980 - -0.603519, -0.000000, 0.000000, 0.797348 - -0.604354, -0.000000, 0.000000, 0.796716 - -0.605189, -0.000000, 0.000000, 0.796082 - -0.606022, -0.000000, 0.000000, 0.795448 - -0.606855, -0.000000, 0.000000, 0.794812 - -0.607687, -0.000000, 0.000000, 0.794176 - -0.608519, -0.000000, 0.000000, 0.793539 - -0.609350, -0.000000, 0.000000, 0.792901 - -0.610180, -0.000000, 0.000000, 0.792263 - -0.611010, -0.000000, 0.000000, 0.791623 - -0.611839, -0.000000, 0.000000, 0.790983 - -0.612667, -0.000000, 0.000000, 0.790341 - -0.613495, -0.000000, 0.000000, 0.789699 - -0.614321, -0.000000, 0.000000, 0.789056 - -0.615148, -0.000000, 0.000000, 0.788412 - -0.615973, -0.000000, 0.000000, 0.787767 - -0.616798, -0.000000, 0.000000, 0.787121 - -0.617622, -0.000000, 0.000000, 0.786475 - -0.618446, -0.000000, 0.000000, 0.785827 - -0.619269, -0.000000, 0.000000, 0.785179 - -0.620091, -0.000000, 0.000000, 0.784530 - -0.620912, -0.000000, 0.000000, 0.783880 - -0.621733, -0.000000, 0.000000, 0.783229 - -0.622553, -0.000000, 0.000000, 0.782577 - -0.623373, -0.000000, 0.000000, 0.781925 - -0.624192, -0.000000, 0.000000, 0.781271 - -0.625010, -0.000000, 0.000000, 0.780617 - -0.625827, -0.000000, 0.000000, 0.779962 - -0.626644, -0.000000, 0.000000, 0.779306 - -0.627460, -0.000000, 0.000000, 0.778649 - -0.628275, -0.000000, 0.000000, 0.777991 - -0.629090, -0.000000, 0.000000, 0.777333 - -0.629904, -0.000000, 0.000000, 0.776673 - -0.630717, -0.000000, 0.000000, 0.776013 - -0.631529, -0.000000, 0.000000, 0.775352 - -0.632341, -0.000000, 0.000000, 0.774690 - -0.633153, -0.000000, 0.000000, 0.774027 - -0.633963, -0.000000, 0.000000, 0.773363 - -0.634773, -0.000000, 0.000000, 0.772699 - -0.635582, -0.000000, 0.000000, 0.772033 - -0.636390, -0.000000, 0.000000, 0.771367 - -0.637198, -0.000000, 0.000000, 0.770700 - -0.638005, -0.000000, 0.000000, 0.770032 - -0.638811, -0.000000, 0.000000, 0.769363 - -0.639617, -0.000000, 0.000000, 0.768694 - -0.640422, -0.000000, 0.000000, 0.768023 - -0.641226, -0.000000, 0.000000, 0.767352 - -0.642029, -0.000000, 0.000000, 0.766680 - -0.642832, -0.000000, 0.000000, 0.766007 - -0.643634, -0.000000, 0.000000, 0.765333 - -0.644436, -0.000000, 0.000000, 0.764659 - -0.645236, -0.000000, 0.000000, 0.763983 - -0.646036, -0.000000, 0.000000, 0.763307 - -0.646835, -0.000000, 0.000000, 0.762630 - -0.647634, -0.000000, 0.000000, 0.761952 - -0.648432, -0.000000, 0.000000, 0.761273 - -0.649229, -0.000000, 0.000000, 0.760593 - -0.650025, -0.000000, 0.000000, 0.759913 - -0.650821, -0.000000, 0.000000, 0.759231 - -0.651616, -0.000000, 0.000000, 0.758549 - -0.652410, -0.000000, 0.000000, 0.757866 - -0.653204, -0.000000, 0.000000, 0.757182 - -0.653997, -0.000000, 0.000000, 0.756497 - -0.654789, -0.000000, 0.000000, 0.755812 - -0.655580, -0.000000, 0.000000, 0.755126 - -0.656371, -0.000000, 0.000000, 0.754438 - -0.657161, -0.000000, 0.000000, 0.753750 - -0.657950, -0.000000, 0.000000, 0.753062 - -0.658739, -0.000000, 0.000000, 0.752372 - -0.659526, -0.000000, 0.000000, 0.751682 - -0.660313, -0.000000, 0.000000, 0.750990 - -0.661100, -0.000000, 0.000000, 0.750298 - -0.661885, -0.000000, 0.000000, 0.749605 - -0.662670, -0.000000, 0.000000, 0.748911 - -0.663454, -0.000000, 0.000000, 0.748217 - -0.664238, -0.000000, 0.000000, 0.747521 - -0.665020, -0.000000, 0.000000, 0.746825 - -0.665802, -0.000000, 0.000000, 0.746128 - -0.666584, -0.000000, 0.000000, 0.745430 - -0.667364, -0.000000, 0.000000, 0.744732 - -0.668144, -0.000000, 0.000000, 0.744032 - -0.668923, -0.000000, 0.000000, 0.743332 - -0.669701, -0.000000, 0.000000, 0.742631 - -0.670479, -0.000000, 0.000000, 0.741929 - -0.671256, -0.000000, 0.000000, 0.741226 - -0.672032, -0.000000, 0.000000, 0.740522 - -0.672807, -0.000000, 0.000000, 0.739818 - -0.673582, -0.000000, 0.000000, 0.739113 - -0.674356, -0.000000, 0.000000, 0.738407 - -0.675129, -0.000000, 0.000000, 0.737700 - -0.675901, -0.000000, 0.000000, 0.736992 - -0.676673, -0.000000, 0.000000, 0.736284 - -0.677444, -0.000000, 0.000000, 0.735575 - -0.678214, -0.000000, 0.000000, 0.734864 - -0.678983, -0.000000, 0.000000, 0.734154 - -0.679752, -0.000000, 0.000000, 0.733442 - -0.680520, -0.000000, 0.000000, 0.732729 - -0.681287, -0.000000, 0.000000, 0.732016 - -0.682054, -0.000000, 0.000000, 0.731302 - -0.682819, -0.000000, 0.000000, 0.730587 - -0.683584, -0.000000, 0.000000, 0.729872 - -0.684349, -0.000000, 0.000000, 0.729155 - -0.685112, -0.000000, 0.000000, 0.728438 - -0.685875, -0.000000, 0.000000, 0.727720 - -0.686637, -0.000000, 0.000000, 0.727001 - -0.687398, -0.000000, 0.000000, 0.726281 - -0.688158, -0.000000, 0.000000, 0.725561 - -0.688918, -0.000000, 0.000000, 0.724839 - -0.689677, -0.000000, 0.000000, 0.724117 - -0.690435, -0.000000, 0.000000, 0.723394 - -0.691192, -0.000000, 0.000000, 0.722671 - -0.691949, -0.000000, 0.000000, 0.721946 - -0.692705, -0.000000, 0.000000, 0.721221 - -0.693460, -0.000000, 0.000000, 0.720495 - -0.694214, -0.000000, 0.000000, 0.719768 - -0.694968, -0.000000, 0.000000, 0.719041 - -0.695721, -0.000000, 0.000000, 0.718312 - -0.696473, -0.000000, 0.000000, 0.717583 - -0.697224, -0.000000, 0.000000, 0.716853 - -0.697975, -0.000000, 0.000000, 0.716122 - -0.698725, -0.000000, 0.000000, 0.715391 - -0.699474, -0.000000, 0.000000, 0.714658 - -0.700222, -0.000000, 0.000000, 0.713925 - -0.700969, -0.000000, 0.000000, 0.713191 - -0.701716, -0.000000, 0.000000, 0.712457 - -0.702462, -0.000000, 0.000000, 0.711721 - -0.703207, -0.000000, 0.000000, 0.710985 - -0.703952, -0.000000, 0.000000, 0.710248 - -0.704695, -0.000000, 0.000000, 0.709510 - -0.705438, -0.000000, 0.000000, 0.708771 - -0.706180, -0.000000, 0.000000, 0.708032 - -0.706922, -0.000000, 0.000000, 0.707292 - -0.707662, -0.000000, 0.000000, 0.706551 - -0.708402, -0.000000, 0.000000, 0.705809 - -0.709141, -0.000000, 0.000000, 0.705067 - -0.709879, -0.000000, 0.000000, 0.704324 - -0.710616, -0.000000, 0.000000, 0.703580 - -0.711353, -0.000000, 0.000000, 0.702835 - -0.712089, -0.000000, 0.000000, 0.702089 - -0.712824, -0.000000, 0.000000, 0.701343 - -0.713558, -0.000000, 0.000000, 0.700596 - -0.714292, -0.000000, 0.000000, 0.699848 - -0.715025, -0.000000, 0.000000, 0.699099 - -0.715757, -0.000000, 0.000000, 0.698350 - -0.716488, -0.000000, 0.000000, 0.697600 - -0.717218, -0.000000, 0.000000, 0.696849 - -0.717948, -0.000000, 0.000000, 0.696097 - -0.718676, -0.000000, 0.000000, 0.695345 - -0.719404, -0.000000, 0.000000, 0.694591 - -0.720132, -0.000000, 0.000000, 0.693837 - -0.720858, -0.000000, 0.000000, 0.693083 - -0.721584, -0.000000, 0.000000, 0.692327 - -0.722309, -0.000000, 0.000000, 0.691571 - -0.723033, -0.000000, 0.000000, 0.690814 - -0.723756, -0.000000, 0.000000, 0.690056 - -0.724478, -0.000000, 0.000000, 0.689297 - -0.725200, -0.000000, 0.000000, 0.688538 - -0.725921, -0.000000, 0.000000, 0.687778 - -0.726641, -0.000000, 0.000000, 0.687017 - -0.727360, -0.000000, 0.000000, 0.686256 - -0.728079, -0.000000, 0.000000, 0.685493 - -0.728797, -0.000000, 0.000000, 0.684730 - -0.729513, -0.000000, 0.000000, 0.683967 - -0.730229, -0.000000, 0.000000, 0.683202 - -0.730945, -0.000000, 0.000000, 0.682437 - -0.731659, -0.000000, 0.000000, 0.681671 - -0.732373, -0.000000, 0.000000, 0.680904 - -0.733086, -0.000000, 0.000000, 0.680136 - -0.733798, -0.000000, 0.000000, 0.679368 - -0.734509, -0.000000, 0.000000, 0.678599 - -0.735220, -0.000000, 0.000000, 0.677829 - -0.735929, -0.000000, 0.000000, 0.677058 - -0.736638, -0.000000, 0.000000, 0.676287 - -0.737346, -0.000000, 0.000000, 0.675515 - -0.738053, -0.000000, 0.000000, 0.674742 - -0.738760, -0.000000, 0.000000, 0.673969 - -0.739465, -0.000000, 0.000000, 0.673195 - -0.740170, -0.000000, 0.000000, 0.672420 - -0.740874, -0.000000, 0.000000, 0.671644 - -0.741577, -0.000000, 0.000000, 0.670867 - -0.742280, -0.000000, 0.000000, 0.670090 - -0.742981, -0.000000, 0.000000, 0.669312 - -0.743682, -0.000000, 0.000000, 0.668534 - -0.744382, -0.000000, 0.000000, 0.667754 - -0.745081, -0.000000, 0.000000, 0.666974 - -0.745779, -0.000000, 0.000000, 0.666193 - -0.746477, -0.000000, 0.000000, 0.665412 - -0.747173, -0.000000, 0.000000, 0.664629 - -0.747869, -0.000000, 0.000000, 0.663846 - -0.748564, -0.000000, 0.000000, 0.663062 - -0.749258, -0.000000, 0.000000, 0.662278 - -0.749952, -0.000000, 0.000000, 0.661493 - -0.750644, -0.000000, 0.000000, 0.660707 - -0.751336, -0.000000, 0.000000, 0.659920 - -0.752027, -0.000000, 0.000000, 0.659132 - -0.752717, -0.000000, 0.000000, 0.658344 - -0.753406, -0.000000, 0.000000, 0.657555 - -0.754095, -0.000000, 0.000000, 0.656766 - -0.754782, -0.000000, 0.000000, 0.655976 - -0.755469, -0.000000, 0.000000, 0.655185 - -0.756155, -0.000000, 0.000000, 0.654393 - -0.756840, -0.000000, 0.000000, 0.653600 - -0.757524, -0.000000, 0.000000, 0.652807 - -0.758208, -0.000000, 0.000000, 0.652013 - -0.758890, -0.000000, 0.000000, 0.651219 - -0.759572, -0.000000, 0.000000, 0.650423 - -0.760253, -0.000000, 0.000000, 0.649627 - -0.760933, -0.000000, 0.000000, 0.648830 - -0.761612, -0.000000, 0.000000, 0.648033 - -0.762291, -0.000000, 0.000000, 0.647235 - -0.762968, -0.000000, 0.000000, 0.646436 - -0.763645, -0.000000, 0.000000, 0.645636 - -0.764321, -0.000000, 0.000000, 0.644836 - -0.764996, -0.000000, 0.000000, 0.644035 - -0.765670, -0.000000, 0.000000, 0.643233 - -0.766344, -0.000000, 0.000000, 0.642431 - -0.767016, -0.000000, 0.000000, 0.641628 - -0.767688, -0.000000, 0.000000, 0.640824 - -0.768359, -0.000000, 0.000000, 0.640019 - -0.769029, -0.000000, 0.000000, 0.639214 - -0.769698, -0.000000, 0.000000, 0.638408 - -0.770366, -0.000000, 0.000000, 0.637602 - -0.771034, -0.000000, 0.000000, 0.636794 - -0.771700, -0.000000, 0.000000, 0.635986 - -0.772366, -0.000000, 0.000000, 0.635177 - -0.773031, -0.000000, 0.000000, 0.634368 - -0.773695, -0.000000, 0.000000, 0.633558 - -0.774359, -0.000000, 0.000000, 0.632747 - -0.775021, -0.000000, 0.000000, 0.631935 - -0.775683, -0.000000, 0.000000, 0.631123 - -0.776343, -0.000000, 0.000000, 0.630310 - -0.777003, -0.000000, 0.000000, 0.629497 - -0.777662, -0.000000, 0.000000, 0.628682 - -0.778320, -0.000000, 0.000000, 0.627867 - -0.778978, -0.000000, 0.000000, 0.627052 - -0.779634, -0.000000, 0.000000, 0.626235 - -0.780290, -0.000000, 0.000000, 0.625418 - -0.780944, -0.000000, 0.000000, 0.624601 - -0.781598, -0.000000, 0.000000, 0.623782 - -0.782251, -0.000000, 0.000000, 0.622963 - -0.782903, -0.000000, 0.000000, 0.622143 - -0.783555, -0.000000, 0.000000, 0.621323 - -0.784205, -0.000000, 0.000000, 0.620502 - -0.784855, -0.000000, 0.000000, 0.619680 - -0.785503, -0.000000, 0.000000, 0.618857 - -0.786151, -0.000000, 0.000000, 0.618034 - -0.786798, -0.000000, 0.000000, 0.617210 - -0.787444, -0.000000, 0.000000, 0.616386 - -0.788090, -0.000000, 0.000000, 0.615561 - -0.788734, -0.000000, 0.000000, 0.614735 - -0.789377, -0.000000, 0.000000, 0.613908 - -0.790020, -0.000000, 0.000000, 0.613081 - -0.790662, -0.000000, 0.000000, 0.612253 - -0.791303, -0.000000, 0.000000, 0.611424 - -0.791943, -0.000000, 0.000000, 0.610595 - -0.792582, -0.000000, 0.000000, 0.609765 - -0.793220, -0.000000, 0.000000, 0.608935 - -0.793858, -0.000000, 0.000000, 0.608103 - -0.794494, -0.000000, 0.000000, 0.607271 - -0.795130, -0.000000, 0.000000, 0.606439 - -0.795765, -0.000000, 0.000000, 0.605605 - -0.796399, -0.000000, 0.000000, 0.604772 - -0.797032, -0.000000, 0.000000, 0.603937 - -0.797664, -0.000000, 0.000000, 0.603102 - -0.798296, -0.000000, 0.000000, 0.602266 - -0.798926, -0.000000, 0.000000, 0.601429 - -0.799556, -0.000000, 0.000000, 0.600592 - -0.800184, -0.000000, 0.000000, 0.599754 - -0.800812, -0.000000, 0.000000, 0.598915 - -0.801439, -0.000000, 0.000000, 0.598076 - -0.802065, -0.000000, 0.000000, 0.597236 - -0.802690, -0.000000, 0.000000, 0.596396 - -0.803315, -0.000000, 0.000000, 0.595555 - -0.803938, -0.000000, 0.000000, 0.594713 - -0.804561, -0.000000, 0.000000, 0.593870 - -0.805182, -0.000000, 0.000000, 0.593027 - -0.805803, -0.000000, 0.000000, 0.592183 - -0.806423, -0.000000, 0.000000, 0.591339 - -0.807042, -0.000000, 0.000000, 0.590494 - -0.807660, -0.000000, 0.000000, 0.589648 - -0.808277, -0.000000, 0.000000, 0.588802 - -0.808894, -0.000000, 0.000000, 0.587955 - -0.809509, -0.000000, 0.000000, 0.587107 - -0.810124, -0.000000, 0.000000, 0.586259 - -0.810738, -0.000000, 0.000000, 0.585410 - -0.811350, -0.000000, 0.000000, 0.584560 - -0.811962, -0.000000, 0.000000, 0.583710 - -0.812573, -0.000000, 0.000000, 0.582859 - -0.813183, -0.000000, 0.000000, 0.582008 - -0.813793, -0.000000, 0.000000, 0.581155 - -0.814401, -0.000000, 0.000000, 0.580303 - -0.815008, -0.000000, 0.000000, 0.579449 - -0.815615, -0.000000, 0.000000, 0.578595 - -0.816221, -0.000000, 0.000000, 0.577740 - -0.816825, -0.000000, 0.000000, 0.576885 - -0.817429, -0.000000, 0.000000, 0.576029 - -0.818032, -0.000000, 0.000000, 0.575172 - -0.818634, -0.000000, 0.000000, 0.574315 - -0.819235, -0.000000, 0.000000, 0.573457 - -0.819836, -0.000000, 0.000000, 0.572599 - -0.820435, -0.000000, 0.000000, 0.571740 - -0.821034, -0.000000, 0.000000, 0.570880 - -0.821631, -0.000000, 0.000000, 0.570019 - -0.822228, -0.000000, 0.000000, 0.569158 - -0.822824, -0.000000, 0.000000, 0.568297 - -0.823418, -0.000000, 0.000000, 0.567435 - -0.824012, -0.000000, 0.000000, 0.566572 - -0.824606, -0.000000, 0.000000, 0.565708 - -0.825198, -0.000000, 0.000000, 0.564844 - -0.825789, -0.000000, 0.000000, 0.563979 - -0.826379, -0.000000, 0.000000, 0.563114 - -0.826969, -0.000000, 0.000000, 0.562248 - -0.827557, -0.000000, 0.000000, 0.561381 - -0.828145, -0.000000, 0.000000, 0.560514 - -0.828732, -0.000000, 0.000000, 0.559646 - -0.829317, -0.000000, 0.000000, 0.558778 - -0.829902, -0.000000, 0.000000, 0.557909 - -0.830486, -0.000000, 0.000000, 0.557039 - -0.831069, -0.000000, 0.000000, 0.556169 - -0.831651, -0.000000, 0.000000, 0.555298 - -0.832233, -0.000000, 0.000000, 0.554427 - -0.832813, -0.000000, 0.000000, 0.553554 - -0.833392, -0.000000, 0.000000, 0.552682 - -0.833971, -0.000000, 0.000000, 0.551808 - -0.834549, -0.000000, 0.000000, 0.550934 - -0.835125, -0.000000, 0.000000, 0.550060 - -0.835701, -0.000000, 0.000000, 0.549185 - -0.836276, -0.000000, 0.000000, 0.548309 - -0.836850, -0.000000, 0.000000, 0.547433 - -0.837423, -0.000000, 0.000000, 0.546556 - -0.837995, -0.000000, 0.000000, 0.545678 - -0.838566, -0.000000, 0.000000, 0.544800 - -0.839136, -0.000000, 0.000000, 0.543921 - -0.839706, -0.000000, 0.000000, 0.543042 - -0.840274, -0.000000, 0.000000, 0.542162 - -0.840841, -0.000000, 0.000000, 0.541282 - -0.841408, -0.000000, 0.000000, 0.540400 - -0.841974, -0.000000, 0.000000, 0.539519 - -0.842538, -0.000000, 0.000000, 0.538636 - -0.843102, -0.000000, 0.000000, 0.537754 - -0.843665, -0.000000, 0.000000, 0.536870 - -0.844227, -0.000000, 0.000000, 0.535986 - -0.844788, -0.000000, 0.000000, 0.535101 - -0.845348, -0.000000, 0.000000, 0.534216 - -0.845907, -0.000000, 0.000000, 0.533330 - -0.846465, -0.000000, 0.000000, 0.532444 - -0.847023, -0.000000, 0.000000, 0.531557 - -0.847579, -0.000000, 0.000000, 0.530669 - -0.848134, -0.000000, 0.000000, 0.529781 - -0.848689, -0.000000, 0.000000, 0.528892 - -0.849243, -0.000000, 0.000000, 0.528003 - -0.849795, -0.000000, 0.000000, 0.527113 - -0.850347, -0.000000, 0.000000, 0.526223 - -0.850898, -0.000000, 0.000000, 0.525332 - -0.851447, -0.000000, 0.000000, 0.524440 - -0.851996, -0.000000, 0.000000, 0.523548 - -0.852544, -0.000000, 0.000000, 0.522655 - -0.853091, -0.000000, 0.000000, 0.521761 - -0.853638, -0.000000, 0.000000, 0.520868 - -0.854183, -0.000000, 0.000000, 0.519973 - -0.854727, -0.000000, 0.000000, 0.519078 - -0.855270, -0.000000, 0.000000, 0.518182 - -0.855813, -0.000000, 0.000000, 0.517286 - -0.856354, -0.000000, 0.000000, 0.516389 - -0.856894, -0.000000, 0.000000, 0.515492 - -0.857434, -0.000000, 0.000000, 0.514594 - -0.857973, -0.000000, 0.000000, 0.513696 - -0.858510, -0.000000, 0.000000, 0.512797 - -0.859047, -0.000000, 0.000000, 0.511897 - -0.859583, -0.000000, 0.000000, 0.510997 - -0.860117, -0.000000, 0.000000, 0.510096 - -0.860651, -0.000000, 0.000000, 0.509195 - -0.861184, -0.000000, 0.000000, 0.508293 - -0.861716, -0.000000, 0.000000, 0.507390 - -0.862247, -0.000000, 0.000000, 0.506487 - -0.862777, -0.000000, 0.000000, 0.505584 - -0.863307, -0.000000, 0.000000, 0.504680 - -0.863835, -0.000000, 0.000000, 0.503775 - -0.864362, -0.000000, 0.000000, 0.502870 - -0.864888, -0.000000, 0.000000, 0.501964 - -0.865414, -0.000000, 0.000000, 0.501058 - -0.865938, -0.000000, 0.000000, 0.500151 - -0.866462, -0.000000, 0.000000, 0.499244 - -0.866984, -0.000000, 0.000000, 0.498336 - -0.867506, -0.000000, 0.000000, 0.497427 - -0.868026, -0.000000, 0.000000, 0.496518 - -0.868546, -0.000000, 0.000000, 0.495609 - -0.869065, -0.000000, 0.000000, 0.494699 - -0.869582, -0.000000, 0.000000, 0.493788 - -0.870099, -0.000000, 0.000000, 0.492877 - -0.870615, -0.000000, 0.000000, 0.491965 - -0.871130, -0.000000, 0.000000, 0.491053 - -0.871644, -0.000000, 0.000000, 0.490140 - -0.872157, -0.000000, 0.000000, 0.489227 - -0.872669, -0.000000, 0.000000, 0.488313 - -0.873180, -0.000000, 0.000000, 0.487398 - -0.873690, -0.000000, 0.000000, 0.486483 - -0.874199, -0.000000, 0.000000, 0.485568 - -0.874707, -0.000000, 0.000000, 0.484652 - -0.875214, -0.000000, 0.000000, 0.483735 - -0.875721, -0.000000, 0.000000, 0.482818 - -0.876226, -0.000000, 0.000000, 0.481901 - -0.876730, -0.000000, 0.000000, 0.480982 - -0.877234, -0.000000, 0.000000, 0.480064 - -0.877736, -0.000000, 0.000000, 0.479145 - -0.878237, -0.000000, 0.000000, 0.478225 - -0.878738, -0.000000, 0.000000, 0.477305 - -0.879237, -0.000000, 0.000000, 0.476384 - -0.879736, -0.000000, 0.000000, 0.475462 - -0.880234, -0.000000, 0.000000, 0.474541 - -0.880730, -0.000000, 0.000000, 0.473618 - -0.881226, -0.000000, 0.000000, 0.472695 - -0.881721, -0.000000, 0.000000, 0.471772 - -0.882214, -0.000000, 0.000000, 0.470848 - -0.882707, -0.000000, 0.000000, 0.469924 - -0.883199, -0.000000, 0.000000, 0.468999 - -0.883690, -0.000000, 0.000000, 0.468073 - -0.884179, -0.000000, 0.000000, 0.467147 - -0.884668, -0.000000, 0.000000, 0.466221 - -0.885156, -0.000000, 0.000000, 0.465294 - -0.885643, -0.000000, 0.000000, 0.464366 - -0.886129, -0.000000, 0.000000, 0.463438 - -0.886614, -0.000000, 0.000000, 0.462510 - -0.887098, -0.000000, 0.000000, 0.461581 - -0.887581, -0.000000, 0.000000, 0.460651 - -0.888063, -0.000000, 0.000000, 0.459721 - -0.888544, -0.000000, 0.000000, 0.458791 - -0.889024, -0.000000, 0.000000, 0.457860 - -0.889504, -0.000000, 0.000000, 0.456928 - -0.889982, -0.000000, 0.000000, 0.455996 - -0.890459, -0.000000, 0.000000, 0.455064 - -0.890935, -0.000000, 0.000000, 0.454130 - -0.891410, -0.000000, 0.000000, 0.453197 - -0.891885, -0.000000, 0.000000, 0.452263 - -0.892358, -0.000000, 0.000000, 0.451328 - -0.892830, -0.000000, 0.000000, 0.450393 - -0.893302, -0.000000, 0.000000, 0.449458 - -0.893772, -0.000000, 0.000000, 0.448522 - -0.894241, -0.000000, 0.000000, 0.447585 - -0.894710, -0.000000, 0.000000, 0.446648 - -0.895177, -0.000000, 0.000000, 0.445711 - -0.895643, -0.000000, 0.000000, 0.444773 - -0.896109, -0.000000, 0.000000, 0.443834 - -0.896573, -0.000000, 0.000000, 0.442895 - -0.897037, -0.000000, 0.000000, 0.441956 - -0.897499, -0.000000, 0.000000, 0.441016 - -0.897961, -0.000000, 0.000000, 0.440076 - -0.898421, -0.000000, 0.000000, 0.439135 - -0.898881, -0.000000, 0.000000, 0.438193 - -0.899339, -0.000000, 0.000000, 0.437251 - -0.899797, -0.000000, 0.000000, 0.436309 - -0.900253, -0.000000, 0.000000, 0.435366 - -0.900709, -0.000000, 0.000000, 0.434423 - -0.901164, -0.000000, 0.000000, 0.433479 - -0.901617, -0.000000, 0.000000, 0.432535 - -0.902070, -0.000000, 0.000000, 0.431590 - -0.902521, -0.000000, 0.000000, 0.430645 - -0.902972, -0.000000, 0.000000, 0.429699 - -0.903422, -0.000000, 0.000000, 0.428753 - -0.903870, -0.000000, 0.000000, 0.427807 - -0.904318, -0.000000, 0.000000, 0.426860 - -0.904765, -0.000000, 0.000000, 0.425912 - -0.905210, -0.000000, 0.000000, 0.424964 - -0.905655, -0.000000, 0.000000, 0.424015 - -0.906099, -0.000000, 0.000000, 0.423067 - -0.906541, -0.000000, 0.000000, 0.422117 - -0.906983, -0.000000, 0.000000, 0.421167 - -0.907424, -0.000000, 0.000000, 0.420217 - -0.907863, -0.000000, 0.000000, 0.419266 - -0.908302, -0.000000, 0.000000, 0.418315 - -0.908740, -0.000000, 0.000000, 0.417363 - -0.909177, -0.000000, 0.000000, 0.416411 - -0.909612, -0.000000, 0.000000, 0.415458 - -0.910047, -0.000000, 0.000000, 0.414505 - -0.910481, -0.000000, 0.000000, 0.413552 - -0.910913, -0.000000, 0.000000, 0.412598 - -0.911345, -0.000000, 0.000000, 0.411643 - -0.911776, -0.000000, 0.000000, 0.410688 - -0.912206, -0.000000, 0.000000, 0.409733 - -0.912634, -0.000000, 0.000000, 0.408777 - -0.913062, -0.000000, 0.000000, 0.407821 - -0.913489, -0.000000, 0.000000, 0.406864 - -0.913914, -0.000000, 0.000000, 0.405907 - -0.914339, -0.000000, 0.000000, 0.404950 - -0.914763, -0.000000, 0.000000, 0.403991 - -0.915185, -0.000000, 0.000000, 0.403033 - -0.915607, -0.000000, 0.000000, 0.402074 - -0.916028, -0.000000, 0.000000, 0.401115 - -0.916448, -0.000000, 0.000000, 0.400155 - -0.916866, -0.000000, 0.000000, 0.399195 - -0.917284, -0.000000, 0.000000, 0.398234 - -0.917701, -0.000000, 0.000000, 0.397273 - -0.918116, -0.000000, 0.000000, 0.396311 - -0.918531, -0.000000, 0.000000, 0.395349 - -0.918944, -0.000000, 0.000000, 0.394387 - -0.919357, -0.000000, 0.000000, 0.393424 - -0.919769, -0.000000, 0.000000, 0.392461 - -0.920179, -0.000000, 0.000000, 0.391497 - -0.920589, -0.000000, 0.000000, 0.390533 - -0.920998, -0.000000, 0.000000, 0.389568 - -0.921405, -0.000000, 0.000000, 0.388603 - -0.921812, -0.000000, 0.000000, 0.387638 - -0.922217, -0.000000, 0.000000, 0.386672 - -0.922622, -0.000000, 0.000000, 0.385706 - -0.923025, -0.000000, 0.000000, 0.384739 - -0.923428, -0.000000, 0.000000, 0.383772 - -0.923829, -0.000000, 0.000000, 0.382804 - -0.924230, -0.000000, 0.000000, 0.381836 - -0.924629, -0.000000, 0.000000, 0.380868 - -0.925028, -0.000000, 0.000000, 0.379899 - -0.925425, -0.000000, 0.000000, 0.378930 - -0.925822, -0.000000, 0.000000, 0.377960 - -0.926217, -0.000000, 0.000000, 0.376990 - -0.926612, -0.000000, 0.000000, 0.376020 - -0.927005, -0.000000, 0.000000, 0.375049 - -0.927397, -0.000000, 0.000000, 0.374078 - -0.927789, -0.000000, 0.000000, 0.373106 - -0.928179, -0.000000, 0.000000, 0.372134 - -0.928568, -0.000000, 0.000000, 0.371161 - -0.928957, -0.000000, 0.000000, 0.370188 - -0.929344, -0.000000, 0.000000, 0.369215 - -0.929730, -0.000000, 0.000000, 0.368241 - -0.930115, -0.000000, 0.000000, 0.367267 - -0.930500, -0.000000, 0.000000, 0.366293 - -0.930883, -0.000000, 0.000000, 0.365318 - -0.931265, -0.000000, 0.000000, 0.364342 - -0.931646, -0.000000, 0.000000, 0.363367 - -0.932026, -0.000000, 0.000000, 0.362391 - -0.932405, -0.000000, 0.000000, 0.361414 - -0.932784, -0.000000, 0.000000, 0.360437 - -0.933161, -0.000000, 0.000000, 0.359460 - -0.933537, -0.000000, 0.000000, 0.358482 - -0.933912, -0.000000, 0.000000, 0.357504 - -0.934286, -0.000000, 0.000000, 0.356525 - -0.934659, -0.000000, 0.000000, 0.355547 - -0.935031, -0.000000, 0.000000, 0.354567 - -0.935401, -0.000000, 0.000000, 0.353588 - -0.935771, -0.000000, 0.000000, 0.352607 - -0.936140, -0.000000, 0.000000, 0.351627 - -0.936508, -0.000000, 0.000000, 0.350646 - -0.936875, -0.000000, 0.000000, 0.349665 - -0.937241, -0.000000, 0.000000, 0.348683 - -0.937605, -0.000000, 0.000000, 0.347701 - -0.937969, -0.000000, 0.000000, 0.346719 - -0.938332, -0.000000, 0.000000, 0.345736 - -0.938693, -0.000000, 0.000000, 0.344753 - -0.939054, -0.000000, 0.000000, 0.343770 - -0.939414, -0.000000, 0.000000, 0.342786 - -0.939772, -0.000000, 0.000000, 0.341801 - -0.940130, -0.000000, 0.000000, 0.340817 - -0.940486, -0.000000, 0.000000, 0.339832 - -0.940842, -0.000000, 0.000000, 0.338846 - -0.941196, -0.000000, 0.000000, 0.337861 - -0.941550, -0.000000, 0.000000, 0.336874 - -0.941902, -0.000000, 0.000000, 0.335888 - -0.942253, -0.000000, 0.000000, 0.334901 - -0.942604, -0.000000, 0.000000, 0.333914 - -0.942953, -0.000000, 0.000000, 0.332926 - -0.943301, -0.000000, 0.000000, 0.331938 - -0.943648, -0.000000, 0.000000, 0.330950 - -0.943994, -0.000000, 0.000000, 0.329961 - -0.944340, -0.000000, 0.000000, 0.328972 - -0.944684, -0.000000, 0.000000, 0.327983 - -0.945027, -0.000000, 0.000000, 0.326993 - -0.945369, -0.000000, 0.000000, 0.326003 - -0.945710, -0.000000, 0.000000, 0.325012 - -0.946050, -0.000000, 0.000000, 0.324021 - -0.946389, -0.000000, 0.000000, 0.323030 - -0.946727, -0.000000, 0.000000, 0.322039 - -0.947063, -0.000000, 0.000000, 0.321047 - -0.947399, -0.000000, 0.000000, 0.320055 - -0.947734, -0.000000, 0.000000, 0.319062 - -0.948068, -0.000000, 0.000000, 0.318069 - -0.948400, -0.000000, 0.000000, 0.317076 - -0.948732, -0.000000, 0.000000, 0.316082 - -0.949062, -0.000000, 0.000000, 0.315088 - -0.949392, -0.000000, 0.000000, 0.314094 - -0.949721, -0.000000, 0.000000, 0.313099 - -0.950048, -0.000000, 0.000000, 0.312104 - -0.950374, -0.000000, 0.000000, 0.311108 - -0.950700, -0.000000, 0.000000, 0.310113 - -0.951024, -0.000000, 0.000000, 0.309117 - -0.951347, -0.000000, 0.000000, 0.308120 - -0.951670, -0.000000, 0.000000, 0.307123 - -0.951991, -0.000000, 0.000000, 0.306126 - -0.952311, -0.000000, 0.000000, 0.305129 - -0.952630, -0.000000, 0.000000, 0.304131 - -0.952948, -0.000000, 0.000000, 0.303133 - -0.953265, -0.000000, 0.000000, 0.302135 - -0.953581, -0.000000, 0.000000, 0.301136 - -0.953896, -0.000000, 0.000000, 0.300137 - -0.954210, -0.000000, 0.000000, 0.299137 - -0.954523, -0.000000, 0.000000, 0.298138 - -0.954835, -0.000000, 0.000000, 0.297138 - -0.955145, -0.000000, 0.000000, 0.296137 - -0.955455, -0.000000, 0.000000, 0.295136 - -0.955764, -0.000000, 0.000000, 0.294135 - -0.956071, -0.000000, 0.000000, 0.293134 - -0.956378, -0.000000, 0.000000, 0.292132 - -0.956683, -0.000000, 0.000000, 0.291130 - -0.956988, -0.000000, 0.000000, 0.290128 - -0.957291, -0.000000, 0.000000, 0.289125 - -0.957594, -0.000000, 0.000000, 0.288122 - -0.957895, -0.000000, 0.000000, 0.287119 - -0.958195, -0.000000, 0.000000, 0.286116 - -0.958494, -0.000000, 0.000000, 0.285112 - -0.958792, -0.000000, 0.000000, 0.284107 - -0.959090, -0.000000, 0.000000, 0.283103 - -0.959386, -0.000000, 0.000000, 0.282098 - -0.959681, -0.000000, 0.000000, 0.281093 - -0.959975, -0.000000, 0.000000, 0.280087 - -0.960267, -0.000000, 0.000000, 0.279082 - -0.960559, -0.000000, 0.000000, 0.278076 - -0.960850, -0.000000, 0.000000, 0.277069 - -0.961140, -0.000000, 0.000000, 0.276062 - -0.961428, -0.000000, 0.000000, 0.275056 - -0.961716, -0.000000, 0.000000, 0.274048 - -0.962003, -0.000000, 0.000000, 0.273041 - -0.962288, -0.000000, 0.000000, 0.272033 - -0.962572, -0.000000, 0.000000, 0.271025 - -0.962856, -0.000000, 0.000000, 0.270016 - -0.963138, -0.000000, 0.000000, 0.269007 - -0.963419, -0.000000, 0.000000, 0.267998 - -0.963700, -0.000000, 0.000000, 0.266989 - -0.963979, -0.000000, 0.000000, 0.265979 - -0.964257, -0.000000, 0.000000, 0.264969 - -0.964534, -0.000000, 0.000000, 0.263959 - -0.964810, -0.000000, 0.000000, 0.262948 - -0.965085, -0.000000, 0.000000, 0.261938 - -0.965359, -0.000000, 0.000000, 0.260926 - -0.965631, -0.000000, 0.000000, 0.259915 - -0.965903, -0.000000, 0.000000, 0.258903 - -0.966174, -0.000000, 0.000000, 0.257891 - -0.966444, -0.000000, 0.000000, 0.256879 - -0.966712, -0.000000, 0.000000, 0.255867 - -0.966980, -0.000000, 0.000000, 0.254854 - -0.967246, -0.000000, 0.000000, 0.253841 - -0.967511, -0.000000, 0.000000, 0.252827 - -0.967776, -0.000000, 0.000000, 0.251814 - -0.968039, -0.000000, 0.000000, 0.250800 - -0.968301, -0.000000, 0.000000, 0.249786 - -0.968562, -0.000000, 0.000000, 0.248771 - -0.968822, -0.000000, 0.000000, 0.247756 - -0.969081, -0.000000, 0.000000, 0.246741 - -0.969339, -0.000000, 0.000000, 0.245726 - -0.969596, -0.000000, 0.000000, 0.244710 - -0.969852, -0.000000, 0.000000, 0.243695 - -0.970107, -0.000000, 0.000000, 0.242678 - -0.970360, -0.000000, 0.000000, 0.241662 - -0.970613, -0.000000, 0.000000, 0.240646 - -0.970865, -0.000000, 0.000000, 0.239629 - -0.971115, -0.000000, 0.000000, 0.238611 - -0.971365, -0.000000, 0.000000, 0.237594 - -0.971613, -0.000000, 0.000000, 0.236576 - -0.971860, -0.000000, 0.000000, 0.235558 - -0.972106, -0.000000, 0.000000, 0.234540 - -0.972352, -0.000000, 0.000000, 0.233522 - -0.972596, -0.000000, 0.000000, 0.232503 - -0.972839, -0.000000, 0.000000, 0.231484 - -0.973081, -0.000000, 0.000000, 0.230465 - -0.973322, -0.000000, 0.000000, 0.229445 - -0.973561, -0.000000, 0.000000, 0.228426 - -0.973800, -0.000000, 0.000000, 0.227406 - -0.974038, -0.000000, 0.000000, 0.226385 - -0.974274, -0.000000, 0.000000, 0.225365 - -0.974510, -0.000000, 0.000000, 0.224344 - -0.974744, -0.000000, 0.000000, 0.223323 - -0.974978, -0.000000, 0.000000, 0.222302 - -0.975210, -0.000000, 0.000000, 0.221281 - -0.975441, -0.000000, 0.000000, 0.220259 - -0.975672, -0.000000, 0.000000, 0.219237 - -0.975901, -0.000000, 0.000000, 0.218215 - -0.976129, -0.000000, 0.000000, 0.217192 - -0.976356, -0.000000, 0.000000, 0.216170 - -0.976582, -0.000000, 0.000000, 0.215147 - -0.976807, -0.000000, 0.000000, 0.214124 - -0.977030, -0.000000, 0.000000, 0.213100 - -0.977253, -0.000000, 0.000000, 0.212077 - -0.977475, -0.000000, 0.000000, 0.211053 - -0.977695, -0.000000, 0.000000, 0.210029 - -0.977915, -0.000000, 0.000000, 0.209005 - -0.978133, -0.000000, 0.000000, 0.207980 - -0.978350, -0.000000, 0.000000, 0.206955 - -0.978567, -0.000000, 0.000000, 0.205930 - -0.978782, -0.000000, 0.000000, 0.204905 - -0.978996, -0.000000, 0.000000, 0.203880 - -0.979209, -0.000000, 0.000000, 0.202854 - -0.979421, -0.000000, 0.000000, 0.201828 - -0.979632, -0.000000, 0.000000, 0.200802 - -0.979842, -0.000000, 0.000000, 0.199776 - -0.980050, -0.000000, 0.000000, 0.198749 - -0.980258, -0.000000, 0.000000, 0.197722 - -0.980465, -0.000000, 0.000000, 0.196695 - -0.980670, -0.000000, 0.000000, 0.195668 - -0.980875, -0.000000, 0.000000, 0.194641 - -0.981078, -0.000000, 0.000000, 0.193613 - -0.981280, -0.000000, 0.000000, 0.192585 - -0.981481, -0.000000, 0.000000, 0.191557 - -0.981682, -0.000000, 0.000000, 0.190529 - -0.981881, -0.000000, 0.000000, 0.189501 - -0.982079, -0.000000, 0.000000, 0.188472 - -0.982275, -0.000000, 0.000000, 0.187443 - -0.982471, -0.000000, 0.000000, 0.186414 - -0.982666, -0.000000, 0.000000, 0.185385 - -0.982860, -0.000000, 0.000000, 0.184355 - -0.983052, -0.000000, 0.000000, 0.183326 - -0.983244, -0.000000, 0.000000, 0.182296 - -0.983434, -0.000000, 0.000000, 0.181266 - -0.983624, -0.000000, 0.000000, 0.180235 - -0.983812, -0.000000, 0.000000, 0.179205 - -0.983999, -0.000000, 0.000000, 0.178174 - -0.984185, -0.000000, 0.000000, 0.177143 - -0.984370, -0.000000, 0.000000, 0.176112 - -0.984554, -0.000000, 0.000000, 0.175081 - -0.984737, -0.000000, 0.000000, 0.174049 - -0.984919, -0.000000, 0.000000, 0.173018 - -0.985099, -0.000000, 0.000000, 0.171986 - -0.985279, -0.000000, 0.000000, 0.170954 - -0.985458, -0.000000, 0.000000, 0.169922 - -0.985635, -0.000000, 0.000000, 0.168889 - -0.985811, -0.000000, 0.000000, 0.167857 - -0.985987, -0.000000, 0.000000, 0.166824 - -0.986161, -0.000000, 0.000000, 0.165791 - -0.986334, -0.000000, 0.000000, 0.164758 - -0.986506, -0.000000, 0.000000, 0.163724 - -0.986677, -0.000000, 0.000000, 0.162691 - -0.986847, -0.000000, 0.000000, 0.161657 - -0.987016, -0.000000, 0.000000, 0.160623 - -0.987183, -0.000000, 0.000000, 0.159589 - -0.987350, -0.000000, 0.000000, 0.158555 - -0.987516, -0.000000, 0.000000, 0.157521 - -0.987680, -0.000000, 0.000000, 0.156486 - -0.987844, -0.000000, 0.000000, 0.155451 - -0.988006, -0.000000, 0.000000, 0.154417 - -0.988167, -0.000000, 0.000000, 0.153382 - -0.988327, -0.000000, 0.000000, 0.152346 - -0.988486, -0.000000, 0.000000, 0.151311 - -0.988644, -0.000000, 0.000000, 0.150275 - -0.988801, -0.000000, 0.000000, 0.149240 - -0.988957, -0.000000, 0.000000, 0.148204 - -0.989112, -0.000000, 0.000000, 0.147168 - -0.989265, -0.000000, 0.000000, 0.146131 - -0.989418, -0.000000, 0.000000, 0.145095 - -0.989569, -0.000000, 0.000000, 0.144058 - -0.989720, -0.000000, 0.000000, 0.143022 - -0.989869, -0.000000, 0.000000, 0.141985 - -0.990017, -0.000000, 0.000000, 0.140948 - -0.990164, -0.000000, 0.000000, 0.139911 - -0.990310, -0.000000, 0.000000, 0.138873 - -0.990455, -0.000000, 0.000000, 0.137836 - -0.990599, -0.000000, 0.000000, 0.136798 - -0.990742, -0.000000, 0.000000, 0.135761 - -0.990883, -0.000000, 0.000000, 0.134723 - -0.991024, -0.000000, 0.000000, 0.133685 - -0.991163, -0.000000, 0.000000, 0.132646 - -0.991302, -0.000000, 0.000000, 0.131608 - -0.991439, -0.000000, 0.000000, 0.130569 - -0.991575, -0.000000, 0.000000, 0.129531 - -0.991711, -0.000000, 0.000000, 0.128492 - -0.991845, -0.000000, 0.000000, 0.127453 - -0.991978, -0.000000, 0.000000, 0.126414 - -0.992109, -0.000000, 0.000000, 0.125375 - -0.992240, -0.000000, 0.000000, 0.124335 - -0.992370, -0.000000, 0.000000, 0.123296 - -0.992499, -0.000000, 0.000000, 0.122256 - -0.992626, -0.000000, 0.000000, 0.121217 - -0.992753, -0.000000, 0.000000, 0.120177 - -0.992878, -0.000000, 0.000000, 0.119137 - -0.993002, -0.000000, 0.000000, 0.118097 - -0.993125, -0.000000, 0.000000, 0.117056 - -0.993247, -0.000000, 0.000000, 0.116016 - -0.993368, -0.000000, 0.000000, 0.114975 - -0.993488, -0.000000, 0.000000, 0.113935 - -0.993607, -0.000000, 0.000000, 0.112894 - -0.993725, -0.000000, 0.000000, 0.111853 - -0.993841, -0.000000, 0.000000, 0.110812 - -0.993957, -0.000000, 0.000000, 0.109771 - -0.994071, -0.000000, 0.000000, 0.108729 - -0.994185, -0.000000, 0.000000, 0.107688 - -0.994297, -0.000000, 0.000000, 0.106647 - -0.994408, -0.000000, 0.000000, 0.105605 - -0.994518, -0.000000, 0.000000, 0.104563 - -0.994627, -0.000000, 0.000000, 0.103521 - -0.994735, -0.000000, 0.000000, 0.102479 - -0.994842, -0.000000, 0.000000, 0.101437 - -0.994948, -0.000000, 0.000000, 0.100395 - -0.995052, -0.000000, 0.000000, 0.099353 - -0.995156, -0.000000, 0.000000, 0.098310 - -0.995258, -0.000000, 0.000000, 0.097268 - -0.995360, -0.000000, 0.000000, 0.096225 - -0.995460, -0.000000, 0.000000, 0.095182 - -0.995559, -0.000000, 0.000000, 0.094140 - -0.995657, -0.000000, 0.000000, 0.093097 - -0.995754, -0.000000, 0.000000, 0.092054 - -0.995850, -0.000000, 0.000000, 0.091010 - -0.995945, -0.000000, 0.000000, 0.089967 - -0.996038, -0.000000, 0.000000, 0.088924 - -0.996131, -0.000000, 0.000000, 0.087880 - -0.996223, -0.000000, 0.000000, 0.086837 - -0.996313, -0.000000, 0.000000, 0.085793 - -0.996402, -0.000000, 0.000000, 0.084750 - -0.996491, -0.000000, 0.000000, 0.083706 - -0.996578, -0.000000, 0.000000, 0.082662 - -0.996664, -0.000000, 0.000000, 0.081618 - -0.996749, -0.000000, 0.000000, 0.080574 - -0.996833, -0.000000, 0.000000, 0.079529 - -0.996915, -0.000000, 0.000000, 0.078485 - -0.996997, -0.000000, 0.000000, 0.077441 - -0.997078, -0.000000, 0.000000, 0.076396 - -0.997157, -0.000000, 0.000000, 0.075352 - -0.997235, -0.000000, 0.000000, 0.074307 - -0.997313, -0.000000, 0.000000, 0.073263 - -0.997389, -0.000000, 0.000000, 0.072218 - -0.997464, -0.000000, 0.000000, 0.071173 - -0.997538, -0.000000, 0.000000, 0.070128 - -0.997611, -0.000000, 0.000000, 0.069083 - -0.997683, -0.000000, 0.000000, 0.068038 - -0.997753, -0.000000, 0.000000, 0.066993 - -0.997823, -0.000000, 0.000000, 0.065948 - -0.997892, -0.000000, 0.000000, 0.064902 - -0.997959, -0.000000, 0.000000, 0.063857 - -0.998025, -0.000000, 0.000000, 0.062811 - -0.998091, -0.000000, 0.000000, 0.061766 - -0.998155, -0.000000, 0.000000, 0.060720 - -0.998218, -0.000000, 0.000000, 0.059675 - -0.998280, -0.000000, 0.000000, 0.058629 - -0.998341, -0.000000, 0.000000, 0.057583 - -0.998400, -0.000000, 0.000000, 0.056537 - -0.998459, -0.000000, 0.000000, 0.055491 - -0.998517, -0.000000, 0.000000, 0.054445 - -0.998573, -0.000000, 0.000000, 0.053399 - -0.998629, -0.000000, 0.000000, 0.052353 - -0.998683, -0.000000, 0.000000, 0.051307 - -0.998736, -0.000000, 0.000000, 0.050261 - -0.998788, -0.000000, 0.000000, 0.049215 - -0.998839, -0.000000, 0.000000, 0.048169 - -0.998889, -0.000000, 0.000000, 0.047122 - -0.998938, -0.000000, 0.000000, 0.046076 - -0.998986, -0.000000, 0.000000, 0.045029 - -0.999032, -0.000000, 0.000000, 0.043983 - -0.999078, -0.000000, 0.000000, 0.042936 - -0.999122, -0.000000, 0.000000, 0.041890 - -0.999166, -0.000000, 0.000000, 0.040843 - -0.999208, -0.000000, 0.000000, 0.039796 - -0.999249, -0.000000, 0.000000, 0.038750 - -0.999289, -0.000000, 0.000000, 0.037703 - -0.999328, -0.000000, 0.000000, 0.036656 - -0.999366, -0.000000, 0.000000, 0.035609 - -0.999403, -0.000000, 0.000000, 0.034562 - -0.999438, -0.000000, 0.000000, 0.033515 - -0.999473, -0.000000, 0.000000, 0.032468 - -0.999506, -0.000000, 0.000000, 0.031421 - -0.999539, -0.000000, 0.000000, 0.030374 - -0.999570, -0.000000, 0.000000, 0.029327 - -0.999600, -0.000000, 0.000000, 0.028280 - -0.999629, -0.000000, 0.000000, 0.027233 - -0.999657, -0.000000, 0.000000, 0.026186 - -0.999684, -0.000000, 0.000000, 0.025138 - -0.999710, -0.000000, 0.000000, 0.024091 - -0.999734, -0.000000, 0.000000, 0.023044 - -0.999758, -0.000000, 0.000000, 0.021997 - -0.999781, -0.000000, 0.000000, 0.020949 - -0.999802, -0.000000, 0.000000, 0.019902 - -0.999822, -0.000000, 0.000000, 0.018855 - -0.999841, -0.000000, 0.000000, 0.017807 - -0.999860, -0.000000, 0.000000, 0.016760 - -0.999877, -0.000000, 0.000000, 0.015713 - -0.999892, -0.000000, 0.000000, 0.014665 - -0.999907, -0.000000, 0.000000, 0.013618 - -0.999921, -0.000000, 0.000000, 0.012570 - -0.999934, -0.000000, 0.000000, 0.011523 - -0.999945, -0.000000, 0.000000, 0.010475 - -0.999956, -0.000000, 0.000000, 0.009428 - -0.999965, -0.000000, 0.000000, 0.008380 - -0.999973, -0.000000, 0.000000, 0.007333 - -0.999980, -0.000000, 0.000000, 0.006285 - -0.999986, -0.000000, 0.000000, 0.005238 - -0.999991, -0.000000, 0.000000, 0.004190 - -0.999995, -0.000000, 0.000000, 0.003143 - -0.999998, -0.000000, 0.000000, 0.002095 - -0.999999, -0.000000, 0.000000, 0.001048 - -1.000000, -0.000000, 0.000000, 0.000000 diff --git a/scripts/trajectories/full-circle-4s-Vector3.csv b/scripts/trajectories/full-circle-4s-Vector3.csv deleted file mode 100644 index 38a350523957054744f92fb08c628981a12e0f9a..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-4s-Vector3.csv +++ /dev/null @@ -1,200 +0,0 @@ -0.0000,0.0000,0.0000,0.9995,-0.0314,0.0000 -0.0000,0.0000,0.0000,0.9980,-0.0628,0.0000 -0.0000,0.0000,0.0000,0.9956,-0.0941,0.0000 -0.0000,0.0000,0.0000,0.9921,-0.1253,0.0000 -0.0000,0.0000,0.0000,0.9877,-0.1564,0.0000 -0.0000,0.0000,0.0000,0.9823,-0.1874,0.0000 -0.0000,0.0000,0.0000,0.9759,-0.2181,0.0000 -0.0000,0.0000,0.0000,0.9686,-0.2487,0.0000 -0.0000,0.0000,0.0000,0.9603,-0.2790,0.0000 -0.0000,0.0000,0.0000,0.9511,-0.3090,0.0000 -0.0000,0.0000,0.0000,0.9409,-0.3387,0.0000 -0.0000,0.0000,0.0000,0.9298,-0.3681,0.0000 -0.0000,0.0000,0.0000,0.9178,-0.3971,0.0000 -0.0000,0.0000,0.0000,0.9048,-0.4258,0.0000 -0.0000,0.0000,0.0000,0.8910,-0.4540,0.0000 -0.0000,0.0000,0.0000,0.8763,-0.4818,0.0000 -0.0000,0.0000,0.0000,0.8607,-0.5090,0.0000 -0.0000,0.0000,0.0000,0.8443,-0.5358,0.0000 -0.0000,0.0000,0.0000,0.8271,-0.5621,0.0000 -0.0000,0.0000,0.0000,0.8090,-0.5878,0.0000 -0.0000,0.0000,0.0000,0.7902,-0.6129,0.0000 -0.0000,0.0000,0.0000,0.7705,-0.6374,0.0000 -0.0000,0.0000,0.0000,0.7501,-0.6613,0.0000 -0.0000,0.0000,0.0000,0.7290,-0.6845,0.0000 -0.0000,0.0000,0.0000,0.7071,-0.7071,0.0000 -0.0000,0.0000,0.0000,0.6845,-0.7290,0.0000 -0.0000,0.0000,0.0000,0.6613,-0.7501,0.0000 -0.0000,0.0000,0.0000,0.6374,-0.7705,0.0000 -0.0000,0.0000,0.0000,0.6129,-0.7902,0.0000 -0.0000,0.0000,0.0000,0.5878,-0.8090,0.0000 -0.0000,0.0000,0.0000,0.5621,-0.8271,0.0000 -0.0000,0.0000,0.0000,0.5358,-0.8443,0.0000 -0.0000,0.0000,0.0000,0.5090,-0.8607,0.0000 -0.0000,0.0000,0.0000,0.4818,-0.8763,0.0000 -0.0000,0.0000,0.0000,0.4540,-0.8910,0.0000 -0.0000,0.0000,0.0000,0.4258,-0.9048,0.0000 -0.0000,0.0000,0.0000,0.3971,-0.9178,0.0000 -0.0000,0.0000,0.0000,0.3681,-0.9298,0.0000 -0.0000,0.0000,0.0000,0.3387,-0.9409,0.0000 -0.0000,0.0000,0.0000,0.3090,-0.9511,0.0000 -0.0000,0.0000,0.0000,0.2790,-0.9603,0.0000 -0.0000,0.0000,0.0000,0.2487,-0.9686,0.0000 -0.0000,0.0000,0.0000,0.2181,-0.9759,0.0000 -0.0000,0.0000,0.0000,0.1874,-0.9823,0.0000 -0.0000,0.0000,0.0000,0.1564,-0.9877,0.0000 -0.0000,0.0000,0.0000,0.1253,-0.9921,0.0000 -0.0000,0.0000,0.0000,0.0941,-0.9956,0.0000 -0.0000,0.0000,0.0000,0.0628,-0.9980,0.0000 -0.0000,0.0000,0.0000,0.0314,-0.9995,0.0000 -0.0000,0.0000,0.0000,-0.0000,-1.0000,0.0000 -0.0000,0.0000,0.0000,-0.0314,-0.9995,0.0000 -0.0000,0.0000,0.0000,-0.0628,-0.9980,0.0000 -0.0000,0.0000,0.0000,-0.0941,-0.9956,0.0000 -0.0000,0.0000,0.0000,-0.1253,-0.9921,0.0000 -0.0000,0.0000,0.0000,-0.1564,-0.9877,0.0000 -0.0000,0.0000,0.0000,-0.1874,-0.9823,0.0000 -0.0000,0.0000,0.0000,-0.2181,-0.9759,0.0000 -0.0000,0.0000,0.0000,-0.2487,-0.9686,0.0000 -0.0000,0.0000,0.0000,-0.2790,-0.9603,0.0000 -0.0000,0.0000,0.0000,-0.3090,-0.9511,0.0000 -0.0000,0.0000,0.0000,-0.3387,-0.9409,0.0000 -0.0000,0.0000,0.0000,-0.3681,-0.9298,0.0000 -0.0000,0.0000,0.0000,-0.3971,-0.9178,0.0000 -0.0000,0.0000,0.0000,-0.4258,-0.9048,0.0000 -0.0000,0.0000,0.0000,-0.4540,-0.8910,0.0000 -0.0000,0.0000,0.0000,-0.4818,-0.8763,0.0000 -0.0000,0.0000,0.0000,-0.5090,-0.8607,0.0000 -0.0000,0.0000,0.0000,-0.5358,-0.8443,0.0000 -0.0000,0.0000,0.0000,-0.5621,-0.8271,0.0000 -0.0000,0.0000,0.0000,-0.5878,-0.8090,0.0000 -0.0000,0.0000,0.0000,-0.6129,-0.7902,0.0000 -0.0000,0.0000,0.0000,-0.6374,-0.7705,0.0000 -0.0000,0.0000,0.0000,-0.6613,-0.7501,0.0000 -0.0000,0.0000,0.0000,-0.6845,-0.7290,0.0000 -0.0000,0.0000,0.0000,-0.7071,-0.7071,0.0000 -0.0000,0.0000,0.0000,-0.7290,-0.6845,0.0000 -0.0000,0.0000,0.0000,-0.7501,-0.6613,0.0000 -0.0000,0.0000,0.0000,-0.7705,-0.6374,0.0000 -0.0000,0.0000,0.0000,-0.7902,-0.6129,0.0000 -0.0000,0.0000,0.0000,-0.8090,-0.5878,0.0000 -0.0000,0.0000,0.0000,-0.8271,-0.5621,0.0000 -0.0000,0.0000,0.0000,-0.8443,-0.5358,0.0000 -0.0000,0.0000,0.0000,-0.8607,-0.5090,0.0000 -0.0000,0.0000,0.0000,-0.8763,-0.4818,0.0000 -0.0000,0.0000,0.0000,-0.8910,-0.4540,0.0000 -0.0000,0.0000,0.0000,-0.9048,-0.4258,0.0000 -0.0000,0.0000,0.0000,-0.9178,-0.3971,0.0000 -0.0000,0.0000,0.0000,-0.9298,-0.3681,0.0000 -0.0000,0.0000,0.0000,-0.9409,-0.3387,0.0000 -0.0000,0.0000,0.0000,-0.9511,-0.3090,0.0000 -0.0000,0.0000,0.0000,-0.9603,-0.2790,0.0000 -0.0000,0.0000,0.0000,-0.9686,-0.2487,0.0000 -0.0000,0.0000,0.0000,-0.9759,-0.2181,0.0000 -0.0000,0.0000,0.0000,-0.9823,-0.1874,0.0000 -0.0000,0.0000,0.0000,-0.9877,-0.1564,0.0000 -0.0000,0.0000,0.0000,-0.9921,-0.1253,0.0000 -0.0000,0.0000,0.0000,-0.9956,-0.0941,0.0000 -0.0000,0.0000,0.0000,-0.9980,-0.0628,0.0000 -0.0000,0.0000,0.0000,-0.9995,-0.0314,0.0000 -0.0000,0.0000,0.0000,-1.0000,0.0000,0.0000 -0.0000,0.0000,0.0000,-0.9995,0.0314,0.0000 -0.0000,0.0000,0.0000,-0.9980,0.0628,0.0000 -0.0000,0.0000,0.0000,-0.9956,0.0941,0.0000 -0.0000,0.0000,0.0000,-0.9921,0.1253,0.0000 -0.0000,0.0000,0.0000,-0.9877,0.1564,0.0000 -0.0000,0.0000,0.0000,-0.9823,0.1874,0.0000 -0.0000,0.0000,0.0000,-0.9759,0.2181,0.0000 -0.0000,0.0000,0.0000,-0.9686,0.2487,0.0000 -0.0000,0.0000,0.0000,-0.9603,0.2790,0.0000 -0.0000,0.0000,0.0000,-0.9511,0.3090,0.0000 -0.0000,0.0000,0.0000,-0.9409,0.3387,0.0000 -0.0000,0.0000,0.0000,-0.9298,0.3681,0.0000 -0.0000,0.0000,0.0000,-0.9178,0.3971,0.0000 -0.0000,0.0000,0.0000,-0.9048,0.4258,0.0000 -0.0000,0.0000,0.0000,-0.8910,0.4540,0.0000 -0.0000,0.0000,0.0000,-0.8763,0.4818,0.0000 -0.0000,0.0000,0.0000,-0.8607,0.5090,0.0000 -0.0000,0.0000,0.0000,-0.8443,0.5358,0.0000 -0.0000,0.0000,0.0000,-0.8271,0.5621,0.0000 -0.0000,0.0000,0.0000,-0.8090,0.5878,0.0000 -0.0000,0.0000,0.0000,-0.7902,0.6129,0.0000 -0.0000,0.0000,0.0000,-0.7705,0.6374,0.0000 -0.0000,0.0000,0.0000,-0.7501,0.6613,0.0000 -0.0000,0.0000,0.0000,-0.7290,0.6845,0.0000 -0.0000,0.0000,0.0000,-0.7071,0.7071,0.0000 -0.0000,0.0000,0.0000,-0.6845,0.7290,0.0000 -0.0000,0.0000,0.0000,-0.6613,0.7501,0.0000 -0.0000,0.0000,0.0000,-0.6374,0.7705,0.0000 -0.0000,0.0000,0.0000,-0.6129,0.7902,0.0000 -0.0000,0.0000,0.0000,-0.5878,0.8090,0.0000 -0.0000,0.0000,0.0000,-0.5621,0.8271,0.0000 -0.0000,0.0000,0.0000,-0.5358,0.8443,0.0000 -0.0000,0.0000,0.0000,-0.5090,0.8607,0.0000 -0.0000,0.0000,0.0000,-0.4818,0.8763,0.0000 -0.0000,0.0000,0.0000,-0.4540,0.8910,0.0000 -0.0000,0.0000,0.0000,-0.4258,0.9048,0.0000 -0.0000,0.0000,0.0000,-0.3971,0.9178,0.0000 -0.0000,0.0000,0.0000,-0.3681,0.9298,0.0000 -0.0000,0.0000,0.0000,-0.3387,0.9409,0.0000 -0.0000,0.0000,0.0000,-0.3090,0.9511,0.0000 -0.0000,0.0000,0.0000,-0.2790,0.9603,0.0000 -0.0000,0.0000,0.0000,-0.2487,0.9686,0.0000 -0.0000,0.0000,0.0000,-0.2181,0.9759,0.0000 -0.0000,0.0000,0.0000,-0.1874,0.9823,0.0000 -0.0000,0.0000,0.0000,-0.1564,0.9877,0.0000 -0.0000,0.0000,0.0000,-0.1253,0.9921,0.0000 -0.0000,0.0000,0.0000,-0.0941,0.9956,0.0000 -0.0000,0.0000,0.0000,-0.0628,0.9980,0.0000 -0.0000,0.0000,0.0000,-0.0314,0.9995,0.0000 -0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 -0.0000,0.0000,0.0000,0.0314,0.9995,0.0000 -0.0000,0.0000,0.0000,0.0628,0.9980,0.0000 -0.0000,0.0000,0.0000,0.0941,0.9956,0.0000 -0.0000,0.0000,0.0000,0.1253,0.9921,0.0000 -0.0000,0.0000,0.0000,0.1564,0.9877,0.0000 -0.0000,0.0000,0.0000,0.1874,0.9823,0.0000 -0.0000,0.0000,0.0000,0.2181,0.9759,0.0000 -0.0000,0.0000,0.0000,0.2487,0.9686,0.0000 -0.0000,0.0000,0.0000,0.2790,0.9603,0.0000 -0.0000,0.0000,0.0000,0.3090,0.9511,0.0000 -0.0000,0.0000,0.0000,0.3387,0.9409,0.0000 -0.0000,0.0000,0.0000,0.3681,0.9298,0.0000 -0.0000,0.0000,0.0000,0.3971,0.9178,0.0000 -0.0000,0.0000,0.0000,0.4258,0.9048,0.0000 -0.0000,0.0000,0.0000,0.4540,0.8910,0.0000 -0.0000,0.0000,0.0000,0.4818,0.8763,0.0000 -0.0000,0.0000,0.0000,0.5090,0.8607,0.0000 -0.0000,0.0000,0.0000,0.5358,0.8443,0.0000 -0.0000,0.0000,0.0000,0.5621,0.8271,0.0000 -0.0000,0.0000,0.0000,0.5878,0.8090,0.0000 -0.0000,0.0000,0.0000,0.6129,0.7902,0.0000 -0.0000,0.0000,0.0000,0.6374,0.7705,0.0000 -0.0000,0.0000,0.0000,0.6613,0.7501,0.0000 -0.0000,0.0000,0.0000,0.6845,0.7290,0.0000 -0.0000,0.0000,0.0000,0.7071,0.7071,0.0000 -0.0000,0.0000,0.0000,0.7290,0.6845,0.0000 -0.0000,0.0000,0.0000,0.7501,0.6613,0.0000 -0.0000,0.0000,0.0000,0.7705,0.6374,0.0000 -0.0000,0.0000,0.0000,0.7902,0.6129,0.0000 -0.0000,0.0000,0.0000,0.8090,0.5878,0.0000 -0.0000,0.0000,0.0000,0.8271,0.5621,0.0000 -0.0000,0.0000,0.0000,0.8443,0.5358,0.0000 -0.0000,0.0000,0.0000,0.8607,0.5090,0.0000 -0.0000,0.0000,0.0000,0.8763,0.4818,0.0000 -0.0000,0.0000,0.0000,0.8910,0.4540,0.0000 -0.0000,0.0000,0.0000,0.9048,0.4258,0.0000 -0.0000,0.0000,0.0000,0.9178,0.3971,0.0000 -0.0000,0.0000,0.0000,0.9298,0.3681,0.0000 -0.0000,0.0000,0.0000,0.9409,0.3387,0.0000 -0.0000,0.0000,0.0000,0.9511,0.3090,0.0000 -0.0000,0.0000,0.0000,0.9603,0.2790,0.0000 -0.0000,0.0000,0.0000,0.9686,0.2487,0.0000 -0.0000,0.0000,0.0000,0.9759,0.2181,0.0000 -0.0000,0.0000,0.0000,0.9823,0.1874,0.0000 -0.0000,0.0000,0.0000,0.9877,0.1564,0.0000 -0.0000,0.0000,0.0000,0.9921,0.1253,0.0000 -0.0000,0.0000,0.0000,0.9956,0.0941,0.0000 -0.0000,0.0000,0.0000,0.9980,0.0628,0.0000 -0.0000,0.0000,0.0000,0.9995,0.0314,0.0000 -0.0000,0.0000,0.0000,1.0000,-0.0000,0.0000 diff --git a/scripts/trajectories/full-circle-4s-ccw-Vector3.csv b/scripts/trajectories/full-circle-4s-ccw-Vector3.csv deleted file mode 100644 index 37b2904ea4199014bf5647fa0196bf3975b13d55..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-4s-ccw-Vector3.csv +++ /dev/null @@ -1,200 +0,0 @@ -0.0000,0.0000,0.0000,0.9995,0.0314,0.0000 -0.0000,0.0000,0.0000,0.9980,0.0628,0.0000 -0.0000,0.0000,0.0000,0.9956,0.0941,0.0000 -0.0000,0.0000,0.0000,0.9921,0.1253,0.0000 -0.0000,0.0000,0.0000,0.9877,0.1564,0.0000 -0.0000,0.0000,0.0000,0.9823,0.1874,0.0000 -0.0000,0.0000,0.0000,0.9759,0.2181,0.0000 -0.0000,0.0000,0.0000,0.9686,0.2487,0.0000 -0.0000,0.0000,0.0000,0.9603,0.2790,0.0000 -0.0000,0.0000,0.0000,0.9511,0.3090,0.0000 -0.0000,0.0000,0.0000,0.9409,0.3387,0.0000 -0.0000,0.0000,0.0000,0.9298,0.3681,0.0000 -0.0000,0.0000,0.0000,0.9178,0.3971,0.0000 -0.0000,0.0000,0.0000,0.9048,0.4258,0.0000 -0.0000,0.0000,0.0000,0.8910,0.4540,0.0000 -0.0000,0.0000,0.0000,0.8763,0.4818,0.0000 -0.0000,0.0000,0.0000,0.8607,0.5090,0.0000 -0.0000,0.0000,0.0000,0.8443,0.5358,0.0000 -0.0000,0.0000,0.0000,0.8271,0.5621,0.0000 -0.0000,0.0000,0.0000,0.8090,0.5878,0.0000 -0.0000,0.0000,0.0000,0.7902,0.6129,0.0000 -0.0000,0.0000,0.0000,0.7705,0.6374,0.0000 -0.0000,0.0000,0.0000,0.7501,0.6613,0.0000 -0.0000,0.0000,0.0000,0.7290,0.6845,0.0000 -0.0000,0.0000,0.0000,0.7071,0.7071,0.0000 -0.0000,0.0000,0.0000,0.6845,0.7290,0.0000 -0.0000,0.0000,0.0000,0.6613,0.7501,0.0000 -0.0000,0.0000,0.0000,0.6374,0.7705,0.0000 -0.0000,0.0000,0.0000,0.6129,0.7902,0.0000 -0.0000,0.0000,0.0000,0.5878,0.8090,0.0000 -0.0000,0.0000,0.0000,0.5621,0.8271,0.0000 -0.0000,0.0000,0.0000,0.5358,0.8443,0.0000 -0.0000,0.0000,0.0000,0.5090,0.8607,0.0000 -0.0000,0.0000,0.0000,0.4818,0.8763,0.0000 -0.0000,0.0000,0.0000,0.4540,0.8910,0.0000 -0.0000,0.0000,0.0000,0.4258,0.9048,0.0000 -0.0000,0.0000,0.0000,0.3971,0.9178,0.0000 -0.0000,0.0000,0.0000,0.3681,0.9298,0.0000 -0.0000,0.0000,0.0000,0.3387,0.9409,0.0000 -0.0000,0.0000,0.0000,0.3090,0.9511,0.0000 -0.0000,0.0000,0.0000,0.2790,0.9603,0.0000 -0.0000,0.0000,0.0000,0.2487,0.9686,0.0000 -0.0000,0.0000,0.0000,0.2181,0.9759,0.0000 -0.0000,0.0000,0.0000,0.1874,0.9823,0.0000 -0.0000,0.0000,0.0000,0.1564,0.9877,0.0000 -0.0000,0.0000,0.0000,0.1253,0.9921,0.0000 -0.0000,0.0000,0.0000,0.0941,0.9956,0.0000 -0.0000,0.0000,0.0000,0.0628,0.9980,0.0000 -0.0000,0.0000,0.0000,0.0314,0.9995,0.0000 -0.0000,0.0000,0.0000,-0.0000,1.0000,0.0000 -0.0000,0.0000,0.0000,-0.0314,0.9995,0.0000 -0.0000,0.0000,0.0000,-0.0628,0.9980,0.0000 -0.0000,0.0000,0.0000,-0.0941,0.9956,0.0000 -0.0000,0.0000,0.0000,-0.1253,0.9921,0.0000 -0.0000,0.0000,0.0000,-0.1564,0.9877,0.0000 -0.0000,0.0000,0.0000,-0.1874,0.9823,0.0000 -0.0000,0.0000,0.0000,-0.2181,0.9759,0.0000 -0.0000,0.0000,0.0000,-0.2487,0.9686,0.0000 -0.0000,0.0000,0.0000,-0.2790,0.9603,0.0000 -0.0000,0.0000,0.0000,-0.3090,0.9511,0.0000 -0.0000,0.0000,0.0000,-0.3387,0.9409,0.0000 -0.0000,0.0000,0.0000,-0.3681,0.9298,0.0000 -0.0000,0.0000,0.0000,-0.3971,0.9178,0.0000 -0.0000,0.0000,0.0000,-0.4258,0.9048,0.0000 -0.0000,0.0000,0.0000,-0.4540,0.8910,0.0000 -0.0000,0.0000,0.0000,-0.4818,0.8763,0.0000 -0.0000,0.0000,0.0000,-0.5090,0.8607,0.0000 -0.0000,0.0000,0.0000,-0.5358,0.8443,0.0000 -0.0000,0.0000,0.0000,-0.5621,0.8271,0.0000 -0.0000,0.0000,0.0000,-0.5878,0.8090,0.0000 -0.0000,0.0000,0.0000,-0.6129,0.7902,0.0000 -0.0000,0.0000,0.0000,-0.6374,0.7705,0.0000 -0.0000,0.0000,0.0000,-0.6613,0.7501,0.0000 -0.0000,0.0000,0.0000,-0.6845,0.7290,0.0000 -0.0000,0.0000,0.0000,-0.7071,0.7071,0.0000 -0.0000,0.0000,0.0000,-0.7290,0.6845,0.0000 -0.0000,0.0000,0.0000,-0.7501,0.6613,0.0000 -0.0000,0.0000,0.0000,-0.7705,0.6374,0.0000 -0.0000,0.0000,0.0000,-0.7902,0.6129,0.0000 -0.0000,0.0000,0.0000,-0.8090,0.5878,0.0000 -0.0000,0.0000,0.0000,-0.8271,0.5621,0.0000 -0.0000,0.0000,0.0000,-0.8443,0.5358,0.0000 -0.0000,0.0000,0.0000,-0.8607,0.5090,0.0000 -0.0000,0.0000,0.0000,-0.8763,0.4818,0.0000 -0.0000,0.0000,0.0000,-0.8910,0.4540,0.0000 -0.0000,0.0000,0.0000,-0.9048,0.4258,0.0000 -0.0000,0.0000,0.0000,-0.9178,0.3971,0.0000 -0.0000,0.0000,0.0000,-0.9298,0.3681,0.0000 -0.0000,0.0000,0.0000,-0.9409,0.3387,0.0000 -0.0000,0.0000,0.0000,-0.9511,0.3090,0.0000 -0.0000,0.0000,0.0000,-0.9603,0.2790,0.0000 -0.0000,0.0000,0.0000,-0.9686,0.2487,0.0000 -0.0000,0.0000,0.0000,-0.9759,0.2181,0.0000 -0.0000,0.0000,0.0000,-0.9823,0.1874,0.0000 -0.0000,0.0000,0.0000,-0.9877,0.1564,0.0000 -0.0000,0.0000,0.0000,-0.9921,0.1253,0.0000 -0.0000,0.0000,0.0000,-0.9956,0.0941,0.0000 -0.0000,0.0000,0.0000,-0.9980,0.0628,0.0000 -0.0000,0.0000,0.0000,-0.9995,0.0314,0.0000 -0.0000,0.0000,0.0000,-1.0000,-0.0000,0.0000 -0.0000,0.0000,0.0000,-0.9995,-0.0314,0.0000 -0.0000,0.0000,0.0000,-0.9980,-0.0628,0.0000 -0.0000,0.0000,0.0000,-0.9956,-0.0941,0.0000 -0.0000,0.0000,0.0000,-0.9921,-0.1253,0.0000 -0.0000,0.0000,0.0000,-0.9877,-0.1564,0.0000 -0.0000,0.0000,0.0000,-0.9823,-0.1874,0.0000 -0.0000,0.0000,0.0000,-0.9759,-0.2181,0.0000 -0.0000,0.0000,0.0000,-0.9686,-0.2487,0.0000 -0.0000,0.0000,0.0000,-0.9603,-0.2790,0.0000 -0.0000,0.0000,0.0000,-0.9511,-0.3090,0.0000 -0.0000,0.0000,0.0000,-0.9409,-0.3387,0.0000 -0.0000,0.0000,0.0000,-0.9298,-0.3681,0.0000 -0.0000,0.0000,0.0000,-0.9178,-0.3971,0.0000 -0.0000,0.0000,0.0000,-0.9048,-0.4258,0.0000 -0.0000,0.0000,0.0000,-0.8910,-0.4540,0.0000 -0.0000,0.0000,0.0000,-0.8763,-0.4818,0.0000 -0.0000,0.0000,0.0000,-0.8607,-0.5090,0.0000 -0.0000,0.0000,0.0000,-0.8443,-0.5358,0.0000 -0.0000,0.0000,0.0000,-0.8271,-0.5621,0.0000 -0.0000,0.0000,0.0000,-0.8090,-0.5878,0.0000 -0.0000,0.0000,0.0000,-0.7902,-0.6129,0.0000 -0.0000,0.0000,0.0000,-0.7705,-0.6374,0.0000 -0.0000,0.0000,0.0000,-0.7501,-0.6613,0.0000 -0.0000,0.0000,0.0000,-0.7290,-0.6845,0.0000 -0.0000,0.0000,0.0000,-0.7071,-0.7071,0.0000 -0.0000,0.0000,0.0000,-0.6845,-0.7290,0.0000 -0.0000,0.0000,0.0000,-0.6613,-0.7501,0.0000 -0.0000,0.0000,0.0000,-0.6374,-0.7705,0.0000 -0.0000,0.0000,0.0000,-0.6129,-0.7902,0.0000 -0.0000,0.0000,0.0000,-0.5878,-0.8090,0.0000 -0.0000,0.0000,0.0000,-0.5621,-0.8271,0.0000 -0.0000,0.0000,0.0000,-0.5358,-0.8443,0.0000 -0.0000,0.0000,0.0000,-0.5090,-0.8607,0.0000 -0.0000,0.0000,0.0000,-0.4818,-0.8763,0.0000 -0.0000,0.0000,0.0000,-0.4540,-0.8910,0.0000 -0.0000,0.0000,0.0000,-0.4258,-0.9048,0.0000 -0.0000,0.0000,0.0000,-0.3971,-0.9178,0.0000 -0.0000,0.0000,0.0000,-0.3681,-0.9298,0.0000 -0.0000,0.0000,0.0000,-0.3387,-0.9409,0.0000 -0.0000,0.0000,0.0000,-0.3090,-0.9511,0.0000 -0.0000,0.0000,0.0000,-0.2790,-0.9603,0.0000 -0.0000,0.0000,0.0000,-0.2487,-0.9686,0.0000 -0.0000,0.0000,0.0000,-0.2181,-0.9759,0.0000 -0.0000,0.0000,0.0000,-0.1874,-0.9823,0.0000 -0.0000,0.0000,0.0000,-0.1564,-0.9877,0.0000 -0.0000,0.0000,0.0000,-0.1253,-0.9921,0.0000 -0.0000,0.0000,0.0000,-0.0941,-0.9956,0.0000 -0.0000,0.0000,0.0000,-0.0628,-0.9980,0.0000 -0.0000,0.0000,0.0000,-0.0314,-0.9995,0.0000 -0.0000,0.0000,0.0000,0.0000,-1.0000,0.0000 -0.0000,0.0000,0.0000,0.0314,-0.9995,0.0000 -0.0000,0.0000,0.0000,0.0628,-0.9980,0.0000 -0.0000,0.0000,0.0000,0.0941,-0.9956,0.0000 -0.0000,0.0000,0.0000,0.1253,-0.9921,0.0000 -0.0000,0.0000,0.0000,0.1564,-0.9877,0.0000 -0.0000,0.0000,0.0000,0.1874,-0.9823,0.0000 -0.0000,0.0000,0.0000,0.2181,-0.9759,0.0000 -0.0000,0.0000,0.0000,0.2487,-0.9686,0.0000 -0.0000,0.0000,0.0000,0.2790,-0.9603,0.0000 -0.0000,0.0000,0.0000,0.3090,-0.9511,0.0000 -0.0000,0.0000,0.0000,0.3387,-0.9409,0.0000 -0.0000,0.0000,0.0000,0.3681,-0.9298,0.0000 -0.0000,0.0000,0.0000,0.3971,-0.9178,0.0000 -0.0000,0.0000,0.0000,0.4258,-0.9048,0.0000 -0.0000,0.0000,0.0000,0.4540,-0.8910,0.0000 -0.0000,0.0000,0.0000,0.4818,-0.8763,0.0000 -0.0000,0.0000,0.0000,0.5090,-0.8607,0.0000 -0.0000,0.0000,0.0000,0.5358,-0.8443,0.0000 -0.0000,0.0000,0.0000,0.5621,-0.8271,0.0000 -0.0000,0.0000,0.0000,0.5878,-0.8090,0.0000 -0.0000,0.0000,0.0000,0.6129,-0.7902,0.0000 -0.0000,0.0000,0.0000,0.6374,-0.7705,0.0000 -0.0000,0.0000,0.0000,0.6613,-0.7501,0.0000 -0.0000,0.0000,0.0000,0.6845,-0.7290,0.0000 -0.0000,0.0000,0.0000,0.7071,-0.7071,0.0000 -0.0000,0.0000,0.0000,0.7290,-0.6845,0.0000 -0.0000,0.0000,0.0000,0.7501,-0.6613,0.0000 -0.0000,0.0000,0.0000,0.7705,-0.6374,0.0000 -0.0000,0.0000,0.0000,0.7902,-0.6129,0.0000 -0.0000,0.0000,0.0000,0.8090,-0.5878,0.0000 -0.0000,0.0000,0.0000,0.8271,-0.5621,0.0000 -0.0000,0.0000,0.0000,0.8443,-0.5358,0.0000 -0.0000,0.0000,0.0000,0.8607,-0.5090,0.0000 -0.0000,0.0000,0.0000,0.8763,-0.4818,0.0000 -0.0000,0.0000,0.0000,0.8910,-0.4540,0.0000 -0.0000,0.0000,0.0000,0.9048,-0.4258,0.0000 -0.0000,0.0000,0.0000,0.9178,-0.3971,0.0000 -0.0000,0.0000,0.0000,0.9298,-0.3681,0.0000 -0.0000,0.0000,0.0000,0.9409,-0.3387,0.0000 -0.0000,0.0000,0.0000,0.9511,-0.3090,0.0000 -0.0000,0.0000,0.0000,0.9603,-0.2790,0.0000 -0.0000,0.0000,0.0000,0.9686,-0.2487,0.0000 -0.0000,0.0000,0.0000,0.9759,-0.2181,0.0000 -0.0000,0.0000,0.0000,0.9823,-0.1874,0.0000 -0.0000,0.0000,0.0000,0.9877,-0.1564,0.0000 -0.0000,0.0000,0.0000,0.9921,-0.1253,0.0000 -0.0000,0.0000,0.0000,0.9956,-0.0941,0.0000 -0.0000,0.0000,0.0000,0.9980,-0.0628,0.0000 -0.0000,0.0000,0.0000,0.9995,-0.0314,0.0000 -0.0000,0.0000,0.0000,1.0000,0.0000,0.0000 diff --git a/scripts/trajectories/full-circle-4s-ccw.csv b/scripts/trajectories/full-circle-4s-ccw.csv deleted file mode 100644 index 13eeae28e126750542c3fc6583d05e4a30575f42..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-4s-ccw.csv +++ /dev/null @@ -1,800 +0,0 @@ -0.9999,0.0000,0.0000,0.0157 -0.9999,0.0000,0.0000,0.0157 -0.9999,0.0000,0.0000,0.0157 -0.9999,0.0000,0.0000,0.0157 -0.9995,0.0000,0.0000,0.0314 -0.9995,0.0000,0.0000,0.0314 -0.9995,0.0000,0.0000,0.0314 -0.9995,0.0000,0.0000,0.0314 -0.9989,0.0000,0.0000,0.0471 -0.9989,0.0000,0.0000,0.0471 -0.9989,0.0000,0.0000,0.0471 -0.9989,0.0000,0.0000,0.0471 -0.9980,0.0000,0.0000,0.0628 -0.9980,0.0000,0.0000,0.0628 -0.9980,0.0000,0.0000,0.0628 -0.9980,0.0000,0.0000,0.0628 -0.9969,0.0000,0.0000,0.0785 -0.9969,0.0000,0.0000,0.0785 -0.9969,0.0000,0.0000,0.0785 -0.9969,0.0000,0.0000,0.0785 -0.9956,0.0000,0.0000,0.0941 -0.9956,0.0000,0.0000,0.0941 -0.9956,0.0000,0.0000,0.0941 -0.9956,0.0000,0.0000,0.0941 -0.9940,0.0000,0.0000,0.1097 -0.9940,0.0000,0.0000,0.1097 -0.9940,0.0000,0.0000,0.1097 -0.9940,0.0000,0.0000,0.1097 -0.9921,0.0000,0.0000,0.1253 -0.9921,0.0000,0.0000,0.1253 -0.9921,0.0000,0.0000,0.1253 -0.9921,0.0000,0.0000,0.1253 -0.9900,0.0000,0.0000,0.1409 -0.9900,0.0000,0.0000,0.1409 -0.9900,0.0000,0.0000,0.1409 -0.9900,0.0000,0.0000,0.1409 -0.9877,0.0000,0.0000,0.1564 -0.9877,0.0000,0.0000,0.1564 -0.9877,0.0000,0.0000,0.1564 -0.9877,0.0000,0.0000,0.1564 -0.9851,0.0000,0.0000,0.1719 -0.9851,0.0000,0.0000,0.1719 -0.9851,0.0000,0.0000,0.1719 -0.9851,0.0000,0.0000,0.1719 -0.9823,0.0000,0.0000,0.1874 -0.9823,0.0000,0.0000,0.1874 -0.9823,0.0000,0.0000,0.1874 -0.9823,0.0000,0.0000,0.1874 -0.9792,0.0000,0.0000,0.2028 -0.9792,0.0000,0.0000,0.2028 -0.9792,0.0000,0.0000,0.2028 -0.9792,0.0000,0.0000,0.2028 -0.9759,0.0000,0.0000,0.2181 -0.9759,0.0000,0.0000,0.2181 -0.9759,0.0000,0.0000,0.2181 -0.9759,0.0000,0.0000,0.2181 -0.9724,0.0000,0.0000,0.2334 -0.9724,0.0000,0.0000,0.2334 -0.9724,0.0000,0.0000,0.2334 -0.9724,0.0000,0.0000,0.2334 -0.9686,0.0000,0.0000,0.2487 -0.9686,0.0000,0.0000,0.2487 -0.9686,0.0000,0.0000,0.2487 -0.9686,0.0000,0.0000,0.2487 -0.9646,0.0000,0.0000,0.2639 -0.9646,0.0000,0.0000,0.2639 -0.9646,0.0000,0.0000,0.2639 -0.9646,0.0000,0.0000,0.2639 -0.9603,0.0000,0.0000,0.2790 -0.9603,0.0000,0.0000,0.2790 -0.9603,0.0000,0.0000,0.2790 -0.9603,0.0000,0.0000,0.2790 -0.9558,0.0000,0.0000,0.2940 -0.9558,0.0000,0.0000,0.2940 -0.9558,0.0000,0.0000,0.2940 -0.9558,0.0000,0.0000,0.2940 -0.9511,0.0000,0.0000,0.3090 -0.9511,0.0000,0.0000,0.3090 -0.9511,0.0000,0.0000,0.3090 -0.9511,0.0000,0.0000,0.3090 -0.9461,0.0000,0.0000,0.3239 -0.9461,0.0000,0.0000,0.3239 -0.9461,0.0000,0.0000,0.3239 -0.9461,0.0000,0.0000,0.3239 -0.9409,0.0000,0.0000,0.3387 -0.9409,0.0000,0.0000,0.3387 -0.9409,0.0000,0.0000,0.3387 -0.9409,0.0000,0.0000,0.3387 -0.9354,0.0000,0.0000,0.3535 -0.9354,0.0000,0.0000,0.3535 -0.9354,0.0000,0.0000,0.3535 -0.9354,0.0000,0.0000,0.3535 -0.9298,0.0000,0.0000,0.3681 -0.9298,0.0000,0.0000,0.3681 -0.9298,0.0000,0.0000,0.3681 -0.9298,0.0000,0.0000,0.3681 -0.9239,0.0000,0.0000,0.3827 -0.9239,0.0000,0.0000,0.3827 -0.9239,0.0000,0.0000,0.3827 -0.9239,0.0000,0.0000,0.3827 -0.9178,0.0000,0.0000,0.3971 -0.9178,0.0000,0.0000,0.3971 -0.9178,0.0000,0.0000,0.3971 -0.9178,0.0000,0.0000,0.3971 -0.9114,0.0000,0.0000,0.4115 -0.9114,0.0000,0.0000,0.4115 -0.9114,0.0000,0.0000,0.4115 -0.9114,0.0000,0.0000,0.4115 -0.9048,0.0000,0.0000,0.4258 -0.9048,0.0000,0.0000,0.4258 -0.9048,0.0000,0.0000,0.4258 -0.9048,0.0000,0.0000,0.4258 -0.8980,0.0000,0.0000,0.4399 -0.8980,0.0000,0.0000,0.4399 -0.8980,0.0000,0.0000,0.4399 -0.8980,0.0000,0.0000,0.4399 -0.8910,0.0000,0.0000,0.4540 -0.8910,0.0000,0.0000,0.4540 -0.8910,0.0000,0.0000,0.4540 -0.8910,0.0000,0.0000,0.4540 -0.8838,0.0000,0.0000,0.4679 -0.8838,0.0000,0.0000,0.4679 -0.8838,0.0000,0.0000,0.4679 -0.8838,0.0000,0.0000,0.4679 -0.8763,0.0000,0.0000,0.4818 -0.8763,0.0000,0.0000,0.4818 -0.8763,0.0000,0.0000,0.4818 -0.8763,0.0000,0.0000,0.4818 -0.8686,0.0000,0.0000,0.4955 -0.8686,0.0000,0.0000,0.4955 -0.8686,0.0000,0.0000,0.4955 -0.8686,0.0000,0.0000,0.4955 -0.8607,0.0000,0.0000,0.5090 -0.8607,0.0000,0.0000,0.5090 -0.8607,0.0000,0.0000,0.5090 -0.8607,0.0000,0.0000,0.5090 -0.8526,0.0000,0.0000,0.5225 -0.8526,0.0000,0.0000,0.5225 -0.8526,0.0000,0.0000,0.5225 -0.8526,0.0000,0.0000,0.5225 -0.8443,0.0000,0.0000,0.5358 -0.8443,0.0000,0.0000,0.5358 -0.8443,0.0000,0.0000,0.5358 -0.8443,0.0000,0.0000,0.5358 -0.8358,0.0000,0.0000,0.5490 -0.8358,0.0000,0.0000,0.5490 -0.8358,0.0000,0.0000,0.5490 -0.8358,0.0000,0.0000,0.5490 -0.8271,0.0000,0.0000,0.5621 -0.8271,0.0000,0.0000,0.5621 -0.8271,0.0000,0.0000,0.5621 -0.8271,0.0000,0.0000,0.5621 -0.8181,0.0000,0.0000,0.5750 -0.8181,0.0000,0.0000,0.5750 -0.8181,0.0000,0.0000,0.5750 -0.8181,0.0000,0.0000,0.5750 -0.8090,0.0000,0.0000,0.5878 -0.8090,0.0000,0.0000,0.5878 -0.8090,0.0000,0.0000,0.5878 -0.8090,0.0000,0.0000,0.5878 -0.7997,0.0000,0.0000,0.6004 -0.7997,0.0000,0.0000,0.6004 -0.7997,0.0000,0.0000,0.6004 -0.7997,0.0000,0.0000,0.6004 -0.7902,0.0000,0.0000,0.6129 -0.7902,0.0000,0.0000,0.6129 -0.7902,0.0000,0.0000,0.6129 -0.7902,0.0000,0.0000,0.6129 -0.7804,0.0000,0.0000,0.6252 -0.7804,0.0000,0.0000,0.6252 -0.7804,0.0000,0.0000,0.6252 -0.7804,0.0000,0.0000,0.6252 -0.7705,0.0000,0.0000,0.6374 -0.7705,0.0000,0.0000,0.6374 -0.7705,0.0000,0.0000,0.6374 -0.7705,0.0000,0.0000,0.6374 -0.7604,0.0000,0.0000,0.6494 -0.7604,0.0000,0.0000,0.6494 -0.7604,0.0000,0.0000,0.6494 -0.7604,0.0000,0.0000,0.6494 -0.7501,0.0000,0.0000,0.6613 -0.7501,0.0000,0.0000,0.6613 -0.7501,0.0000,0.0000,0.6613 -0.7501,0.0000,0.0000,0.6613 -0.7396,0.0000,0.0000,0.6730 -0.7396,0.0000,0.0000,0.6730 -0.7396,0.0000,0.0000,0.6730 -0.7396,0.0000,0.0000,0.6730 -0.7290,0.0000,0.0000,0.6845 -0.7290,0.0000,0.0000,0.6845 -0.7290,0.0000,0.0000,0.6845 -0.7290,0.0000,0.0000,0.6845 -0.7181,0.0000,0.0000,0.6959 -0.7181,0.0000,0.0000,0.6959 -0.7181,0.0000,0.0000,0.6959 -0.7181,0.0000,0.0000,0.6959 -0.7071,0.0000,0.0000,0.7071 -0.7071,0.0000,0.0000,0.7071 -0.7071,0.0000,0.0000,0.7071 -0.7071,0.0000,0.0000,0.7071 -0.6959,0.0000,0.0000,0.7181 -0.6959,0.0000,0.0000,0.7181 -0.6959,0.0000,0.0000,0.7181 -0.6959,0.0000,0.0000,0.7181 -0.6845,0.0000,0.0000,0.7290 -0.6845,0.0000,0.0000,0.7290 -0.6845,0.0000,0.0000,0.7290 -0.6845,0.0000,0.0000,0.7290 -0.6730,0.0000,0.0000,0.7396 -0.6730,0.0000,0.0000,0.7396 -0.6730,0.0000,0.0000,0.7396 -0.6730,0.0000,0.0000,0.7396 -0.6613,0.0000,0.0000,0.7501 -0.6613,0.0000,0.0000,0.7501 -0.6613,0.0000,0.0000,0.7501 -0.6613,0.0000,0.0000,0.7501 -0.6494,0.0000,0.0000,0.7604 -0.6494,0.0000,0.0000,0.7604 -0.6494,0.0000,0.0000,0.7604 -0.6494,0.0000,0.0000,0.7604 -0.6374,0.0000,0.0000,0.7705 -0.6374,0.0000,0.0000,0.7705 -0.6374,0.0000,0.0000,0.7705 -0.6374,0.0000,0.0000,0.7705 -0.6252,0.0000,0.0000,0.7804 -0.6252,0.0000,0.0000,0.7804 -0.6252,0.0000,0.0000,0.7804 -0.6252,0.0000,0.0000,0.7804 -0.6129,0.0000,0.0000,0.7902 -0.6129,0.0000,0.0000,0.7902 -0.6129,0.0000,0.0000,0.7902 -0.6129,0.0000,0.0000,0.7902 -0.6004,0.0000,0.0000,0.7997 -0.6004,0.0000,0.0000,0.7997 -0.6004,0.0000,0.0000,0.7997 -0.6004,0.0000,0.0000,0.7997 -0.5878,0.0000,0.0000,0.8090 -0.5878,0.0000,0.0000,0.8090 -0.5878,0.0000,0.0000,0.8090 -0.5878,0.0000,0.0000,0.8090 -0.5750,0.0000,0.0000,0.8181 -0.5750,0.0000,0.0000,0.8181 -0.5750,0.0000,0.0000,0.8181 -0.5750,0.0000,0.0000,0.8181 -0.5621,0.0000,0.0000,0.8271 -0.5621,0.0000,0.0000,0.8271 -0.5621,0.0000,0.0000,0.8271 -0.5621,0.0000,0.0000,0.8271 -0.5490,0.0000,0.0000,0.8358 -0.5490,0.0000,0.0000,0.8358 -0.5490,0.0000,0.0000,0.8358 -0.5490,0.0000,0.0000,0.8358 -0.5358,0.0000,0.0000,0.8443 -0.5358,0.0000,0.0000,0.8443 -0.5358,0.0000,0.0000,0.8443 -0.5358,0.0000,0.0000,0.8443 -0.5225,0.0000,0.0000,0.8526 -0.5225,0.0000,0.0000,0.8526 -0.5225,0.0000,0.0000,0.8526 -0.5225,0.0000,0.0000,0.8526 -0.5090,0.0000,0.0000,0.8607 -0.5090,0.0000,0.0000,0.8607 -0.5090,0.0000,0.0000,0.8607 -0.5090,0.0000,0.0000,0.8607 -0.4955,0.0000,0.0000,0.8686 -0.4955,0.0000,0.0000,0.8686 -0.4955,0.0000,0.0000,0.8686 -0.4955,0.0000,0.0000,0.8686 -0.4818,0.0000,0.0000,0.8763 -0.4818,0.0000,0.0000,0.8763 -0.4818,0.0000,0.0000,0.8763 -0.4818,0.0000,0.0000,0.8763 -0.4679,0.0000,0.0000,0.8838 -0.4679,0.0000,0.0000,0.8838 -0.4679,0.0000,0.0000,0.8838 -0.4679,0.0000,0.0000,0.8838 -0.4540,0.0000,0.0000,0.8910 -0.4540,0.0000,0.0000,0.8910 -0.4540,0.0000,0.0000,0.8910 -0.4540,0.0000,0.0000,0.8910 -0.4399,0.0000,0.0000,0.8980 -0.4399,0.0000,0.0000,0.8980 -0.4399,0.0000,0.0000,0.8980 -0.4399,0.0000,0.0000,0.8980 -0.4258,0.0000,0.0000,0.9048 -0.4258,0.0000,0.0000,0.9048 -0.4258,0.0000,0.0000,0.9048 -0.4258,0.0000,0.0000,0.9048 -0.4115,0.0000,0.0000,0.9114 -0.4115,0.0000,0.0000,0.9114 -0.4115,0.0000,0.0000,0.9114 -0.4115,0.0000,0.0000,0.9114 -0.3971,0.0000,0.0000,0.9178 -0.3971,0.0000,0.0000,0.9178 -0.3971,0.0000,0.0000,0.9178 -0.3971,0.0000,0.0000,0.9178 -0.3827,0.0000,0.0000,0.9239 -0.3827,0.0000,0.0000,0.9239 -0.3827,0.0000,0.0000,0.9239 -0.3827,0.0000,0.0000,0.9239 -0.3681,0.0000,0.0000,0.9298 -0.3681,0.0000,0.0000,0.9298 -0.3681,0.0000,0.0000,0.9298 -0.3681,0.0000,0.0000,0.9298 -0.3535,0.0000,0.0000,0.9354 -0.3535,0.0000,0.0000,0.9354 -0.3535,0.0000,0.0000,0.9354 -0.3535,0.0000,0.0000,0.9354 -0.3387,0.0000,0.0000,0.9409 -0.3387,0.0000,0.0000,0.9409 -0.3387,0.0000,0.0000,0.9409 -0.3387,0.0000,0.0000,0.9409 -0.3239,0.0000,0.0000,0.9461 -0.3239,0.0000,0.0000,0.9461 -0.3239,0.0000,0.0000,0.9461 -0.3239,0.0000,0.0000,0.9461 -0.3090,0.0000,0.0000,0.9511 -0.3090,0.0000,0.0000,0.9511 -0.3090,0.0000,0.0000,0.9511 -0.3090,0.0000,0.0000,0.9511 -0.2940,0.0000,0.0000,0.9558 -0.2940,0.0000,0.0000,0.9558 -0.2940,0.0000,0.0000,0.9558 -0.2940,0.0000,0.0000,0.9558 -0.2790,0.0000,0.0000,0.9603 -0.2790,0.0000,0.0000,0.9603 -0.2790,0.0000,0.0000,0.9603 -0.2790,0.0000,0.0000,0.9603 -0.2639,0.0000,0.0000,0.9646 -0.2639,0.0000,0.0000,0.9646 -0.2639,0.0000,0.0000,0.9646 -0.2639,0.0000,0.0000,0.9646 -0.2487,0.0000,0.0000,0.9686 -0.2487,0.0000,0.0000,0.9686 -0.2487,0.0000,0.0000,0.9686 -0.2487,0.0000,0.0000,0.9686 -0.2334,0.0000,0.0000,0.9724 -0.2334,0.0000,0.0000,0.9724 -0.2334,0.0000,0.0000,0.9724 -0.2334,0.0000,0.0000,0.9724 -0.2181,0.0000,0.0000,0.9759 -0.2181,0.0000,0.0000,0.9759 -0.2181,0.0000,0.0000,0.9759 -0.2181,0.0000,0.0000,0.9759 -0.2028,0.0000,0.0000,0.9792 -0.2028,0.0000,0.0000,0.9792 -0.2028,0.0000,0.0000,0.9792 -0.2028,0.0000,0.0000,0.9792 -0.1874,0.0000,0.0000,0.9823 -0.1874,0.0000,0.0000,0.9823 -0.1874,0.0000,0.0000,0.9823 -0.1874,0.0000,0.0000,0.9823 -0.1719,0.0000,0.0000,0.9851 -0.1719,0.0000,0.0000,0.9851 -0.1719,0.0000,0.0000,0.9851 -0.1719,0.0000,0.0000,0.9851 -0.1564,0.0000,0.0000,0.9877 -0.1564,0.0000,0.0000,0.9877 -0.1564,0.0000,0.0000,0.9877 -0.1564,0.0000,0.0000,0.9877 -0.1409,0.0000,0.0000,0.9900 -0.1409,0.0000,0.0000,0.9900 -0.1409,0.0000,0.0000,0.9900 -0.1409,0.0000,0.0000,0.9900 -0.1253,0.0000,0.0000,0.9921 -0.1253,0.0000,0.0000,0.9921 -0.1253,0.0000,0.0000,0.9921 -0.1253,0.0000,0.0000,0.9921 -0.1097,0.0000,0.0000,0.9940 -0.1097,0.0000,0.0000,0.9940 -0.1097,0.0000,0.0000,0.9940 -0.1097,0.0000,0.0000,0.9940 -0.0941,0.0000,0.0000,0.9956 -0.0941,0.0000,0.0000,0.9956 -0.0941,0.0000,0.0000,0.9956 -0.0941,0.0000,0.0000,0.9956 -0.0785,0.0000,0.0000,0.9969 -0.0785,0.0000,0.0000,0.9969 -0.0785,0.0000,0.0000,0.9969 -0.0785,0.0000,0.0000,0.9969 -0.0628,0.0000,0.0000,0.9980 -0.0628,0.0000,0.0000,0.9980 -0.0628,0.0000,0.0000,0.9980 -0.0628,0.0000,0.0000,0.9980 -0.0471,0.0000,0.0000,0.9989 -0.0471,0.0000,0.0000,0.9989 -0.0471,0.0000,0.0000,0.9989 -0.0471,0.0000,0.0000,0.9989 -0.0314,0.0000,0.0000,0.9995 -0.0314,0.0000,0.0000,0.9995 -0.0314,0.0000,0.0000,0.9995 -0.0314,0.0000,0.0000,0.9995 -0.0157,0.0000,0.0000,0.9999 -0.0157,0.0000,0.0000,0.9999 -0.0157,0.0000,0.0000,0.9999 -0.0157,0.0000,0.0000,0.9999 --0.0000,0.0000,0.0000,1.0000 --0.0000,0.0000,0.0000,1.0000 --0.0000,0.0000,0.0000,1.0000 --0.0000,0.0000,0.0000,1.0000 --0.0157,0.0000,0.0000,0.9999 --0.0157,0.0000,0.0000,0.9999 --0.0157,0.0000,0.0000,0.9999 --0.0157,0.0000,0.0000,0.9999 --0.0314,0.0000,0.0000,0.9995 --0.0314,0.0000,0.0000,0.9995 --0.0314,0.0000,0.0000,0.9995 --0.0314,0.0000,0.0000,0.9995 --0.0471,0.0000,0.0000,0.9989 --0.0471,0.0000,0.0000,0.9989 --0.0471,0.0000,0.0000,0.9989 --0.0471,0.0000,0.0000,0.9989 --0.0628,0.0000,0.0000,0.9980 --0.0628,0.0000,0.0000,0.9980 --0.0628,0.0000,0.0000,0.9980 --0.0628,0.0000,0.0000,0.9980 --0.0785,0.0000,0.0000,0.9969 --0.0785,0.0000,0.0000,0.9969 --0.0785,0.0000,0.0000,0.9969 --0.0785,0.0000,0.0000,0.9969 --0.0941,0.0000,0.0000,0.9956 --0.0941,0.0000,0.0000,0.9956 --0.0941,0.0000,0.0000,0.9956 --0.0941,0.0000,0.0000,0.9956 --0.1097,0.0000,0.0000,0.9940 --0.1097,0.0000,0.0000,0.9940 --0.1097,0.0000,0.0000,0.9940 --0.1097,0.0000,0.0000,0.9940 --0.1253,0.0000,0.0000,0.9921 --0.1253,0.0000,0.0000,0.9921 --0.1253,0.0000,0.0000,0.9921 --0.1253,0.0000,0.0000,0.9921 --0.1409,0.0000,0.0000,0.9900 --0.1409,0.0000,0.0000,0.9900 --0.1409,0.0000,0.0000,0.9900 --0.1409,0.0000,0.0000,0.9900 --0.1564,0.0000,0.0000,0.9877 --0.1564,0.0000,0.0000,0.9877 --0.1564,0.0000,0.0000,0.9877 --0.1564,0.0000,0.0000,0.9877 --0.1719,0.0000,0.0000,0.9851 --0.1719,0.0000,0.0000,0.9851 --0.1719,0.0000,0.0000,0.9851 --0.1719,0.0000,0.0000,0.9851 --0.1874,0.0000,0.0000,0.9823 --0.1874,0.0000,0.0000,0.9823 --0.1874,0.0000,0.0000,0.9823 --0.1874,0.0000,0.0000,0.9823 --0.2028,0.0000,0.0000,0.9792 --0.2028,0.0000,0.0000,0.9792 --0.2028,0.0000,0.0000,0.9792 --0.2028,0.0000,0.0000,0.9792 --0.2181,0.0000,0.0000,0.9759 --0.2181,0.0000,0.0000,0.9759 --0.2181,0.0000,0.0000,0.9759 --0.2181,0.0000,0.0000,0.9759 --0.2334,0.0000,0.0000,0.9724 --0.2334,0.0000,0.0000,0.9724 --0.2334,0.0000,0.0000,0.9724 --0.2334,0.0000,0.0000,0.9724 --0.2487,0.0000,0.0000,0.9686 --0.2487,0.0000,0.0000,0.9686 --0.2487,0.0000,0.0000,0.9686 --0.2487,0.0000,0.0000,0.9686 --0.2639,0.0000,0.0000,0.9646 --0.2639,0.0000,0.0000,0.9646 --0.2639,0.0000,0.0000,0.9646 --0.2639,0.0000,0.0000,0.9646 --0.2790,0.0000,0.0000,0.9603 --0.2790,0.0000,0.0000,0.9603 --0.2790,0.0000,0.0000,0.9603 --0.2790,0.0000,0.0000,0.9603 --0.2940,0.0000,0.0000,0.9558 --0.2940,0.0000,0.0000,0.9558 --0.2940,0.0000,0.0000,0.9558 --0.2940,0.0000,0.0000,0.9558 --0.3090,0.0000,0.0000,0.9511 --0.3090,0.0000,0.0000,0.9511 --0.3090,0.0000,0.0000,0.9511 --0.3090,0.0000,0.0000,0.9511 --0.3239,0.0000,0.0000,0.9461 --0.3239,0.0000,0.0000,0.9461 --0.3239,0.0000,0.0000,0.9461 --0.3239,0.0000,0.0000,0.9461 --0.3387,0.0000,0.0000,0.9409 --0.3387,0.0000,0.0000,0.9409 --0.3387,0.0000,0.0000,0.9409 --0.3387,0.0000,0.0000,0.9409 --0.3535,0.0000,0.0000,0.9354 --0.3535,0.0000,0.0000,0.9354 --0.3535,0.0000,0.0000,0.9354 --0.3535,0.0000,0.0000,0.9354 --0.3681,0.0000,0.0000,0.9298 --0.3681,0.0000,0.0000,0.9298 --0.3681,0.0000,0.0000,0.9298 --0.3681,0.0000,0.0000,0.9298 --0.3827,0.0000,0.0000,0.9239 --0.3827,0.0000,0.0000,0.9239 --0.3827,0.0000,0.0000,0.9239 --0.3827,0.0000,0.0000,0.9239 --0.3971,0.0000,0.0000,0.9178 --0.3971,0.0000,0.0000,0.9178 --0.3971,0.0000,0.0000,0.9178 --0.3971,0.0000,0.0000,0.9178 --0.4115,0.0000,0.0000,0.9114 --0.4115,0.0000,0.0000,0.9114 --0.4115,0.0000,0.0000,0.9114 --0.4115,0.0000,0.0000,0.9114 --0.4258,0.0000,0.0000,0.9048 --0.4258,0.0000,0.0000,0.9048 --0.4258,0.0000,0.0000,0.9048 --0.4258,0.0000,0.0000,0.9048 --0.4399,0.0000,0.0000,0.8980 --0.4399,0.0000,0.0000,0.8980 --0.4399,0.0000,0.0000,0.8980 --0.4399,0.0000,0.0000,0.8980 --0.4540,0.0000,0.0000,0.8910 --0.4540,0.0000,0.0000,0.8910 --0.4540,0.0000,0.0000,0.8910 --0.4540,0.0000,0.0000,0.8910 --0.4679,0.0000,0.0000,0.8838 --0.4679,0.0000,0.0000,0.8838 --0.4679,0.0000,0.0000,0.8838 --0.4679,0.0000,0.0000,0.8838 --0.4818,0.0000,0.0000,0.8763 --0.4818,0.0000,0.0000,0.8763 --0.4818,0.0000,0.0000,0.8763 --0.4818,0.0000,0.0000,0.8763 --0.4955,0.0000,0.0000,0.8686 --0.4955,0.0000,0.0000,0.8686 --0.4955,0.0000,0.0000,0.8686 --0.4955,0.0000,0.0000,0.8686 --0.5090,0.0000,0.0000,0.8607 --0.5090,0.0000,0.0000,0.8607 --0.5090,0.0000,0.0000,0.8607 --0.5090,0.0000,0.0000,0.8607 --0.5225,0.0000,0.0000,0.8526 --0.5225,0.0000,0.0000,0.8526 --0.5225,0.0000,0.0000,0.8526 --0.5225,0.0000,0.0000,0.8526 --0.5358,0.0000,0.0000,0.8443 --0.5358,0.0000,0.0000,0.8443 --0.5358,0.0000,0.0000,0.8443 --0.5358,0.0000,0.0000,0.8443 --0.5490,0.0000,0.0000,0.8358 --0.5490,0.0000,0.0000,0.8358 --0.5490,0.0000,0.0000,0.8358 --0.5490,0.0000,0.0000,0.8358 --0.5621,0.0000,0.0000,0.8271 --0.5621,0.0000,0.0000,0.8271 --0.5621,0.0000,0.0000,0.8271 --0.5621,0.0000,0.0000,0.8271 --0.5750,0.0000,0.0000,0.8181 --0.5750,0.0000,0.0000,0.8181 --0.5750,0.0000,0.0000,0.8181 --0.5750,0.0000,0.0000,0.8181 --0.5878,0.0000,0.0000,0.8090 --0.5878,0.0000,0.0000,0.8090 --0.5878,0.0000,0.0000,0.8090 --0.5878,0.0000,0.0000,0.8090 --0.6004,0.0000,0.0000,0.7997 --0.6004,0.0000,0.0000,0.7997 --0.6004,0.0000,0.0000,0.7997 --0.6004,0.0000,0.0000,0.7997 --0.6129,0.0000,0.0000,0.7902 --0.6129,0.0000,0.0000,0.7902 --0.6129,0.0000,0.0000,0.7902 --0.6129,0.0000,0.0000,0.7902 --0.6252,0.0000,0.0000,0.7804 --0.6252,0.0000,0.0000,0.7804 --0.6252,0.0000,0.0000,0.7804 --0.6252,0.0000,0.0000,0.7804 --0.6374,0.0000,0.0000,0.7705 --0.6374,0.0000,0.0000,0.7705 --0.6374,0.0000,0.0000,0.7705 --0.6374,0.0000,0.0000,0.7705 --0.6494,0.0000,0.0000,0.7604 --0.6494,0.0000,0.0000,0.7604 --0.6494,0.0000,0.0000,0.7604 --0.6494,0.0000,0.0000,0.7604 --0.6613,0.0000,0.0000,0.7501 --0.6613,0.0000,0.0000,0.7501 --0.6613,0.0000,0.0000,0.7501 --0.6613,0.0000,0.0000,0.7501 --0.6730,0.0000,0.0000,0.7396 --0.6730,0.0000,0.0000,0.7396 --0.6730,0.0000,0.0000,0.7396 --0.6730,0.0000,0.0000,0.7396 --0.6845,0.0000,0.0000,0.7290 --0.6845,0.0000,0.0000,0.7290 --0.6845,0.0000,0.0000,0.7290 --0.6845,0.0000,0.0000,0.7290 --0.6959,0.0000,0.0000,0.7181 --0.6959,0.0000,0.0000,0.7181 --0.6959,0.0000,0.0000,0.7181 --0.6959,0.0000,0.0000,0.7181 --0.7071,0.0000,0.0000,0.7071 --0.7071,0.0000,0.0000,0.7071 --0.7071,0.0000,0.0000,0.7071 --0.7071,0.0000,0.0000,0.7071 --0.7181,0.0000,0.0000,0.6959 --0.7181,0.0000,0.0000,0.6959 --0.7181,0.0000,0.0000,0.6959 --0.7181,0.0000,0.0000,0.6959 --0.7290,0.0000,0.0000,0.6845 --0.7290,0.0000,0.0000,0.6845 --0.7290,0.0000,0.0000,0.6845 --0.7290,0.0000,0.0000,0.6845 --0.7396,0.0000,0.0000,0.6730 --0.7396,0.0000,0.0000,0.6730 --0.7396,0.0000,0.0000,0.6730 --0.7396,0.0000,0.0000,0.6730 --0.7501,0.0000,0.0000,0.6613 --0.7501,0.0000,0.0000,0.6613 --0.7501,0.0000,0.0000,0.6613 --0.7501,0.0000,0.0000,0.6613 --0.7604,0.0000,0.0000,0.6494 --0.7604,0.0000,0.0000,0.6494 --0.7604,0.0000,0.0000,0.6494 --0.7604,0.0000,0.0000,0.6494 --0.7705,0.0000,0.0000,0.6374 --0.7705,0.0000,0.0000,0.6374 --0.7705,0.0000,0.0000,0.6374 --0.7705,0.0000,0.0000,0.6374 --0.7804,0.0000,0.0000,0.6252 --0.7804,0.0000,0.0000,0.6252 --0.7804,0.0000,0.0000,0.6252 --0.7804,0.0000,0.0000,0.6252 --0.7902,0.0000,0.0000,0.6129 --0.7902,0.0000,0.0000,0.6129 --0.7902,0.0000,0.0000,0.6129 --0.7902,0.0000,0.0000,0.6129 --0.7997,0.0000,0.0000,0.6004 --0.7997,0.0000,0.0000,0.6004 --0.7997,0.0000,0.0000,0.6004 --0.7997,0.0000,0.0000,0.6004 --0.8090,0.0000,0.0000,0.5878 --0.8090,0.0000,0.0000,0.5878 --0.8090,0.0000,0.0000,0.5878 --0.8090,0.0000,0.0000,0.5878 --0.8182,0.0000,0.0000,0.5750 --0.8182,0.0000,0.0000,0.5750 --0.8182,0.0000,0.0000,0.5750 --0.8182,0.0000,0.0000,0.5750 --0.8271,0.0000,0.0000,0.5621 --0.8271,0.0000,0.0000,0.5621 --0.8271,0.0000,0.0000,0.5621 --0.8271,0.0000,0.0000,0.5621 --0.8358,0.0000,0.0000,0.5490 --0.8358,0.0000,0.0000,0.5490 --0.8358,0.0000,0.0000,0.5490 --0.8358,0.0000,0.0000,0.5490 --0.8443,0.0000,0.0000,0.5358 --0.8443,0.0000,0.0000,0.5358 --0.8443,0.0000,0.0000,0.5358 --0.8443,0.0000,0.0000,0.5358 --0.8526,0.0000,0.0000,0.5225 --0.8526,0.0000,0.0000,0.5225 --0.8526,0.0000,0.0000,0.5225 --0.8526,0.0000,0.0000,0.5225 --0.8607,0.0000,0.0000,0.5090 --0.8607,0.0000,0.0000,0.5090 --0.8607,0.0000,0.0000,0.5090 --0.8607,0.0000,0.0000,0.5090 --0.8686,0.0000,0.0000,0.4955 --0.8686,0.0000,0.0000,0.4955 --0.8686,0.0000,0.0000,0.4955 --0.8686,0.0000,0.0000,0.4955 --0.8763,0.0000,0.0000,0.4818 --0.8763,0.0000,0.0000,0.4818 --0.8763,0.0000,0.0000,0.4818 --0.8763,0.0000,0.0000,0.4818 --0.8838,0.0000,0.0000,0.4679 --0.8838,0.0000,0.0000,0.4679 --0.8838,0.0000,0.0000,0.4679 --0.8838,0.0000,0.0000,0.4679 --0.8910,0.0000,0.0000,0.4540 --0.8910,0.0000,0.0000,0.4540 --0.8910,0.0000,0.0000,0.4540 --0.8910,0.0000,0.0000,0.4540 --0.8980,0.0000,0.0000,0.4399 --0.8980,0.0000,0.0000,0.4399 --0.8980,0.0000,0.0000,0.4399 --0.8980,0.0000,0.0000,0.4399 --0.9048,0.0000,0.0000,0.4258 --0.9048,0.0000,0.0000,0.4258 --0.9048,0.0000,0.0000,0.4258 --0.9048,0.0000,0.0000,0.4258 --0.9114,0.0000,0.0000,0.4115 --0.9114,0.0000,0.0000,0.4115 --0.9114,0.0000,0.0000,0.4115 --0.9114,0.0000,0.0000,0.4115 --0.9178,0.0000,0.0000,0.3971 --0.9178,0.0000,0.0000,0.3971 --0.9178,0.0000,0.0000,0.3971 --0.9178,0.0000,0.0000,0.3971 --0.9239,0.0000,0.0000,0.3827 --0.9239,0.0000,0.0000,0.3827 --0.9239,0.0000,0.0000,0.3827 --0.9239,0.0000,0.0000,0.3827 --0.9298,0.0000,0.0000,0.3681 --0.9298,0.0000,0.0000,0.3681 --0.9298,0.0000,0.0000,0.3681 --0.9298,0.0000,0.0000,0.3681 --0.9354,0.0000,0.0000,0.3535 --0.9354,0.0000,0.0000,0.3535 --0.9354,0.0000,0.0000,0.3535 --0.9354,0.0000,0.0000,0.3535 --0.9409,0.0000,0.0000,0.3387 --0.9409,0.0000,0.0000,0.3387 --0.9409,0.0000,0.0000,0.3387 --0.9409,0.0000,0.0000,0.3387 --0.9461,0.0000,0.0000,0.3239 --0.9461,0.0000,0.0000,0.3239 --0.9461,0.0000,0.0000,0.3239 --0.9461,0.0000,0.0000,0.3239 --0.9511,0.0000,0.0000,0.3090 --0.9511,0.0000,0.0000,0.3090 --0.9511,0.0000,0.0000,0.3090 --0.9511,0.0000,0.0000,0.3090 --0.9558,0.0000,0.0000,0.2940 --0.9558,0.0000,0.0000,0.2940 --0.9558,0.0000,0.0000,0.2940 --0.9558,0.0000,0.0000,0.2940 --0.9603,0.0000,0.0000,0.2790 --0.9603,0.0000,0.0000,0.2790 --0.9603,0.0000,0.0000,0.2790 --0.9603,0.0000,0.0000,0.2790 --0.9646,0.0000,0.0000,0.2639 --0.9646,0.0000,0.0000,0.2639 --0.9646,0.0000,0.0000,0.2639 --0.9646,0.0000,0.0000,0.2639 --0.9686,0.0000,0.0000,0.2487 --0.9686,0.0000,0.0000,0.2487 --0.9686,0.0000,0.0000,0.2487 --0.9686,0.0000,0.0000,0.2487 --0.9724,0.0000,0.0000,0.2334 --0.9724,0.0000,0.0000,0.2334 --0.9724,0.0000,0.0000,0.2334 --0.9724,0.0000,0.0000,0.2334 --0.9759,0.0000,0.0000,0.2181 --0.9759,0.0000,0.0000,0.2181 --0.9759,0.0000,0.0000,0.2181 --0.9759,0.0000,0.0000,0.2181 --0.9792,0.0000,0.0000,0.2028 --0.9792,0.0000,0.0000,0.2028 --0.9792,0.0000,0.0000,0.2028 --0.9792,0.0000,0.0000,0.2028 --0.9823,0.0000,0.0000,0.1874 --0.9823,0.0000,0.0000,0.1874 --0.9823,0.0000,0.0000,0.1874 --0.9823,0.0000,0.0000,0.1874 --0.9851,0.0000,0.0000,0.1719 --0.9851,0.0000,0.0000,0.1719 --0.9851,0.0000,0.0000,0.1719 --0.9851,0.0000,0.0000,0.1719 --0.9877,0.0000,0.0000,0.1564 --0.9877,0.0000,0.0000,0.1564 --0.9877,0.0000,0.0000,0.1564 --0.9877,0.0000,0.0000,0.1564 --0.9900,0.0000,0.0000,0.1409 --0.9900,0.0000,0.0000,0.1409 --0.9900,0.0000,0.0000,0.1409 --0.9900,0.0000,0.0000,0.1409 --0.9921,0.0000,0.0000,0.1253 --0.9921,0.0000,0.0000,0.1253 --0.9921,0.0000,0.0000,0.1253 --0.9921,0.0000,0.0000,0.1253 --0.9940,0.0000,0.0000,0.1097 --0.9940,0.0000,0.0000,0.1097 --0.9940,0.0000,0.0000,0.1097 --0.9940,0.0000,0.0000,0.1097 --0.9956,0.0000,0.0000,0.0941 --0.9956,0.0000,0.0000,0.0941 --0.9956,0.0000,0.0000,0.0941 --0.9956,0.0000,0.0000,0.0941 --0.9969,0.0000,0.0000,0.0785 --0.9969,0.0000,0.0000,0.0785 --0.9969,0.0000,0.0000,0.0785 --0.9969,0.0000,0.0000,0.0785 --0.9980,0.0000,0.0000,0.0628 --0.9980,0.0000,0.0000,0.0628 --0.9980,0.0000,0.0000,0.0628 --0.9980,0.0000,0.0000,0.0628 --0.9989,0.0000,0.0000,0.0471 --0.9989,0.0000,0.0000,0.0471 --0.9989,0.0000,0.0000,0.0471 --0.9989,0.0000,0.0000,0.0471 --0.9995,0.0000,0.0000,0.0314 --0.9995,0.0000,0.0000,0.0314 --0.9995,0.0000,0.0000,0.0314 --0.9995,0.0000,0.0000,0.0314 --0.9999,0.0000,0.0000,0.0157 --0.9999,0.0000,0.0000,0.0157 --0.9999,0.0000,0.0000,0.0157 --0.9999,0.0000,0.0000,0.0157 -1.0000,0.0000,0.0000,0.0000 -1.0000,0.0000,0.0000,0.0000 -1.0000,0.0000,0.0000,0.0000 -1.0000,0.0000,0.0000,0.0000 diff --git a/scripts/trajectories/full-circle-4s.csv b/scripts/trajectories/full-circle-4s.csv deleted file mode 100644 index 4174a531b7e4b7ed785105d18fcfe2d5d195c035..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-4s.csv +++ /dev/null @@ -1,800 +0,0 @@ -0.9999,0.0000,0.0000,-0.0157 -0.9999,0.0000,0.0000,-0.0157 -0.9999,0.0000,0.0000,-0.0157 -0.9999,0.0000,0.0000,-0.0157 -0.9995,0.0000,0.0000,-0.0314 -0.9995,0.0000,0.0000,-0.0314 -0.9995,0.0000,0.0000,-0.0314 -0.9995,0.0000,0.0000,-0.0314 -0.9989,0.0000,0.0000,-0.0471 -0.9989,0.0000,0.0000,-0.0471 -0.9989,0.0000,0.0000,-0.0471 -0.9989,0.0000,0.0000,-0.0471 -0.9980,0.0000,0.0000,-0.0628 -0.9980,0.0000,0.0000,-0.0628 -0.9980,0.0000,0.0000,-0.0628 -0.9980,0.0000,0.0000,-0.0628 -0.9969,0.0000,0.0000,-0.0785 -0.9969,0.0000,0.0000,-0.0785 -0.9969,0.0000,0.0000,-0.0785 -0.9969,0.0000,0.0000,-0.0785 -0.9956,0.0000,0.0000,-0.0941 -0.9956,0.0000,0.0000,-0.0941 -0.9956,0.0000,0.0000,-0.0941 -0.9956,0.0000,0.0000,-0.0941 -0.9940,0.0000,0.0000,-0.1097 -0.9940,0.0000,0.0000,-0.1097 -0.9940,0.0000,0.0000,-0.1097 -0.9940,0.0000,0.0000,-0.1097 -0.9921,0.0000,0.0000,-0.1253 -0.9921,0.0000,0.0000,-0.1253 -0.9921,0.0000,0.0000,-0.1253 -0.9921,0.0000,0.0000,-0.1253 -0.9900,0.0000,0.0000,-0.1409 -0.9900,0.0000,0.0000,-0.1409 -0.9900,0.0000,0.0000,-0.1409 -0.9900,0.0000,0.0000,-0.1409 -0.9877,0.0000,0.0000,-0.1564 -0.9877,0.0000,0.0000,-0.1564 -0.9877,0.0000,0.0000,-0.1564 -0.9877,0.0000,0.0000,-0.1564 -0.9851,0.0000,0.0000,-0.1719 -0.9851,0.0000,0.0000,-0.1719 -0.9851,0.0000,0.0000,-0.1719 -0.9851,0.0000,0.0000,-0.1719 -0.9823,0.0000,0.0000,-0.1874 -0.9823,0.0000,0.0000,-0.1874 -0.9823,0.0000,0.0000,-0.1874 -0.9823,0.0000,0.0000,-0.1874 -0.9792,0.0000,0.0000,-0.2028 -0.9792,0.0000,0.0000,-0.2028 -0.9792,0.0000,0.0000,-0.2028 -0.9792,0.0000,0.0000,-0.2028 -0.9759,0.0000,0.0000,-0.2181 -0.9759,0.0000,0.0000,-0.2181 -0.9759,0.0000,0.0000,-0.2181 -0.9759,0.0000,0.0000,-0.2181 -0.9724,0.0000,0.0000,-0.2334 -0.9724,0.0000,0.0000,-0.2334 -0.9724,0.0000,0.0000,-0.2334 -0.9724,0.0000,0.0000,-0.2334 -0.9686,0.0000,0.0000,-0.2487 -0.9686,0.0000,0.0000,-0.2487 -0.9686,0.0000,0.0000,-0.2487 -0.9686,0.0000,0.0000,-0.2487 -0.9646,0.0000,0.0000,-0.2639 -0.9646,0.0000,0.0000,-0.2639 -0.9646,0.0000,0.0000,-0.2639 -0.9646,0.0000,0.0000,-0.2639 -0.9603,0.0000,0.0000,-0.2790 -0.9603,0.0000,0.0000,-0.2790 -0.9603,0.0000,0.0000,-0.2790 -0.9603,0.0000,0.0000,-0.2790 -0.9558,0.0000,0.0000,-0.2940 -0.9558,0.0000,0.0000,-0.2940 -0.9558,0.0000,0.0000,-0.2940 -0.9558,0.0000,0.0000,-0.2940 -0.9511,0.0000,0.0000,-0.3090 -0.9511,0.0000,0.0000,-0.3090 -0.9511,0.0000,0.0000,-0.3090 -0.9511,0.0000,0.0000,-0.3090 -0.9461,0.0000,0.0000,-0.3239 -0.9461,0.0000,0.0000,-0.3239 -0.9461,0.0000,0.0000,-0.3239 -0.9461,0.0000,0.0000,-0.3239 -0.9409,0.0000,0.0000,-0.3387 -0.9409,0.0000,0.0000,-0.3387 -0.9409,0.0000,0.0000,-0.3387 -0.9409,0.0000,0.0000,-0.3387 -0.9354,0.0000,0.0000,-0.3535 -0.9354,0.0000,0.0000,-0.3535 -0.9354,0.0000,0.0000,-0.3535 -0.9354,0.0000,0.0000,-0.3535 -0.9298,0.0000,0.0000,-0.3681 -0.9298,0.0000,0.0000,-0.3681 -0.9298,0.0000,0.0000,-0.3681 -0.9298,0.0000,0.0000,-0.3681 -0.9239,0.0000,0.0000,-0.3827 -0.9239,0.0000,0.0000,-0.3827 -0.9239,0.0000,0.0000,-0.3827 -0.9239,0.0000,0.0000,-0.3827 -0.9178,0.0000,0.0000,-0.3971 -0.9178,0.0000,0.0000,-0.3971 -0.9178,0.0000,0.0000,-0.3971 -0.9178,0.0000,0.0000,-0.3971 -0.9114,0.0000,0.0000,-0.4115 -0.9114,0.0000,0.0000,-0.4115 -0.9114,0.0000,0.0000,-0.4115 -0.9114,0.0000,0.0000,-0.4115 -0.9048,0.0000,0.0000,-0.4258 -0.9048,0.0000,0.0000,-0.4258 -0.9048,0.0000,0.0000,-0.4258 -0.9048,0.0000,0.0000,-0.4258 -0.8980,0.0000,0.0000,-0.4399 -0.8980,0.0000,0.0000,-0.4399 -0.8980,0.0000,0.0000,-0.4399 -0.8980,0.0000,0.0000,-0.4399 -0.8910,0.0000,0.0000,-0.4540 -0.8910,0.0000,0.0000,-0.4540 -0.8910,0.0000,0.0000,-0.4540 -0.8910,0.0000,0.0000,-0.4540 -0.8838,0.0000,0.0000,-0.4679 -0.8838,0.0000,0.0000,-0.4679 -0.8838,0.0000,0.0000,-0.4679 -0.8838,0.0000,0.0000,-0.4679 -0.8763,0.0000,0.0000,-0.4818 -0.8763,0.0000,0.0000,-0.4818 -0.8763,0.0000,0.0000,-0.4818 -0.8763,0.0000,0.0000,-0.4818 -0.8686,0.0000,0.0000,-0.4955 -0.8686,0.0000,0.0000,-0.4955 -0.8686,0.0000,0.0000,-0.4955 -0.8686,0.0000,0.0000,-0.4955 -0.8607,0.0000,0.0000,-0.5090 -0.8607,0.0000,0.0000,-0.5090 -0.8607,0.0000,0.0000,-0.5090 -0.8607,0.0000,0.0000,-0.5090 -0.8526,0.0000,0.0000,-0.5225 -0.8526,0.0000,0.0000,-0.5225 -0.8526,0.0000,0.0000,-0.5225 -0.8526,0.0000,0.0000,-0.5225 -0.8443,0.0000,0.0000,-0.5358 -0.8443,0.0000,0.0000,-0.5358 -0.8443,0.0000,0.0000,-0.5358 -0.8443,0.0000,0.0000,-0.5358 -0.8358,0.0000,0.0000,-0.5490 -0.8358,0.0000,0.0000,-0.5490 -0.8358,0.0000,0.0000,-0.5490 -0.8358,0.0000,0.0000,-0.5490 -0.8271,0.0000,0.0000,-0.5621 -0.8271,0.0000,0.0000,-0.5621 -0.8271,0.0000,0.0000,-0.5621 -0.8271,0.0000,0.0000,-0.5621 -0.8181,0.0000,0.0000,-0.5750 -0.8181,0.0000,0.0000,-0.5750 -0.8181,0.0000,0.0000,-0.5750 -0.8181,0.0000,0.0000,-0.5750 -0.8090,0.0000,0.0000,-0.5878 -0.8090,0.0000,0.0000,-0.5878 -0.8090,0.0000,0.0000,-0.5878 -0.8090,0.0000,0.0000,-0.5878 -0.7997,0.0000,0.0000,-0.6004 -0.7997,0.0000,0.0000,-0.6004 -0.7997,0.0000,0.0000,-0.6004 -0.7997,0.0000,0.0000,-0.6004 -0.7902,0.0000,0.0000,-0.6129 -0.7902,0.0000,0.0000,-0.6129 -0.7902,0.0000,0.0000,-0.6129 -0.7902,0.0000,0.0000,-0.6129 -0.7804,0.0000,0.0000,-0.6252 -0.7804,0.0000,0.0000,-0.6252 -0.7804,0.0000,0.0000,-0.6252 -0.7804,0.0000,0.0000,-0.6252 -0.7705,0.0000,0.0000,-0.6374 -0.7705,0.0000,0.0000,-0.6374 -0.7705,0.0000,0.0000,-0.6374 -0.7705,0.0000,0.0000,-0.6374 -0.7604,0.0000,0.0000,-0.6494 -0.7604,0.0000,0.0000,-0.6494 -0.7604,0.0000,0.0000,-0.6494 -0.7604,0.0000,0.0000,-0.6494 -0.7501,0.0000,0.0000,-0.6613 -0.7501,0.0000,0.0000,-0.6613 -0.7501,0.0000,0.0000,-0.6613 -0.7501,0.0000,0.0000,-0.6613 -0.7396,0.0000,0.0000,-0.6730 -0.7396,0.0000,0.0000,-0.6730 -0.7396,0.0000,0.0000,-0.6730 -0.7396,0.0000,0.0000,-0.6730 -0.7290,0.0000,0.0000,-0.6845 -0.7290,0.0000,0.0000,-0.6845 -0.7290,0.0000,0.0000,-0.6845 -0.7290,0.0000,0.0000,-0.6845 -0.7181,0.0000,0.0000,-0.6959 -0.7181,0.0000,0.0000,-0.6959 -0.7181,0.0000,0.0000,-0.6959 -0.7181,0.0000,0.0000,-0.6959 -0.7071,0.0000,0.0000,-0.7071 -0.7071,0.0000,0.0000,-0.7071 -0.7071,0.0000,0.0000,-0.7071 -0.7071,0.0000,0.0000,-0.7071 -0.6959,0.0000,0.0000,-0.7181 -0.6959,0.0000,0.0000,-0.7181 -0.6959,0.0000,0.0000,-0.7181 -0.6959,0.0000,0.0000,-0.7181 -0.6845,0.0000,0.0000,-0.7290 -0.6845,0.0000,0.0000,-0.7290 -0.6845,0.0000,0.0000,-0.7290 -0.6845,0.0000,0.0000,-0.7290 -0.6730,0.0000,0.0000,-0.7396 -0.6730,0.0000,0.0000,-0.7396 -0.6730,0.0000,0.0000,-0.7396 -0.6730,0.0000,0.0000,-0.7396 -0.6613,0.0000,0.0000,-0.7501 -0.6613,0.0000,0.0000,-0.7501 -0.6613,0.0000,0.0000,-0.7501 -0.6613,0.0000,0.0000,-0.7501 -0.6494,0.0000,0.0000,-0.7604 -0.6494,0.0000,0.0000,-0.7604 -0.6494,0.0000,0.0000,-0.7604 -0.6494,0.0000,0.0000,-0.7604 -0.6374,0.0000,0.0000,-0.7705 -0.6374,0.0000,0.0000,-0.7705 -0.6374,0.0000,0.0000,-0.7705 -0.6374,0.0000,0.0000,-0.7705 -0.6252,0.0000,0.0000,-0.7804 -0.6252,0.0000,0.0000,-0.7804 -0.6252,0.0000,0.0000,-0.7804 -0.6252,0.0000,0.0000,-0.7804 -0.6129,0.0000,0.0000,-0.7902 -0.6129,0.0000,0.0000,-0.7902 -0.6129,0.0000,0.0000,-0.7902 -0.6129,0.0000,0.0000,-0.7902 -0.6004,0.0000,0.0000,-0.7997 -0.6004,0.0000,0.0000,-0.7997 -0.6004,0.0000,0.0000,-0.7997 -0.6004,0.0000,0.0000,-0.7997 -0.5878,0.0000,0.0000,-0.8090 -0.5878,0.0000,0.0000,-0.8090 -0.5878,0.0000,0.0000,-0.8090 -0.5878,0.0000,0.0000,-0.8090 -0.5750,0.0000,0.0000,-0.8181 -0.5750,0.0000,0.0000,-0.8181 -0.5750,0.0000,0.0000,-0.8181 -0.5750,0.0000,0.0000,-0.8181 -0.5621,0.0000,0.0000,-0.8271 -0.5621,0.0000,0.0000,-0.8271 -0.5621,0.0000,0.0000,-0.8271 -0.5621,0.0000,0.0000,-0.8271 -0.5490,0.0000,0.0000,-0.8358 -0.5490,0.0000,0.0000,-0.8358 -0.5490,0.0000,0.0000,-0.8358 -0.5490,0.0000,0.0000,-0.8358 -0.5358,0.0000,0.0000,-0.8443 -0.5358,0.0000,0.0000,-0.8443 -0.5358,0.0000,0.0000,-0.8443 -0.5358,0.0000,0.0000,-0.8443 -0.5225,0.0000,0.0000,-0.8526 -0.5225,0.0000,0.0000,-0.8526 -0.5225,0.0000,0.0000,-0.8526 -0.5225,0.0000,0.0000,-0.8526 -0.5090,0.0000,0.0000,-0.8607 -0.5090,0.0000,0.0000,-0.8607 -0.5090,0.0000,0.0000,-0.8607 -0.5090,0.0000,0.0000,-0.8607 -0.4955,0.0000,0.0000,-0.8686 -0.4955,0.0000,0.0000,-0.8686 -0.4955,0.0000,0.0000,-0.8686 -0.4955,0.0000,0.0000,-0.8686 -0.4818,0.0000,0.0000,-0.8763 -0.4818,0.0000,0.0000,-0.8763 -0.4818,0.0000,0.0000,-0.8763 -0.4818,0.0000,0.0000,-0.8763 -0.4679,0.0000,0.0000,-0.8838 -0.4679,0.0000,0.0000,-0.8838 -0.4679,0.0000,0.0000,-0.8838 -0.4679,0.0000,0.0000,-0.8838 -0.4540,0.0000,0.0000,-0.8910 -0.4540,0.0000,0.0000,-0.8910 -0.4540,0.0000,0.0000,-0.8910 -0.4540,0.0000,0.0000,-0.8910 -0.4399,0.0000,0.0000,-0.8980 -0.4399,0.0000,0.0000,-0.8980 -0.4399,0.0000,0.0000,-0.8980 -0.4399,0.0000,0.0000,-0.8980 -0.4258,0.0000,0.0000,-0.9048 -0.4258,0.0000,0.0000,-0.9048 -0.4258,0.0000,0.0000,-0.9048 -0.4258,0.0000,0.0000,-0.9048 -0.4115,0.0000,0.0000,-0.9114 -0.4115,0.0000,0.0000,-0.9114 -0.4115,0.0000,0.0000,-0.9114 -0.4115,0.0000,0.0000,-0.9114 -0.3971,0.0000,0.0000,-0.9178 -0.3971,0.0000,0.0000,-0.9178 -0.3971,0.0000,0.0000,-0.9178 -0.3971,0.0000,0.0000,-0.9178 -0.3827,0.0000,0.0000,-0.9239 -0.3827,0.0000,0.0000,-0.9239 -0.3827,0.0000,0.0000,-0.9239 -0.3827,0.0000,0.0000,-0.9239 -0.3681,0.0000,0.0000,-0.9298 -0.3681,0.0000,0.0000,-0.9298 -0.3681,0.0000,0.0000,-0.9298 -0.3681,0.0000,0.0000,-0.9298 -0.3535,0.0000,0.0000,-0.9354 -0.3535,0.0000,0.0000,-0.9354 -0.3535,0.0000,0.0000,-0.9354 -0.3535,0.0000,0.0000,-0.9354 -0.3387,0.0000,0.0000,-0.9409 -0.3387,0.0000,0.0000,-0.9409 -0.3387,0.0000,0.0000,-0.9409 -0.3387,0.0000,0.0000,-0.9409 -0.3239,0.0000,0.0000,-0.9461 -0.3239,0.0000,0.0000,-0.9461 -0.3239,0.0000,0.0000,-0.9461 -0.3239,0.0000,0.0000,-0.9461 -0.3090,0.0000,0.0000,-0.9511 -0.3090,0.0000,0.0000,-0.9511 -0.3090,0.0000,0.0000,-0.9511 -0.3090,0.0000,0.0000,-0.9511 -0.2940,0.0000,0.0000,-0.9558 -0.2940,0.0000,0.0000,-0.9558 -0.2940,0.0000,0.0000,-0.9558 -0.2940,0.0000,0.0000,-0.9558 -0.2790,0.0000,0.0000,-0.9603 -0.2790,0.0000,0.0000,-0.9603 -0.2790,0.0000,0.0000,-0.9603 -0.2790,0.0000,0.0000,-0.9603 -0.2639,0.0000,0.0000,-0.9646 -0.2639,0.0000,0.0000,-0.9646 -0.2639,0.0000,0.0000,-0.9646 -0.2639,0.0000,0.0000,-0.9646 -0.2487,0.0000,0.0000,-0.9686 -0.2487,0.0000,0.0000,-0.9686 -0.2487,0.0000,0.0000,-0.9686 -0.2487,0.0000,0.0000,-0.9686 -0.2334,0.0000,0.0000,-0.9724 -0.2334,0.0000,0.0000,-0.9724 -0.2334,0.0000,0.0000,-0.9724 -0.2334,0.0000,0.0000,-0.9724 -0.2181,0.0000,0.0000,-0.9759 -0.2181,0.0000,0.0000,-0.9759 -0.2181,0.0000,0.0000,-0.9759 -0.2181,0.0000,0.0000,-0.9759 -0.2028,0.0000,0.0000,-0.9792 -0.2028,0.0000,0.0000,-0.9792 -0.2028,0.0000,0.0000,-0.9792 -0.2028,0.0000,0.0000,-0.9792 -0.1874,0.0000,0.0000,-0.9823 -0.1874,0.0000,0.0000,-0.9823 -0.1874,0.0000,0.0000,-0.9823 -0.1874,0.0000,0.0000,-0.9823 -0.1719,0.0000,0.0000,-0.9851 -0.1719,0.0000,0.0000,-0.9851 -0.1719,0.0000,0.0000,-0.9851 -0.1719,0.0000,0.0000,-0.9851 -0.1564,0.0000,0.0000,-0.9877 -0.1564,0.0000,0.0000,-0.9877 -0.1564,0.0000,0.0000,-0.9877 -0.1564,0.0000,0.0000,-0.9877 -0.1409,0.0000,0.0000,-0.9900 -0.1409,0.0000,0.0000,-0.9900 -0.1409,0.0000,0.0000,-0.9900 -0.1409,0.0000,0.0000,-0.9900 -0.1253,0.0000,0.0000,-0.9921 -0.1253,0.0000,0.0000,-0.9921 -0.1253,0.0000,0.0000,-0.9921 -0.1253,0.0000,0.0000,-0.9921 -0.1097,0.0000,0.0000,-0.9940 -0.1097,0.0000,0.0000,-0.9940 -0.1097,0.0000,0.0000,-0.9940 -0.1097,0.0000,0.0000,-0.9940 -0.0941,0.0000,0.0000,-0.9956 -0.0941,0.0000,0.0000,-0.9956 -0.0941,0.0000,0.0000,-0.9956 -0.0941,0.0000,0.0000,-0.9956 -0.0785,0.0000,0.0000,-0.9969 -0.0785,0.0000,0.0000,-0.9969 -0.0785,0.0000,0.0000,-0.9969 -0.0785,0.0000,0.0000,-0.9969 -0.0628,0.0000,0.0000,-0.9980 -0.0628,0.0000,0.0000,-0.9980 -0.0628,0.0000,0.0000,-0.9980 -0.0628,0.0000,0.0000,-0.9980 -0.0471,0.0000,0.0000,-0.9989 -0.0471,0.0000,0.0000,-0.9989 -0.0471,0.0000,0.0000,-0.9989 -0.0471,0.0000,0.0000,-0.9989 -0.0314,0.0000,0.0000,-0.9995 -0.0314,0.0000,0.0000,-0.9995 -0.0314,0.0000,0.0000,-0.9995 -0.0314,0.0000,0.0000,-0.9995 -0.0157,0.0000,0.0000,-0.9999 -0.0157,0.0000,0.0000,-0.9999 -0.0157,0.0000,0.0000,-0.9999 -0.0157,0.0000,0.0000,-0.9999 --0.0000,0.0000,0.0000,-1.0000 --0.0000,0.0000,0.0000,-1.0000 --0.0000,0.0000,0.0000,-1.0000 --0.0000,0.0000,0.0000,-1.0000 --0.0157,0.0000,0.0000,-0.9999 --0.0157,0.0000,0.0000,-0.9999 --0.0157,0.0000,0.0000,-0.9999 --0.0157,0.0000,0.0000,-0.9999 --0.0314,0.0000,0.0000,-0.9995 --0.0314,0.0000,0.0000,-0.9995 --0.0314,0.0000,0.0000,-0.9995 --0.0314,0.0000,0.0000,-0.9995 --0.0471,0.0000,0.0000,-0.9989 --0.0471,0.0000,0.0000,-0.9989 --0.0471,0.0000,0.0000,-0.9989 --0.0471,0.0000,0.0000,-0.9989 --0.0628,0.0000,0.0000,-0.9980 --0.0628,0.0000,0.0000,-0.9980 --0.0628,0.0000,0.0000,-0.9980 --0.0628,0.0000,0.0000,-0.9980 --0.0785,0.0000,0.0000,-0.9969 --0.0785,0.0000,0.0000,-0.9969 --0.0785,0.0000,0.0000,-0.9969 --0.0785,0.0000,0.0000,-0.9969 --0.0941,0.0000,0.0000,-0.9956 --0.0941,0.0000,0.0000,-0.9956 --0.0941,0.0000,0.0000,-0.9956 --0.0941,0.0000,0.0000,-0.9956 --0.1097,0.0000,0.0000,-0.9940 --0.1097,0.0000,0.0000,-0.9940 --0.1097,0.0000,0.0000,-0.9940 --0.1097,0.0000,0.0000,-0.9940 --0.1253,0.0000,0.0000,-0.9921 --0.1253,0.0000,0.0000,-0.9921 --0.1253,0.0000,0.0000,-0.9921 --0.1253,0.0000,0.0000,-0.9921 --0.1409,0.0000,0.0000,-0.9900 --0.1409,0.0000,0.0000,-0.9900 --0.1409,0.0000,0.0000,-0.9900 --0.1409,0.0000,0.0000,-0.9900 --0.1564,0.0000,0.0000,-0.9877 --0.1564,0.0000,0.0000,-0.9877 --0.1564,0.0000,0.0000,-0.9877 --0.1564,0.0000,0.0000,-0.9877 --0.1719,0.0000,0.0000,-0.9851 --0.1719,0.0000,0.0000,-0.9851 --0.1719,0.0000,0.0000,-0.9851 --0.1719,0.0000,0.0000,-0.9851 --0.1874,0.0000,0.0000,-0.9823 --0.1874,0.0000,0.0000,-0.9823 --0.1874,0.0000,0.0000,-0.9823 --0.1874,0.0000,0.0000,-0.9823 --0.2028,0.0000,0.0000,-0.9792 --0.2028,0.0000,0.0000,-0.9792 --0.2028,0.0000,0.0000,-0.9792 --0.2028,0.0000,0.0000,-0.9792 --0.2181,0.0000,0.0000,-0.9759 --0.2181,0.0000,0.0000,-0.9759 --0.2181,0.0000,0.0000,-0.9759 --0.2181,0.0000,0.0000,-0.9759 --0.2334,0.0000,0.0000,-0.9724 --0.2334,0.0000,0.0000,-0.9724 --0.2334,0.0000,0.0000,-0.9724 --0.2334,0.0000,0.0000,-0.9724 --0.2487,0.0000,0.0000,-0.9686 --0.2487,0.0000,0.0000,-0.9686 --0.2487,0.0000,0.0000,-0.9686 --0.2487,0.0000,0.0000,-0.9686 --0.2639,0.0000,0.0000,-0.9646 --0.2639,0.0000,0.0000,-0.9646 --0.2639,0.0000,0.0000,-0.9646 --0.2639,0.0000,0.0000,-0.9646 --0.2790,0.0000,0.0000,-0.9603 --0.2790,0.0000,0.0000,-0.9603 --0.2790,0.0000,0.0000,-0.9603 --0.2790,0.0000,0.0000,-0.9603 --0.2940,0.0000,0.0000,-0.9558 --0.2940,0.0000,0.0000,-0.9558 --0.2940,0.0000,0.0000,-0.9558 --0.2940,0.0000,0.0000,-0.9558 --0.3090,0.0000,0.0000,-0.9511 --0.3090,0.0000,0.0000,-0.9511 --0.3090,0.0000,0.0000,-0.9511 --0.3090,0.0000,0.0000,-0.9511 --0.3239,0.0000,0.0000,-0.9461 --0.3239,0.0000,0.0000,-0.9461 --0.3239,0.0000,0.0000,-0.9461 --0.3239,0.0000,0.0000,-0.9461 --0.3387,0.0000,0.0000,-0.9409 --0.3387,0.0000,0.0000,-0.9409 --0.3387,0.0000,0.0000,-0.9409 --0.3387,0.0000,0.0000,-0.9409 --0.3535,0.0000,0.0000,-0.9354 --0.3535,0.0000,0.0000,-0.9354 --0.3535,0.0000,0.0000,-0.9354 --0.3535,0.0000,0.0000,-0.9354 --0.3681,0.0000,0.0000,-0.9298 --0.3681,0.0000,0.0000,-0.9298 --0.3681,0.0000,0.0000,-0.9298 --0.3681,0.0000,0.0000,-0.9298 --0.3827,0.0000,0.0000,-0.9239 --0.3827,0.0000,0.0000,-0.9239 --0.3827,0.0000,0.0000,-0.9239 --0.3827,0.0000,0.0000,-0.9239 --0.3971,0.0000,0.0000,-0.9178 --0.3971,0.0000,0.0000,-0.9178 --0.3971,0.0000,0.0000,-0.9178 --0.3971,0.0000,0.0000,-0.9178 --0.4115,0.0000,0.0000,-0.9114 --0.4115,0.0000,0.0000,-0.9114 --0.4115,0.0000,0.0000,-0.9114 --0.4115,0.0000,0.0000,-0.9114 --0.4258,0.0000,0.0000,-0.9048 --0.4258,0.0000,0.0000,-0.9048 --0.4258,0.0000,0.0000,-0.9048 --0.4258,0.0000,0.0000,-0.9048 --0.4399,0.0000,0.0000,-0.8980 --0.4399,0.0000,0.0000,-0.8980 --0.4399,0.0000,0.0000,-0.8980 --0.4399,0.0000,0.0000,-0.8980 --0.4540,0.0000,0.0000,-0.8910 --0.4540,0.0000,0.0000,-0.8910 --0.4540,0.0000,0.0000,-0.8910 --0.4540,0.0000,0.0000,-0.8910 --0.4679,0.0000,0.0000,-0.8838 --0.4679,0.0000,0.0000,-0.8838 --0.4679,0.0000,0.0000,-0.8838 --0.4679,0.0000,0.0000,-0.8838 --0.4818,0.0000,0.0000,-0.8763 --0.4818,0.0000,0.0000,-0.8763 --0.4818,0.0000,0.0000,-0.8763 --0.4818,0.0000,0.0000,-0.8763 --0.4955,0.0000,0.0000,-0.8686 --0.4955,0.0000,0.0000,-0.8686 --0.4955,0.0000,0.0000,-0.8686 --0.4955,0.0000,0.0000,-0.8686 --0.5090,0.0000,0.0000,-0.8607 --0.5090,0.0000,0.0000,-0.8607 --0.5090,0.0000,0.0000,-0.8607 --0.5090,0.0000,0.0000,-0.8607 --0.5225,0.0000,0.0000,-0.8526 --0.5225,0.0000,0.0000,-0.8526 --0.5225,0.0000,0.0000,-0.8526 --0.5225,0.0000,0.0000,-0.8526 --0.5358,0.0000,0.0000,-0.8443 --0.5358,0.0000,0.0000,-0.8443 --0.5358,0.0000,0.0000,-0.8443 --0.5358,0.0000,0.0000,-0.8443 --0.5490,0.0000,0.0000,-0.8358 --0.5490,0.0000,0.0000,-0.8358 --0.5490,0.0000,0.0000,-0.8358 --0.5490,0.0000,0.0000,-0.8358 --0.5621,0.0000,0.0000,-0.8271 --0.5621,0.0000,0.0000,-0.8271 --0.5621,0.0000,0.0000,-0.8271 --0.5621,0.0000,0.0000,-0.8271 --0.5750,0.0000,0.0000,-0.8181 --0.5750,0.0000,0.0000,-0.8181 --0.5750,0.0000,0.0000,-0.8181 --0.5750,0.0000,0.0000,-0.8181 --0.5878,0.0000,0.0000,-0.8090 --0.5878,0.0000,0.0000,-0.8090 --0.5878,0.0000,0.0000,-0.8090 --0.5878,0.0000,0.0000,-0.8090 --0.6004,0.0000,0.0000,-0.7997 --0.6004,0.0000,0.0000,-0.7997 --0.6004,0.0000,0.0000,-0.7997 --0.6004,0.0000,0.0000,-0.7997 --0.6129,0.0000,0.0000,-0.7902 --0.6129,0.0000,0.0000,-0.7902 --0.6129,0.0000,0.0000,-0.7902 --0.6129,0.0000,0.0000,-0.7902 --0.6252,0.0000,0.0000,-0.7804 --0.6252,0.0000,0.0000,-0.7804 --0.6252,0.0000,0.0000,-0.7804 --0.6252,0.0000,0.0000,-0.7804 --0.6374,0.0000,0.0000,-0.7705 --0.6374,0.0000,0.0000,-0.7705 --0.6374,0.0000,0.0000,-0.7705 --0.6374,0.0000,0.0000,-0.7705 --0.6494,0.0000,0.0000,-0.7604 --0.6494,0.0000,0.0000,-0.7604 --0.6494,0.0000,0.0000,-0.7604 --0.6494,0.0000,0.0000,-0.7604 --0.6613,0.0000,0.0000,-0.7501 --0.6613,0.0000,0.0000,-0.7501 --0.6613,0.0000,0.0000,-0.7501 --0.6613,0.0000,0.0000,-0.7501 --0.6730,0.0000,0.0000,-0.7396 --0.6730,0.0000,0.0000,-0.7396 --0.6730,0.0000,0.0000,-0.7396 --0.6730,0.0000,0.0000,-0.7396 --0.6845,0.0000,0.0000,-0.7290 --0.6845,0.0000,0.0000,-0.7290 --0.6845,0.0000,0.0000,-0.7290 --0.6845,0.0000,0.0000,-0.7290 --0.6959,0.0000,0.0000,-0.7181 --0.6959,0.0000,0.0000,-0.7181 --0.6959,0.0000,0.0000,-0.7181 --0.6959,0.0000,0.0000,-0.7181 --0.7071,0.0000,0.0000,-0.7071 --0.7071,0.0000,0.0000,-0.7071 --0.7071,0.0000,0.0000,-0.7071 --0.7071,0.0000,0.0000,-0.7071 --0.7181,0.0000,0.0000,-0.6959 --0.7181,0.0000,0.0000,-0.6959 --0.7181,0.0000,0.0000,-0.6959 --0.7181,0.0000,0.0000,-0.6959 --0.7290,0.0000,0.0000,-0.6845 --0.7290,0.0000,0.0000,-0.6845 --0.7290,0.0000,0.0000,-0.6845 --0.7290,0.0000,0.0000,-0.6845 --0.7396,0.0000,0.0000,-0.6730 --0.7396,0.0000,0.0000,-0.6730 --0.7396,0.0000,0.0000,-0.6730 --0.7396,0.0000,0.0000,-0.6730 --0.7501,0.0000,0.0000,-0.6613 --0.7501,0.0000,0.0000,-0.6613 --0.7501,0.0000,0.0000,-0.6613 --0.7501,0.0000,0.0000,-0.6613 --0.7604,0.0000,0.0000,-0.6494 --0.7604,0.0000,0.0000,-0.6494 --0.7604,0.0000,0.0000,-0.6494 --0.7604,0.0000,0.0000,-0.6494 --0.7705,0.0000,0.0000,-0.6374 --0.7705,0.0000,0.0000,-0.6374 --0.7705,0.0000,0.0000,-0.6374 --0.7705,0.0000,0.0000,-0.6374 --0.7804,0.0000,0.0000,-0.6252 --0.7804,0.0000,0.0000,-0.6252 --0.7804,0.0000,0.0000,-0.6252 --0.7804,0.0000,0.0000,-0.6252 --0.7902,0.0000,0.0000,-0.6129 --0.7902,0.0000,0.0000,-0.6129 --0.7902,0.0000,0.0000,-0.6129 --0.7902,0.0000,0.0000,-0.6129 --0.7997,0.0000,0.0000,-0.6004 --0.7997,0.0000,0.0000,-0.6004 --0.7997,0.0000,0.0000,-0.6004 --0.7997,0.0000,0.0000,-0.6004 --0.8090,0.0000,0.0000,-0.5878 --0.8090,0.0000,0.0000,-0.5878 --0.8090,0.0000,0.0000,-0.5878 --0.8090,0.0000,0.0000,-0.5878 --0.8182,0.0000,0.0000,-0.5750 --0.8182,0.0000,0.0000,-0.5750 --0.8182,0.0000,0.0000,-0.5750 --0.8182,0.0000,0.0000,-0.5750 --0.8271,0.0000,0.0000,-0.5621 --0.8271,0.0000,0.0000,-0.5621 --0.8271,0.0000,0.0000,-0.5621 --0.8271,0.0000,0.0000,-0.5621 --0.8358,0.0000,0.0000,-0.5490 --0.8358,0.0000,0.0000,-0.5490 --0.8358,0.0000,0.0000,-0.5490 --0.8358,0.0000,0.0000,-0.5490 --0.8443,0.0000,0.0000,-0.5358 --0.8443,0.0000,0.0000,-0.5358 --0.8443,0.0000,0.0000,-0.5358 --0.8443,0.0000,0.0000,-0.5358 --0.8526,0.0000,0.0000,-0.5225 --0.8526,0.0000,0.0000,-0.5225 --0.8526,0.0000,0.0000,-0.5225 --0.8526,0.0000,0.0000,-0.5225 --0.8607,0.0000,0.0000,-0.5090 --0.8607,0.0000,0.0000,-0.5090 --0.8607,0.0000,0.0000,-0.5090 --0.8607,0.0000,0.0000,-0.5090 --0.8686,0.0000,0.0000,-0.4955 --0.8686,0.0000,0.0000,-0.4955 --0.8686,0.0000,0.0000,-0.4955 --0.8686,0.0000,0.0000,-0.4955 --0.8763,0.0000,0.0000,-0.4818 --0.8763,0.0000,0.0000,-0.4818 --0.8763,0.0000,0.0000,-0.4818 --0.8763,0.0000,0.0000,-0.4818 --0.8838,0.0000,0.0000,-0.4679 --0.8838,0.0000,0.0000,-0.4679 --0.8838,0.0000,0.0000,-0.4679 --0.8838,0.0000,0.0000,-0.4679 --0.8910,0.0000,0.0000,-0.4540 --0.8910,0.0000,0.0000,-0.4540 --0.8910,0.0000,0.0000,-0.4540 --0.8910,0.0000,0.0000,-0.4540 --0.8980,0.0000,0.0000,-0.4399 --0.8980,0.0000,0.0000,-0.4399 --0.8980,0.0000,0.0000,-0.4399 --0.8980,0.0000,0.0000,-0.4399 --0.9048,0.0000,0.0000,-0.4258 --0.9048,0.0000,0.0000,-0.4258 --0.9048,0.0000,0.0000,-0.4258 --0.9048,0.0000,0.0000,-0.4258 --0.9114,0.0000,0.0000,-0.4115 --0.9114,0.0000,0.0000,-0.4115 --0.9114,0.0000,0.0000,-0.4115 --0.9114,0.0000,0.0000,-0.4115 --0.9178,0.0000,0.0000,-0.3971 --0.9178,0.0000,0.0000,-0.3971 --0.9178,0.0000,0.0000,-0.3971 --0.9178,0.0000,0.0000,-0.3971 --0.9239,0.0000,0.0000,-0.3827 --0.9239,0.0000,0.0000,-0.3827 --0.9239,0.0000,0.0000,-0.3827 --0.9239,0.0000,0.0000,-0.3827 --0.9298,0.0000,0.0000,-0.3681 --0.9298,0.0000,0.0000,-0.3681 --0.9298,0.0000,0.0000,-0.3681 --0.9298,0.0000,0.0000,-0.3681 --0.9354,0.0000,0.0000,-0.3535 --0.9354,0.0000,0.0000,-0.3535 --0.9354,0.0000,0.0000,-0.3535 --0.9354,0.0000,0.0000,-0.3535 --0.9409,0.0000,0.0000,-0.3387 --0.9409,0.0000,0.0000,-0.3387 --0.9409,0.0000,0.0000,-0.3387 --0.9409,0.0000,0.0000,-0.3387 --0.9461,0.0000,0.0000,-0.3239 --0.9461,0.0000,0.0000,-0.3239 --0.9461,0.0000,0.0000,-0.3239 --0.9461,0.0000,0.0000,-0.3239 --0.9511,0.0000,0.0000,-0.3090 --0.9511,0.0000,0.0000,-0.3090 --0.9511,0.0000,0.0000,-0.3090 --0.9511,0.0000,0.0000,-0.3090 --0.9558,0.0000,0.0000,-0.2940 --0.9558,0.0000,0.0000,-0.2940 --0.9558,0.0000,0.0000,-0.2940 --0.9558,0.0000,0.0000,-0.2940 --0.9603,0.0000,0.0000,-0.2790 --0.9603,0.0000,0.0000,-0.2790 --0.9603,0.0000,0.0000,-0.2790 --0.9603,0.0000,0.0000,-0.2790 --0.9646,0.0000,0.0000,-0.2639 --0.9646,0.0000,0.0000,-0.2639 --0.9646,0.0000,0.0000,-0.2639 --0.9646,0.0000,0.0000,-0.2639 --0.9686,0.0000,0.0000,-0.2487 --0.9686,0.0000,0.0000,-0.2487 --0.9686,0.0000,0.0000,-0.2487 --0.9686,0.0000,0.0000,-0.2487 --0.9724,0.0000,0.0000,-0.2334 --0.9724,0.0000,0.0000,-0.2334 --0.9724,0.0000,0.0000,-0.2334 --0.9724,0.0000,0.0000,-0.2334 --0.9759,0.0000,0.0000,-0.2181 --0.9759,0.0000,0.0000,-0.2181 --0.9759,0.0000,0.0000,-0.2181 --0.9759,0.0000,0.0000,-0.2181 --0.9792,0.0000,0.0000,-0.2028 --0.9792,0.0000,0.0000,-0.2028 --0.9792,0.0000,0.0000,-0.2028 --0.9792,0.0000,0.0000,-0.2028 --0.9823,0.0000,0.0000,-0.1874 --0.9823,0.0000,0.0000,-0.1874 --0.9823,0.0000,0.0000,-0.1874 --0.9823,0.0000,0.0000,-0.1874 --0.9851,0.0000,0.0000,-0.1719 --0.9851,0.0000,0.0000,-0.1719 --0.9851,0.0000,0.0000,-0.1719 --0.9851,0.0000,0.0000,-0.1719 --0.9877,0.0000,0.0000,-0.1564 --0.9877,0.0000,0.0000,-0.1564 --0.9877,0.0000,0.0000,-0.1564 --0.9877,0.0000,0.0000,-0.1564 --0.9900,0.0000,0.0000,-0.1409 --0.9900,0.0000,0.0000,-0.1409 --0.9900,0.0000,0.0000,-0.1409 --0.9900,0.0000,0.0000,-0.1409 --0.9921,0.0000,0.0000,-0.1253 --0.9921,0.0000,0.0000,-0.1253 --0.9921,0.0000,0.0000,-0.1253 --0.9921,0.0000,0.0000,-0.1253 --0.9940,0.0000,0.0000,-0.1097 --0.9940,0.0000,0.0000,-0.1097 --0.9940,0.0000,0.0000,-0.1097 --0.9940,0.0000,0.0000,-0.1097 --0.9956,0.0000,0.0000,-0.0941 --0.9956,0.0000,0.0000,-0.0941 --0.9956,0.0000,0.0000,-0.0941 --0.9956,0.0000,0.0000,-0.0941 --0.9969,0.0000,0.0000,-0.0785 --0.9969,0.0000,0.0000,-0.0785 --0.9969,0.0000,0.0000,-0.0785 --0.9969,0.0000,0.0000,-0.0785 --0.9980,0.0000,0.0000,-0.0628 --0.9980,0.0000,0.0000,-0.0628 --0.9980,0.0000,0.0000,-0.0628 --0.9980,0.0000,0.0000,-0.0628 --0.9989,0.0000,0.0000,-0.0471 --0.9989,0.0000,0.0000,-0.0471 --0.9989,0.0000,0.0000,-0.0471 --0.9989,0.0000,0.0000,-0.0471 --0.9995,0.0000,0.0000,-0.0314 --0.9995,0.0000,0.0000,-0.0314 --0.9995,0.0000,0.0000,-0.0314 --0.9995,0.0000,0.0000,-0.0314 --0.9999,0.0000,0.0000,-0.0157 --0.9999,0.0000,0.0000,-0.0157 --0.9999,0.0000,0.0000,-0.0157 --0.9999,0.0000,0.0000,-0.0157 -1.0000,0.0000,0.0000,-0.0000 -1.0000,0.0000,0.0000,-0.0000 -1.0000,0.0000,0.0000,-0.0000 -1.0000,0.0000,0.0000,-0.0000 diff --git a/scripts/trajectories/full-circle-T15.0-w0.0.csv b/scripts/trajectories/full-circle-T15.0-w0.0.csv deleted file mode 100644 index 0894809fd1b146c9153eed4dbe866c8356ca18af..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-T15.0-w0.0.csv +++ /dev/null @@ -1,3000 +0,0 @@ -0, 1.000000, 0.000000, 0.000000, 0.000000 -1, 1.000000, 0.000000, 0.000000, 0.000000 -2, 1.000000, 0.000000, 0.000000, 0.000000 -3, 1.000000, 0.000000, 0.000000, 0.000000 -4, 1.000000, 0.000000, 0.000000, 0.000000 -5, 1.000000, 0.000000, 0.000000, 0.000000 -6, 1.000000, 0.000000, 0.000000, 0.000000 -7, 1.000000, 0.000000, 0.000000, 0.000000 -8, 1.000000, 0.000000, 0.000000, 0.000000 -9, 1.000000, 0.000000, 0.000000, 0.000000 -10, 1.000000, 0.000000, 0.000000, 0.000000 -11, 1.000000, 0.000000, 0.000000, 0.000000 -12, 1.000000, 0.000000, 0.000000, 0.000000 -13, 1.000000, 0.000000, 0.000000, 0.000000 -14, 1.000000, 0.000000, 0.000000, 0.000000 -15, 1.000000, 0.000000, 0.000000, 0.000000 -16, 1.000000, 0.000000, 0.000000, 0.000000 -17, 1.000000, 0.000000, 0.000000, 0.000000 -18, 1.000000, 0.000000, 0.000000, 0.000000 -19, 1.000000, 0.000000, 0.000000, 0.000000 -20, 1.000000, 0.000000, 0.000000, 0.000000 -21, 1.000000, 0.000000, 0.000000, 0.000000 -22, 1.000000, 0.000000, 0.000000, 0.000000 -23, 1.000000, 0.000000, 0.000000, 0.000000 -24, 1.000000, 0.000000, 0.000000, 0.000000 -25, 1.000000, 0.000000, 0.000000, 0.000000 -26, 1.000000, 0.000000, 0.000000, 0.000000 -27, 1.000000, 0.000000, 0.000000, 0.000000 -28, 1.000000, 0.000000, 0.000000, 0.000000 -29, 1.000000, 0.000000, 0.000000, 0.000000 -30, 1.000000, 0.000000, 0.000000, 0.000000 -31, 1.000000, 0.000000, 0.000000, 0.000000 -32, 1.000000, 0.000000, 0.000000, 0.000000 -33, 1.000000, 0.000000, 0.000000, 0.000000 -34, 1.000000, 0.000000, 0.000000, 0.000000 -35, 1.000000, 0.000000, 0.000000, 0.000000 -36, 1.000000, 0.000000, 0.000000, 0.000000 -37, 1.000000, 0.000000, 0.000000, 0.000000 -38, 1.000000, 0.000000, 0.000000, 0.000000 -39, 1.000000, 0.000000, 0.000000, 0.000000 -40, 1.000000, 0.000000, 0.000000, 0.000000 -41, 1.000000, 0.000000, 0.000000, 0.000000 -42, 1.000000, 0.000000, 0.000000, 0.000000 -43, 1.000000, 0.000000, 0.000000, 0.000000 -44, 1.000000, 0.000000, 0.000000, 0.000000 -45, 1.000000, 0.000000, 0.000000, 0.000000 -46, 1.000000, 0.000000, 0.000000, 0.000000 -47, 1.000000, 0.000000, 0.000000, 0.000000 -48, 1.000000, 0.000000, 0.000000, 0.000000 -49, 1.000000, 0.000000, 0.000000, 0.000000 -50, 1.000000, 0.000000, 0.000000, 0.000000 -51, 1.000000, 0.000000, 0.000000, 0.000000 -52, 1.000000, 0.000000, 0.000000, 0.000000 -53, 1.000000, 0.000000, 0.000000, 0.000000 -54, 1.000000, 0.000000, 0.000000, 0.000000 -55, 1.000000, 0.000000, 0.000000, 0.000000 -56, 1.000000, 0.000000, 0.000000, 0.000000 -57, 1.000000, 0.000000, 0.000000, 0.000000 -58, 1.000000, 0.000000, 0.000000, 0.000000 -59, 1.000000, 0.000000, 0.000000, 0.000000 -60, 1.000000, 0.000000, 0.000000, 0.000000 -61, 1.000000, 0.000000, 0.000000, 0.000000 -62, 1.000000, 0.000000, 0.000000, 0.000000 -63, 1.000000, 0.000000, 0.000000, 0.000000 -64, 1.000000, 0.000000, 0.000000, 0.000000 -65, 1.000000, 0.000000, 0.000000, 0.000000 -66, 1.000000, 0.000000, 0.000000, 0.000000 -67, 1.000000, 0.000000, 0.000000, 0.000000 -68, 1.000000, 0.000000, 0.000000, 0.000000 -69, 1.000000, 0.000000, 0.000000, 0.000000 -70, 1.000000, 0.000000, 0.000000, 0.000000 -71, 1.000000, 0.000000, 0.000000, 0.000000 -72, 1.000000, 0.000000, 0.000000, 0.000000 -73, 1.000000, 0.000000, 0.000000, 0.000000 -74, 1.000000, 0.000000, 0.000000, 0.000000 -75, 1.000000, 0.000000, 0.000000, 0.000000 -76, 1.000000, 0.000000, 0.000000, 0.000000 -77, 1.000000, 0.000000, 0.000000, 0.000000 -78, 1.000000, 0.000000, 0.000000, 0.000000 -79, 1.000000, 0.000000, 0.000000, 0.000000 -80, 1.000000, 0.000000, 0.000000, 0.000000 -81, 1.000000, 0.000000, 0.000000, 0.000000 -82, 1.000000, 0.000000, 0.000000, 0.000000 -83, 1.000000, 0.000000, 0.000000, 0.000000 -84, 1.000000, 0.000000, 0.000000, 0.000000 -85, 1.000000, 0.000000, 0.000000, 0.000000 -86, 1.000000, 0.000000, 0.000000, 0.000000 -87, 1.000000, 0.000000, 0.000000, 0.000000 -88, 1.000000, 0.000000, 0.000000, 0.000000 -89, 1.000000, 0.000000, 0.000000, 0.000000 -90, 1.000000, 0.000000, 0.000000, 0.000000 -91, 1.000000, 0.000000, 0.000000, 0.000000 -92, 1.000000, 0.000000, 0.000000, 0.000000 -93, 1.000000, 0.000000, 0.000000, 0.000000 -94, 1.000000, 0.000000, 0.000000, 0.000000 -95, 1.000000, 0.000000, 0.000000, 0.000000 -96, 1.000000, 0.000000, 0.000000, 0.000000 -97, 1.000000, 0.000000, 0.000000, 0.000000 -98, 1.000000, 0.000000, 0.000000, 0.000000 -99, 1.000000, 0.000000, 0.000000, 0.000000 -100, 1.000000, 0.000000, 0.000000, 0.000000 -101, 1.000000, 0.000000, 0.000000, 0.000000 -102, 1.000000, 0.000000, 0.000000, 0.000000 -103, 1.000000, 0.000000, 0.000000, 0.000000 -104, 1.000000, 0.000000, 0.000000, 0.000000 -105, 1.000000, 0.000000, 0.000000, 0.000000 -106, 1.000000, 0.000000, 0.000000, 0.000000 -107, 1.000000, 0.000000, 0.000000, 0.000000 -108, 1.000000, 0.000000, 0.000000, 0.000000 -109, 1.000000, 0.000000, 0.000000, 0.000000 -110, 1.000000, 0.000000, 0.000000, 0.000000 -111, 1.000000, 0.000000, 0.000000, 0.000000 -112, 1.000000, 0.000000, 0.000000, 0.000000 -113, 1.000000, 0.000000, 0.000000, 0.000000 -114, 1.000000, 0.000000, 0.000000, 0.000000 -115, 1.000000, 0.000000, 0.000000, 0.000000 -116, 1.000000, 0.000000, 0.000000, 0.000000 -117, 1.000000, 0.000000, 0.000000, 0.000000 -118, 1.000000, 0.000000, 0.000000, 0.000000 -119, 1.000000, 0.000000, 0.000000, 0.000000 -120, 1.000000, 0.000000, 0.000000, 0.000000 -121, 1.000000, 0.000000, 0.000000, 0.000000 -122, 1.000000, 0.000000, 0.000000, 0.000000 -123, 1.000000, 0.000000, 0.000000, 0.000000 -124, 1.000000, 0.000000, 0.000000, 0.000000 -125, 1.000000, 0.000000, 0.000000, 0.000000 -126, 1.000000, 0.000000, 0.000000, 0.000000 -127, 1.000000, 0.000000, 0.000000, 0.000000 -128, 1.000000, 0.000000, 0.000000, 0.000000 -129, 1.000000, 0.000000, 0.000000, 0.000000 -130, 1.000000, 0.000000, 0.000000, 0.000000 -131, 1.000000, 0.000000, 0.000000, 0.000000 -132, 1.000000, 0.000000, 0.000000, 0.000000 -133, 1.000000, 0.000000, 0.000000, 0.000000 -134, 1.000000, 0.000000, 0.000000, 0.000000 -135, 1.000000, 0.000000, 0.000000, 0.000000 -136, 1.000000, 0.000000, 0.000000, 0.000000 -137, 1.000000, 0.000000, 0.000000, 0.000000 -138, 1.000000, 0.000000, 0.000000, 0.000000 -139, 1.000000, 0.000000, 0.000000, 0.000000 -140, 1.000000, 0.000000, 0.000000, 0.000000 -141, 1.000000, 0.000000, 0.000000, 0.000000 -142, 1.000000, 0.000000, 0.000000, 0.000000 -143, 1.000000, 0.000000, 0.000000, 0.000000 -144, 1.000000, 0.000000, 0.000000, 0.000000 -145, 1.000000, 0.000000, 0.000000, 0.000000 -146, 1.000000, 0.000000, 0.000000, 0.000000 -147, 1.000000, 0.000000, 0.000000, 0.000000 -148, 1.000000, 0.000000, 0.000000, 0.000000 -149, 1.000000, 0.000000, 0.000000, 0.000000 -150, 1.000000, 0.000000, 0.000000, 0.000000 -151, 1.000000, 0.000000, 0.000000, 0.000000 -152, 1.000000, 0.000000, 0.000000, 0.000000 -153, 1.000000, 0.000000, 0.000000, 0.000000 -154, 1.000000, 0.000000, 0.000000, 0.000000 -155, 1.000000, 0.000000, 0.000000, 0.000000 -156, 1.000000, 0.000000, 0.000000, 0.000000 -157, 1.000000, 0.000000, 0.000000, 0.000000 -158, 1.000000, 0.000000, 0.000000, 0.000000 -159, 1.000000, 0.000000, 0.000000, 0.000000 -160, 1.000000, 0.000000, 0.000000, 0.000000 -161, 1.000000, 0.000000, 0.000000, 0.000000 -162, 1.000000, 0.000000, 0.000000, 0.000000 -163, 1.000000, 0.000000, 0.000000, 0.000000 -164, 1.000000, 0.000000, 0.000000, 0.000000 -165, 1.000000, 0.000000, 0.000000, 0.000000 -166, 1.000000, 0.000000, 0.000000, 0.000000 -167, 1.000000, 0.000000, 0.000000, 0.000000 -168, 1.000000, 0.000000, 0.000000, 0.000000 -169, 1.000000, 0.000000, 0.000000, 0.000000 -170, 1.000000, 0.000000, 0.000000, 0.000000 -171, 1.000000, 0.000000, 0.000000, 0.000000 -172, 1.000000, 0.000000, 0.000000, 0.000000 -173, 1.000000, 0.000000, 0.000000, 0.000000 -174, 1.000000, 0.000000, 0.000000, 0.000000 -175, 1.000000, 0.000000, 0.000000, 0.000000 -176, 1.000000, 0.000000, 0.000000, 0.000000 -177, 1.000000, 0.000000, 0.000000, 0.000000 -178, 1.000000, 0.000000, 0.000000, 0.000000 -179, 1.000000, 0.000000, 0.000000, 0.000000 -180, 1.000000, 0.000000, 0.000000, 0.000000 -181, 1.000000, 0.000000, 0.000000, 0.000000 -182, 1.000000, 0.000000, 0.000000, 0.000000 -183, 1.000000, 0.000000, 0.000000, 0.000000 -184, 1.000000, 0.000000, 0.000000, 0.000000 -185, 1.000000, 0.000000, 0.000000, 0.000000 -186, 1.000000, 0.000000, 0.000000, 0.000000 -187, 1.000000, 0.000000, 0.000000, 0.000000 -188, 1.000000, 0.000000, 0.000000, 0.000000 -189, 1.000000, 0.000000, 0.000000, 0.000000 -190, 1.000000, 0.000000, 0.000000, 0.000000 -191, 1.000000, 0.000000, 0.000000, 0.000000 -192, 1.000000, 0.000000, 0.000000, 0.000000 -193, 1.000000, 0.000000, 0.000000, 0.000000 -194, 1.000000, 0.000000, 0.000000, 0.000000 -195, 1.000000, 0.000000, 0.000000, 0.000000 -196, 1.000000, 0.000000, 0.000000, 0.000000 -197, 1.000000, 0.000000, 0.000000, 0.000000 -198, 1.000000, 0.000000, 0.000000, 0.000000 -199, 1.000000, 0.000000, 0.000000, 0.000000 -200, 1.000000, 0.000000, 0.000000, 0.000000 -201, 1.000000, 0.000000, 0.000000, 0.000000 -202, 1.000000, 0.000000, 0.000000, 0.000000 -203, 1.000000, 0.000000, 0.000000, 0.000000 -204, 1.000000, 0.000000, 0.000000, 0.000000 -205, 1.000000, 0.000000, 0.000000, 0.000000 -206, 1.000000, 0.000000, 0.000000, 0.000000 -207, 1.000000, 0.000000, 0.000000, 0.000000 -208, 1.000000, 0.000000, 0.000000, 0.000000 -209, 1.000000, 0.000000, 0.000000, 0.000000 -210, 1.000000, 0.000000, 0.000000, 0.000000 -211, 1.000000, 0.000000, 0.000000, 0.000000 -212, 1.000000, 0.000000, 0.000000, 0.000000 -213, 1.000000, 0.000000, 0.000000, 0.000000 -214, 1.000000, 0.000000, 0.000000, 0.000000 -215, 1.000000, 0.000000, 0.000000, 0.000000 -216, 1.000000, 0.000000, 0.000000, 0.000000 -217, 1.000000, 0.000000, 0.000000, 0.000000 -218, 1.000000, 0.000000, 0.000000, 0.000000 -219, 1.000000, 0.000000, 0.000000, 0.000000 -220, 1.000000, 0.000000, 0.000000, 0.000000 -221, 1.000000, 0.000000, 0.000000, 0.000000 -222, 1.000000, 0.000000, 0.000000, 0.000000 -223, 1.000000, 0.000000, 0.000000, 0.000000 -224, 1.000000, 0.000000, 0.000000, 0.000000 -225, 1.000000, 0.000000, 0.000000, 0.000000 -226, 1.000000, 0.000000, 0.000000, 0.000000 -227, 1.000000, 0.000000, 0.000000, 0.000000 -228, 1.000000, 0.000000, 0.000000, 0.000000 -229, 1.000000, 0.000000, 0.000000, 0.000000 -230, 1.000000, 0.000000, 0.000000, 0.000000 -231, 1.000000, 0.000000, 0.000000, 0.000000 -232, 1.000000, 0.000000, 0.000000, 0.000000 -233, 1.000000, 0.000000, 0.000000, 0.000000 -234, 1.000000, 0.000000, 0.000000, 0.000000 -235, 1.000000, 0.000000, 0.000000, 0.000000 -236, 1.000000, 0.000000, 0.000000, 0.000000 -237, 1.000000, 0.000000, 0.000000, 0.000000 -238, 1.000000, 0.000000, 0.000000, 0.000000 -239, 1.000000, 0.000000, 0.000000, 0.000000 -240, 1.000000, 0.000000, 0.000000, 0.000000 -241, 1.000000, 0.000000, 0.000000, 0.000000 -242, 1.000000, 0.000000, 0.000000, 0.000000 -243, 1.000000, 0.000000, 0.000000, 0.000000 -244, 1.000000, 0.000000, 0.000000, 0.000000 -245, 1.000000, 0.000000, 0.000000, 0.000000 -246, 1.000000, 0.000000, 0.000000, 0.000000 -247, 1.000000, 0.000000, 0.000000, 0.000000 -248, 1.000000, 0.000000, 0.000000, 0.000000 -249, 1.000000, 0.000000, 0.000000, 0.000000 -250, 1.000000, 0.000000, 0.000000, 0.000000 -251, 1.000000, 0.000000, 0.000000, 0.000000 -252, 1.000000, 0.000000, 0.000000, 0.000000 -253, 1.000000, 0.000000, 0.000000, 0.000000 -254, 1.000000, 0.000000, 0.000000, 0.000000 -255, 1.000000, 0.000000, 0.000000, 0.000000 -256, 1.000000, 0.000000, 0.000000, 0.000000 -257, 1.000000, 0.000000, 0.000000, 0.000000 -258, 1.000000, 0.000000, 0.000000, 0.000000 -259, 1.000000, 0.000000, 0.000000, 0.000000 -260, 1.000000, 0.000000, 0.000000, 0.000000 -261, 1.000000, 0.000000, 0.000000, 0.000000 -262, 1.000000, 0.000000, 0.000000, 0.000000 -263, 1.000000, 0.000000, 0.000000, 0.000000 -264, 1.000000, 0.000000, 0.000000, 0.000000 -265, 1.000000, 0.000000, 0.000000, 0.000000 -266, 1.000000, 0.000000, 0.000000, 0.000000 -267, 1.000000, 0.000000, 0.000000, 0.000000 -268, 1.000000, 0.000000, 0.000000, 0.000000 -269, 1.000000, 0.000000, 0.000000, 0.000000 -270, 1.000000, 0.000000, 0.000000, 0.000000 -271, 1.000000, 0.000000, 0.000000, 0.000000 -272, 1.000000, 0.000000, 0.000000, 0.000000 -273, 1.000000, 0.000000, 0.000000, 0.000000 -274, 1.000000, 0.000000, 0.000000, 0.000000 -275, 1.000000, 0.000000, 0.000000, 0.000000 -276, 1.000000, 0.000000, 0.000000, 0.000000 -277, 1.000000, 0.000000, 0.000000, 0.000000 -278, 1.000000, 0.000000, 0.000000, 0.000000 -279, 1.000000, 0.000000, 0.000000, 0.000000 -280, 1.000000, 0.000000, 0.000000, 0.000000 -281, 1.000000, 0.000000, 0.000000, 0.000000 -282, 1.000000, 0.000000, 0.000000, 0.000000 -283, 1.000000, 0.000000, 0.000000, 0.000000 -284, 1.000000, 0.000000, 0.000000, 0.000000 -285, 1.000000, 0.000000, 0.000000, 0.000000 -286, 1.000000, 0.000000, 0.000000, 0.000000 -287, 1.000000, 0.000000, 0.000000, 0.000000 -288, 1.000000, 0.000000, 0.000000, 0.000000 -289, 1.000000, 0.000000, 0.000000, 0.000000 -290, 1.000000, 0.000000, 0.000000, 0.000000 -291, 1.000000, 0.000000, 0.000000, 0.000000 -292, 1.000000, 0.000000, 0.000000, 0.000000 -293, 1.000000, 0.000000, 0.000000, 0.000000 -294, 1.000000, 0.000000, 0.000000, 0.000000 -295, 1.000000, 0.000000, 0.000000, 0.000000 -296, 1.000000, 0.000000, 0.000000, 0.000000 -297, 1.000000, 0.000000, 0.000000, 0.000000 -298, 1.000000, 0.000000, 0.000000, 0.000000 -299, 1.000000, 0.000000, 0.000000, 0.000000 -300, 1.000000, 0.000000, 0.000000, 0.000000 -301, 1.000000, 0.000000, 0.000000, 0.000000 -302, 1.000000, 0.000000, 0.000000, 0.000000 -303, 1.000000, 0.000000, 0.000000, 0.000000 -304, 1.000000, 0.000000, 0.000000, 0.000000 -305, 1.000000, 0.000000, 0.000000, 0.000000 -306, 1.000000, 0.000000, 0.000000, 0.000000 -307, 1.000000, 0.000000, 0.000000, 0.000000 -308, 1.000000, 0.000000, 0.000000, 0.000000 -309, 1.000000, 0.000000, 0.000000, 0.000000 -310, 1.000000, 0.000000, 0.000000, 0.000000 -311, 1.000000, 0.000000, 0.000000, 0.000000 -312, 1.000000, 0.000000, 0.000000, 0.000000 -313, 1.000000, 0.000000, 0.000000, 0.000000 -314, 1.000000, 0.000000, 0.000000, 0.000000 -315, 1.000000, 0.000000, 0.000000, 0.000000 -316, 1.000000, 0.000000, 0.000000, 0.000000 -317, 1.000000, 0.000000, 0.000000, 0.000000 -318, 1.000000, 0.000000, 0.000000, 0.000000 -319, 1.000000, 0.000000, 0.000000, 0.000000 -320, 1.000000, 0.000000, 0.000000, 0.000000 -321, 1.000000, 0.000000, 0.000000, 0.000000 -322, 1.000000, 0.000000, 0.000000, 0.000000 -323, 1.000000, 0.000000, 0.000000, 0.000000 -324, 1.000000, 0.000000, 0.000000, 0.000000 -325, 1.000000, 0.000000, 0.000000, 0.000000 -326, 1.000000, 0.000000, 0.000000, 0.000000 -327, 1.000000, 0.000000, 0.000000, 0.000000 -328, 1.000000, 0.000000, 0.000000, 0.000000 -329, 1.000000, 0.000000, 0.000000, 0.000000 -330, 1.000000, 0.000000, 0.000000, 0.000000 -331, 1.000000, 0.000000, 0.000000, 0.000000 -332, 1.000000, 0.000000, 0.000000, 0.000000 -333, 1.000000, 0.000000, 0.000000, 0.000000 -334, 1.000000, 0.000000, 0.000000, 0.000000 -335, 1.000000, 0.000000, 0.000000, 0.000000 -336, 1.000000, 0.000000, 0.000000, 0.000000 -337, 1.000000, 0.000000, 0.000000, 0.000000 -338, 1.000000, 0.000000, 0.000000, 0.000000 -339, 1.000000, 0.000000, 0.000000, 0.000000 -340, 1.000000, 0.000000, 0.000000, 0.000000 -341, 1.000000, 0.000000, 0.000000, 0.000000 -342, 1.000000, 0.000000, 0.000000, 0.000000 -343, 1.000000, 0.000000, 0.000000, 0.000000 -344, 1.000000, 0.000000, 0.000000, 0.000000 -345, 1.000000, 0.000000, 0.000000, 0.000000 -346, 1.000000, 0.000000, 0.000000, 0.000000 -347, 1.000000, 0.000000, 0.000000, 0.000000 -348, 1.000000, 0.000000, 0.000000, 0.000000 -349, 1.000000, 0.000000, 0.000000, 0.000000 -350, 1.000000, 0.000000, 0.000000, 0.000000 -351, 1.000000, 0.000000, 0.000000, 0.000000 -352, 1.000000, 0.000000, 0.000000, 0.000000 -353, 1.000000, 0.000000, 0.000000, 0.000000 -354, 1.000000, 0.000000, 0.000000, 0.000000 -355, 1.000000, 0.000000, 0.000000, 0.000000 -356, 1.000000, 0.000000, 0.000000, 0.000000 -357, 1.000000, 0.000000, 0.000000, 0.000000 -358, 1.000000, 0.000000, 0.000000, 0.000000 -359, 1.000000, 0.000000, 0.000000, 0.000000 -360, 1.000000, 0.000000, 0.000000, 0.000000 -361, 1.000000, 0.000000, 0.000000, 0.000000 -362, 1.000000, 0.000000, 0.000000, 0.000000 -363, 1.000000, 0.000000, 0.000000, 0.000000 -364, 1.000000, 0.000000, 0.000000, 0.000000 -365, 1.000000, 0.000000, 0.000000, 0.000000 -366, 1.000000, 0.000000, 0.000000, 0.000000 -367, 1.000000, 0.000000, 0.000000, 0.000000 -368, 1.000000, 0.000000, 0.000000, 0.000000 -369, 1.000000, 0.000000, 0.000000, 0.000000 -370, 1.000000, 0.000000, 0.000000, 0.000000 -371, 1.000000, 0.000000, 0.000000, 0.000000 -372, 1.000000, 0.000000, 0.000000, 0.000000 -373, 1.000000, 0.000000, 0.000000, 0.000000 -374, 1.000000, 0.000000, 0.000000, 0.000000 -375, 1.000000, 0.000000, 0.000000, 0.000000 -376, 1.000000, 0.000000, 0.000000, 0.000000 -377, 1.000000, 0.000000, 0.000000, 0.000000 -378, 1.000000, 0.000000, 0.000000, 0.000000 -379, 1.000000, 0.000000, 0.000000, 0.000000 -380, 1.000000, 0.000000, 0.000000, 0.000000 -381, 1.000000, 0.000000, 0.000000, 0.000000 -382, 1.000000, 0.000000, 0.000000, 0.000000 -383, 1.000000, 0.000000, 0.000000, 0.000000 -384, 1.000000, 0.000000, 0.000000, 0.000000 -385, 1.000000, 0.000000, 0.000000, 0.000000 -386, 1.000000, 0.000000, 0.000000, 0.000000 -387, 1.000000, 0.000000, 0.000000, 0.000000 -388, 1.000000, 0.000000, 0.000000, 0.000000 -389, 1.000000, 0.000000, 0.000000, 0.000000 -390, 1.000000, 0.000000, 0.000000, 0.000000 -391, 1.000000, 0.000000, 0.000000, 0.000000 -392, 1.000000, 0.000000, 0.000000, 0.000000 -393, 1.000000, 0.000000, 0.000000, 0.000000 -394, 1.000000, 0.000000, 0.000000, 0.000000 -395, 1.000000, 0.000000, 0.000000, 0.000000 -396, 1.000000, 0.000000, 0.000000, 0.000000 -397, 1.000000, 0.000000, 0.000000, 0.000000 -398, 1.000000, 0.000000, 0.000000, 0.000000 -399, 1.000000, 0.000000, 0.000000, 0.000000 -400, 1.000000, 0.000000, 0.000000, 0.000000 -401, 1.000000, 0.000000, 0.000000, 0.000000 -402, 1.000000, 0.000000, 0.000000, 0.000000 -403, 1.000000, 0.000000, 0.000000, 0.000000 -404, 1.000000, 0.000000, 0.000000, 0.000000 -405, 1.000000, 0.000000, 0.000000, 0.000000 -406, 1.000000, 0.000000, 0.000000, 0.000000 -407, 1.000000, 0.000000, 0.000000, 0.000000 -408, 1.000000, 0.000000, 0.000000, 0.000000 -409, 1.000000, 0.000000, 0.000000, 0.000000 -410, 1.000000, 0.000000, 0.000000, 0.000000 -411, 1.000000, 0.000000, 0.000000, 0.000000 -412, 1.000000, 0.000000, 0.000000, 0.000000 -413, 1.000000, 0.000000, 0.000000, 0.000000 -414, 1.000000, 0.000000, 0.000000, 0.000000 -415, 1.000000, 0.000000, 0.000000, 0.000000 -416, 1.000000, 0.000000, 0.000000, 0.000000 -417, 1.000000, 0.000000, 0.000000, 0.000000 -418, 1.000000, 0.000000, 0.000000, 0.000000 -419, 1.000000, 0.000000, 0.000000, 0.000000 -420, 1.000000, 0.000000, 0.000000, 0.000000 -421, 1.000000, 0.000000, 0.000000, 0.000000 -422, 1.000000, 0.000000, 0.000000, 0.000000 -423, 1.000000, 0.000000, 0.000000, 0.000000 -424, 1.000000, 0.000000, 0.000000, 0.000000 -425, 1.000000, 0.000000, 0.000000, 0.000000 -426, 1.000000, 0.000000, 0.000000, 0.000000 -427, 1.000000, 0.000000, 0.000000, 0.000000 -428, 1.000000, 0.000000, 0.000000, 0.000000 -429, 1.000000, 0.000000, 0.000000, 0.000000 -430, 1.000000, 0.000000, 0.000000, 0.000000 -431, 1.000000, 0.000000, 0.000000, 0.000000 -432, 1.000000, 0.000000, 0.000000, 0.000000 -433, 1.000000, 0.000000, 0.000000, 0.000000 -434, 1.000000, 0.000000, 0.000000, 0.000000 -435, 1.000000, 0.000000, 0.000000, 0.000000 -436, 1.000000, 0.000000, 0.000000, 0.000000 -437, 1.000000, 0.000000, 0.000000, 0.000000 -438, 1.000000, 0.000000, 0.000000, 0.000000 -439, 1.000000, 0.000000, 0.000000, 0.000000 -440, 1.000000, 0.000000, 0.000000, 0.000000 -441, 1.000000, 0.000000, 0.000000, 0.000000 -442, 1.000000, 0.000000, 0.000000, 0.000000 -443, 1.000000, 0.000000, 0.000000, 0.000000 -444, 1.000000, 0.000000, 0.000000, 0.000000 -445, 1.000000, 0.000000, 0.000000, 0.000000 -446, 1.000000, 0.000000, 0.000000, 0.000000 -447, 1.000000, 0.000000, 0.000000, 0.000000 -448, 1.000000, 0.000000, 0.000000, 0.000000 -449, 1.000000, 0.000000, 0.000000, 0.000000 -450, 1.000000, 0.000000, 0.000000, 0.000000 -451, 1.000000, 0.000000, 0.000000, 0.000000 -452, 1.000000, 0.000000, 0.000000, 0.000000 -453, 1.000000, 0.000000, 0.000000, 0.000000 -454, 1.000000, 0.000000, 0.000000, 0.000000 -455, 1.000000, 0.000000, 0.000000, 0.000000 -456, 1.000000, 0.000000, 0.000000, 0.000000 -457, 1.000000, 0.000000, 0.000000, 0.000000 -458, 1.000000, 0.000000, 0.000000, 0.000000 -459, 1.000000, 0.000000, 0.000000, 0.000000 -460, 1.000000, 0.000000, 0.000000, 0.000000 -461, 1.000000, 0.000000, 0.000000, 0.000000 -462, 1.000000, 0.000000, 0.000000, 0.000000 -463, 1.000000, 0.000000, 0.000000, 0.000000 -464, 1.000000, 0.000000, 0.000000, 0.000000 -465, 1.000000, 0.000000, 0.000000, 0.000000 -466, 1.000000, 0.000000, 0.000000, 0.000000 -467, 1.000000, 0.000000, 0.000000, 0.000000 -468, 1.000000, 0.000000, 0.000000, 0.000000 -469, 1.000000, 0.000000, 0.000000, 0.000000 -470, 1.000000, 0.000000, 0.000000, 0.000000 -471, 1.000000, 0.000000, 0.000000, 0.000000 -472, 1.000000, 0.000000, 0.000000, 0.000000 -473, 1.000000, 0.000000, 0.000000, 0.000000 -474, 1.000000, 0.000000, 0.000000, 0.000000 -475, 1.000000, 0.000000, 0.000000, 0.000000 -476, 1.000000, 0.000000, 0.000000, 0.000000 -477, 1.000000, 0.000000, 0.000000, 0.000000 -478, 1.000000, 0.000000, 0.000000, 0.000000 -479, 1.000000, 0.000000, 0.000000, 0.000000 -480, 1.000000, 0.000000, 0.000000, 0.000000 -481, 1.000000, 0.000000, 0.000000, 0.000000 -482, 1.000000, 0.000000, 0.000000, 0.000000 -483, 1.000000, 0.000000, 0.000000, 0.000000 -484, 1.000000, 0.000000, 0.000000, 0.000000 -485, 1.000000, 0.000000, 0.000000, 0.000000 -486, 1.000000, 0.000000, 0.000000, 0.000000 -487, 1.000000, 0.000000, 0.000000, 0.000000 -488, 1.000000, 0.000000, 0.000000, 0.000000 -489, 1.000000, 0.000000, 0.000000, 0.000000 -490, 1.000000, 0.000000, 0.000000, 0.000000 -491, 1.000000, 0.000000, 0.000000, 0.000000 -492, 1.000000, 0.000000, 0.000000, 0.000000 -493, 1.000000, 0.000000, 0.000000, 0.000000 -494, 1.000000, 0.000000, 0.000000, 0.000000 -495, 1.000000, 0.000000, 0.000000, 0.000000 -496, 1.000000, 0.000000, 0.000000, 0.000000 -497, 1.000000, 0.000000, 0.000000, 0.000000 -498, 1.000000, 0.000000, 0.000000, 0.000000 -499, 1.000000, 0.000000, 0.000000, 0.000000 -500, 1.000000, 0.000000, 0.000000, 0.000000 -501, 1.000000, 0.000000, 0.000000, 0.000000 -502, 1.000000, 0.000000, 0.000000, 0.000000 -503, 1.000000, 0.000000, 0.000000, 0.000000 -504, 1.000000, 0.000000, 0.000000, 0.000000 -505, 1.000000, 0.000000, 0.000000, 0.000000 -506, 1.000000, 0.000000, 0.000000, 0.000000 -507, 1.000000, 0.000000, 0.000000, 0.000000 -508, 1.000000, 0.000000, 0.000000, 0.000000 -509, 1.000000, 0.000000, 0.000000, 0.000000 -510, 1.000000, 0.000000, 0.000000, 0.000000 -511, 1.000000, 0.000000, 0.000000, 0.000000 -512, 1.000000, 0.000000, 0.000000, 0.000000 -513, 1.000000, 0.000000, 0.000000, 0.000000 -514, 1.000000, 0.000000, 0.000000, 0.000000 -515, 1.000000, 0.000000, 0.000000, 0.000000 -516, 1.000000, 0.000000, 0.000000, 0.000000 -517, 1.000000, 0.000000, 0.000000, 0.000000 -518, 1.000000, 0.000000, 0.000000, 0.000000 -519, 1.000000, 0.000000, 0.000000, 0.000000 -520, 1.000000, 0.000000, 0.000000, 0.000000 -521, 1.000000, 0.000000, 0.000000, 0.000000 -522, 1.000000, 0.000000, 0.000000, 0.000000 -523, 1.000000, 0.000000, 0.000000, 0.000000 -524, 1.000000, 0.000000, 0.000000, 0.000000 -525, 1.000000, 0.000000, 0.000000, 0.000000 -526, 1.000000, 0.000000, 0.000000, 0.000000 -527, 1.000000, 0.000000, 0.000000, 0.000000 -528, 1.000000, 0.000000, 0.000000, 0.000000 -529, 1.000000, 0.000000, 0.000000, 0.000000 -530, 1.000000, 0.000000, 0.000000, 0.000000 -531, 1.000000, 0.000000, 0.000000, 0.000000 -532, 1.000000, 0.000000, 0.000000, 0.000000 -533, 1.000000, 0.000000, 0.000000, 0.000000 -534, 1.000000, 0.000000, 0.000000, 0.000000 -535, 1.000000, 0.000000, 0.000000, 0.000000 -536, 1.000000, 0.000000, 0.000000, 0.000000 -537, 1.000000, 0.000000, 0.000000, 0.000000 -538, 1.000000, 0.000000, 0.000000, 0.000000 -539, 1.000000, 0.000000, 0.000000, 0.000000 -540, 1.000000, 0.000000, 0.000000, 0.000000 -541, 1.000000, 0.000000, 0.000000, 0.000000 -542, 1.000000, 0.000000, 0.000000, 0.000000 -543, 1.000000, 0.000000, 0.000000, 0.000000 -544, 1.000000, 0.000000, 0.000000, 0.000000 -545, 1.000000, 0.000000, 0.000000, 0.000000 -546, 1.000000, 0.000000, 0.000000, 0.000000 -547, 1.000000, 0.000000, 0.000000, 0.000000 -548, 1.000000, 0.000000, 0.000000, 0.000000 -549, 1.000000, 0.000000, 0.000000, 0.000000 -550, 1.000000, 0.000000, 0.000000, 0.000000 -551, 1.000000, 0.000000, 0.000000, 0.000000 -552, 1.000000, 0.000000, 0.000000, 0.000000 -553, 1.000000, 0.000000, 0.000000, 0.000000 -554, 1.000000, 0.000000, 0.000000, 0.000000 -555, 1.000000, 0.000000, 0.000000, 0.000000 -556, 1.000000, 0.000000, 0.000000, 0.000000 -557, 1.000000, 0.000000, 0.000000, 0.000000 -558, 1.000000, 0.000000, 0.000000, 0.000000 -559, 1.000000, 0.000000, 0.000000, 0.000000 -560, 1.000000, 0.000000, 0.000000, 0.000000 -561, 1.000000, 0.000000, 0.000000, 0.000000 -562, 1.000000, 0.000000, 0.000000, 0.000000 -563, 1.000000, 0.000000, 0.000000, 0.000000 -564, 1.000000, 0.000000, 0.000000, 0.000000 -565, 1.000000, 0.000000, 0.000000, 0.000000 -566, 1.000000, 0.000000, 0.000000, 0.000000 -567, 1.000000, 0.000000, 0.000000, 0.000000 -568, 1.000000, 0.000000, 0.000000, 0.000000 -569, 1.000000, 0.000000, 0.000000, 0.000000 -570, 1.000000, 0.000000, 0.000000, 0.000000 -571, 1.000000, 0.000000, 0.000000, 0.000000 -572, 1.000000, 0.000000, 0.000000, 0.000000 -573, 1.000000, 0.000000, 0.000000, 0.000000 -574, 1.000000, 0.000000, 0.000000, 0.000000 -575, 1.000000, 0.000000, 0.000000, 0.000000 -576, 1.000000, 0.000000, 0.000000, 0.000000 -577, 1.000000, 0.000000, 0.000000, 0.000000 -578, 1.000000, 0.000000, 0.000000, 0.000000 -579, 1.000000, 0.000000, 0.000000, 0.000000 -580, 1.000000, 0.000000, 0.000000, 0.000000 -581, 1.000000, 0.000000, 0.000000, 0.000000 -582, 1.000000, 0.000000, 0.000000, 0.000000 -583, 1.000000, 0.000000, 0.000000, 0.000000 -584, 1.000000, 0.000000, 0.000000, 0.000000 -585, 1.000000, 0.000000, 0.000000, 0.000000 -586, 1.000000, 0.000000, 0.000000, 0.000000 -587, 1.000000, 0.000000, 0.000000, 0.000000 -588, 1.000000, 0.000000, 0.000000, 0.000000 -589, 1.000000, 0.000000, 0.000000, 0.000000 -590, 1.000000, 0.000000, 0.000000, 0.000000 -591, 1.000000, 0.000000, 0.000000, 0.000000 -592, 1.000000, 0.000000, 0.000000, 0.000000 -593, 1.000000, 0.000000, 0.000000, 0.000000 -594, 1.000000, 0.000000, 0.000000, 0.000000 -595, 1.000000, 0.000000, 0.000000, 0.000000 -596, 1.000000, 0.000000, 0.000000, 0.000000 -597, 1.000000, 0.000000, 0.000000, 0.000000 -598, 1.000000, 0.000000, 0.000000, 0.000000 -599, 1.000000, 0.000000, 0.000000, 0.000000 -600, 1.000000, 0.000000, 0.000000, 0.000000 -601, 1.000000, 0.000000, 0.000000, 0.000000 -602, 1.000000, 0.000000, 0.000000, 0.000000 -603, 1.000000, 0.000000, 0.000000, 0.000000 -604, 1.000000, 0.000000, 0.000000, 0.000000 -605, 1.000000, 0.000000, 0.000000, 0.000000 -606, 1.000000, 0.000000, 0.000000, 0.000000 -607, 1.000000, 0.000000, 0.000000, 0.000000 -608, 1.000000, 0.000000, 0.000000, 0.000000 -609, 1.000000, 0.000000, 0.000000, 0.000000 -610, 1.000000, 0.000000, 0.000000, 0.000000 -611, 1.000000, 0.000000, 0.000000, 0.000000 -612, 1.000000, 0.000000, 0.000000, 0.000000 -613, 1.000000, 0.000000, 0.000000, 0.000000 -614, 1.000000, 0.000000, 0.000000, 0.000000 -615, 1.000000, 0.000000, 0.000000, 0.000000 -616, 1.000000, 0.000000, 0.000000, 0.000000 -617, 1.000000, 0.000000, 0.000000, 0.000000 -618, 1.000000, 0.000000, 0.000000, 0.000000 -619, 1.000000, 0.000000, 0.000000, 0.000000 -620, 1.000000, 0.000000, 0.000000, 0.000000 -621, 1.000000, 0.000000, 0.000000, 0.000000 -622, 1.000000, 0.000000, 0.000000, 0.000000 -623, 1.000000, 0.000000, 0.000000, 0.000000 -624, 1.000000, 0.000000, 0.000000, 0.000000 -625, 1.000000, 0.000000, 0.000000, 0.000000 -626, 1.000000, 0.000000, 0.000000, 0.000000 -627, 1.000000, 0.000000, 0.000000, 0.000000 -628, 1.000000, 0.000000, 0.000000, 0.000000 -629, 1.000000, 0.000000, 0.000000, 0.000000 -630, 1.000000, 0.000000, 0.000000, 0.000000 -631, 1.000000, 0.000000, 0.000000, 0.000000 -632, 1.000000, 0.000000, 0.000000, 0.000000 -633, 1.000000, 0.000000, 0.000000, 0.000000 -634, 1.000000, 0.000000, 0.000000, 0.000000 -635, 1.000000, 0.000000, 0.000000, 0.000000 -636, 1.000000, 0.000000, 0.000000, 0.000000 -637, 1.000000, 0.000000, 0.000000, 0.000000 -638, 1.000000, 0.000000, 0.000000, 0.000000 -639, 1.000000, 0.000000, 0.000000, 0.000000 -640, 1.000000, 0.000000, 0.000000, 0.000000 -641, 1.000000, 0.000000, 0.000000, 0.000000 -642, 1.000000, 0.000000, 0.000000, 0.000000 -643, 1.000000, 0.000000, 0.000000, 0.000000 -644, 1.000000, 0.000000, 0.000000, 0.000000 -645, 1.000000, 0.000000, 0.000000, 0.000000 -646, 1.000000, 0.000000, 0.000000, 0.000000 -647, 1.000000, 0.000000, 0.000000, 0.000000 -648, 1.000000, 0.000000, 0.000000, 0.000000 -649, 1.000000, 0.000000, 0.000000, 0.000000 -650, 1.000000, 0.000000, 0.000000, 0.000000 -651, 1.000000, 0.000000, 0.000000, 0.000000 -652, 1.000000, 0.000000, 0.000000, 0.000000 -653, 1.000000, 0.000000, 0.000000, 0.000000 -654, 1.000000, 0.000000, 0.000000, 0.000000 -655, 1.000000, 0.000000, 0.000000, 0.000000 -656, 1.000000, 0.000000, 0.000000, 0.000000 -657, 1.000000, 0.000000, 0.000000, 0.000000 -658, 1.000000, 0.000000, 0.000000, 0.000000 -659, 1.000000, 0.000000, 0.000000, 0.000000 -660, 1.000000, 0.000000, 0.000000, 0.000000 -661, 1.000000, 0.000000, 0.000000, 0.000000 -662, 1.000000, 0.000000, 0.000000, 0.000000 -663, 1.000000, 0.000000, 0.000000, 0.000000 -664, 1.000000, 0.000000, 0.000000, 0.000000 -665, 1.000000, 0.000000, 0.000000, 0.000000 -666, 1.000000, 0.000000, 0.000000, 0.000000 -667, 1.000000, 0.000000, 0.000000, 0.000000 -668, 1.000000, 0.000000, 0.000000, 0.000000 -669, 1.000000, 0.000000, 0.000000, 0.000000 -670, 1.000000, 0.000000, 0.000000, 0.000000 -671, 1.000000, 0.000000, 0.000000, 0.000000 -672, 1.000000, 0.000000, 0.000000, 0.000000 -673, 1.000000, 0.000000, 0.000000, 0.000000 -674, 1.000000, 0.000000, 0.000000, 0.000000 -675, 1.000000, 0.000000, 0.000000, 0.000000 -676, 1.000000, 0.000000, 0.000000, 0.000000 -677, 1.000000, 0.000000, 0.000000, 0.000000 -678, 1.000000, 0.000000, 0.000000, 0.000000 -679, 1.000000, 0.000000, 0.000000, 0.000000 -680, 1.000000, 0.000000, 0.000000, 0.000000 -681, 1.000000, 0.000000, 0.000000, 0.000000 -682, 1.000000, 0.000000, 0.000000, 0.000000 -683, 1.000000, 0.000000, 0.000000, 0.000000 -684, 1.000000, 0.000000, 0.000000, 0.000000 -685, 1.000000, 0.000000, 0.000000, 0.000000 -686, 1.000000, 0.000000, 0.000000, 0.000000 -687, 1.000000, 0.000000, 0.000000, 0.000000 -688, 1.000000, 0.000000, 0.000000, 0.000000 -689, 1.000000, 0.000000, 0.000000, 0.000000 -690, 1.000000, 0.000000, 0.000000, 0.000000 -691, 1.000000, 0.000000, 0.000000, 0.000000 -692, 1.000000, 0.000000, 0.000000, 0.000000 -693, 1.000000, 0.000000, 0.000000, 0.000000 -694, 1.000000, 0.000000, 0.000000, 0.000000 -695, 1.000000, 0.000000, 0.000000, 0.000000 -696, 1.000000, 0.000000, 0.000000, 0.000000 -697, 1.000000, 0.000000, 0.000000, 0.000000 -698, 1.000000, 0.000000, 0.000000, 0.000000 -699, 1.000000, 0.000000, 0.000000, 0.000000 -700, 1.000000, 0.000000, 0.000000, 0.000000 -701, 1.000000, 0.000000, 0.000000, 0.000000 -702, 1.000000, 0.000000, 0.000000, 0.000000 -703, 1.000000, 0.000000, 0.000000, 0.000000 -704, 1.000000, 0.000000, 0.000000, 0.000000 -705, 1.000000, 0.000000, 0.000000, 0.000000 -706, 1.000000, 0.000000, 0.000000, 0.000000 -707, 1.000000, 0.000000, 0.000000, 0.000000 -708, 1.000000, 0.000000, 0.000000, 0.000000 -709, 1.000000, 0.000000, 0.000000, 0.000000 -710, 1.000000, 0.000000, 0.000000, 0.000000 -711, 1.000000, 0.000000, 0.000000, 0.000000 -712, 1.000000, 0.000000, 0.000000, 0.000000 -713, 1.000000, 0.000000, 0.000000, 0.000000 -714, 1.000000, 0.000000, 0.000000, 0.000000 -715, 1.000000, 0.000000, 0.000000, 0.000000 -716, 1.000000, 0.000000, 0.000000, 0.000000 -717, 1.000000, 0.000000, 0.000000, 0.000000 -718, 1.000000, 0.000000, 0.000000, 0.000000 -719, 1.000000, 0.000000, 0.000000, 0.000000 -720, 1.000000, 0.000000, 0.000000, 0.000000 -721, 1.000000, 0.000000, 0.000000, 0.000000 -722, 1.000000, 0.000000, 0.000000, 0.000000 -723, 1.000000, 0.000000, 0.000000, 0.000000 -724, 1.000000, 0.000000, 0.000000, 0.000000 -725, 1.000000, 0.000000, 0.000000, 0.000000 -726, 1.000000, 0.000000, 0.000000, 0.000000 -727, 1.000000, 0.000000, 0.000000, 0.000000 -728, 1.000000, 0.000000, 0.000000, 0.000000 -729, 1.000000, 0.000000, 0.000000, 0.000000 -730, 1.000000, 0.000000, 0.000000, 0.000000 -731, 1.000000, 0.000000, 0.000000, 0.000000 -732, 1.000000, 0.000000, 0.000000, 0.000000 -733, 1.000000, 0.000000, 0.000000, 0.000000 -734, 1.000000, 0.000000, 0.000000, 0.000000 -735, 1.000000, 0.000000, 0.000000, 0.000000 -736, 1.000000, 0.000000, 0.000000, 0.000000 -737, 1.000000, 0.000000, 0.000000, 0.000000 -738, 1.000000, 0.000000, 0.000000, 0.000000 -739, 1.000000, 0.000000, 0.000000, 0.000000 -740, 1.000000, 0.000000, 0.000000, 0.000000 -741, 1.000000, 0.000000, 0.000000, 0.000000 -742, 1.000000, 0.000000, 0.000000, 0.000000 -743, 1.000000, 0.000000, 0.000000, 0.000000 -744, 1.000000, 0.000000, 0.000000, 0.000000 -745, 1.000000, 0.000000, 0.000000, 0.000000 -746, 1.000000, 0.000000, 0.000000, 0.000000 -747, 1.000000, 0.000000, 0.000000, 0.000000 -748, 1.000000, 0.000000, 0.000000, 0.000000 -749, 1.000000, 0.000000, 0.000000, 0.000000 -750, 1.000000, 0.000000, 0.000000, 0.000000 -751, 1.000000, 0.000000, 0.000000, 0.000000 -752, 1.000000, 0.000000, 0.000000, 0.000000 -753, 1.000000, 0.000000, 0.000000, 0.000000 -754, 1.000000, 0.000000, 0.000000, 0.000000 -755, 1.000000, 0.000000, 0.000000, 0.000000 -756, 1.000000, 0.000000, 0.000000, 0.000000 -757, 1.000000, 0.000000, 0.000000, 0.000000 -758, 1.000000, 0.000000, 0.000000, 0.000000 -759, 1.000000, 0.000000, 0.000000, 0.000000 -760, 1.000000, 0.000000, 0.000000, 0.000000 -761, 1.000000, 0.000000, 0.000000, 0.000000 -762, 1.000000, 0.000000, 0.000000, 0.000000 -763, 1.000000, 0.000000, 0.000000, 0.000000 -764, 1.000000, 0.000000, 0.000000, 0.000000 -765, 1.000000, 0.000000, 0.000000, 0.000000 -766, 1.000000, 0.000000, 0.000000, 0.000000 -767, 1.000000, 0.000000, 0.000000, 0.000000 -768, 1.000000, 0.000000, 0.000000, 0.000000 -769, 1.000000, 0.000000, 0.000000, 0.000000 -770, 1.000000, 0.000000, 0.000000, 0.000000 -771, 1.000000, 0.000000, 0.000000, 0.000000 -772, 1.000000, 0.000000, 0.000000, 0.000000 -773, 1.000000, 0.000000, 0.000000, 0.000000 -774, 1.000000, 0.000000, 0.000000, 0.000000 -775, 1.000000, 0.000000, 0.000000, 0.000000 -776, 1.000000, 0.000000, 0.000000, 0.000000 -777, 1.000000, 0.000000, 0.000000, 0.000000 -778, 1.000000, 0.000000, 0.000000, 0.000000 -779, 1.000000, 0.000000, 0.000000, 0.000000 -780, 1.000000, 0.000000, 0.000000, 0.000000 -781, 1.000000, 0.000000, 0.000000, 0.000000 -782, 1.000000, 0.000000, 0.000000, 0.000000 -783, 1.000000, 0.000000, 0.000000, 0.000000 -784, 1.000000, 0.000000, 0.000000, 0.000000 -785, 1.000000, 0.000000, 0.000000, 0.000000 -786, 1.000000, 0.000000, 0.000000, 0.000000 -787, 1.000000, 0.000000, 0.000000, 0.000000 -788, 1.000000, 0.000000, 0.000000, 0.000000 -789, 1.000000, 0.000000, 0.000000, 0.000000 -790, 1.000000, 0.000000, 0.000000, 0.000000 -791, 1.000000, 0.000000, 0.000000, 0.000000 -792, 1.000000, 0.000000, 0.000000, 0.000000 -793, 1.000000, 0.000000, 0.000000, 0.000000 -794, 1.000000, 0.000000, 0.000000, 0.000000 -795, 1.000000, 0.000000, 0.000000, 0.000000 -796, 1.000000, 0.000000, 0.000000, 0.000000 -797, 1.000000, 0.000000, 0.000000, 0.000000 -798, 1.000000, 0.000000, 0.000000, 0.000000 -799, 1.000000, 0.000000, 0.000000, 0.000000 -800, 1.000000, 0.000000, 0.000000, 0.000000 -801, 1.000000, 0.000000, 0.000000, 0.000000 -802, 1.000000, 0.000000, 0.000000, 0.000000 -803, 1.000000, 0.000000, 0.000000, 0.000000 -804, 1.000000, 0.000000, 0.000000, 0.000000 -805, 1.000000, 0.000000, 0.000000, 0.000000 -806, 1.000000, 0.000000, 0.000000, 0.000000 -807, 1.000000, 0.000000, 0.000000, 0.000000 -808, 1.000000, 0.000000, 0.000000, 0.000000 -809, 1.000000, 0.000000, 0.000000, 0.000000 -810, 1.000000, 0.000000, 0.000000, 0.000000 -811, 1.000000, 0.000000, 0.000000, 0.000000 -812, 1.000000, 0.000000, 0.000000, 0.000000 -813, 1.000000, 0.000000, 0.000000, 0.000000 -814, 1.000000, 0.000000, 0.000000, 0.000000 -815, 1.000000, 0.000000, 0.000000, 0.000000 -816, 1.000000, 0.000000, 0.000000, 0.000000 -817, 1.000000, 0.000000, 0.000000, 0.000000 -818, 1.000000, 0.000000, 0.000000, 0.000000 -819, 1.000000, 0.000000, 0.000000, 0.000000 -820, 1.000000, 0.000000, 0.000000, 0.000000 -821, 1.000000, 0.000000, 0.000000, 0.000000 -822, 1.000000, 0.000000, 0.000000, 0.000000 -823, 1.000000, 0.000000, 0.000000, 0.000000 -824, 1.000000, 0.000000, 0.000000, 0.000000 -825, 1.000000, 0.000000, 0.000000, 0.000000 -826, 1.000000, 0.000000, 0.000000, 0.000000 -827, 1.000000, 0.000000, 0.000000, 0.000000 -828, 1.000000, 0.000000, 0.000000, 0.000000 -829, 1.000000, 0.000000, 0.000000, 0.000000 -830, 1.000000, 0.000000, 0.000000, 0.000000 -831, 1.000000, 0.000000, 0.000000, 0.000000 -832, 1.000000, 0.000000, 0.000000, 0.000000 -833, 1.000000, 0.000000, 0.000000, 0.000000 -834, 1.000000, 0.000000, 0.000000, 0.000000 -835, 1.000000, 0.000000, 0.000000, 0.000000 -836, 1.000000, 0.000000, 0.000000, 0.000000 -837, 1.000000, 0.000000, 0.000000, 0.000000 -838, 1.000000, 0.000000, 0.000000, 0.000000 -839, 1.000000, 0.000000, 0.000000, 0.000000 -840, 1.000000, 0.000000, 0.000000, 0.000000 -841, 1.000000, 0.000000, 0.000000, 0.000000 -842, 1.000000, 0.000000, 0.000000, 0.000000 -843, 1.000000, 0.000000, 0.000000, 0.000000 -844, 1.000000, 0.000000, 0.000000, 0.000000 -845, 1.000000, 0.000000, 0.000000, 0.000000 -846, 1.000000, 0.000000, 0.000000, 0.000000 -847, 1.000000, 0.000000, 0.000000, 0.000000 -848, 1.000000, 0.000000, 0.000000, 0.000000 -849, 1.000000, 0.000000, 0.000000, 0.000000 -850, 1.000000, 0.000000, 0.000000, 0.000000 -851, 1.000000, 0.000000, 0.000000, 0.000000 -852, 1.000000, 0.000000, 0.000000, 0.000000 -853, 1.000000, 0.000000, 0.000000, 0.000000 -854, 1.000000, 0.000000, 0.000000, 0.000000 -855, 1.000000, 0.000000, 0.000000, 0.000000 -856, 1.000000, 0.000000, 0.000000, 0.000000 -857, 1.000000, 0.000000, 0.000000, 0.000000 -858, 1.000000, 0.000000, 0.000000, 0.000000 -859, 1.000000, 0.000000, 0.000000, 0.000000 -860, 1.000000, 0.000000, 0.000000, 0.000000 -861, 1.000000, 0.000000, 0.000000, 0.000000 -862, 1.000000, 0.000000, 0.000000, 0.000000 -863, 1.000000, 0.000000, 0.000000, 0.000000 -864, 1.000000, 0.000000, 0.000000, 0.000000 -865, 1.000000, 0.000000, 0.000000, 0.000000 -866, 1.000000, 0.000000, 0.000000, 0.000000 -867, 1.000000, 0.000000, 0.000000, 0.000000 -868, 1.000000, 0.000000, 0.000000, 0.000000 -869, 1.000000, 0.000000, 0.000000, 0.000000 -870, 1.000000, 0.000000, 0.000000, 0.000000 -871, 1.000000, 0.000000, 0.000000, 0.000000 -872, 1.000000, 0.000000, 0.000000, 0.000000 -873, 1.000000, 0.000000, 0.000000, 0.000000 -874, 1.000000, 0.000000, 0.000000, 0.000000 -875, 1.000000, 0.000000, 0.000000, 0.000000 -876, 1.000000, 0.000000, 0.000000, 0.000000 -877, 1.000000, 0.000000, 0.000000, 0.000000 -878, 1.000000, 0.000000, 0.000000, 0.000000 -879, 1.000000, 0.000000, 0.000000, 0.000000 -880, 1.000000, 0.000000, 0.000000, 0.000000 -881, 1.000000, 0.000000, 0.000000, 0.000000 -882, 1.000000, 0.000000, 0.000000, 0.000000 -883, 1.000000, 0.000000, 0.000000, 0.000000 -884, 1.000000, 0.000000, 0.000000, 0.000000 -885, 1.000000, 0.000000, 0.000000, 0.000000 -886, 1.000000, 0.000000, 0.000000, 0.000000 -887, 1.000000, 0.000000, 0.000000, 0.000000 -888, 1.000000, 0.000000, 0.000000, 0.000000 -889, 1.000000, 0.000000, 0.000000, 0.000000 -890, 1.000000, 0.000000, 0.000000, 0.000000 -891, 1.000000, 0.000000, 0.000000, 0.000000 -892, 1.000000, 0.000000, 0.000000, 0.000000 -893, 1.000000, 0.000000, 0.000000, 0.000000 -894, 1.000000, 0.000000, 0.000000, 0.000000 -895, 1.000000, 0.000000, 0.000000, 0.000000 -896, 1.000000, 0.000000, 0.000000, 0.000000 -897, 1.000000, 0.000000, 0.000000, 0.000000 -898, 1.000000, 0.000000, 0.000000, 0.000000 -899, 1.000000, 0.000000, 0.000000, 0.000000 -900, 1.000000, 0.000000, 0.000000, 0.000000 -901, 1.000000, 0.000000, 0.000000, 0.000000 -902, 1.000000, 0.000000, 0.000000, 0.000000 -903, 1.000000, 0.000000, 0.000000, 0.000000 -904, 1.000000, 0.000000, 0.000000, 0.000000 -905, 1.000000, 0.000000, 0.000000, 0.000000 -906, 1.000000, 0.000000, 0.000000, 0.000000 -907, 1.000000, 0.000000, 0.000000, 0.000000 -908, 1.000000, 0.000000, 0.000000, 0.000000 -909, 1.000000, 0.000000, 0.000000, 0.000000 -910, 1.000000, 0.000000, 0.000000, 0.000000 -911, 1.000000, 0.000000, 0.000000, 0.000000 -912, 1.000000, 0.000000, 0.000000, 0.000000 -913, 1.000000, 0.000000, 0.000000, 0.000000 -914, 1.000000, 0.000000, 0.000000, 0.000000 -915, 1.000000, 0.000000, 0.000000, 0.000000 -916, 1.000000, 0.000000, 0.000000, 0.000000 -917, 1.000000, 0.000000, 0.000000, 0.000000 -918, 1.000000, 0.000000, 0.000000, 0.000000 -919, 1.000000, 0.000000, 0.000000, 0.000000 -920, 1.000000, 0.000000, 0.000000, 0.000000 -921, 1.000000, 0.000000, 0.000000, 0.000000 -922, 1.000000, 0.000000, 0.000000, 0.000000 -923, 1.000000, 0.000000, 0.000000, 0.000000 -924, 1.000000, 0.000000, 0.000000, 0.000000 -925, 1.000000, 0.000000, 0.000000, 0.000000 -926, 1.000000, 0.000000, 0.000000, 0.000000 -927, 1.000000, 0.000000, 0.000000, 0.000000 -928, 1.000000, 0.000000, 0.000000, 0.000000 -929, 1.000000, 0.000000, 0.000000, 0.000000 -930, 1.000000, 0.000000, 0.000000, 0.000000 -931, 1.000000, 0.000000, 0.000000, 0.000000 -932, 1.000000, 0.000000, 0.000000, 0.000000 -933, 1.000000, 0.000000, 0.000000, 0.000000 -934, 1.000000, 0.000000, 0.000000, 0.000000 -935, 1.000000, 0.000000, 0.000000, 0.000000 -936, 1.000000, 0.000000, 0.000000, 0.000000 -937, 1.000000, 0.000000, 0.000000, 0.000000 -938, 1.000000, 0.000000, 0.000000, 0.000000 -939, 1.000000, 0.000000, 0.000000, 0.000000 -940, 1.000000, 0.000000, 0.000000, 0.000000 -941, 1.000000, 0.000000, 0.000000, 0.000000 -942, 1.000000, 0.000000, 0.000000, 0.000000 -943, 1.000000, 0.000000, 0.000000, 0.000000 -944, 1.000000, 0.000000, 0.000000, 0.000000 -945, 1.000000, 0.000000, 0.000000, 0.000000 -946, 1.000000, 0.000000, 0.000000, 0.000000 -947, 1.000000, 0.000000, 0.000000, 0.000000 -948, 1.000000, 0.000000, 0.000000, 0.000000 -949, 1.000000, 0.000000, 0.000000, 0.000000 -950, 1.000000, 0.000000, 0.000000, 0.000000 -951, 1.000000, 0.000000, 0.000000, 0.000000 -952, 1.000000, 0.000000, 0.000000, 0.000000 -953, 1.000000, 0.000000, 0.000000, 0.000000 -954, 1.000000, 0.000000, 0.000000, 0.000000 -955, 1.000000, 0.000000, 0.000000, 0.000000 -956, 1.000000, 0.000000, 0.000000, 0.000000 -957, 1.000000, 0.000000, 0.000000, 0.000000 -958, 1.000000, 0.000000, 0.000000, 0.000000 -959, 1.000000, 0.000000, 0.000000, 0.000000 -960, 1.000000, 0.000000, 0.000000, 0.000000 -961, 1.000000, 0.000000, 0.000000, 0.000000 -962, 1.000000, 0.000000, 0.000000, 0.000000 -963, 1.000000, 0.000000, 0.000000, 0.000000 -964, 1.000000, 0.000000, 0.000000, 0.000000 -965, 1.000000, 0.000000, 0.000000, 0.000000 -966, 1.000000, 0.000000, 0.000000, 0.000000 -967, 1.000000, 0.000000, 0.000000, 0.000000 -968, 1.000000, 0.000000, 0.000000, 0.000000 -969, 1.000000, 0.000000, 0.000000, 0.000000 -970, 1.000000, 0.000000, 0.000000, 0.000000 -971, 1.000000, 0.000000, 0.000000, 0.000000 -972, 1.000000, 0.000000, 0.000000, 0.000000 -973, 1.000000, 0.000000, 0.000000, 0.000000 -974, 1.000000, 0.000000, 0.000000, 0.000000 -975, 1.000000, 0.000000, 0.000000, 0.000000 -976, 1.000000, 0.000000, 0.000000, 0.000000 -977, 1.000000, 0.000000, 0.000000, 0.000000 -978, 1.000000, 0.000000, 0.000000, 0.000000 -979, 1.000000, 0.000000, 0.000000, 0.000000 -980, 1.000000, 0.000000, 0.000000, 0.000000 -981, 1.000000, 0.000000, 0.000000, 0.000000 -982, 1.000000, 0.000000, 0.000000, 0.000000 -983, 1.000000, 0.000000, 0.000000, 0.000000 -984, 1.000000, 0.000000, 0.000000, 0.000000 -985, 1.000000, 0.000000, 0.000000, 0.000000 -986, 1.000000, 0.000000, 0.000000, 0.000000 -987, 1.000000, 0.000000, 0.000000, 0.000000 -988, 1.000000, 0.000000, 0.000000, 0.000000 -989, 1.000000, 0.000000, 0.000000, 0.000000 -990, 1.000000, 0.000000, 0.000000, 0.000000 -991, 1.000000, 0.000000, 0.000000, 0.000000 -992, 1.000000, 0.000000, 0.000000, 0.000000 -993, 1.000000, 0.000000, 0.000000, 0.000000 -994, 1.000000, 0.000000, 0.000000, 0.000000 -995, 1.000000, 0.000000, 0.000000, 0.000000 -996, 1.000000, 0.000000, 0.000000, 0.000000 -997, 1.000000, 0.000000, 0.000000, 0.000000 -998, 1.000000, 0.000000, 0.000000, 0.000000 -999, 1.000000, 0.000000, 0.000000, 0.000000 -1000, 1.000000, 0.000000, 0.000000, 0.000000 -1001, 1.000000, 0.000000, 0.000000, 0.000000 -1002, 1.000000, 0.000000, 0.000000, 0.000000 -1003, 1.000000, 0.000000, 0.000000, 0.000000 -1004, 1.000000, 0.000000, 0.000000, 0.000000 -1005, 1.000000, 0.000000, 0.000000, 0.000000 -1006, 1.000000, 0.000000, 0.000000, 0.000000 -1007, 1.000000, 0.000000, 0.000000, 0.000000 -1008, 1.000000, 0.000000, 0.000000, 0.000000 -1009, 1.000000, 0.000000, 0.000000, 0.000000 -1010, 1.000000, 0.000000, 0.000000, 0.000000 -1011, 1.000000, 0.000000, 0.000000, 0.000000 -1012, 1.000000, 0.000000, 0.000000, 0.000000 -1013, 1.000000, 0.000000, 0.000000, 0.000000 -1014, 1.000000, 0.000000, 0.000000, 0.000000 -1015, 1.000000, 0.000000, 0.000000, 0.000000 -1016, 1.000000, 0.000000, 0.000000, 0.000000 -1017, 1.000000, 0.000000, 0.000000, 0.000000 -1018, 1.000000, 0.000000, 0.000000, 0.000000 -1019, 1.000000, 0.000000, 0.000000, 0.000000 -1020, 1.000000, 0.000000, 0.000000, 0.000000 -1021, 1.000000, 0.000000, 0.000000, 0.000000 -1022, 1.000000, 0.000000, 0.000000, 0.000000 -1023, 1.000000, 0.000000, 0.000000, 0.000000 -1024, 1.000000, 0.000000, 0.000000, 0.000000 -1025, 1.000000, 0.000000, 0.000000, 0.000000 -1026, 1.000000, 0.000000, 0.000000, 0.000000 -1027, 1.000000, 0.000000, 0.000000, 0.000000 -1028, 1.000000, 0.000000, 0.000000, 0.000000 -1029, 1.000000, 0.000000, 0.000000, 0.000000 -1030, 1.000000, 0.000000, 0.000000, 0.000000 -1031, 1.000000, 0.000000, 0.000000, 0.000000 -1032, 1.000000, 0.000000, 0.000000, 0.000000 -1033, 1.000000, 0.000000, 0.000000, 0.000000 -1034, 1.000000, 0.000000, 0.000000, 0.000000 -1035, 1.000000, 0.000000, 0.000000, 0.000000 -1036, 1.000000, 0.000000, 0.000000, 0.000000 -1037, 1.000000, 0.000000, 0.000000, 0.000000 -1038, 1.000000, 0.000000, 0.000000, 0.000000 -1039, 1.000000, 0.000000, 0.000000, 0.000000 -1040, 1.000000, 0.000000, 0.000000, 0.000000 -1041, 1.000000, 0.000000, 0.000000, 0.000000 -1042, 1.000000, 0.000000, 0.000000, 0.000000 -1043, 1.000000, 0.000000, 0.000000, 0.000000 -1044, 1.000000, 0.000000, 0.000000, 0.000000 -1045, 1.000000, 0.000000, 0.000000, 0.000000 -1046, 1.000000, 0.000000, 0.000000, 0.000000 -1047, 1.000000, 0.000000, 0.000000, 0.000000 -1048, 1.000000, 0.000000, 0.000000, 0.000000 -1049, 1.000000, 0.000000, 0.000000, 0.000000 -1050, 1.000000, 0.000000, 0.000000, 0.000000 -1051, 1.000000, 0.000000, 0.000000, 0.000000 -1052, 1.000000, 0.000000, 0.000000, 0.000000 -1053, 1.000000, 0.000000, 0.000000, 0.000000 -1054, 1.000000, 0.000000, 0.000000, 0.000000 -1055, 1.000000, 0.000000, 0.000000, 0.000000 -1056, 1.000000, 0.000000, 0.000000, 0.000000 -1057, 1.000000, 0.000000, 0.000000, 0.000000 -1058, 1.000000, 0.000000, 0.000000, 0.000000 -1059, 1.000000, 0.000000, 0.000000, 0.000000 -1060, 1.000000, 0.000000, 0.000000, 0.000000 -1061, 1.000000, 0.000000, 0.000000, 0.000000 -1062, 1.000000, 0.000000, 0.000000, 0.000000 -1063, 1.000000, 0.000000, 0.000000, 0.000000 -1064, 1.000000, 0.000000, 0.000000, 0.000000 -1065, 1.000000, 0.000000, 0.000000, 0.000000 -1066, 1.000000, 0.000000, 0.000000, 0.000000 -1067, 1.000000, 0.000000, 0.000000, 0.000000 -1068, 1.000000, 0.000000, 0.000000, 0.000000 -1069, 1.000000, 0.000000, 0.000000, 0.000000 -1070, 1.000000, 0.000000, 0.000000, 0.000000 -1071, 1.000000, 0.000000, 0.000000, 0.000000 -1072, 1.000000, 0.000000, 0.000000, 0.000000 -1073, 1.000000, 0.000000, 0.000000, 0.000000 -1074, 1.000000, 0.000000, 0.000000, 0.000000 -1075, 1.000000, 0.000000, 0.000000, 0.000000 -1076, 1.000000, 0.000000, 0.000000, 0.000000 -1077, 1.000000, 0.000000, 0.000000, 0.000000 -1078, 1.000000, 0.000000, 0.000000, 0.000000 -1079, 1.000000, 0.000000, 0.000000, 0.000000 -1080, 1.000000, 0.000000, 0.000000, 0.000000 -1081, 1.000000, 0.000000, 0.000000, 0.000000 -1082, 1.000000, 0.000000, 0.000000, 0.000000 -1083, 1.000000, 0.000000, 0.000000, 0.000000 -1084, 1.000000, 0.000000, 0.000000, 0.000000 -1085, 1.000000, 0.000000, 0.000000, 0.000000 -1086, 1.000000, 0.000000, 0.000000, 0.000000 -1087, 1.000000, 0.000000, 0.000000, 0.000000 -1088, 1.000000, 0.000000, 0.000000, 0.000000 -1089, 1.000000, 0.000000, 0.000000, 0.000000 -1090, 1.000000, 0.000000, 0.000000, 0.000000 -1091, 1.000000, 0.000000, 0.000000, 0.000000 -1092, 1.000000, 0.000000, 0.000000, 0.000000 -1093, 1.000000, 0.000000, 0.000000, 0.000000 -1094, 1.000000, 0.000000, 0.000000, 0.000000 -1095, 1.000000, 0.000000, 0.000000, 0.000000 -1096, 1.000000, 0.000000, 0.000000, 0.000000 -1097, 1.000000, 0.000000, 0.000000, 0.000000 -1098, 1.000000, 0.000000, 0.000000, 0.000000 -1099, 1.000000, 0.000000, 0.000000, 0.000000 -1100, 1.000000, 0.000000, 0.000000, 0.000000 -1101, 1.000000, 0.000000, 0.000000, 0.000000 -1102, 1.000000, 0.000000, 0.000000, 0.000000 -1103, 1.000000, 0.000000, 0.000000, 0.000000 -1104, 1.000000, 0.000000, 0.000000, 0.000000 -1105, 1.000000, 0.000000, 0.000000, 0.000000 -1106, 1.000000, 0.000000, 0.000000, 0.000000 -1107, 1.000000, 0.000000, 0.000000, 0.000000 -1108, 1.000000, 0.000000, 0.000000, 0.000000 -1109, 1.000000, 0.000000, 0.000000, 0.000000 -1110, 1.000000, 0.000000, 0.000000, 0.000000 -1111, 1.000000, 0.000000, 0.000000, 0.000000 -1112, 1.000000, 0.000000, 0.000000, 0.000000 -1113, 1.000000, 0.000000, 0.000000, 0.000000 -1114, 1.000000, 0.000000, 0.000000, 0.000000 -1115, 1.000000, 0.000000, 0.000000, 0.000000 -1116, 1.000000, 0.000000, 0.000000, 0.000000 -1117, 1.000000, 0.000000, 0.000000, 0.000000 -1118, 1.000000, 0.000000, 0.000000, 0.000000 -1119, 1.000000, 0.000000, 0.000000, 0.000000 -1120, 1.000000, 0.000000, 0.000000, 0.000000 -1121, 1.000000, 0.000000, 0.000000, 0.000000 -1122, 1.000000, 0.000000, 0.000000, 0.000000 -1123, 1.000000, 0.000000, 0.000000, 0.000000 -1124, 1.000000, 0.000000, 0.000000, 0.000000 -1125, 1.000000, 0.000000, 0.000000, 0.000000 -1126, 1.000000, 0.000000, 0.000000, 0.000000 -1127, 1.000000, 0.000000, 0.000000, 0.000000 -1128, 1.000000, 0.000000, 0.000000, 0.000000 -1129, 1.000000, 0.000000, 0.000000, 0.000000 -1130, 1.000000, 0.000000, 0.000000, 0.000000 -1131, 1.000000, 0.000000, 0.000000, 0.000000 -1132, 1.000000, 0.000000, 0.000000, 0.000000 -1133, 1.000000, 0.000000, 0.000000, 0.000000 -1134, 1.000000, 0.000000, 0.000000, 0.000000 -1135, 1.000000, 0.000000, 0.000000, 0.000000 -1136, 1.000000, 0.000000, 0.000000, 0.000000 -1137, 1.000000, 0.000000, 0.000000, 0.000000 -1138, 1.000000, 0.000000, 0.000000, 0.000000 -1139, 1.000000, 0.000000, 0.000000, 0.000000 -1140, 1.000000, 0.000000, 0.000000, 0.000000 -1141, 1.000000, 0.000000, 0.000000, 0.000000 -1142, 1.000000, 0.000000, 0.000000, 0.000000 -1143, 1.000000, 0.000000, 0.000000, 0.000000 -1144, 1.000000, 0.000000, 0.000000, 0.000000 -1145, 1.000000, 0.000000, 0.000000, 0.000000 -1146, 1.000000, 0.000000, 0.000000, 0.000000 -1147, 1.000000, 0.000000, 0.000000, 0.000000 -1148, 1.000000, 0.000000, 0.000000, 0.000000 -1149, 1.000000, 0.000000, 0.000000, 0.000000 -1150, 1.000000, 0.000000, 0.000000, 0.000000 -1151, 1.000000, 0.000000, 0.000000, 0.000000 -1152, 1.000000, 0.000000, 0.000000, 0.000000 -1153, 1.000000, 0.000000, 0.000000, 0.000000 -1154, 1.000000, 0.000000, 0.000000, 0.000000 -1155, 1.000000, 0.000000, 0.000000, 0.000000 -1156, 1.000000, 0.000000, 0.000000, 0.000000 -1157, 1.000000, 0.000000, 0.000000, 0.000000 -1158, 1.000000, 0.000000, 0.000000, 0.000000 -1159, 1.000000, 0.000000, 0.000000, 0.000000 -1160, 1.000000, 0.000000, 0.000000, 0.000000 -1161, 1.000000, 0.000000, 0.000000, 0.000000 -1162, 1.000000, 0.000000, 0.000000, 0.000000 -1163, 1.000000, 0.000000, 0.000000, 0.000000 -1164, 1.000000, 0.000000, 0.000000, 0.000000 -1165, 1.000000, 0.000000, 0.000000, 0.000000 -1166, 1.000000, 0.000000, 0.000000, 0.000000 -1167, 1.000000, 0.000000, 0.000000, 0.000000 -1168, 1.000000, 0.000000, 0.000000, 0.000000 -1169, 1.000000, 0.000000, 0.000000, 0.000000 -1170, 1.000000, 0.000000, 0.000000, 0.000000 -1171, 1.000000, 0.000000, 0.000000, 0.000000 -1172, 1.000000, 0.000000, 0.000000, 0.000000 -1173, 1.000000, 0.000000, 0.000000, 0.000000 -1174, 1.000000, 0.000000, 0.000000, 0.000000 -1175, 1.000000, 0.000000, 0.000000, 0.000000 -1176, 1.000000, 0.000000, 0.000000, 0.000000 -1177, 1.000000, 0.000000, 0.000000, 0.000000 -1178, 1.000000, 0.000000, 0.000000, 0.000000 -1179, 1.000000, 0.000000, 0.000000, 0.000000 -1180, 1.000000, 0.000000, 0.000000, 0.000000 -1181, 1.000000, 0.000000, 0.000000, 0.000000 -1182, 1.000000, 0.000000, 0.000000, 0.000000 -1183, 1.000000, 0.000000, 0.000000, 0.000000 -1184, 1.000000, 0.000000, 0.000000, 0.000000 -1185, 1.000000, 0.000000, 0.000000, 0.000000 -1186, 1.000000, 0.000000, 0.000000, 0.000000 -1187, 1.000000, 0.000000, 0.000000, 0.000000 -1188, 1.000000, 0.000000, 0.000000, 0.000000 -1189, 1.000000, 0.000000, 0.000000, 0.000000 -1190, 1.000000, 0.000000, 0.000000, 0.000000 -1191, 1.000000, 0.000000, 0.000000, 0.000000 -1192, 1.000000, 0.000000, 0.000000, 0.000000 -1193, 1.000000, 0.000000, 0.000000, 0.000000 -1194, 1.000000, 0.000000, 0.000000, 0.000000 -1195, 1.000000, 0.000000, 0.000000, 0.000000 -1196, 1.000000, 0.000000, 0.000000, 0.000000 -1197, 1.000000, 0.000000, 0.000000, 0.000000 -1198, 1.000000, 0.000000, 0.000000, 0.000000 -1199, 1.000000, 0.000000, 0.000000, 0.000000 -1200, 1.000000, 0.000000, 0.000000, 0.000000 -1201, 1.000000, 0.000000, 0.000000, 0.000000 -1202, 1.000000, 0.000000, 0.000000, 0.000000 -1203, 1.000000, 0.000000, 0.000000, 0.000000 -1204, 1.000000, 0.000000, 0.000000, 0.000000 -1205, 1.000000, 0.000000, 0.000000, 0.000000 -1206, 1.000000, 0.000000, 0.000000, 0.000000 -1207, 1.000000, 0.000000, 0.000000, 0.000000 -1208, 1.000000, 0.000000, 0.000000, 0.000000 -1209, 1.000000, 0.000000, 0.000000, 0.000000 -1210, 1.000000, 0.000000, 0.000000, 0.000000 -1211, 1.000000, 0.000000, 0.000000, 0.000000 -1212, 1.000000, 0.000000, 0.000000, 0.000000 -1213, 1.000000, 0.000000, 0.000000, 0.000000 -1214, 1.000000, 0.000000, 0.000000, 0.000000 -1215, 1.000000, 0.000000, 0.000000, 0.000000 -1216, 1.000000, 0.000000, 0.000000, 0.000000 -1217, 1.000000, 0.000000, 0.000000, 0.000000 -1218, 1.000000, 0.000000, 0.000000, 0.000000 -1219, 1.000000, 0.000000, 0.000000, 0.000000 -1220, 1.000000, 0.000000, 0.000000, 0.000000 -1221, 1.000000, 0.000000, 0.000000, 0.000000 -1222, 1.000000, 0.000000, 0.000000, 0.000000 -1223, 1.000000, 0.000000, 0.000000, 0.000000 -1224, 1.000000, 0.000000, 0.000000, 0.000000 -1225, 1.000000, 0.000000, 0.000000, 0.000000 -1226, 1.000000, 0.000000, 0.000000, 0.000000 -1227, 1.000000, 0.000000, 0.000000, 0.000000 -1228, 1.000000, 0.000000, 0.000000, 0.000000 -1229, 1.000000, 0.000000, 0.000000, 0.000000 -1230, 1.000000, 0.000000, 0.000000, 0.000000 -1231, 1.000000, 0.000000, 0.000000, 0.000000 -1232, 1.000000, 0.000000, 0.000000, 0.000000 -1233, 1.000000, 0.000000, 0.000000, 0.000000 -1234, 1.000000, 0.000000, 0.000000, 0.000000 -1235, 1.000000, 0.000000, 0.000000, 0.000000 -1236, 1.000000, 0.000000, 0.000000, 0.000000 -1237, 1.000000, 0.000000, 0.000000, 0.000000 -1238, 1.000000, 0.000000, 0.000000, 0.000000 -1239, 1.000000, 0.000000, 0.000000, 0.000000 -1240, 1.000000, 0.000000, 0.000000, 0.000000 -1241, 1.000000, 0.000000, 0.000000, 0.000000 -1242, 1.000000, 0.000000, 0.000000, 0.000000 -1243, 1.000000, 0.000000, 0.000000, 0.000000 -1244, 1.000000, 0.000000, 0.000000, 0.000000 -1245, 1.000000, 0.000000, 0.000000, 0.000000 -1246, 1.000000, 0.000000, 0.000000, 0.000000 -1247, 1.000000, 0.000000, 0.000000, 0.000000 -1248, 1.000000, 0.000000, 0.000000, 0.000000 -1249, 1.000000, 0.000000, 0.000000, 0.000000 -1250, 1.000000, 0.000000, 0.000000, 0.000000 -1251, 1.000000, 0.000000, 0.000000, 0.000000 -1252, 1.000000, 0.000000, 0.000000, 0.000000 -1253, 1.000000, 0.000000, 0.000000, 0.000000 -1254, 1.000000, 0.000000, 0.000000, 0.000000 -1255, 1.000000, 0.000000, 0.000000, 0.000000 -1256, 1.000000, 0.000000, 0.000000, 0.000000 -1257, 1.000000, 0.000000, 0.000000, 0.000000 -1258, 1.000000, 0.000000, 0.000000, 0.000000 -1259, 1.000000, 0.000000, 0.000000, 0.000000 -1260, 1.000000, 0.000000, 0.000000, 0.000000 -1261, 1.000000, 0.000000, 0.000000, 0.000000 -1262, 1.000000, 0.000000, 0.000000, 0.000000 -1263, 1.000000, 0.000000, 0.000000, 0.000000 -1264, 1.000000, 0.000000, 0.000000, 0.000000 -1265, 1.000000, 0.000000, 0.000000, 0.000000 -1266, 1.000000, 0.000000, 0.000000, 0.000000 -1267, 1.000000, 0.000000, 0.000000, 0.000000 -1268, 1.000000, 0.000000, 0.000000, 0.000000 -1269, 1.000000, 0.000000, 0.000000, 0.000000 -1270, 1.000000, 0.000000, 0.000000, 0.000000 -1271, 1.000000, 0.000000, 0.000000, 0.000000 -1272, 1.000000, 0.000000, 0.000000, 0.000000 -1273, 1.000000, 0.000000, 0.000000, 0.000000 -1274, 1.000000, 0.000000, 0.000000, 0.000000 -1275, 1.000000, 0.000000, 0.000000, 0.000000 -1276, 1.000000, 0.000000, 0.000000, 0.000000 -1277, 1.000000, 0.000000, 0.000000, 0.000000 -1278, 1.000000, 0.000000, 0.000000, 0.000000 -1279, 1.000000, 0.000000, 0.000000, 0.000000 -1280, 1.000000, 0.000000, 0.000000, 0.000000 -1281, 1.000000, 0.000000, 0.000000, 0.000000 -1282, 1.000000, 0.000000, 0.000000, 0.000000 -1283, 1.000000, 0.000000, 0.000000, 0.000000 -1284, 1.000000, 0.000000, 0.000000, 0.000000 -1285, 1.000000, 0.000000, 0.000000, 0.000000 -1286, 1.000000, 0.000000, 0.000000, 0.000000 -1287, 1.000000, 0.000000, 0.000000, 0.000000 -1288, 1.000000, 0.000000, 0.000000, 0.000000 -1289, 1.000000, 0.000000, 0.000000, 0.000000 -1290, 1.000000, 0.000000, 0.000000, 0.000000 -1291, 1.000000, 0.000000, 0.000000, 0.000000 -1292, 1.000000, 0.000000, 0.000000, 0.000000 -1293, 1.000000, 0.000000, 0.000000, 0.000000 -1294, 1.000000, 0.000000, 0.000000, 0.000000 -1295, 1.000000, 0.000000, 0.000000, 0.000000 -1296, 1.000000, 0.000000, 0.000000, 0.000000 -1297, 1.000000, 0.000000, 0.000000, 0.000000 -1298, 1.000000, 0.000000, 0.000000, 0.000000 -1299, 1.000000, 0.000000, 0.000000, 0.000000 -1300, 1.000000, 0.000000, 0.000000, 0.000000 -1301, 1.000000, 0.000000, 0.000000, 0.000000 -1302, 1.000000, 0.000000, 0.000000, 0.000000 -1303, 1.000000, 0.000000, 0.000000, 0.000000 -1304, 1.000000, 0.000000, 0.000000, 0.000000 -1305, 1.000000, 0.000000, 0.000000, 0.000000 -1306, 1.000000, 0.000000, 0.000000, 0.000000 -1307, 1.000000, 0.000000, 0.000000, 0.000000 -1308, 1.000000, 0.000000, 0.000000, 0.000000 -1309, 1.000000, 0.000000, 0.000000, 0.000000 -1310, 1.000000, 0.000000, 0.000000, 0.000000 -1311, 1.000000, 0.000000, 0.000000, 0.000000 -1312, 1.000000, 0.000000, 0.000000, 0.000000 -1313, 1.000000, 0.000000, 0.000000, 0.000000 -1314, 1.000000, 0.000000, 0.000000, 0.000000 -1315, 1.000000, 0.000000, 0.000000, 0.000000 -1316, 1.000000, 0.000000, 0.000000, 0.000000 -1317, 1.000000, 0.000000, 0.000000, 0.000000 -1318, 1.000000, 0.000000, 0.000000, 0.000000 -1319, 1.000000, 0.000000, 0.000000, 0.000000 -1320, 1.000000, 0.000000, 0.000000, 0.000000 -1321, 1.000000, 0.000000, 0.000000, 0.000000 -1322, 1.000000, 0.000000, 0.000000, 0.000000 -1323, 1.000000, 0.000000, 0.000000, 0.000000 -1324, 1.000000, 0.000000, 0.000000, 0.000000 -1325, 1.000000, 0.000000, 0.000000, 0.000000 -1326, 1.000000, 0.000000, 0.000000, 0.000000 -1327, 1.000000, 0.000000, 0.000000, 0.000000 -1328, 1.000000, 0.000000, 0.000000, 0.000000 -1329, 1.000000, 0.000000, 0.000000, 0.000000 -1330, 1.000000, 0.000000, 0.000000, 0.000000 -1331, 1.000000, 0.000000, 0.000000, 0.000000 -1332, 1.000000, 0.000000, 0.000000, 0.000000 -1333, 1.000000, 0.000000, 0.000000, 0.000000 -1334, 1.000000, 0.000000, 0.000000, 0.000000 -1335, 1.000000, 0.000000, 0.000000, 0.000000 -1336, 1.000000, 0.000000, 0.000000, 0.000000 -1337, 1.000000, 0.000000, 0.000000, 0.000000 -1338, 1.000000, 0.000000, 0.000000, 0.000000 -1339, 1.000000, 0.000000, 0.000000, 0.000000 -1340, 1.000000, 0.000000, 0.000000, 0.000000 -1341, 1.000000, 0.000000, 0.000000, 0.000000 -1342, 1.000000, 0.000000, 0.000000, 0.000000 -1343, 1.000000, 0.000000, 0.000000, 0.000000 -1344, 1.000000, 0.000000, 0.000000, 0.000000 -1345, 1.000000, 0.000000, 0.000000, 0.000000 -1346, 1.000000, 0.000000, 0.000000, 0.000000 -1347, 1.000000, 0.000000, 0.000000, 0.000000 -1348, 1.000000, 0.000000, 0.000000, 0.000000 -1349, 1.000000, 0.000000, 0.000000, 0.000000 -1350, 1.000000, 0.000000, 0.000000, 0.000000 -1351, 1.000000, 0.000000, 0.000000, 0.000000 -1352, 1.000000, 0.000000, 0.000000, 0.000000 -1353, 1.000000, 0.000000, 0.000000, 0.000000 -1354, 1.000000, 0.000000, 0.000000, 0.000000 -1355, 1.000000, 0.000000, 0.000000, 0.000000 -1356, 1.000000, 0.000000, 0.000000, 0.000000 -1357, 1.000000, 0.000000, 0.000000, 0.000000 -1358, 1.000000, 0.000000, 0.000000, 0.000000 -1359, 1.000000, 0.000000, 0.000000, 0.000000 -1360, 1.000000, 0.000000, 0.000000, 0.000000 -1361, 1.000000, 0.000000, 0.000000, 0.000000 -1362, 1.000000, 0.000000, 0.000000, 0.000000 -1363, 1.000000, 0.000000, 0.000000, 0.000000 -1364, 1.000000, 0.000000, 0.000000, 0.000000 -1365, 1.000000, 0.000000, 0.000000, 0.000000 -1366, 1.000000, 0.000000, 0.000000, 0.000000 -1367, 1.000000, 0.000000, 0.000000, 0.000000 -1368, 1.000000, 0.000000, 0.000000, 0.000000 -1369, 1.000000, 0.000000, 0.000000, 0.000000 -1370, 1.000000, 0.000000, 0.000000, 0.000000 -1371, 1.000000, 0.000000, 0.000000, 0.000000 -1372, 1.000000, 0.000000, 0.000000, 0.000000 -1373, 1.000000, 0.000000, 0.000000, 0.000000 -1374, 1.000000, 0.000000, 0.000000, 0.000000 -1375, 1.000000, 0.000000, 0.000000, 0.000000 -1376, 1.000000, 0.000000, 0.000000, 0.000000 -1377, 1.000000, 0.000000, 0.000000, 0.000000 -1378, 1.000000, 0.000000, 0.000000, 0.000000 -1379, 1.000000, 0.000000, 0.000000, 0.000000 -1380, 1.000000, 0.000000, 0.000000, 0.000000 -1381, 1.000000, 0.000000, 0.000000, 0.000000 -1382, 1.000000, 0.000000, 0.000000, 0.000000 -1383, 1.000000, 0.000000, 0.000000, 0.000000 -1384, 1.000000, 0.000000, 0.000000, 0.000000 -1385, 1.000000, 0.000000, 0.000000, 0.000000 -1386, 1.000000, 0.000000, 0.000000, 0.000000 -1387, 1.000000, 0.000000, 0.000000, 0.000000 -1388, 1.000000, 0.000000, 0.000000, 0.000000 -1389, 1.000000, 0.000000, 0.000000, 0.000000 -1390, 1.000000, 0.000000, 0.000000, 0.000000 -1391, 1.000000, 0.000000, 0.000000, 0.000000 -1392, 1.000000, 0.000000, 0.000000, 0.000000 -1393, 1.000000, 0.000000, 0.000000, 0.000000 -1394, 1.000000, 0.000000, 0.000000, 0.000000 -1395, 1.000000, 0.000000, 0.000000, 0.000000 -1396, 1.000000, 0.000000, 0.000000, 0.000000 -1397, 1.000000, 0.000000, 0.000000, 0.000000 -1398, 1.000000, 0.000000, 0.000000, 0.000000 -1399, 1.000000, 0.000000, 0.000000, 0.000000 -1400, 1.000000, 0.000000, 0.000000, 0.000000 -1401, 1.000000, 0.000000, 0.000000, 0.000000 -1402, 1.000000, 0.000000, 0.000000, 0.000000 -1403, 1.000000, 0.000000, 0.000000, 0.000000 -1404, 1.000000, 0.000000, 0.000000, 0.000000 -1405, 1.000000, 0.000000, 0.000000, 0.000000 -1406, 1.000000, 0.000000, 0.000000, 0.000000 -1407, 1.000000, 0.000000, 0.000000, 0.000000 -1408, 1.000000, 0.000000, 0.000000, 0.000000 -1409, 1.000000, 0.000000, 0.000000, 0.000000 -1410, 1.000000, 0.000000, 0.000000, 0.000000 -1411, 1.000000, 0.000000, 0.000000, 0.000000 -1412, 1.000000, 0.000000, 0.000000, 0.000000 -1413, 1.000000, 0.000000, 0.000000, 0.000000 -1414, 1.000000, 0.000000, 0.000000, 0.000000 -1415, 1.000000, 0.000000, 0.000000, 0.000000 -1416, 1.000000, 0.000000, 0.000000, 0.000000 -1417, 1.000000, 0.000000, 0.000000, 0.000000 -1418, 1.000000, 0.000000, 0.000000, 0.000000 -1419, 1.000000, 0.000000, 0.000000, 0.000000 -1420, 1.000000, 0.000000, 0.000000, 0.000000 -1421, 1.000000, 0.000000, 0.000000, 0.000000 -1422, 1.000000, 0.000000, 0.000000, 0.000000 -1423, 1.000000, 0.000000, 0.000000, 0.000000 -1424, 1.000000, 0.000000, 0.000000, 0.000000 -1425, 1.000000, 0.000000, 0.000000, 0.000000 -1426, 1.000000, 0.000000, 0.000000, 0.000000 -1427, 1.000000, 0.000000, 0.000000, 0.000000 -1428, 1.000000, 0.000000, 0.000000, 0.000000 -1429, 1.000000, 0.000000, 0.000000, 0.000000 -1430, 1.000000, 0.000000, 0.000000, 0.000000 -1431, 1.000000, 0.000000, 0.000000, 0.000000 -1432, 1.000000, 0.000000, 0.000000, 0.000000 -1433, 1.000000, 0.000000, 0.000000, 0.000000 -1434, 1.000000, 0.000000, 0.000000, 0.000000 -1435, 1.000000, 0.000000, 0.000000, 0.000000 -1436, 1.000000, 0.000000, 0.000000, 0.000000 -1437, 1.000000, 0.000000, 0.000000, 0.000000 -1438, 1.000000, 0.000000, 0.000000, 0.000000 -1439, 1.000000, 0.000000, 0.000000, 0.000000 -1440, 1.000000, 0.000000, 0.000000, 0.000000 -1441, 1.000000, 0.000000, 0.000000, 0.000000 -1442, 1.000000, 0.000000, 0.000000, 0.000000 -1443, 1.000000, 0.000000, 0.000000, 0.000000 -1444, 1.000000, 0.000000, 0.000000, 0.000000 -1445, 1.000000, 0.000000, 0.000000, 0.000000 -1446, 1.000000, 0.000000, 0.000000, 0.000000 -1447, 1.000000, 0.000000, 0.000000, 0.000000 -1448, 1.000000, 0.000000, 0.000000, 0.000000 -1449, 1.000000, 0.000000, 0.000000, 0.000000 -1450, 1.000000, 0.000000, 0.000000, 0.000000 -1451, 1.000000, 0.000000, 0.000000, 0.000000 -1452, 1.000000, 0.000000, 0.000000, 0.000000 -1453, 1.000000, 0.000000, 0.000000, 0.000000 -1454, 1.000000, 0.000000, 0.000000, 0.000000 -1455, 1.000000, 0.000000, 0.000000, 0.000000 -1456, 1.000000, 0.000000, 0.000000, 0.000000 -1457, 1.000000, 0.000000, 0.000000, 0.000000 -1458, 1.000000, 0.000000, 0.000000, 0.000000 -1459, 1.000000, 0.000000, 0.000000, 0.000000 -1460, 1.000000, 0.000000, 0.000000, 0.000000 -1461, 1.000000, 0.000000, 0.000000, 0.000000 -1462, 1.000000, 0.000000, 0.000000, 0.000000 -1463, 1.000000, 0.000000, 0.000000, 0.000000 -1464, 1.000000, 0.000000, 0.000000, 0.000000 -1465, 1.000000, 0.000000, 0.000000, 0.000000 -1466, 1.000000, 0.000000, 0.000000, 0.000000 -1467, 1.000000, 0.000000, 0.000000, 0.000000 -1468, 1.000000, 0.000000, 0.000000, 0.000000 -1469, 1.000000, 0.000000, 0.000000, 0.000000 -1470, 1.000000, 0.000000, 0.000000, 0.000000 -1471, 1.000000, 0.000000, 0.000000, 0.000000 -1472, 1.000000, 0.000000, 0.000000, 0.000000 -1473, 1.000000, 0.000000, 0.000000, 0.000000 -1474, 1.000000, 0.000000, 0.000000, 0.000000 -1475, 1.000000, 0.000000, 0.000000, 0.000000 -1476, 1.000000, 0.000000, 0.000000, 0.000000 -1477, 1.000000, 0.000000, 0.000000, 0.000000 -1478, 1.000000, 0.000000, 0.000000, 0.000000 -1479, 1.000000, 0.000000, 0.000000, 0.000000 -1480, 1.000000, 0.000000, 0.000000, 0.000000 -1481, 1.000000, 0.000000, 0.000000, 0.000000 -1482, 1.000000, 0.000000, 0.000000, 0.000000 -1483, 1.000000, 0.000000, 0.000000, 0.000000 -1484, 1.000000, 0.000000, 0.000000, 0.000000 -1485, 1.000000, 0.000000, 0.000000, 0.000000 -1486, 1.000000, 0.000000, 0.000000, 0.000000 -1487, 1.000000, 0.000000, 0.000000, 0.000000 -1488, 1.000000, 0.000000, 0.000000, 0.000000 -1489, 1.000000, 0.000000, 0.000000, 0.000000 -1490, 1.000000, 0.000000, 0.000000, 0.000000 -1491, 1.000000, 0.000000, 0.000000, 0.000000 -1492, 1.000000, 0.000000, 0.000000, 0.000000 -1493, 1.000000, 0.000000, 0.000000, 0.000000 -1494, 1.000000, 0.000000, 0.000000, 0.000000 -1495, 1.000000, 0.000000, 0.000000, 0.000000 -1496, 1.000000, 0.000000, 0.000000, 0.000000 -1497, 1.000000, 0.000000, 0.000000, 0.000000 -1498, 1.000000, 0.000000, 0.000000, 0.000000 -1499, 1.000000, 0.000000, 0.000000, 0.000000 -1500, 1.000000, 0.000000, 0.000000, 0.000000 -1501, 1.000000, 0.000000, 0.000000, 0.000000 -1502, 1.000000, 0.000000, 0.000000, 0.000000 -1503, 1.000000, 0.000000, 0.000000, 0.000000 -1504, 1.000000, 0.000000, 0.000000, 0.000000 -1505, 1.000000, 0.000000, 0.000000, 0.000000 -1506, 1.000000, 0.000000, 0.000000, 0.000000 -1507, 1.000000, 0.000000, 0.000000, 0.000000 -1508, 1.000000, 0.000000, 0.000000, 0.000000 -1509, 1.000000, 0.000000, 0.000000, 0.000000 -1510, 1.000000, 0.000000, 0.000000, 0.000000 -1511, 1.000000, 0.000000, 0.000000, 0.000000 -1512, 1.000000, 0.000000, 0.000000, 0.000000 -1513, 1.000000, 0.000000, 0.000000, 0.000000 -1514, 1.000000, 0.000000, 0.000000, 0.000000 -1515, 1.000000, 0.000000, 0.000000, 0.000000 -1516, 1.000000, 0.000000, 0.000000, 0.000000 -1517, 1.000000, 0.000000, 0.000000, 0.000000 -1518, 1.000000, 0.000000, 0.000000, 0.000000 -1519, 1.000000, 0.000000, 0.000000, 0.000000 -1520, 1.000000, 0.000000, 0.000000, 0.000000 -1521, 1.000000, 0.000000, 0.000000, 0.000000 -1522, 1.000000, 0.000000, 0.000000, 0.000000 -1523, 1.000000, 0.000000, 0.000000, 0.000000 -1524, 1.000000, 0.000000, 0.000000, 0.000000 -1525, 1.000000, 0.000000, 0.000000, 0.000000 -1526, 1.000000, 0.000000, 0.000000, 0.000000 -1527, 1.000000, 0.000000, 0.000000, 0.000000 -1528, 1.000000, 0.000000, 0.000000, 0.000000 -1529, 1.000000, 0.000000, 0.000000, 0.000000 -1530, 1.000000, 0.000000, 0.000000, 0.000000 -1531, 1.000000, 0.000000, 0.000000, 0.000000 -1532, 1.000000, 0.000000, 0.000000, 0.000000 -1533, 1.000000, 0.000000, 0.000000, 0.000000 -1534, 1.000000, 0.000000, 0.000000, 0.000000 -1535, 1.000000, 0.000000, 0.000000, 0.000000 -1536, 1.000000, 0.000000, 0.000000, 0.000000 -1537, 1.000000, 0.000000, 0.000000, 0.000000 -1538, 1.000000, 0.000000, 0.000000, 0.000000 -1539, 1.000000, 0.000000, 0.000000, 0.000000 -1540, 1.000000, 0.000000, 0.000000, 0.000000 -1541, 1.000000, 0.000000, 0.000000, 0.000000 -1542, 1.000000, 0.000000, 0.000000, 0.000000 -1543, 1.000000, 0.000000, 0.000000, 0.000000 -1544, 1.000000, 0.000000, 0.000000, 0.000000 -1545, 1.000000, 0.000000, 0.000000, 0.000000 -1546, 1.000000, 0.000000, 0.000000, 0.000000 -1547, 1.000000, 0.000000, 0.000000, 0.000000 -1548, 1.000000, 0.000000, 0.000000, 0.000000 -1549, 1.000000, 0.000000, 0.000000, 0.000000 -1550, 1.000000, 0.000000, 0.000000, 0.000000 -1551, 1.000000, 0.000000, 0.000000, 0.000000 -1552, 1.000000, 0.000000, 0.000000, 0.000000 -1553, 1.000000, 0.000000, 0.000000, 0.000000 -1554, 1.000000, 0.000000, 0.000000, 0.000000 -1555, 1.000000, 0.000000, 0.000000, 0.000000 -1556, 1.000000, 0.000000, 0.000000, 0.000000 -1557, 1.000000, 0.000000, 0.000000, 0.000000 -1558, 1.000000, 0.000000, 0.000000, 0.000000 -1559, 1.000000, 0.000000, 0.000000, 0.000000 -1560, 1.000000, 0.000000, 0.000000, 0.000000 -1561, 1.000000, 0.000000, 0.000000, 0.000000 -1562, 1.000000, 0.000000, 0.000000, 0.000000 -1563, 1.000000, 0.000000, 0.000000, 0.000000 -1564, 1.000000, 0.000000, 0.000000, 0.000000 -1565, 1.000000, 0.000000, 0.000000, 0.000000 -1566, 1.000000, 0.000000, 0.000000, 0.000000 -1567, 1.000000, 0.000000, 0.000000, 0.000000 -1568, 1.000000, 0.000000, 0.000000, 0.000000 -1569, 1.000000, 0.000000, 0.000000, 0.000000 -1570, 1.000000, 0.000000, 0.000000, 0.000000 -1571, 1.000000, 0.000000, 0.000000, 0.000000 -1572, 1.000000, 0.000000, 0.000000, 0.000000 -1573, 1.000000, 0.000000, 0.000000, 0.000000 -1574, 1.000000, 0.000000, 0.000000, 0.000000 -1575, 1.000000, 0.000000, 0.000000, 0.000000 -1576, 1.000000, 0.000000, 0.000000, 0.000000 -1577, 1.000000, 0.000000, 0.000000, 0.000000 -1578, 1.000000, 0.000000, 0.000000, 0.000000 -1579, 1.000000, 0.000000, 0.000000, 0.000000 -1580, 1.000000, 0.000000, 0.000000, 0.000000 -1581, 1.000000, 0.000000, 0.000000, 0.000000 -1582, 1.000000, 0.000000, 0.000000, 0.000000 -1583, 1.000000, 0.000000, 0.000000, 0.000000 -1584, 1.000000, 0.000000, 0.000000, 0.000000 -1585, 1.000000, 0.000000, 0.000000, 0.000000 -1586, 1.000000, 0.000000, 0.000000, 0.000000 -1587, 1.000000, 0.000000, 0.000000, 0.000000 -1588, 1.000000, 0.000000, 0.000000, 0.000000 -1589, 1.000000, 0.000000, 0.000000, 0.000000 -1590, 1.000000, 0.000000, 0.000000, 0.000000 -1591, 1.000000, 0.000000, 0.000000, 0.000000 -1592, 1.000000, 0.000000, 0.000000, 0.000000 -1593, 1.000000, 0.000000, 0.000000, 0.000000 -1594, 1.000000, 0.000000, 0.000000, 0.000000 -1595, 1.000000, 0.000000, 0.000000, 0.000000 -1596, 1.000000, 0.000000, 0.000000, 0.000000 -1597, 1.000000, 0.000000, 0.000000, 0.000000 -1598, 1.000000, 0.000000, 0.000000, 0.000000 -1599, 1.000000, 0.000000, 0.000000, 0.000000 -1600, 1.000000, 0.000000, 0.000000, 0.000000 -1601, 1.000000, 0.000000, 0.000000, 0.000000 -1602, 1.000000, 0.000000, 0.000000, 0.000000 -1603, 1.000000, 0.000000, 0.000000, 0.000000 -1604, 1.000000, 0.000000, 0.000000, 0.000000 -1605, 1.000000, 0.000000, 0.000000, 0.000000 -1606, 1.000000, 0.000000, 0.000000, 0.000000 -1607, 1.000000, 0.000000, 0.000000, 0.000000 -1608, 1.000000, 0.000000, 0.000000, 0.000000 -1609, 1.000000, 0.000000, 0.000000, 0.000000 -1610, 1.000000, 0.000000, 0.000000, 0.000000 -1611, 1.000000, 0.000000, 0.000000, 0.000000 -1612, 1.000000, 0.000000, 0.000000, 0.000000 -1613, 1.000000, 0.000000, 0.000000, 0.000000 -1614, 1.000000, 0.000000, 0.000000, 0.000000 -1615, 1.000000, 0.000000, 0.000000, 0.000000 -1616, 1.000000, 0.000000, 0.000000, 0.000000 -1617, 1.000000, 0.000000, 0.000000, 0.000000 -1618, 1.000000, 0.000000, 0.000000, 0.000000 -1619, 1.000000, 0.000000, 0.000000, 0.000000 -1620, 1.000000, 0.000000, 0.000000, 0.000000 -1621, 1.000000, 0.000000, 0.000000, 0.000000 -1622, 1.000000, 0.000000, 0.000000, 0.000000 -1623, 1.000000, 0.000000, 0.000000, 0.000000 -1624, 1.000000, 0.000000, 0.000000, 0.000000 -1625, 1.000000, 0.000000, 0.000000, 0.000000 -1626, 1.000000, 0.000000, 0.000000, 0.000000 -1627, 1.000000, 0.000000, 0.000000, 0.000000 -1628, 1.000000, 0.000000, 0.000000, 0.000000 -1629, 1.000000, 0.000000, 0.000000, 0.000000 -1630, 1.000000, 0.000000, 0.000000, 0.000000 -1631, 1.000000, 0.000000, 0.000000, 0.000000 -1632, 1.000000, 0.000000, 0.000000, 0.000000 -1633, 1.000000, 0.000000, 0.000000, 0.000000 -1634, 1.000000, 0.000000, 0.000000, 0.000000 -1635, 1.000000, 0.000000, 0.000000, 0.000000 -1636, 1.000000, 0.000000, 0.000000, 0.000000 -1637, 1.000000, 0.000000, 0.000000, 0.000000 -1638, 1.000000, 0.000000, 0.000000, 0.000000 -1639, 1.000000, 0.000000, 0.000000, 0.000000 -1640, 1.000000, 0.000000, 0.000000, 0.000000 -1641, 1.000000, 0.000000, 0.000000, 0.000000 -1642, 1.000000, 0.000000, 0.000000, 0.000000 -1643, 1.000000, 0.000000, 0.000000, 0.000000 -1644, 1.000000, 0.000000, 0.000000, 0.000000 -1645, 1.000000, 0.000000, 0.000000, 0.000000 -1646, 1.000000, 0.000000, 0.000000, 0.000000 -1647, 1.000000, 0.000000, 0.000000, 0.000000 -1648, 1.000000, 0.000000, 0.000000, 0.000000 -1649, 1.000000, 0.000000, 0.000000, 0.000000 -1650, 1.000000, 0.000000, 0.000000, 0.000000 -1651, 1.000000, 0.000000, 0.000000, 0.000000 -1652, 1.000000, 0.000000, 0.000000, 0.000000 -1653, 1.000000, 0.000000, 0.000000, 0.000000 -1654, 1.000000, 0.000000, 0.000000, 0.000000 -1655, 1.000000, 0.000000, 0.000000, 0.000000 -1656, 1.000000, 0.000000, 0.000000, 0.000000 -1657, 1.000000, 0.000000, 0.000000, 0.000000 -1658, 1.000000, 0.000000, 0.000000, 0.000000 -1659, 1.000000, 0.000000, 0.000000, 0.000000 -1660, 1.000000, 0.000000, 0.000000, 0.000000 -1661, 1.000000, 0.000000, 0.000000, 0.000000 -1662, 1.000000, 0.000000, 0.000000, 0.000000 -1663, 1.000000, 0.000000, 0.000000, 0.000000 -1664, 1.000000, 0.000000, 0.000000, 0.000000 -1665, 1.000000, 0.000000, 0.000000, 0.000000 -1666, 1.000000, 0.000000, 0.000000, 0.000000 -1667, 1.000000, 0.000000, 0.000000, 0.000000 -1668, 1.000000, 0.000000, 0.000000, 0.000000 -1669, 1.000000, 0.000000, 0.000000, 0.000000 -1670, 1.000000, 0.000000, 0.000000, 0.000000 -1671, 1.000000, 0.000000, 0.000000, 0.000000 -1672, 1.000000, 0.000000, 0.000000, 0.000000 -1673, 1.000000, 0.000000, 0.000000, 0.000000 -1674, 1.000000, 0.000000, 0.000000, 0.000000 -1675, 1.000000, 0.000000, 0.000000, 0.000000 -1676, 1.000000, 0.000000, 0.000000, 0.000000 -1677, 1.000000, 0.000000, 0.000000, 0.000000 -1678, 1.000000, 0.000000, 0.000000, 0.000000 -1679, 1.000000, 0.000000, 0.000000, 0.000000 -1680, 1.000000, 0.000000, 0.000000, 0.000000 -1681, 1.000000, 0.000000, 0.000000, 0.000000 -1682, 1.000000, 0.000000, 0.000000, 0.000000 -1683, 1.000000, 0.000000, 0.000000, 0.000000 -1684, 1.000000, 0.000000, 0.000000, 0.000000 -1685, 1.000000, 0.000000, 0.000000, 0.000000 -1686, 1.000000, 0.000000, 0.000000, 0.000000 -1687, 1.000000, 0.000000, 0.000000, 0.000000 -1688, 1.000000, 0.000000, 0.000000, 0.000000 -1689, 1.000000, 0.000000, 0.000000, 0.000000 -1690, 1.000000, 0.000000, 0.000000, 0.000000 -1691, 1.000000, 0.000000, 0.000000, 0.000000 -1692, 1.000000, 0.000000, 0.000000, 0.000000 -1693, 1.000000, 0.000000, 0.000000, 0.000000 -1694, 1.000000, 0.000000, 0.000000, 0.000000 -1695, 1.000000, 0.000000, 0.000000, 0.000000 -1696, 1.000000, 0.000000, 0.000000, 0.000000 -1697, 1.000000, 0.000000, 0.000000, 0.000000 -1698, 1.000000, 0.000000, 0.000000, 0.000000 -1699, 1.000000, 0.000000, 0.000000, 0.000000 -1700, 1.000000, 0.000000, 0.000000, 0.000000 -1701, 1.000000, 0.000000, 0.000000, 0.000000 -1702, 1.000000, 0.000000, 0.000000, 0.000000 -1703, 1.000000, 0.000000, 0.000000, 0.000000 -1704, 1.000000, 0.000000, 0.000000, 0.000000 -1705, 1.000000, 0.000000, 0.000000, 0.000000 -1706, 1.000000, 0.000000, 0.000000, 0.000000 -1707, 1.000000, 0.000000, 0.000000, 0.000000 -1708, 1.000000, 0.000000, 0.000000, 0.000000 -1709, 1.000000, 0.000000, 0.000000, 0.000000 -1710, 1.000000, 0.000000, 0.000000, 0.000000 -1711, 1.000000, 0.000000, 0.000000, 0.000000 -1712, 1.000000, 0.000000, 0.000000, 0.000000 -1713, 1.000000, 0.000000, 0.000000, 0.000000 -1714, 1.000000, 0.000000, 0.000000, 0.000000 -1715, 1.000000, 0.000000, 0.000000, 0.000000 -1716, 1.000000, 0.000000, 0.000000, 0.000000 -1717, 1.000000, 0.000000, 0.000000, 0.000000 -1718, 1.000000, 0.000000, 0.000000, 0.000000 -1719, 1.000000, 0.000000, 0.000000, 0.000000 -1720, 1.000000, 0.000000, 0.000000, 0.000000 -1721, 1.000000, 0.000000, 0.000000, 0.000000 -1722, 1.000000, 0.000000, 0.000000, 0.000000 -1723, 1.000000, 0.000000, 0.000000, 0.000000 -1724, 1.000000, 0.000000, 0.000000, 0.000000 -1725, 1.000000, 0.000000, 0.000000, 0.000000 -1726, 1.000000, 0.000000, 0.000000, 0.000000 -1727, 1.000000, 0.000000, 0.000000, 0.000000 -1728, 1.000000, 0.000000, 0.000000, 0.000000 -1729, 1.000000, 0.000000, 0.000000, 0.000000 -1730, 1.000000, 0.000000, 0.000000, 0.000000 -1731, 1.000000, 0.000000, 0.000000, 0.000000 -1732, 1.000000, 0.000000, 0.000000, 0.000000 -1733, 1.000000, 0.000000, 0.000000, 0.000000 -1734, 1.000000, 0.000000, 0.000000, 0.000000 -1735, 1.000000, 0.000000, 0.000000, 0.000000 -1736, 1.000000, 0.000000, 0.000000, 0.000000 -1737, 1.000000, 0.000000, 0.000000, 0.000000 -1738, 1.000000, 0.000000, 0.000000, 0.000000 -1739, 1.000000, 0.000000, 0.000000, 0.000000 -1740, 1.000000, 0.000000, 0.000000, 0.000000 -1741, 1.000000, 0.000000, 0.000000, 0.000000 -1742, 1.000000, 0.000000, 0.000000, 0.000000 -1743, 1.000000, 0.000000, 0.000000, 0.000000 -1744, 1.000000, 0.000000, 0.000000, 0.000000 -1745, 1.000000, 0.000000, 0.000000, 0.000000 -1746, 1.000000, 0.000000, 0.000000, 0.000000 -1747, 1.000000, 0.000000, 0.000000, 0.000000 -1748, 1.000000, 0.000000, 0.000000, 0.000000 -1749, 1.000000, 0.000000, 0.000000, 0.000000 -1750, 1.000000, 0.000000, 0.000000, 0.000000 -1751, 1.000000, 0.000000, 0.000000, 0.000000 -1752, 1.000000, 0.000000, 0.000000, 0.000000 -1753, 1.000000, 0.000000, 0.000000, 0.000000 -1754, 1.000000, 0.000000, 0.000000, 0.000000 -1755, 1.000000, 0.000000, 0.000000, 0.000000 -1756, 1.000000, 0.000000, 0.000000, 0.000000 -1757, 1.000000, 0.000000, 0.000000, 0.000000 -1758, 1.000000, 0.000000, 0.000000, 0.000000 -1759, 1.000000, 0.000000, 0.000000, 0.000000 -1760, 1.000000, 0.000000, 0.000000, 0.000000 -1761, 1.000000, 0.000000, 0.000000, 0.000000 -1762, 1.000000, 0.000000, 0.000000, 0.000000 -1763, 1.000000, 0.000000, 0.000000, 0.000000 -1764, 1.000000, 0.000000, 0.000000, 0.000000 -1765, 1.000000, 0.000000, 0.000000, 0.000000 -1766, 1.000000, 0.000000, 0.000000, 0.000000 -1767, 1.000000, 0.000000, 0.000000, 0.000000 -1768, 1.000000, 0.000000, 0.000000, 0.000000 -1769, 1.000000, 0.000000, 0.000000, 0.000000 -1770, 1.000000, 0.000000, 0.000000, 0.000000 -1771, 1.000000, 0.000000, 0.000000, 0.000000 -1772, 1.000000, 0.000000, 0.000000, 0.000000 -1773, 1.000000, 0.000000, 0.000000, 0.000000 -1774, 1.000000, 0.000000, 0.000000, 0.000000 -1775, 1.000000, 0.000000, 0.000000, 0.000000 -1776, 1.000000, 0.000000, 0.000000, 0.000000 -1777, 1.000000, 0.000000, 0.000000, 0.000000 -1778, 1.000000, 0.000000, 0.000000, 0.000000 -1779, 1.000000, 0.000000, 0.000000, 0.000000 -1780, 1.000000, 0.000000, 0.000000, 0.000000 -1781, 1.000000, 0.000000, 0.000000, 0.000000 -1782, 1.000000, 0.000000, 0.000000, 0.000000 -1783, 1.000000, 0.000000, 0.000000, 0.000000 -1784, 1.000000, 0.000000, 0.000000, 0.000000 -1785, 1.000000, 0.000000, 0.000000, 0.000000 -1786, 1.000000, 0.000000, 0.000000, 0.000000 -1787, 1.000000, 0.000000, 0.000000, 0.000000 -1788, 1.000000, 0.000000, 0.000000, 0.000000 -1789, 1.000000, 0.000000, 0.000000, 0.000000 -1790, 1.000000, 0.000000, 0.000000, 0.000000 -1791, 1.000000, 0.000000, 0.000000, 0.000000 -1792, 1.000000, 0.000000, 0.000000, 0.000000 -1793, 1.000000, 0.000000, 0.000000, 0.000000 -1794, 1.000000, 0.000000, 0.000000, 0.000000 -1795, 1.000000, 0.000000, 0.000000, 0.000000 -1796, 1.000000, 0.000000, 0.000000, 0.000000 -1797, 1.000000, 0.000000, 0.000000, 0.000000 -1798, 1.000000, 0.000000, 0.000000, 0.000000 -1799, 1.000000, 0.000000, 0.000000, 0.000000 -1800, 1.000000, 0.000000, 0.000000, 0.000000 -1801, 1.000000, 0.000000, 0.000000, 0.000000 -1802, 1.000000, 0.000000, 0.000000, 0.000000 -1803, 1.000000, 0.000000, 0.000000, 0.000000 -1804, 1.000000, 0.000000, 0.000000, 0.000000 -1805, 1.000000, 0.000000, 0.000000, 0.000000 -1806, 1.000000, 0.000000, 0.000000, 0.000000 -1807, 1.000000, 0.000000, 0.000000, 0.000000 -1808, 1.000000, 0.000000, 0.000000, 0.000000 -1809, 1.000000, 0.000000, 0.000000, 0.000000 -1810, 1.000000, 0.000000, 0.000000, 0.000000 -1811, 1.000000, 0.000000, 0.000000, 0.000000 -1812, 1.000000, 0.000000, 0.000000, 0.000000 -1813, 1.000000, 0.000000, 0.000000, 0.000000 -1814, 1.000000, 0.000000, 0.000000, 0.000000 -1815, 1.000000, 0.000000, 0.000000, 0.000000 -1816, 1.000000, 0.000000, 0.000000, 0.000000 -1817, 1.000000, 0.000000, 0.000000, 0.000000 -1818, 1.000000, 0.000000, 0.000000, 0.000000 -1819, 1.000000, 0.000000, 0.000000, 0.000000 -1820, 1.000000, 0.000000, 0.000000, 0.000000 -1821, 1.000000, 0.000000, 0.000000, 0.000000 -1822, 1.000000, 0.000000, 0.000000, 0.000000 -1823, 1.000000, 0.000000, 0.000000, 0.000000 -1824, 1.000000, 0.000000, 0.000000, 0.000000 -1825, 1.000000, 0.000000, 0.000000, 0.000000 -1826, 1.000000, 0.000000, 0.000000, 0.000000 -1827, 1.000000, 0.000000, 0.000000, 0.000000 -1828, 1.000000, 0.000000, 0.000000, 0.000000 -1829, 1.000000, 0.000000, 0.000000, 0.000000 -1830, 1.000000, 0.000000, 0.000000, 0.000000 -1831, 1.000000, 0.000000, 0.000000, 0.000000 -1832, 1.000000, 0.000000, 0.000000, 0.000000 -1833, 1.000000, 0.000000, 0.000000, 0.000000 -1834, 1.000000, 0.000000, 0.000000, 0.000000 -1835, 1.000000, 0.000000, 0.000000, 0.000000 -1836, 1.000000, 0.000000, 0.000000, 0.000000 -1837, 1.000000, 0.000000, 0.000000, 0.000000 -1838, 1.000000, 0.000000, 0.000000, 0.000000 -1839, 1.000000, 0.000000, 0.000000, 0.000000 -1840, 1.000000, 0.000000, 0.000000, 0.000000 -1841, 1.000000, 0.000000, 0.000000, 0.000000 -1842, 1.000000, 0.000000, 0.000000, 0.000000 -1843, 1.000000, 0.000000, 0.000000, 0.000000 -1844, 1.000000, 0.000000, 0.000000, 0.000000 -1845, 1.000000, 0.000000, 0.000000, 0.000000 -1846, 1.000000, 0.000000, 0.000000, 0.000000 -1847, 1.000000, 0.000000, 0.000000, 0.000000 -1848, 1.000000, 0.000000, 0.000000, 0.000000 -1849, 1.000000, 0.000000, 0.000000, 0.000000 -1850, 1.000000, 0.000000, 0.000000, 0.000000 -1851, 1.000000, 0.000000, 0.000000, 0.000000 -1852, 1.000000, 0.000000, 0.000000, 0.000000 -1853, 1.000000, 0.000000, 0.000000, 0.000000 -1854, 1.000000, 0.000000, 0.000000, 0.000000 -1855, 1.000000, 0.000000, 0.000000, 0.000000 -1856, 1.000000, 0.000000, 0.000000, 0.000000 -1857, 1.000000, 0.000000, 0.000000, 0.000000 -1858, 1.000000, 0.000000, 0.000000, 0.000000 -1859, 1.000000, 0.000000, 0.000000, 0.000000 -1860, 1.000000, 0.000000, 0.000000, 0.000000 -1861, 1.000000, 0.000000, 0.000000, 0.000000 -1862, 1.000000, 0.000000, 0.000000, 0.000000 -1863, 1.000000, 0.000000, 0.000000, 0.000000 -1864, 1.000000, 0.000000, 0.000000, 0.000000 -1865, 1.000000, 0.000000, 0.000000, 0.000000 -1866, 1.000000, 0.000000, 0.000000, 0.000000 -1867, 1.000000, 0.000000, 0.000000, 0.000000 -1868, 1.000000, 0.000000, 0.000000, 0.000000 -1869, 1.000000, 0.000000, 0.000000, 0.000000 -1870, 1.000000, 0.000000, 0.000000, 0.000000 -1871, 1.000000, 0.000000, 0.000000, 0.000000 -1872, 1.000000, 0.000000, 0.000000, 0.000000 -1873, 1.000000, 0.000000, 0.000000, 0.000000 -1874, 1.000000, 0.000000, 0.000000, 0.000000 -1875, 1.000000, 0.000000, 0.000000, 0.000000 -1876, 1.000000, 0.000000, 0.000000, 0.000000 -1877, 1.000000, 0.000000, 0.000000, 0.000000 -1878, 1.000000, 0.000000, 0.000000, 0.000000 -1879, 1.000000, 0.000000, 0.000000, 0.000000 -1880, 1.000000, 0.000000, 0.000000, 0.000000 -1881, 1.000000, 0.000000, 0.000000, 0.000000 -1882, 1.000000, 0.000000, 0.000000, 0.000000 -1883, 1.000000, 0.000000, 0.000000, 0.000000 -1884, 1.000000, 0.000000, 0.000000, 0.000000 -1885, 1.000000, 0.000000, 0.000000, 0.000000 -1886, 1.000000, 0.000000, 0.000000, 0.000000 -1887, 1.000000, 0.000000, 0.000000, 0.000000 -1888, 1.000000, 0.000000, 0.000000, 0.000000 -1889, 1.000000, 0.000000, 0.000000, 0.000000 -1890, 1.000000, 0.000000, 0.000000, 0.000000 -1891, 1.000000, 0.000000, 0.000000, 0.000000 -1892, 1.000000, 0.000000, 0.000000, 0.000000 -1893, 1.000000, 0.000000, 0.000000, 0.000000 -1894, 1.000000, 0.000000, 0.000000, 0.000000 -1895, 1.000000, 0.000000, 0.000000, 0.000000 -1896, 1.000000, 0.000000, 0.000000, 0.000000 -1897, 1.000000, 0.000000, 0.000000, 0.000000 -1898, 1.000000, 0.000000, 0.000000, 0.000000 -1899, 1.000000, 0.000000, 0.000000, 0.000000 -1900, 1.000000, 0.000000, 0.000000, 0.000000 -1901, 1.000000, 0.000000, 0.000000, 0.000000 -1902, 1.000000, 0.000000, 0.000000, 0.000000 -1903, 1.000000, 0.000000, 0.000000, 0.000000 -1904, 1.000000, 0.000000, 0.000000, 0.000000 -1905, 1.000000, 0.000000, 0.000000, 0.000000 -1906, 1.000000, 0.000000, 0.000000, 0.000000 -1907, 1.000000, 0.000000, 0.000000, 0.000000 -1908, 1.000000, 0.000000, 0.000000, 0.000000 -1909, 1.000000, 0.000000, 0.000000, 0.000000 -1910, 1.000000, 0.000000, 0.000000, 0.000000 -1911, 1.000000, 0.000000, 0.000000, 0.000000 -1912, 1.000000, 0.000000, 0.000000, 0.000000 -1913, 1.000000, 0.000000, 0.000000, 0.000000 -1914, 1.000000, 0.000000, 0.000000, 0.000000 -1915, 1.000000, 0.000000, 0.000000, 0.000000 -1916, 1.000000, 0.000000, 0.000000, 0.000000 -1917, 1.000000, 0.000000, 0.000000, 0.000000 -1918, 1.000000, 0.000000, 0.000000, 0.000000 -1919, 1.000000, 0.000000, 0.000000, 0.000000 -1920, 1.000000, 0.000000, 0.000000, 0.000000 -1921, 1.000000, 0.000000, 0.000000, 0.000000 -1922, 1.000000, 0.000000, 0.000000, 0.000000 -1923, 1.000000, 0.000000, 0.000000, 0.000000 -1924, 1.000000, 0.000000, 0.000000, 0.000000 -1925, 1.000000, 0.000000, 0.000000, 0.000000 -1926, 1.000000, 0.000000, 0.000000, 0.000000 -1927, 1.000000, 0.000000, 0.000000, 0.000000 -1928, 1.000000, 0.000000, 0.000000, 0.000000 -1929, 1.000000, 0.000000, 0.000000, 0.000000 -1930, 1.000000, 0.000000, 0.000000, 0.000000 -1931, 1.000000, 0.000000, 0.000000, 0.000000 -1932, 1.000000, 0.000000, 0.000000, 0.000000 -1933, 1.000000, 0.000000, 0.000000, 0.000000 -1934, 1.000000, 0.000000, 0.000000, 0.000000 -1935, 1.000000, 0.000000, 0.000000, 0.000000 -1936, 1.000000, 0.000000, 0.000000, 0.000000 -1937, 1.000000, 0.000000, 0.000000, 0.000000 -1938, 1.000000, 0.000000, 0.000000, 0.000000 -1939, 1.000000, 0.000000, 0.000000, 0.000000 -1940, 1.000000, 0.000000, 0.000000, 0.000000 -1941, 1.000000, 0.000000, 0.000000, 0.000000 -1942, 1.000000, 0.000000, 0.000000, 0.000000 -1943, 1.000000, 0.000000, 0.000000, 0.000000 -1944, 1.000000, 0.000000, 0.000000, 0.000000 -1945, 1.000000, 0.000000, 0.000000, 0.000000 -1946, 1.000000, 0.000000, 0.000000, 0.000000 -1947, 1.000000, 0.000000, 0.000000, 0.000000 -1948, 1.000000, 0.000000, 0.000000, 0.000000 -1949, 1.000000, 0.000000, 0.000000, 0.000000 -1950, 1.000000, 0.000000, 0.000000, 0.000000 -1951, 1.000000, 0.000000, 0.000000, 0.000000 -1952, 1.000000, 0.000000, 0.000000, 0.000000 -1953, 1.000000, 0.000000, 0.000000, 0.000000 -1954, 1.000000, 0.000000, 0.000000, 0.000000 -1955, 1.000000, 0.000000, 0.000000, 0.000000 -1956, 1.000000, 0.000000, 0.000000, 0.000000 -1957, 1.000000, 0.000000, 0.000000, 0.000000 -1958, 1.000000, 0.000000, 0.000000, 0.000000 -1959, 1.000000, 0.000000, 0.000000, 0.000000 -1960, 1.000000, 0.000000, 0.000000, 0.000000 -1961, 1.000000, 0.000000, 0.000000, 0.000000 -1962, 1.000000, 0.000000, 0.000000, 0.000000 -1963, 1.000000, 0.000000, 0.000000, 0.000000 -1964, 1.000000, 0.000000, 0.000000, 0.000000 -1965, 1.000000, 0.000000, 0.000000, 0.000000 -1966, 1.000000, 0.000000, 0.000000, 0.000000 -1967, 1.000000, 0.000000, 0.000000, 0.000000 -1968, 1.000000, 0.000000, 0.000000, 0.000000 -1969, 1.000000, 0.000000, 0.000000, 0.000000 -1970, 1.000000, 0.000000, 0.000000, 0.000000 -1971, 1.000000, 0.000000, 0.000000, 0.000000 -1972, 1.000000, 0.000000, 0.000000, 0.000000 -1973, 1.000000, 0.000000, 0.000000, 0.000000 -1974, 1.000000, 0.000000, 0.000000, 0.000000 -1975, 1.000000, 0.000000, 0.000000, 0.000000 -1976, 1.000000, 0.000000, 0.000000, 0.000000 -1977, 1.000000, 0.000000, 0.000000, 0.000000 -1978, 1.000000, 0.000000, 0.000000, 0.000000 -1979, 1.000000, 0.000000, 0.000000, 0.000000 -1980, 1.000000, 0.000000, 0.000000, 0.000000 -1981, 1.000000, 0.000000, 0.000000, 0.000000 -1982, 1.000000, 0.000000, 0.000000, 0.000000 -1983, 1.000000, 0.000000, 0.000000, 0.000000 -1984, 1.000000, 0.000000, 0.000000, 0.000000 -1985, 1.000000, 0.000000, 0.000000, 0.000000 -1986, 1.000000, 0.000000, 0.000000, 0.000000 -1987, 1.000000, 0.000000, 0.000000, 0.000000 -1988, 1.000000, 0.000000, 0.000000, 0.000000 -1989, 1.000000, 0.000000, 0.000000, 0.000000 -1990, 1.000000, 0.000000, 0.000000, 0.000000 -1991, 1.000000, 0.000000, 0.000000, 0.000000 -1992, 1.000000, 0.000000, 0.000000, 0.000000 -1993, 1.000000, 0.000000, 0.000000, 0.000000 -1994, 1.000000, 0.000000, 0.000000, 0.000000 -1995, 1.000000, 0.000000, 0.000000, 0.000000 -1996, 1.000000, 0.000000, 0.000000, 0.000000 -1997, 1.000000, 0.000000, 0.000000, 0.000000 -1998, 1.000000, 0.000000, 0.000000, 0.000000 -1999, 1.000000, 0.000000, 0.000000, 0.000000 -2000, 1.000000, 0.000000, 0.000000, 0.000000 -2001, 1.000000, 0.000000, 0.000000, 0.000000 -2002, 1.000000, 0.000000, 0.000000, 0.000000 -2003, 1.000000, 0.000000, 0.000000, 0.000000 -2004, 1.000000, 0.000000, 0.000000, 0.000000 -2005, 1.000000, 0.000000, 0.000000, 0.000000 -2006, 1.000000, 0.000000, 0.000000, 0.000000 -2007, 1.000000, 0.000000, 0.000000, 0.000000 -2008, 1.000000, 0.000000, 0.000000, 0.000000 -2009, 1.000000, 0.000000, 0.000000, 0.000000 -2010, 1.000000, 0.000000, 0.000000, 0.000000 -2011, 1.000000, 0.000000, 0.000000, 0.000000 -2012, 1.000000, 0.000000, 0.000000, 0.000000 -2013, 1.000000, 0.000000, 0.000000, 0.000000 -2014, 1.000000, 0.000000, 0.000000, 0.000000 -2015, 1.000000, 0.000000, 0.000000, 0.000000 -2016, 1.000000, 0.000000, 0.000000, 0.000000 -2017, 1.000000, 0.000000, 0.000000, 0.000000 -2018, 1.000000, 0.000000, 0.000000, 0.000000 -2019, 1.000000, 0.000000, 0.000000, 0.000000 -2020, 1.000000, 0.000000, 0.000000, 0.000000 -2021, 1.000000, 0.000000, 0.000000, 0.000000 -2022, 1.000000, 0.000000, 0.000000, 0.000000 -2023, 1.000000, 0.000000, 0.000000, 0.000000 -2024, 1.000000, 0.000000, 0.000000, 0.000000 -2025, 1.000000, 0.000000, 0.000000, 0.000000 -2026, 1.000000, 0.000000, 0.000000, 0.000000 -2027, 1.000000, 0.000000, 0.000000, 0.000000 -2028, 1.000000, 0.000000, 0.000000, 0.000000 -2029, 1.000000, 0.000000, 0.000000, 0.000000 -2030, 1.000000, 0.000000, 0.000000, 0.000000 -2031, 1.000000, 0.000000, 0.000000, 0.000000 -2032, 1.000000, 0.000000, 0.000000, 0.000000 -2033, 1.000000, 0.000000, 0.000000, 0.000000 -2034, 1.000000, 0.000000, 0.000000, 0.000000 -2035, 1.000000, 0.000000, 0.000000, 0.000000 -2036, 1.000000, 0.000000, 0.000000, 0.000000 -2037, 1.000000, 0.000000, 0.000000, 0.000000 -2038, 1.000000, 0.000000, 0.000000, 0.000000 -2039, 1.000000, 0.000000, 0.000000, 0.000000 -2040, 1.000000, 0.000000, 0.000000, 0.000000 -2041, 1.000000, 0.000000, 0.000000, 0.000000 -2042, 1.000000, 0.000000, 0.000000, 0.000000 -2043, 1.000000, 0.000000, 0.000000, 0.000000 -2044, 1.000000, 0.000000, 0.000000, 0.000000 -2045, 1.000000, 0.000000, 0.000000, 0.000000 -2046, 1.000000, 0.000000, 0.000000, 0.000000 -2047, 1.000000, 0.000000, 0.000000, 0.000000 -2048, 1.000000, 0.000000, 0.000000, 0.000000 -2049, 1.000000, 0.000000, 0.000000, 0.000000 -2050, 1.000000, 0.000000, 0.000000, 0.000000 -2051, 1.000000, 0.000000, 0.000000, 0.000000 -2052, 1.000000, 0.000000, 0.000000, 0.000000 -2053, 1.000000, 0.000000, 0.000000, 0.000000 -2054, 1.000000, 0.000000, 0.000000, 0.000000 -2055, 1.000000, 0.000000, 0.000000, 0.000000 -2056, 1.000000, 0.000000, 0.000000, 0.000000 -2057, 1.000000, 0.000000, 0.000000, 0.000000 -2058, 1.000000, 0.000000, 0.000000, 0.000000 -2059, 1.000000, 0.000000, 0.000000, 0.000000 -2060, 1.000000, 0.000000, 0.000000, 0.000000 -2061, 1.000000, 0.000000, 0.000000, 0.000000 -2062, 1.000000, 0.000000, 0.000000, 0.000000 -2063, 1.000000, 0.000000, 0.000000, 0.000000 -2064, 1.000000, 0.000000, 0.000000, 0.000000 -2065, 1.000000, 0.000000, 0.000000, 0.000000 -2066, 1.000000, 0.000000, 0.000000, 0.000000 -2067, 1.000000, 0.000000, 0.000000, 0.000000 -2068, 1.000000, 0.000000, 0.000000, 0.000000 -2069, 1.000000, 0.000000, 0.000000, 0.000000 -2070, 1.000000, 0.000000, 0.000000, 0.000000 -2071, 1.000000, 0.000000, 0.000000, 0.000000 -2072, 1.000000, 0.000000, 0.000000, 0.000000 -2073, 1.000000, 0.000000, 0.000000, 0.000000 -2074, 1.000000, 0.000000, 0.000000, 0.000000 -2075, 1.000000, 0.000000, 0.000000, 0.000000 -2076, 1.000000, 0.000000, 0.000000, 0.000000 -2077, 1.000000, 0.000000, 0.000000, 0.000000 -2078, 1.000000, 0.000000, 0.000000, 0.000000 -2079, 1.000000, 0.000000, 0.000000, 0.000000 -2080, 1.000000, 0.000000, 0.000000, 0.000000 -2081, 1.000000, 0.000000, 0.000000, 0.000000 -2082, 1.000000, 0.000000, 0.000000, 0.000000 -2083, 1.000000, 0.000000, 0.000000, 0.000000 -2084, 1.000000, 0.000000, 0.000000, 0.000000 -2085, 1.000000, 0.000000, 0.000000, 0.000000 -2086, 1.000000, 0.000000, 0.000000, 0.000000 -2087, 1.000000, 0.000000, 0.000000, 0.000000 -2088, 1.000000, 0.000000, 0.000000, 0.000000 -2089, 1.000000, 0.000000, 0.000000, 0.000000 -2090, 1.000000, 0.000000, 0.000000, 0.000000 -2091, 1.000000, 0.000000, 0.000000, 0.000000 -2092, 1.000000, 0.000000, 0.000000, 0.000000 -2093, 1.000000, 0.000000, 0.000000, 0.000000 -2094, 1.000000, 0.000000, 0.000000, 0.000000 -2095, 1.000000, 0.000000, 0.000000, 0.000000 -2096, 1.000000, 0.000000, 0.000000, 0.000000 -2097, 1.000000, 0.000000, 0.000000, 0.000000 -2098, 1.000000, 0.000000, 0.000000, 0.000000 -2099, 1.000000, 0.000000, 0.000000, 0.000000 -2100, 1.000000, 0.000000, 0.000000, 0.000000 -2101, 1.000000, 0.000000, 0.000000, 0.000000 -2102, 1.000000, 0.000000, 0.000000, 0.000000 -2103, 1.000000, 0.000000, 0.000000, 0.000000 -2104, 1.000000, 0.000000, 0.000000, 0.000000 -2105, 1.000000, 0.000000, 0.000000, 0.000000 -2106, 1.000000, 0.000000, 0.000000, 0.000000 -2107, 1.000000, 0.000000, 0.000000, 0.000000 -2108, 1.000000, 0.000000, 0.000000, 0.000000 -2109, 1.000000, 0.000000, 0.000000, 0.000000 -2110, 1.000000, 0.000000, 0.000000, 0.000000 -2111, 1.000000, 0.000000, 0.000000, 0.000000 -2112, 1.000000, 0.000000, 0.000000, 0.000000 -2113, 1.000000, 0.000000, 0.000000, 0.000000 -2114, 1.000000, 0.000000, 0.000000, 0.000000 -2115, 1.000000, 0.000000, 0.000000, 0.000000 -2116, 1.000000, 0.000000, 0.000000, 0.000000 -2117, 1.000000, 0.000000, 0.000000, 0.000000 -2118, 1.000000, 0.000000, 0.000000, 0.000000 -2119, 1.000000, 0.000000, 0.000000, 0.000000 -2120, 1.000000, 0.000000, 0.000000, 0.000000 -2121, 1.000000, 0.000000, 0.000000, 0.000000 -2122, 1.000000, 0.000000, 0.000000, 0.000000 -2123, 1.000000, 0.000000, 0.000000, 0.000000 -2124, 1.000000, 0.000000, 0.000000, 0.000000 -2125, 1.000000, 0.000000, 0.000000, 0.000000 -2126, 1.000000, 0.000000, 0.000000, 0.000000 -2127, 1.000000, 0.000000, 0.000000, 0.000000 -2128, 1.000000, 0.000000, 0.000000, 0.000000 -2129, 1.000000, 0.000000, 0.000000, 0.000000 -2130, 1.000000, 0.000000, 0.000000, 0.000000 -2131, 1.000000, 0.000000, 0.000000, 0.000000 -2132, 1.000000, 0.000000, 0.000000, 0.000000 -2133, 1.000000, 0.000000, 0.000000, 0.000000 -2134, 1.000000, 0.000000, 0.000000, 0.000000 -2135, 1.000000, 0.000000, 0.000000, 0.000000 -2136, 1.000000, 0.000000, 0.000000, 0.000000 -2137, 1.000000, 0.000000, 0.000000, 0.000000 -2138, 1.000000, 0.000000, 0.000000, 0.000000 -2139, 1.000000, 0.000000, 0.000000, 0.000000 -2140, 1.000000, 0.000000, 0.000000, 0.000000 -2141, 1.000000, 0.000000, 0.000000, 0.000000 -2142, 1.000000, 0.000000, 0.000000, 0.000000 -2143, 1.000000, 0.000000, 0.000000, 0.000000 -2144, 1.000000, 0.000000, 0.000000, 0.000000 -2145, 1.000000, 0.000000, 0.000000, 0.000000 -2146, 1.000000, 0.000000, 0.000000, 0.000000 -2147, 1.000000, 0.000000, 0.000000, 0.000000 -2148, 1.000000, 0.000000, 0.000000, 0.000000 -2149, 1.000000, 0.000000, 0.000000, 0.000000 -2150, 1.000000, 0.000000, 0.000000, 0.000000 -2151, 1.000000, 0.000000, 0.000000, 0.000000 -2152, 1.000000, 0.000000, 0.000000, 0.000000 -2153, 1.000000, 0.000000, 0.000000, 0.000000 -2154, 1.000000, 0.000000, 0.000000, 0.000000 -2155, 1.000000, 0.000000, 0.000000, 0.000000 -2156, 1.000000, 0.000000, 0.000000, 0.000000 -2157, 1.000000, 0.000000, 0.000000, 0.000000 -2158, 1.000000, 0.000000, 0.000000, 0.000000 -2159, 1.000000, 0.000000, 0.000000, 0.000000 -2160, 1.000000, 0.000000, 0.000000, 0.000000 -2161, 1.000000, 0.000000, 0.000000, 0.000000 -2162, 1.000000, 0.000000, 0.000000, 0.000000 -2163, 1.000000, 0.000000, 0.000000, 0.000000 -2164, 1.000000, 0.000000, 0.000000, 0.000000 -2165, 1.000000, 0.000000, 0.000000, 0.000000 -2166, 1.000000, 0.000000, 0.000000, 0.000000 -2167, 1.000000, 0.000000, 0.000000, 0.000000 -2168, 1.000000, 0.000000, 0.000000, 0.000000 -2169, 1.000000, 0.000000, 0.000000, 0.000000 -2170, 1.000000, 0.000000, 0.000000, 0.000000 -2171, 1.000000, 0.000000, 0.000000, 0.000000 -2172, 1.000000, 0.000000, 0.000000, 0.000000 -2173, 1.000000, 0.000000, 0.000000, 0.000000 -2174, 1.000000, 0.000000, 0.000000, 0.000000 -2175, 1.000000, 0.000000, 0.000000, 0.000000 -2176, 1.000000, 0.000000, 0.000000, 0.000000 -2177, 1.000000, 0.000000, 0.000000, 0.000000 -2178, 1.000000, 0.000000, 0.000000, 0.000000 -2179, 1.000000, 0.000000, 0.000000, 0.000000 -2180, 1.000000, 0.000000, 0.000000, 0.000000 -2181, 1.000000, 0.000000, 0.000000, 0.000000 -2182, 1.000000, 0.000000, 0.000000, 0.000000 -2183, 1.000000, 0.000000, 0.000000, 0.000000 -2184, 1.000000, 0.000000, 0.000000, 0.000000 -2185, 1.000000, 0.000000, 0.000000, 0.000000 -2186, 1.000000, 0.000000, 0.000000, 0.000000 -2187, 1.000000, 0.000000, 0.000000, 0.000000 -2188, 1.000000, 0.000000, 0.000000, 0.000000 -2189, 1.000000, 0.000000, 0.000000, 0.000000 -2190, 1.000000, 0.000000, 0.000000, 0.000000 -2191, 1.000000, 0.000000, 0.000000, 0.000000 -2192, 1.000000, 0.000000, 0.000000, 0.000000 -2193, 1.000000, 0.000000, 0.000000, 0.000000 -2194, 1.000000, 0.000000, 0.000000, 0.000000 -2195, 1.000000, 0.000000, 0.000000, 0.000000 -2196, 1.000000, 0.000000, 0.000000, 0.000000 -2197, 1.000000, 0.000000, 0.000000, 0.000000 -2198, 1.000000, 0.000000, 0.000000, 0.000000 -2199, 1.000000, 0.000000, 0.000000, 0.000000 -2200, 1.000000, 0.000000, 0.000000, 0.000000 -2201, 1.000000, 0.000000, 0.000000, 0.000000 -2202, 1.000000, 0.000000, 0.000000, 0.000000 -2203, 1.000000, 0.000000, 0.000000, 0.000000 -2204, 1.000000, 0.000000, 0.000000, 0.000000 -2205, 1.000000, 0.000000, 0.000000, 0.000000 -2206, 1.000000, 0.000000, 0.000000, 0.000000 -2207, 1.000000, 0.000000, 0.000000, 0.000000 -2208, 1.000000, 0.000000, 0.000000, 0.000000 -2209, 1.000000, 0.000000, 0.000000, 0.000000 -2210, 1.000000, 0.000000, 0.000000, 0.000000 -2211, 1.000000, 0.000000, 0.000000, 0.000000 -2212, 1.000000, 0.000000, 0.000000, 0.000000 -2213, 1.000000, 0.000000, 0.000000, 0.000000 -2214, 1.000000, 0.000000, 0.000000, 0.000000 -2215, 1.000000, 0.000000, 0.000000, 0.000000 -2216, 1.000000, 0.000000, 0.000000, 0.000000 -2217, 1.000000, 0.000000, 0.000000, 0.000000 -2218, 1.000000, 0.000000, 0.000000, 0.000000 -2219, 1.000000, 0.000000, 0.000000, 0.000000 -2220, 1.000000, 0.000000, 0.000000, 0.000000 -2221, 1.000000, 0.000000, 0.000000, 0.000000 -2222, 1.000000, 0.000000, 0.000000, 0.000000 -2223, 1.000000, 0.000000, 0.000000, 0.000000 -2224, 1.000000, 0.000000, 0.000000, 0.000000 -2225, 1.000000, 0.000000, 0.000000, 0.000000 -2226, 1.000000, 0.000000, 0.000000, 0.000000 -2227, 1.000000, 0.000000, 0.000000, 0.000000 -2228, 1.000000, 0.000000, 0.000000, 0.000000 -2229, 1.000000, 0.000000, 0.000000, 0.000000 -2230, 1.000000, 0.000000, 0.000000, 0.000000 -2231, 1.000000, 0.000000, 0.000000, 0.000000 -2232, 1.000000, 0.000000, 0.000000, 0.000000 -2233, 1.000000, 0.000000, 0.000000, 0.000000 -2234, 1.000000, 0.000000, 0.000000, 0.000000 -2235, 1.000000, 0.000000, 0.000000, 0.000000 -2236, 1.000000, 0.000000, 0.000000, 0.000000 -2237, 1.000000, 0.000000, 0.000000, 0.000000 -2238, 1.000000, 0.000000, 0.000000, 0.000000 -2239, 1.000000, 0.000000, 0.000000, 0.000000 -2240, 1.000000, 0.000000, 0.000000, 0.000000 -2241, 1.000000, 0.000000, 0.000000, 0.000000 -2242, 1.000000, 0.000000, 0.000000, 0.000000 -2243, 1.000000, 0.000000, 0.000000, 0.000000 -2244, 1.000000, 0.000000, 0.000000, 0.000000 -2245, 1.000000, 0.000000, 0.000000, 0.000000 -2246, 1.000000, 0.000000, 0.000000, 0.000000 -2247, 1.000000, 0.000000, 0.000000, 0.000000 -2248, 1.000000, 0.000000, 0.000000, 0.000000 -2249, 1.000000, 0.000000, 0.000000, 0.000000 -2250, 1.000000, 0.000000, 0.000000, 0.000000 -2251, 1.000000, 0.000000, 0.000000, 0.000000 -2252, 1.000000, 0.000000, 0.000000, 0.000000 -2253, 1.000000, 0.000000, 0.000000, 0.000000 -2254, 1.000000, 0.000000, 0.000000, 0.000000 -2255, 1.000000, 0.000000, 0.000000, 0.000000 -2256, 1.000000, 0.000000, 0.000000, 0.000000 -2257, 1.000000, 0.000000, 0.000000, 0.000000 -2258, 1.000000, 0.000000, 0.000000, 0.000000 -2259, 1.000000, 0.000000, 0.000000, 0.000000 -2260, 1.000000, 0.000000, 0.000000, 0.000000 -2261, 1.000000, 0.000000, 0.000000, 0.000000 -2262, 1.000000, 0.000000, 0.000000, 0.000000 -2263, 1.000000, 0.000000, 0.000000, 0.000000 -2264, 1.000000, 0.000000, 0.000000, 0.000000 -2265, 1.000000, 0.000000, 0.000000, 0.000000 -2266, 1.000000, 0.000000, 0.000000, 0.000000 -2267, 1.000000, 0.000000, 0.000000, 0.000000 -2268, 1.000000, 0.000000, 0.000000, 0.000000 -2269, 1.000000, 0.000000, 0.000000, 0.000000 -2270, 1.000000, 0.000000, 0.000000, 0.000000 -2271, 1.000000, 0.000000, 0.000000, 0.000000 -2272, 1.000000, 0.000000, 0.000000, 0.000000 -2273, 1.000000, 0.000000, 0.000000, 0.000000 -2274, 1.000000, 0.000000, 0.000000, 0.000000 -2275, 1.000000, 0.000000, 0.000000, 0.000000 -2276, 1.000000, 0.000000, 0.000000, 0.000000 -2277, 1.000000, 0.000000, 0.000000, 0.000000 -2278, 1.000000, 0.000000, 0.000000, 0.000000 -2279, 1.000000, 0.000000, 0.000000, 0.000000 -2280, 1.000000, 0.000000, 0.000000, 0.000000 -2281, 1.000000, 0.000000, 0.000000, 0.000000 -2282, 1.000000, 0.000000, 0.000000, 0.000000 -2283, 1.000000, 0.000000, 0.000000, 0.000000 -2284, 1.000000, 0.000000, 0.000000, 0.000000 -2285, 1.000000, 0.000000, 0.000000, 0.000000 -2286, 1.000000, 0.000000, 0.000000, 0.000000 -2287, 1.000000, 0.000000, 0.000000, 0.000000 -2288, 1.000000, 0.000000, 0.000000, 0.000000 -2289, 1.000000, 0.000000, 0.000000, 0.000000 -2290, 1.000000, 0.000000, 0.000000, 0.000000 -2291, 1.000000, 0.000000, 0.000000, 0.000000 -2292, 1.000000, 0.000000, 0.000000, 0.000000 -2293, 1.000000, 0.000000, 0.000000, 0.000000 -2294, 1.000000, 0.000000, 0.000000, 0.000000 -2295, 1.000000, 0.000000, 0.000000, 0.000000 -2296, 1.000000, 0.000000, 0.000000, 0.000000 -2297, 1.000000, 0.000000, 0.000000, 0.000000 -2298, 1.000000, 0.000000, 0.000000, 0.000000 -2299, 1.000000, 0.000000, 0.000000, 0.000000 -2300, 1.000000, 0.000000, 0.000000, 0.000000 -2301, 1.000000, 0.000000, 0.000000, 0.000000 -2302, 1.000000, 0.000000, 0.000000, 0.000000 -2303, 1.000000, 0.000000, 0.000000, 0.000000 -2304, 1.000000, 0.000000, 0.000000, 0.000000 -2305, 1.000000, 0.000000, 0.000000, 0.000000 -2306, 1.000000, 0.000000, 0.000000, 0.000000 -2307, 1.000000, 0.000000, 0.000000, 0.000000 -2308, 1.000000, 0.000000, 0.000000, 0.000000 -2309, 1.000000, 0.000000, 0.000000, 0.000000 -2310, 1.000000, 0.000000, 0.000000, 0.000000 -2311, 1.000000, 0.000000, 0.000000, 0.000000 -2312, 1.000000, 0.000000, 0.000000, 0.000000 -2313, 1.000000, 0.000000, 0.000000, 0.000000 -2314, 1.000000, 0.000000, 0.000000, 0.000000 -2315, 1.000000, 0.000000, 0.000000, 0.000000 -2316, 1.000000, 0.000000, 0.000000, 0.000000 -2317, 1.000000, 0.000000, 0.000000, 0.000000 -2318, 1.000000, 0.000000, 0.000000, 0.000000 -2319, 1.000000, 0.000000, 0.000000, 0.000000 -2320, 1.000000, 0.000000, 0.000000, 0.000000 -2321, 1.000000, 0.000000, 0.000000, 0.000000 -2322, 1.000000, 0.000000, 0.000000, 0.000000 -2323, 1.000000, 0.000000, 0.000000, 0.000000 -2324, 1.000000, 0.000000, 0.000000, 0.000000 -2325, 1.000000, 0.000000, 0.000000, 0.000000 -2326, 1.000000, 0.000000, 0.000000, 0.000000 -2327, 1.000000, 0.000000, 0.000000, 0.000000 -2328, 1.000000, 0.000000, 0.000000, 0.000000 -2329, 1.000000, 0.000000, 0.000000, 0.000000 -2330, 1.000000, 0.000000, 0.000000, 0.000000 -2331, 1.000000, 0.000000, 0.000000, 0.000000 -2332, 1.000000, 0.000000, 0.000000, 0.000000 -2333, 1.000000, 0.000000, 0.000000, 0.000000 -2334, 1.000000, 0.000000, 0.000000, 0.000000 -2335, 1.000000, 0.000000, 0.000000, 0.000000 -2336, 1.000000, 0.000000, 0.000000, 0.000000 -2337, 1.000000, 0.000000, 0.000000, 0.000000 -2338, 1.000000, 0.000000, 0.000000, 0.000000 -2339, 1.000000, 0.000000, 0.000000, 0.000000 -2340, 1.000000, 0.000000, 0.000000, 0.000000 -2341, 1.000000, 0.000000, 0.000000, 0.000000 -2342, 1.000000, 0.000000, 0.000000, 0.000000 -2343, 1.000000, 0.000000, 0.000000, 0.000000 -2344, 1.000000, 0.000000, 0.000000, 0.000000 -2345, 1.000000, 0.000000, 0.000000, 0.000000 -2346, 1.000000, 0.000000, 0.000000, 0.000000 -2347, 1.000000, 0.000000, 0.000000, 0.000000 -2348, 1.000000, 0.000000, 0.000000, 0.000000 -2349, 1.000000, 0.000000, 0.000000, 0.000000 -2350, 1.000000, 0.000000, 0.000000, 0.000000 -2351, 1.000000, 0.000000, 0.000000, 0.000000 -2352, 1.000000, 0.000000, 0.000000, 0.000000 -2353, 1.000000, 0.000000, 0.000000, 0.000000 -2354, 1.000000, 0.000000, 0.000000, 0.000000 -2355, 1.000000, 0.000000, 0.000000, 0.000000 -2356, 1.000000, 0.000000, 0.000000, 0.000000 -2357, 1.000000, 0.000000, 0.000000, 0.000000 -2358, 1.000000, 0.000000, 0.000000, 0.000000 -2359, 1.000000, 0.000000, 0.000000, 0.000000 -2360, 1.000000, 0.000000, 0.000000, 0.000000 -2361, 1.000000, 0.000000, 0.000000, 0.000000 -2362, 1.000000, 0.000000, 0.000000, 0.000000 -2363, 1.000000, 0.000000, 0.000000, 0.000000 -2364, 1.000000, 0.000000, 0.000000, 0.000000 -2365, 1.000000, 0.000000, 0.000000, 0.000000 -2366, 1.000000, 0.000000, 0.000000, 0.000000 -2367, 1.000000, 0.000000, 0.000000, 0.000000 -2368, 1.000000, 0.000000, 0.000000, 0.000000 -2369, 1.000000, 0.000000, 0.000000, 0.000000 -2370, 1.000000, 0.000000, 0.000000, 0.000000 -2371, 1.000000, 0.000000, 0.000000, 0.000000 -2372, 1.000000, 0.000000, 0.000000, 0.000000 -2373, 1.000000, 0.000000, 0.000000, 0.000000 -2374, 1.000000, 0.000000, 0.000000, 0.000000 -2375, 1.000000, 0.000000, 0.000000, 0.000000 -2376, 1.000000, 0.000000, 0.000000, 0.000000 -2377, 1.000000, 0.000000, 0.000000, 0.000000 -2378, 1.000000, 0.000000, 0.000000, 0.000000 -2379, 1.000000, 0.000000, 0.000000, 0.000000 -2380, 1.000000, 0.000000, 0.000000, 0.000000 -2381, 1.000000, 0.000000, 0.000000, 0.000000 -2382, 1.000000, 0.000000, 0.000000, 0.000000 -2383, 1.000000, 0.000000, 0.000000, 0.000000 -2384, 1.000000, 0.000000, 0.000000, 0.000000 -2385, 1.000000, 0.000000, 0.000000, 0.000000 -2386, 1.000000, 0.000000, 0.000000, 0.000000 -2387, 1.000000, 0.000000, 0.000000, 0.000000 -2388, 1.000000, 0.000000, 0.000000, 0.000000 -2389, 1.000000, 0.000000, 0.000000, 0.000000 -2390, 1.000000, 0.000000, 0.000000, 0.000000 -2391, 1.000000, 0.000000, 0.000000, 0.000000 -2392, 1.000000, 0.000000, 0.000000, 0.000000 -2393, 1.000000, 0.000000, 0.000000, 0.000000 -2394, 1.000000, 0.000000, 0.000000, 0.000000 -2395, 1.000000, 0.000000, 0.000000, 0.000000 -2396, 1.000000, 0.000000, 0.000000, 0.000000 -2397, 1.000000, 0.000000, 0.000000, 0.000000 -2398, 1.000000, 0.000000, 0.000000, 0.000000 -2399, 1.000000, 0.000000, 0.000000, 0.000000 -2400, 1.000000, 0.000000, 0.000000, 0.000000 -2401, 1.000000, 0.000000, 0.000000, 0.000000 -2402, 1.000000, 0.000000, 0.000000, 0.000000 -2403, 1.000000, 0.000000, 0.000000, 0.000000 -2404, 1.000000, 0.000000, 0.000000, 0.000000 -2405, 1.000000, 0.000000, 0.000000, 0.000000 -2406, 1.000000, 0.000000, 0.000000, 0.000000 -2407, 1.000000, 0.000000, 0.000000, 0.000000 -2408, 1.000000, 0.000000, 0.000000, 0.000000 -2409, 1.000000, 0.000000, 0.000000, 0.000000 -2410, 1.000000, 0.000000, 0.000000, 0.000000 -2411, 1.000000, 0.000000, 0.000000, 0.000000 -2412, 1.000000, 0.000000, 0.000000, 0.000000 -2413, 1.000000, 0.000000, 0.000000, 0.000000 -2414, 1.000000, 0.000000, 0.000000, 0.000000 -2415, 1.000000, 0.000000, 0.000000, 0.000000 -2416, 1.000000, 0.000000, 0.000000, 0.000000 -2417, 1.000000, 0.000000, 0.000000, 0.000000 -2418, 1.000000, 0.000000, 0.000000, 0.000000 -2419, 1.000000, 0.000000, 0.000000, 0.000000 -2420, 1.000000, 0.000000, 0.000000, 0.000000 -2421, 1.000000, 0.000000, 0.000000, 0.000000 -2422, 1.000000, 0.000000, 0.000000, 0.000000 -2423, 1.000000, 0.000000, 0.000000, 0.000000 -2424, 1.000000, 0.000000, 0.000000, 0.000000 -2425, 1.000000, 0.000000, 0.000000, 0.000000 -2426, 1.000000, 0.000000, 0.000000, 0.000000 -2427, 1.000000, 0.000000, 0.000000, 0.000000 -2428, 1.000000, 0.000000, 0.000000, 0.000000 -2429, 1.000000, 0.000000, 0.000000, 0.000000 -2430, 1.000000, 0.000000, 0.000000, 0.000000 -2431, 1.000000, 0.000000, 0.000000, 0.000000 -2432, 1.000000, 0.000000, 0.000000, 0.000000 -2433, 1.000000, 0.000000, 0.000000, 0.000000 -2434, 1.000000, 0.000000, 0.000000, 0.000000 -2435, 1.000000, 0.000000, 0.000000, 0.000000 -2436, 1.000000, 0.000000, 0.000000, 0.000000 -2437, 1.000000, 0.000000, 0.000000, 0.000000 -2438, 1.000000, 0.000000, 0.000000, 0.000000 -2439, 1.000000, 0.000000, 0.000000, 0.000000 -2440, 1.000000, 0.000000, 0.000000, 0.000000 -2441, 1.000000, 0.000000, 0.000000, 0.000000 -2442, 1.000000, 0.000000, 0.000000, 0.000000 -2443, 1.000000, 0.000000, 0.000000, 0.000000 -2444, 1.000000, 0.000000, 0.000000, 0.000000 -2445, 1.000000, 0.000000, 0.000000, 0.000000 -2446, 1.000000, 0.000000, 0.000000, 0.000000 -2447, 1.000000, 0.000000, 0.000000, 0.000000 -2448, 1.000000, 0.000000, 0.000000, 0.000000 -2449, 1.000000, 0.000000, 0.000000, 0.000000 -2450, 1.000000, 0.000000, 0.000000, 0.000000 -2451, 1.000000, 0.000000, 0.000000, 0.000000 -2452, 1.000000, 0.000000, 0.000000, 0.000000 -2453, 1.000000, 0.000000, 0.000000, 0.000000 -2454, 1.000000, 0.000000, 0.000000, 0.000000 -2455, 1.000000, 0.000000, 0.000000, 0.000000 -2456, 1.000000, 0.000000, 0.000000, 0.000000 -2457, 1.000000, 0.000000, 0.000000, 0.000000 -2458, 1.000000, 0.000000, 0.000000, 0.000000 -2459, 1.000000, 0.000000, 0.000000, 0.000000 -2460, 1.000000, 0.000000, 0.000000, 0.000000 -2461, 1.000000, 0.000000, 0.000000, 0.000000 -2462, 1.000000, 0.000000, 0.000000, 0.000000 -2463, 1.000000, 0.000000, 0.000000, 0.000000 -2464, 1.000000, 0.000000, 0.000000, 0.000000 -2465, 1.000000, 0.000000, 0.000000, 0.000000 -2466, 1.000000, 0.000000, 0.000000, 0.000000 -2467, 1.000000, 0.000000, 0.000000, 0.000000 -2468, 1.000000, 0.000000, 0.000000, 0.000000 -2469, 1.000000, 0.000000, 0.000000, 0.000000 -2470, 1.000000, 0.000000, 0.000000, 0.000000 -2471, 1.000000, 0.000000, 0.000000, 0.000000 -2472, 1.000000, 0.000000, 0.000000, 0.000000 -2473, 1.000000, 0.000000, 0.000000, 0.000000 -2474, 1.000000, 0.000000, 0.000000, 0.000000 -2475, 1.000000, 0.000000, 0.000000, 0.000000 -2476, 1.000000, 0.000000, 0.000000, 0.000000 -2477, 1.000000, 0.000000, 0.000000, 0.000000 -2478, 1.000000, 0.000000, 0.000000, 0.000000 -2479, 1.000000, 0.000000, 0.000000, 0.000000 -2480, 1.000000, 0.000000, 0.000000, 0.000000 -2481, 1.000000, 0.000000, 0.000000, 0.000000 -2482, 1.000000, 0.000000, 0.000000, 0.000000 -2483, 1.000000, 0.000000, 0.000000, 0.000000 -2484, 1.000000, 0.000000, 0.000000, 0.000000 -2485, 1.000000, 0.000000, 0.000000, 0.000000 -2486, 1.000000, 0.000000, 0.000000, 0.000000 -2487, 1.000000, 0.000000, 0.000000, 0.000000 -2488, 1.000000, 0.000000, 0.000000, 0.000000 -2489, 1.000000, 0.000000, 0.000000, 0.000000 -2490, 1.000000, 0.000000, 0.000000, 0.000000 -2491, 1.000000, 0.000000, 0.000000, 0.000000 -2492, 1.000000, 0.000000, 0.000000, 0.000000 -2493, 1.000000, 0.000000, 0.000000, 0.000000 -2494, 1.000000, 0.000000, 0.000000, 0.000000 -2495, 1.000000, 0.000000, 0.000000, 0.000000 -2496, 1.000000, 0.000000, 0.000000, 0.000000 -2497, 1.000000, 0.000000, 0.000000, 0.000000 -2498, 1.000000, 0.000000, 0.000000, 0.000000 -2499, 1.000000, 0.000000, 0.000000, 0.000000 -2500, 1.000000, 0.000000, 0.000000, 0.000000 -2501, 1.000000, 0.000000, 0.000000, 0.000000 -2502, 1.000000, 0.000000, 0.000000, 0.000000 -2503, 1.000000, 0.000000, 0.000000, 0.000000 -2504, 1.000000, 0.000000, 0.000000, 0.000000 -2505, 1.000000, 0.000000, 0.000000, 0.000000 -2506, 1.000000, 0.000000, 0.000000, 0.000000 -2507, 1.000000, 0.000000, 0.000000, 0.000000 -2508, 1.000000, 0.000000, 0.000000, 0.000000 -2509, 1.000000, 0.000000, 0.000000, 0.000000 -2510, 1.000000, 0.000000, 0.000000, 0.000000 -2511, 1.000000, 0.000000, 0.000000, 0.000000 -2512, 1.000000, 0.000000, 0.000000, 0.000000 -2513, 1.000000, 0.000000, 0.000000, 0.000000 -2514, 1.000000, 0.000000, 0.000000, 0.000000 -2515, 1.000000, 0.000000, 0.000000, 0.000000 -2516, 1.000000, 0.000000, 0.000000, 0.000000 -2517, 1.000000, 0.000000, 0.000000, 0.000000 -2518, 1.000000, 0.000000, 0.000000, 0.000000 -2519, 1.000000, 0.000000, 0.000000, 0.000000 -2520, 1.000000, 0.000000, 0.000000, 0.000000 -2521, 1.000000, 0.000000, 0.000000, 0.000000 -2522, 1.000000, 0.000000, 0.000000, 0.000000 -2523, 1.000000, 0.000000, 0.000000, 0.000000 -2524, 1.000000, 0.000000, 0.000000, 0.000000 -2525, 1.000000, 0.000000, 0.000000, 0.000000 -2526, 1.000000, 0.000000, 0.000000, 0.000000 -2527, 1.000000, 0.000000, 0.000000, 0.000000 -2528, 1.000000, 0.000000, 0.000000, 0.000000 -2529, 1.000000, 0.000000, 0.000000, 0.000000 -2530, 1.000000, 0.000000, 0.000000, 0.000000 -2531, 1.000000, 0.000000, 0.000000, 0.000000 -2532, 1.000000, 0.000000, 0.000000, 0.000000 -2533, 1.000000, 0.000000, 0.000000, 0.000000 -2534, 1.000000, 0.000000, 0.000000, 0.000000 -2535, 1.000000, 0.000000, 0.000000, 0.000000 -2536, 1.000000, 0.000000, 0.000000, 0.000000 -2537, 1.000000, 0.000000, 0.000000, 0.000000 -2538, 1.000000, 0.000000, 0.000000, 0.000000 -2539, 1.000000, 0.000000, 0.000000, 0.000000 -2540, 1.000000, 0.000000, 0.000000, 0.000000 -2541, 1.000000, 0.000000, 0.000000, 0.000000 -2542, 1.000000, 0.000000, 0.000000, 0.000000 -2543, 1.000000, 0.000000, 0.000000, 0.000000 -2544, 1.000000, 0.000000, 0.000000, 0.000000 -2545, 1.000000, 0.000000, 0.000000, 0.000000 -2546, 1.000000, 0.000000, 0.000000, 0.000000 -2547, 1.000000, 0.000000, 0.000000, 0.000000 -2548, 1.000000, 0.000000, 0.000000, 0.000000 -2549, 1.000000, 0.000000, 0.000000, 0.000000 -2550, 1.000000, 0.000000, 0.000000, 0.000000 -2551, 1.000000, 0.000000, 0.000000, 0.000000 -2552, 1.000000, 0.000000, 0.000000, 0.000000 -2553, 1.000000, 0.000000, 0.000000, 0.000000 -2554, 1.000000, 0.000000, 0.000000, 0.000000 -2555, 1.000000, 0.000000, 0.000000, 0.000000 -2556, 1.000000, 0.000000, 0.000000, 0.000000 -2557, 1.000000, 0.000000, 0.000000, 0.000000 -2558, 1.000000, 0.000000, 0.000000, 0.000000 -2559, 1.000000, 0.000000, 0.000000, 0.000000 -2560, 1.000000, 0.000000, 0.000000, 0.000000 -2561, 1.000000, 0.000000, 0.000000, 0.000000 -2562, 1.000000, 0.000000, 0.000000, 0.000000 -2563, 1.000000, 0.000000, 0.000000, 0.000000 -2564, 1.000000, 0.000000, 0.000000, 0.000000 -2565, 1.000000, 0.000000, 0.000000, 0.000000 -2566, 1.000000, 0.000000, 0.000000, 0.000000 -2567, 1.000000, 0.000000, 0.000000, 0.000000 -2568, 1.000000, 0.000000, 0.000000, 0.000000 -2569, 1.000000, 0.000000, 0.000000, 0.000000 -2570, 1.000000, 0.000000, 0.000000, 0.000000 -2571, 1.000000, 0.000000, 0.000000, 0.000000 -2572, 1.000000, 0.000000, 0.000000, 0.000000 -2573, 1.000000, 0.000000, 0.000000, 0.000000 -2574, 1.000000, 0.000000, 0.000000, 0.000000 -2575, 1.000000, 0.000000, 0.000000, 0.000000 -2576, 1.000000, 0.000000, 0.000000, 0.000000 -2577, 1.000000, 0.000000, 0.000000, 0.000000 -2578, 1.000000, 0.000000, 0.000000, 0.000000 -2579, 1.000000, 0.000000, 0.000000, 0.000000 -2580, 1.000000, 0.000000, 0.000000, 0.000000 -2581, 1.000000, 0.000000, 0.000000, 0.000000 -2582, 1.000000, 0.000000, 0.000000, 0.000000 -2583, 1.000000, 0.000000, 0.000000, 0.000000 -2584, 1.000000, 0.000000, 0.000000, 0.000000 -2585, 1.000000, 0.000000, 0.000000, 0.000000 -2586, 1.000000, 0.000000, 0.000000, 0.000000 -2587, 1.000000, 0.000000, 0.000000, 0.000000 -2588, 1.000000, 0.000000, 0.000000, 0.000000 -2589, 1.000000, 0.000000, 0.000000, 0.000000 -2590, 1.000000, 0.000000, 0.000000, 0.000000 -2591, 1.000000, 0.000000, 0.000000, 0.000000 -2592, 1.000000, 0.000000, 0.000000, 0.000000 -2593, 1.000000, 0.000000, 0.000000, 0.000000 -2594, 1.000000, 0.000000, 0.000000, 0.000000 -2595, 1.000000, 0.000000, 0.000000, 0.000000 -2596, 1.000000, 0.000000, 0.000000, 0.000000 -2597, 1.000000, 0.000000, 0.000000, 0.000000 -2598, 1.000000, 0.000000, 0.000000, 0.000000 -2599, 1.000000, 0.000000, 0.000000, 0.000000 -2600, 1.000000, 0.000000, 0.000000, 0.000000 -2601, 1.000000, 0.000000, 0.000000, 0.000000 -2602, 1.000000, 0.000000, 0.000000, 0.000000 -2603, 1.000000, 0.000000, 0.000000, 0.000000 -2604, 1.000000, 0.000000, 0.000000, 0.000000 -2605, 1.000000, 0.000000, 0.000000, 0.000000 -2606, 1.000000, 0.000000, 0.000000, 0.000000 -2607, 1.000000, 0.000000, 0.000000, 0.000000 -2608, 1.000000, 0.000000, 0.000000, 0.000000 -2609, 1.000000, 0.000000, 0.000000, 0.000000 -2610, 1.000000, 0.000000, 0.000000, 0.000000 -2611, 1.000000, 0.000000, 0.000000, 0.000000 -2612, 1.000000, 0.000000, 0.000000, 0.000000 -2613, 1.000000, 0.000000, 0.000000, 0.000000 -2614, 1.000000, 0.000000, 0.000000, 0.000000 -2615, 1.000000, 0.000000, 0.000000, 0.000000 -2616, 1.000000, 0.000000, 0.000000, 0.000000 -2617, 1.000000, 0.000000, 0.000000, 0.000000 -2618, 1.000000, 0.000000, 0.000000, 0.000000 -2619, 1.000000, 0.000000, 0.000000, 0.000000 -2620, 1.000000, 0.000000, 0.000000, 0.000000 -2621, 1.000000, 0.000000, 0.000000, 0.000000 -2622, 1.000000, 0.000000, 0.000000, 0.000000 -2623, 1.000000, 0.000000, 0.000000, 0.000000 -2624, 1.000000, 0.000000, 0.000000, 0.000000 -2625, 1.000000, 0.000000, 0.000000, 0.000000 -2626, 1.000000, 0.000000, 0.000000, 0.000000 -2627, 1.000000, 0.000000, 0.000000, 0.000000 -2628, 1.000000, 0.000000, 0.000000, 0.000000 -2629, 1.000000, 0.000000, 0.000000, 0.000000 -2630, 1.000000, 0.000000, 0.000000, 0.000000 -2631, 1.000000, 0.000000, 0.000000, 0.000000 -2632, 1.000000, 0.000000, 0.000000, 0.000000 -2633, 1.000000, 0.000000, 0.000000, 0.000000 -2634, 1.000000, 0.000000, 0.000000, 0.000000 -2635, 1.000000, 0.000000, 0.000000, 0.000000 -2636, 1.000000, 0.000000, 0.000000, 0.000000 -2637, 1.000000, 0.000000, 0.000000, 0.000000 -2638, 1.000000, 0.000000, 0.000000, 0.000000 -2639, 1.000000, 0.000000, 0.000000, 0.000000 -2640, 1.000000, 0.000000, 0.000000, 0.000000 -2641, 1.000000, 0.000000, 0.000000, 0.000000 -2642, 1.000000, 0.000000, 0.000000, 0.000000 -2643, 1.000000, 0.000000, 0.000000, 0.000000 -2644, 1.000000, 0.000000, 0.000000, 0.000000 -2645, 1.000000, 0.000000, 0.000000, 0.000000 -2646, 1.000000, 0.000000, 0.000000, 0.000000 -2647, 1.000000, 0.000000, 0.000000, 0.000000 -2648, 1.000000, 0.000000, 0.000000, 0.000000 -2649, 1.000000, 0.000000, 0.000000, 0.000000 -2650, 1.000000, 0.000000, 0.000000, 0.000000 -2651, 1.000000, 0.000000, 0.000000, 0.000000 -2652, 1.000000, 0.000000, 0.000000, 0.000000 -2653, 1.000000, 0.000000, 0.000000, 0.000000 -2654, 1.000000, 0.000000, 0.000000, 0.000000 -2655, 1.000000, 0.000000, 0.000000, 0.000000 -2656, 1.000000, 0.000000, 0.000000, 0.000000 -2657, 1.000000, 0.000000, 0.000000, 0.000000 -2658, 1.000000, 0.000000, 0.000000, 0.000000 -2659, 1.000000, 0.000000, 0.000000, 0.000000 -2660, 1.000000, 0.000000, 0.000000, 0.000000 -2661, 1.000000, 0.000000, 0.000000, 0.000000 -2662, 1.000000, 0.000000, 0.000000, 0.000000 -2663, 1.000000, 0.000000, 0.000000, 0.000000 -2664, 1.000000, 0.000000, 0.000000, 0.000000 -2665, 1.000000, 0.000000, 0.000000, 0.000000 -2666, 1.000000, 0.000000, 0.000000, 0.000000 -2667, 1.000000, 0.000000, 0.000000, 0.000000 -2668, 1.000000, 0.000000, 0.000000, 0.000000 -2669, 1.000000, 0.000000, 0.000000, 0.000000 -2670, 1.000000, 0.000000, 0.000000, 0.000000 -2671, 1.000000, 0.000000, 0.000000, 0.000000 -2672, 1.000000, 0.000000, 0.000000, 0.000000 -2673, 1.000000, 0.000000, 0.000000, 0.000000 -2674, 1.000000, 0.000000, 0.000000, 0.000000 -2675, 1.000000, 0.000000, 0.000000, 0.000000 -2676, 1.000000, 0.000000, 0.000000, 0.000000 -2677, 1.000000, 0.000000, 0.000000, 0.000000 -2678, 1.000000, 0.000000, 0.000000, 0.000000 -2679, 1.000000, 0.000000, 0.000000, 0.000000 -2680, 1.000000, 0.000000, 0.000000, 0.000000 -2681, 1.000000, 0.000000, 0.000000, 0.000000 -2682, 1.000000, 0.000000, 0.000000, 0.000000 -2683, 1.000000, 0.000000, 0.000000, 0.000000 -2684, 1.000000, 0.000000, 0.000000, 0.000000 -2685, 1.000000, 0.000000, 0.000000, 0.000000 -2686, 1.000000, 0.000000, 0.000000, 0.000000 -2687, 1.000000, 0.000000, 0.000000, 0.000000 -2688, 1.000000, 0.000000, 0.000000, 0.000000 -2689, 1.000000, 0.000000, 0.000000, 0.000000 -2690, 1.000000, 0.000000, 0.000000, 0.000000 -2691, 1.000000, 0.000000, 0.000000, 0.000000 -2692, 1.000000, 0.000000, 0.000000, 0.000000 -2693, 1.000000, 0.000000, 0.000000, 0.000000 -2694, 1.000000, 0.000000, 0.000000, 0.000000 -2695, 1.000000, 0.000000, 0.000000, 0.000000 -2696, 1.000000, 0.000000, 0.000000, 0.000000 -2697, 1.000000, 0.000000, 0.000000, 0.000000 -2698, 1.000000, 0.000000, 0.000000, 0.000000 -2699, 1.000000, 0.000000, 0.000000, 0.000000 -2700, 1.000000, 0.000000, 0.000000, 0.000000 -2701, 1.000000, 0.000000, 0.000000, 0.000000 -2702, 1.000000, 0.000000, 0.000000, 0.000000 -2703, 1.000000, 0.000000, 0.000000, 0.000000 -2704, 1.000000, 0.000000, 0.000000, 0.000000 -2705, 1.000000, 0.000000, 0.000000, 0.000000 -2706, 1.000000, 0.000000, 0.000000, 0.000000 -2707, 1.000000, 0.000000, 0.000000, 0.000000 -2708, 1.000000, 0.000000, 0.000000, 0.000000 -2709, 1.000000, 0.000000, 0.000000, 0.000000 -2710, 1.000000, 0.000000, 0.000000, 0.000000 -2711, 1.000000, 0.000000, 0.000000, 0.000000 -2712, 1.000000, 0.000000, 0.000000, 0.000000 -2713, 1.000000, 0.000000, 0.000000, 0.000000 -2714, 1.000000, 0.000000, 0.000000, 0.000000 -2715, 1.000000, 0.000000, 0.000000, 0.000000 -2716, 1.000000, 0.000000, 0.000000, 0.000000 -2717, 1.000000, 0.000000, 0.000000, 0.000000 -2718, 1.000000, 0.000000, 0.000000, 0.000000 -2719, 1.000000, 0.000000, 0.000000, 0.000000 -2720, 1.000000, 0.000000, 0.000000, 0.000000 -2721, 1.000000, 0.000000, 0.000000, 0.000000 -2722, 1.000000, 0.000000, 0.000000, 0.000000 -2723, 1.000000, 0.000000, 0.000000, 0.000000 -2724, 1.000000, 0.000000, 0.000000, 0.000000 -2725, 1.000000, 0.000000, 0.000000, 0.000000 -2726, 1.000000, 0.000000, 0.000000, 0.000000 -2727, 1.000000, 0.000000, 0.000000, 0.000000 -2728, 1.000000, 0.000000, 0.000000, 0.000000 -2729, 1.000000, 0.000000, 0.000000, 0.000000 -2730, 1.000000, 0.000000, 0.000000, 0.000000 -2731, 1.000000, 0.000000, 0.000000, 0.000000 -2732, 1.000000, 0.000000, 0.000000, 0.000000 -2733, 1.000000, 0.000000, 0.000000, 0.000000 -2734, 1.000000, 0.000000, 0.000000, 0.000000 -2735, 1.000000, 0.000000, 0.000000, 0.000000 -2736, 1.000000, 0.000000, 0.000000, 0.000000 -2737, 1.000000, 0.000000, 0.000000, 0.000000 -2738, 1.000000, 0.000000, 0.000000, 0.000000 -2739, 1.000000, 0.000000, 0.000000, 0.000000 -2740, 1.000000, 0.000000, 0.000000, 0.000000 -2741, 1.000000, 0.000000, 0.000000, 0.000000 -2742, 1.000000, 0.000000, 0.000000, 0.000000 -2743, 1.000000, 0.000000, 0.000000, 0.000000 -2744, 1.000000, 0.000000, 0.000000, 0.000000 -2745, 1.000000, 0.000000, 0.000000, 0.000000 -2746, 1.000000, 0.000000, 0.000000, 0.000000 -2747, 1.000000, 0.000000, 0.000000, 0.000000 -2748, 1.000000, 0.000000, 0.000000, 0.000000 -2749, 1.000000, 0.000000, 0.000000, 0.000000 -2750, 1.000000, 0.000000, 0.000000, 0.000000 -2751, 1.000000, 0.000000, 0.000000, 0.000000 -2752, 1.000000, 0.000000, 0.000000, 0.000000 -2753, 1.000000, 0.000000, 0.000000, 0.000000 -2754, 1.000000, 0.000000, 0.000000, 0.000000 -2755, 1.000000, 0.000000, 0.000000, 0.000000 -2756, 1.000000, 0.000000, 0.000000, 0.000000 -2757, 1.000000, 0.000000, 0.000000, 0.000000 -2758, 1.000000, 0.000000, 0.000000, 0.000000 -2759, 1.000000, 0.000000, 0.000000, 0.000000 -2760, 1.000000, 0.000000, 0.000000, 0.000000 -2761, 1.000000, 0.000000, 0.000000, 0.000000 -2762, 1.000000, 0.000000, 0.000000, 0.000000 -2763, 1.000000, 0.000000, 0.000000, 0.000000 -2764, 1.000000, 0.000000, 0.000000, 0.000000 -2765, 1.000000, 0.000000, 0.000000, 0.000000 -2766, 1.000000, 0.000000, 0.000000, 0.000000 -2767, 1.000000, 0.000000, 0.000000, 0.000000 -2768, 1.000000, 0.000000, 0.000000, 0.000000 -2769, 1.000000, 0.000000, 0.000000, 0.000000 -2770, 1.000000, 0.000000, 0.000000, 0.000000 -2771, 1.000000, 0.000000, 0.000000, 0.000000 -2772, 1.000000, 0.000000, 0.000000, 0.000000 -2773, 1.000000, 0.000000, 0.000000, 0.000000 -2774, 1.000000, 0.000000, 0.000000, 0.000000 -2775, 1.000000, 0.000000, 0.000000, 0.000000 -2776, 1.000000, 0.000000, 0.000000, 0.000000 -2777, 1.000000, 0.000000, 0.000000, 0.000000 -2778, 1.000000, 0.000000, 0.000000, 0.000000 -2779, 1.000000, 0.000000, 0.000000, 0.000000 -2780, 1.000000, 0.000000, 0.000000, 0.000000 -2781, 1.000000, 0.000000, 0.000000, 0.000000 -2782, 1.000000, 0.000000, 0.000000, 0.000000 -2783, 1.000000, 0.000000, 0.000000, 0.000000 -2784, 1.000000, 0.000000, 0.000000, 0.000000 -2785, 1.000000, 0.000000, 0.000000, 0.000000 -2786, 1.000000, 0.000000, 0.000000, 0.000000 -2787, 1.000000, 0.000000, 0.000000, 0.000000 -2788, 1.000000, 0.000000, 0.000000, 0.000000 -2789, 1.000000, 0.000000, 0.000000, 0.000000 -2790, 1.000000, 0.000000, 0.000000, 0.000000 -2791, 1.000000, 0.000000, 0.000000, 0.000000 -2792, 1.000000, 0.000000, 0.000000, 0.000000 -2793, 1.000000, 0.000000, 0.000000, 0.000000 -2794, 1.000000, 0.000000, 0.000000, 0.000000 -2795, 1.000000, 0.000000, 0.000000, 0.000000 -2796, 1.000000, 0.000000, 0.000000, 0.000000 -2797, 1.000000, 0.000000, 0.000000, 0.000000 -2798, 1.000000, 0.000000, 0.000000, 0.000000 -2799, 1.000000, 0.000000, 0.000000, 0.000000 -2800, 1.000000, 0.000000, 0.000000, 0.000000 -2801, 1.000000, 0.000000, 0.000000, 0.000000 -2802, 1.000000, 0.000000, 0.000000, 0.000000 -2803, 1.000000, 0.000000, 0.000000, 0.000000 -2804, 1.000000, 0.000000, 0.000000, 0.000000 -2805, 1.000000, 0.000000, 0.000000, 0.000000 -2806, 1.000000, 0.000000, 0.000000, 0.000000 -2807, 1.000000, 0.000000, 0.000000, 0.000000 -2808, 1.000000, 0.000000, 0.000000, 0.000000 -2809, 1.000000, 0.000000, 0.000000, 0.000000 -2810, 1.000000, 0.000000, 0.000000, 0.000000 -2811, 1.000000, 0.000000, 0.000000, 0.000000 -2812, 1.000000, 0.000000, 0.000000, 0.000000 -2813, 1.000000, 0.000000, 0.000000, 0.000000 -2814, 1.000000, 0.000000, 0.000000, 0.000000 -2815, 1.000000, 0.000000, 0.000000, 0.000000 -2816, 1.000000, 0.000000, 0.000000, 0.000000 -2817, 1.000000, 0.000000, 0.000000, 0.000000 -2818, 1.000000, 0.000000, 0.000000, 0.000000 -2819, 1.000000, 0.000000, 0.000000, 0.000000 -2820, 1.000000, 0.000000, 0.000000, 0.000000 -2821, 1.000000, 0.000000, 0.000000, 0.000000 -2822, 1.000000, 0.000000, 0.000000, 0.000000 -2823, 1.000000, 0.000000, 0.000000, 0.000000 -2824, 1.000000, 0.000000, 0.000000, 0.000000 -2825, 1.000000, 0.000000, 0.000000, 0.000000 -2826, 1.000000, 0.000000, 0.000000, 0.000000 -2827, 1.000000, 0.000000, 0.000000, 0.000000 -2828, 1.000000, 0.000000, 0.000000, 0.000000 -2829, 1.000000, 0.000000, 0.000000, 0.000000 -2830, 1.000000, 0.000000, 0.000000, 0.000000 -2831, 1.000000, 0.000000, 0.000000, 0.000000 -2832, 1.000000, 0.000000, 0.000000, 0.000000 -2833, 1.000000, 0.000000, 0.000000, 0.000000 -2834, 1.000000, 0.000000, 0.000000, 0.000000 -2835, 1.000000, 0.000000, 0.000000, 0.000000 -2836, 1.000000, 0.000000, 0.000000, 0.000000 -2837, 1.000000, 0.000000, 0.000000, 0.000000 -2838, 1.000000, 0.000000, 0.000000, 0.000000 -2839, 1.000000, 0.000000, 0.000000, 0.000000 -2840, 1.000000, 0.000000, 0.000000, 0.000000 -2841, 1.000000, 0.000000, 0.000000, 0.000000 -2842, 1.000000, 0.000000, 0.000000, 0.000000 -2843, 1.000000, 0.000000, 0.000000, 0.000000 -2844, 1.000000, 0.000000, 0.000000, 0.000000 -2845, 1.000000, 0.000000, 0.000000, 0.000000 -2846, 1.000000, 0.000000, 0.000000, 0.000000 -2847, 1.000000, 0.000000, 0.000000, 0.000000 -2848, 1.000000, 0.000000, 0.000000, 0.000000 -2849, 1.000000, 0.000000, 0.000000, 0.000000 -2850, 1.000000, 0.000000, 0.000000, 0.000000 -2851, 1.000000, 0.000000, 0.000000, 0.000000 -2852, 1.000000, 0.000000, 0.000000, 0.000000 -2853, 1.000000, 0.000000, 0.000000, 0.000000 -2854, 1.000000, 0.000000, 0.000000, 0.000000 -2855, 1.000000, 0.000000, 0.000000, 0.000000 -2856, 1.000000, 0.000000, 0.000000, 0.000000 -2857, 1.000000, 0.000000, 0.000000, 0.000000 -2858, 1.000000, 0.000000, 0.000000, 0.000000 -2859, 1.000000, 0.000000, 0.000000, 0.000000 -2860, 1.000000, 0.000000, 0.000000, 0.000000 -2861, 1.000000, 0.000000, 0.000000, 0.000000 -2862, 1.000000, 0.000000, 0.000000, 0.000000 -2863, 1.000000, 0.000000, 0.000000, 0.000000 -2864, 1.000000, 0.000000, 0.000000, 0.000000 -2865, 1.000000, 0.000000, 0.000000, 0.000000 -2866, 1.000000, 0.000000, 0.000000, 0.000000 -2867, 1.000000, 0.000000, 0.000000, 0.000000 -2868, 1.000000, 0.000000, 0.000000, 0.000000 -2869, 1.000000, 0.000000, 0.000000, 0.000000 -2870, 1.000000, 0.000000, 0.000000, 0.000000 -2871, 1.000000, 0.000000, 0.000000, 0.000000 -2872, 1.000000, 0.000000, 0.000000, 0.000000 -2873, 1.000000, 0.000000, 0.000000, 0.000000 -2874, 1.000000, 0.000000, 0.000000, 0.000000 -2875, 1.000000, 0.000000, 0.000000, 0.000000 -2876, 1.000000, 0.000000, 0.000000, 0.000000 -2877, 1.000000, 0.000000, 0.000000, 0.000000 -2878, 1.000000, 0.000000, 0.000000, 0.000000 -2879, 1.000000, 0.000000, 0.000000, 0.000000 -2880, 1.000000, 0.000000, 0.000000, 0.000000 -2881, 1.000000, 0.000000, 0.000000, 0.000000 -2882, 1.000000, 0.000000, 0.000000, 0.000000 -2883, 1.000000, 0.000000, 0.000000, 0.000000 -2884, 1.000000, 0.000000, 0.000000, 0.000000 -2885, 1.000000, 0.000000, 0.000000, 0.000000 -2886, 1.000000, 0.000000, 0.000000, 0.000000 -2887, 1.000000, 0.000000, 0.000000, 0.000000 -2888, 1.000000, 0.000000, 0.000000, 0.000000 -2889, 1.000000, 0.000000, 0.000000, 0.000000 -2890, 1.000000, 0.000000, 0.000000, 0.000000 -2891, 1.000000, 0.000000, 0.000000, 0.000000 -2892, 1.000000, 0.000000, 0.000000, 0.000000 -2893, 1.000000, 0.000000, 0.000000, 0.000000 -2894, 1.000000, 0.000000, 0.000000, 0.000000 -2895, 1.000000, 0.000000, 0.000000, 0.000000 -2896, 1.000000, 0.000000, 0.000000, 0.000000 -2897, 1.000000, 0.000000, 0.000000, 0.000000 -2898, 1.000000, 0.000000, 0.000000, 0.000000 -2899, 1.000000, 0.000000, 0.000000, 0.000000 -2900, 1.000000, 0.000000, 0.000000, 0.000000 -2901, 1.000000, 0.000000, 0.000000, 0.000000 -2902, 1.000000, 0.000000, 0.000000, 0.000000 -2903, 1.000000, 0.000000, 0.000000, 0.000000 -2904, 1.000000, 0.000000, 0.000000, 0.000000 -2905, 1.000000, 0.000000, 0.000000, 0.000000 -2906, 1.000000, 0.000000, 0.000000, 0.000000 -2907, 1.000000, 0.000000, 0.000000, 0.000000 -2908, 1.000000, 0.000000, 0.000000, 0.000000 -2909, 1.000000, 0.000000, 0.000000, 0.000000 -2910, 1.000000, 0.000000, 0.000000, 0.000000 -2911, 1.000000, 0.000000, 0.000000, 0.000000 -2912, 1.000000, 0.000000, 0.000000, 0.000000 -2913, 1.000000, 0.000000, 0.000000, 0.000000 -2914, 1.000000, 0.000000, 0.000000, 0.000000 -2915, 1.000000, 0.000000, 0.000000, 0.000000 -2916, 1.000000, 0.000000, 0.000000, 0.000000 -2917, 1.000000, 0.000000, 0.000000, 0.000000 -2918, 1.000000, 0.000000, 0.000000, 0.000000 -2919, 1.000000, 0.000000, 0.000000, 0.000000 -2920, 1.000000, 0.000000, 0.000000, 0.000000 -2921, 1.000000, 0.000000, 0.000000, 0.000000 -2922, 1.000000, 0.000000, 0.000000, 0.000000 -2923, 1.000000, 0.000000, 0.000000, 0.000000 -2924, 1.000000, 0.000000, 0.000000, 0.000000 -2925, 1.000000, 0.000000, 0.000000, 0.000000 -2926, 1.000000, 0.000000, 0.000000, 0.000000 -2927, 1.000000, 0.000000, 0.000000, 0.000000 -2928, 1.000000, 0.000000, 0.000000, 0.000000 -2929, 1.000000, 0.000000, 0.000000, 0.000000 -2930, 1.000000, 0.000000, 0.000000, 0.000000 -2931, 1.000000, 0.000000, 0.000000, 0.000000 -2932, 1.000000, 0.000000, 0.000000, 0.000000 -2933, 1.000000, 0.000000, 0.000000, 0.000000 -2934, 1.000000, 0.000000, 0.000000, 0.000000 -2935, 1.000000, 0.000000, 0.000000, 0.000000 -2936, 1.000000, 0.000000, 0.000000, 0.000000 -2937, 1.000000, 0.000000, 0.000000, 0.000000 -2938, 1.000000, 0.000000, 0.000000, 0.000000 -2939, 1.000000, 0.000000, 0.000000, 0.000000 -2940, 1.000000, 0.000000, 0.000000, 0.000000 -2941, 1.000000, 0.000000, 0.000000, 0.000000 -2942, 1.000000, 0.000000, 0.000000, 0.000000 -2943, 1.000000, 0.000000, 0.000000, 0.000000 -2944, 1.000000, 0.000000, 0.000000, 0.000000 -2945, 1.000000, 0.000000, 0.000000, 0.000000 -2946, 1.000000, 0.000000, 0.000000, 0.000000 -2947, 1.000000, 0.000000, 0.000000, 0.000000 -2948, 1.000000, 0.000000, 0.000000, 0.000000 -2949, 1.000000, 0.000000, 0.000000, 0.000000 -2950, 1.000000, 0.000000, 0.000000, 0.000000 -2951, 1.000000, 0.000000, 0.000000, 0.000000 -2952, 1.000000, 0.000000, 0.000000, 0.000000 -2953, 1.000000, 0.000000, 0.000000, 0.000000 -2954, 1.000000, 0.000000, 0.000000, 0.000000 -2955, 1.000000, 0.000000, 0.000000, 0.000000 -2956, 1.000000, 0.000000, 0.000000, 0.000000 -2957, 1.000000, 0.000000, 0.000000, 0.000000 -2958, 1.000000, 0.000000, 0.000000, 0.000000 -2959, 1.000000, 0.000000, 0.000000, 0.000000 -2960, 1.000000, 0.000000, 0.000000, 0.000000 -2961, 1.000000, 0.000000, 0.000000, 0.000000 -2962, 1.000000, 0.000000, 0.000000, 0.000000 -2963, 1.000000, 0.000000, 0.000000, 0.000000 -2964, 1.000000, 0.000000, 0.000000, 0.000000 -2965, 1.000000, 0.000000, 0.000000, 0.000000 -2966, 1.000000, 0.000000, 0.000000, 0.000000 -2967, 1.000000, 0.000000, 0.000000, 0.000000 -2968, 1.000000, 0.000000, 0.000000, 0.000000 -2969, 1.000000, 0.000000, 0.000000, 0.000000 -2970, 1.000000, 0.000000, 0.000000, 0.000000 -2971, 1.000000, 0.000000, 0.000000, 0.000000 -2972, 1.000000, 0.000000, 0.000000, 0.000000 -2973, 1.000000, 0.000000, 0.000000, 0.000000 -2974, 1.000000, 0.000000, 0.000000, 0.000000 -2975, 1.000000, 0.000000, 0.000000, 0.000000 -2976, 1.000000, 0.000000, 0.000000, 0.000000 -2977, 1.000000, 0.000000, 0.000000, 0.000000 -2978, 1.000000, 0.000000, 0.000000, 0.000000 -2979, 1.000000, 0.000000, 0.000000, 0.000000 -2980, 1.000000, 0.000000, 0.000000, 0.000000 -2981, 1.000000, 0.000000, 0.000000, 0.000000 -2982, 1.000000, 0.000000, 0.000000, 0.000000 -2983, 1.000000, 0.000000, 0.000000, 0.000000 -2984, 1.000000, 0.000000, 0.000000, 0.000000 -2985, 1.000000, 0.000000, 0.000000, 0.000000 -2986, 1.000000, 0.000000, 0.000000, 0.000000 -2987, 1.000000, 0.000000, 0.000000, 0.000000 -2988, 1.000000, 0.000000, 0.000000, 0.000000 -2989, 1.000000, 0.000000, 0.000000, 0.000000 -2990, 1.000000, 0.000000, 0.000000, 0.000000 -2991, 1.000000, 0.000000, 0.000000, 0.000000 -2992, 1.000000, 0.000000, 0.000000, 0.000000 -2993, 1.000000, 0.000000, 0.000000, 0.000000 -2994, 1.000000, 0.000000, 0.000000, 0.000000 -2995, 1.000000, 0.000000, 0.000000, 0.000000 -2996, 1.000000, 0.000000, 0.000000, 0.000000 -2997, 1.000000, 0.000000, 0.000000, 0.000000 -2998, 1.000000, 0.000000, 0.000000, 0.000000 -2999, 1.000000, 0.000000, 0.000000, 0.000000 diff --git a/scripts/trajectories/full-circle-T15.0-w0.2.csv b/scripts/trajectories/full-circle-T15.0-w0.2.csv deleted file mode 100644 index 452858a0066fcc9affbe120318533bb22ad7dd74..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-T15.0-w0.2.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 0.999995, 0.000000, 0.000000, 0.003143 - 0.999980, 0.000000, 0.000000, 0.006285 - 0.999956, 0.000000, 0.000000, 0.009428 - 0.999921, 0.000000, 0.000000, 0.012570 - 0.999877, 0.000000, 0.000000, 0.015713 - 0.999822, 0.000000, 0.000000, 0.018855 - 0.999758, 0.000000, 0.000000, 0.021997 - 0.999684, 0.000000, 0.000000, 0.025138 - 0.999600, 0.000000, 0.000000, 0.028280 - 0.999506, 0.000000, 0.000000, 0.031421 - 0.999403, 0.000000, 0.000000, 0.034562 - 0.999289, 0.000000, 0.000000, 0.037703 - 0.999166, 0.000000, 0.000000, 0.040843 - 0.999032, 0.000000, 0.000000, 0.043983 - 0.998889, 0.000000, 0.000000, 0.047122 - 0.998736, 0.000000, 0.000000, 0.050261 - 0.998573, 0.000000, 0.000000, 0.053399 - 0.998400, 0.000000, 0.000000, 0.056537 - 0.998218, 0.000000, 0.000000, 0.059675 - 0.998025, 0.000000, 0.000000, 0.062811 - 0.997823, 0.000000, 0.000000, 0.065948 - 0.997611, 0.000000, 0.000000, 0.069083 - 0.997389, 0.000000, 0.000000, 0.072218 - 0.997157, 0.000000, 0.000000, 0.075352 - 0.996915, 0.000000, 0.000000, 0.078485 - 0.996664, 0.000000, 0.000000, 0.081618 - 0.996402, 0.000000, 0.000000, 0.084750 - 0.996131, 0.000000, 0.000000, 0.087880 - 0.995850, 0.000000, 0.000000, 0.091010 - 0.995559, 0.000000, 0.000000, 0.094140 - 0.995258, 0.000000, 0.000000, 0.097268 - 0.994948, 0.000000, 0.000000, 0.100395 - 0.994627, 0.000000, 0.000000, 0.103521 - 0.994297, 0.000000, 0.000000, 0.106647 - 0.993957, 0.000000, 0.000000, 0.109771 - 0.993607, 0.000000, 0.000000, 0.112894 - 0.993247, 0.000000, 0.000000, 0.116016 - 0.992878, 0.000000, 0.000000, 0.119137 - 0.992499, 0.000000, 0.000000, 0.122256 - 0.992109, 0.000000, 0.000000, 0.125375 - 0.991711, 0.000000, 0.000000, 0.128492 - 0.991302, 0.000000, 0.000000, 0.131608 - 0.990883, 0.000000, 0.000000, 0.134723 - 0.990455, 0.000000, 0.000000, 0.137836 - 0.990017, 0.000000, 0.000000, 0.140948 - 0.989569, 0.000000, 0.000000, 0.144058 - 0.989112, 0.000000, 0.000000, 0.147168 - 0.988644, 0.000000, 0.000000, 0.150275 - 0.988167, 0.000000, 0.000000, 0.153382 - 0.987680, 0.000000, 0.000000, 0.156486 - 0.987183, 0.000000, 0.000000, 0.159589 - 0.986677, 0.000000, 0.000000, 0.162691 - 0.986161, 0.000000, 0.000000, 0.165791 - 0.985635, 0.000000, 0.000000, 0.168889 - 0.985099, 0.000000, 0.000000, 0.171986 - 0.984554, 0.000000, 0.000000, 0.175081 - 0.983999, 0.000000, 0.000000, 0.178174 - 0.983434, 0.000000, 0.000000, 0.181266 - 0.982860, 0.000000, 0.000000, 0.184355 - 0.982275, 0.000000, 0.000000, 0.187443 - 0.981682, 0.000000, 0.000000, 0.190529 - 0.981078, 0.000000, 0.000000, 0.193613 - 0.980465, 0.000000, 0.000000, 0.196695 - 0.979842, 0.000000, 0.000000, 0.199776 - 0.979209, 0.000000, 0.000000, 0.202854 - 0.978567, 0.000000, 0.000000, 0.205930 - 0.977915, 0.000000, 0.000000, 0.209005 - 0.977253, 0.000000, 0.000000, 0.212077 - 0.976582, 0.000000, 0.000000, 0.215147 - 0.975901, 0.000000, 0.000000, 0.218215 - 0.975210, 0.000000, 0.000000, 0.221281 - 0.974510, 0.000000, 0.000000, 0.224344 - 0.973800, 0.000000, 0.000000, 0.227406 - 0.973081, 0.000000, 0.000000, 0.230465 - 0.972352, 0.000000, 0.000000, 0.233522 - 0.971613, 0.000000, 0.000000, 0.236576 - 0.970865, 0.000000, 0.000000, 0.239629 - 0.970107, 0.000000, 0.000000, 0.242678 - 0.969339, 0.000000, 0.000000, 0.245726 - 0.968562, 0.000000, 0.000000, 0.248771 - 0.967776, 0.000000, 0.000000, 0.251814 - 0.966980, 0.000000, 0.000000, 0.254854 - 0.966174, 0.000000, 0.000000, 0.257891 - 0.965359, 0.000000, 0.000000, 0.260926 - 0.964534, 0.000000, 0.000000, 0.263959 - 0.963700, 0.000000, 0.000000, 0.266989 - 0.962856, 0.000000, 0.000000, 0.270016 - 0.962003, 0.000000, 0.000000, 0.273041 - 0.961140, 0.000000, 0.000000, 0.276062 - 0.960267, 0.000000, 0.000000, 0.279082 - 0.959386, 0.000000, 0.000000, 0.282098 - 0.958494, 0.000000, 0.000000, 0.285112 - 0.957594, 0.000000, 0.000000, 0.288122 - 0.956683, 0.000000, 0.000000, 0.291130 - 0.955764, 0.000000, 0.000000, 0.294135 - 0.954835, 0.000000, 0.000000, 0.297138 - 0.953896, 0.000000, 0.000000, 0.300137 - 0.952948, 0.000000, 0.000000, 0.303133 - 0.951991, 0.000000, 0.000000, 0.306126 - 0.951024, 0.000000, 0.000000, 0.309117 - 0.950048, 0.000000, 0.000000, 0.312104 - 0.949062, 0.000000, 0.000000, 0.315088 - 0.948068, 0.000000, 0.000000, 0.318069 - 0.947063, 0.000000, 0.000000, 0.321047 - 0.946050, 0.000000, 0.000000, 0.324021 - 0.945027, 0.000000, 0.000000, 0.326993 - 0.943994, 0.000000, 0.000000, 0.329961 - 0.942953, 0.000000, 0.000000, 0.332926 - 0.941902, 0.000000, 0.000000, 0.335888 - 0.940842, 0.000000, 0.000000, 0.338846 - 0.939772, 0.000000, 0.000000, 0.341801 - 0.938693, 0.000000, 0.000000, 0.344753 - 0.937605, 0.000000, 0.000000, 0.347701 - 0.936508, 0.000000, 0.000000, 0.350646 - 0.935401, 0.000000, 0.000000, 0.353588 - 0.934286, 0.000000, 0.000000, 0.356525 - 0.933161, 0.000000, 0.000000, 0.359460 - 0.932026, 0.000000, 0.000000, 0.362391 - 0.930883, 0.000000, 0.000000, 0.365318 - 0.929730, 0.000000, 0.000000, 0.368241 - 0.928568, 0.000000, 0.000000, 0.371161 - 0.927397, 0.000000, 0.000000, 0.374078 - 0.926217, 0.000000, 0.000000, 0.376990 - 0.925028, 0.000000, 0.000000, 0.379899 - 0.923829, 0.000000, 0.000000, 0.382804 - 0.922622, 0.000000, 0.000000, 0.385706 - 0.921405, 0.000000, 0.000000, 0.388603 - 0.920179, 0.000000, 0.000000, 0.391497 - 0.918944, 0.000000, 0.000000, 0.394387 - 0.917701, 0.000000, 0.000000, 0.397273 - 0.916448, 0.000000, 0.000000, 0.400155 - 0.915185, 0.000000, 0.000000, 0.403033 - 0.913914, 0.000000, 0.000000, 0.405907 - 0.912634, 0.000000, 0.000000, 0.408777 - 0.911345, 0.000000, 0.000000, 0.411643 - 0.910047, 0.000000, 0.000000, 0.414505 - 0.908740, 0.000000, 0.000000, 0.417363 - 0.907424, 0.000000, 0.000000, 0.420217 - 0.906099, 0.000000, 0.000000, 0.423067 - 0.904765, 0.000000, 0.000000, 0.425912 - 0.903422, 0.000000, 0.000000, 0.428753 - 0.902070, 0.000000, 0.000000, 0.431590 - 0.900709, 0.000000, 0.000000, 0.434423 - 0.899339, 0.000000, 0.000000, 0.437251 - 0.897961, 0.000000, 0.000000, 0.440076 - 0.896573, 0.000000, 0.000000, 0.442895 - 0.895177, 0.000000, 0.000000, 0.445711 - 0.893772, 0.000000, 0.000000, 0.448522 - 0.892358, 0.000000, 0.000000, 0.451328 - 0.890935, 0.000000, 0.000000, 0.454130 - 0.889504, 0.000000, 0.000000, 0.456928 - 0.888063, 0.000000, 0.000000, 0.459721 - 0.886614, 0.000000, 0.000000, 0.462510 - 0.885156, 0.000000, 0.000000, 0.465294 - 0.883690, 0.000000, 0.000000, 0.468073 - 0.882214, 0.000000, 0.000000, 0.470848 - 0.880730, 0.000000, 0.000000, 0.473618 - 0.879237, 0.000000, 0.000000, 0.476384 - 0.877736, 0.000000, 0.000000, 0.479145 - 0.876226, 0.000000, 0.000000, 0.481901 - 0.874707, 0.000000, 0.000000, 0.484652 - 0.873180, 0.000000, 0.000000, 0.487398 - 0.871644, 0.000000, 0.000000, 0.490140 - 0.870099, 0.000000, 0.000000, 0.492877 - 0.868546, 0.000000, 0.000000, 0.495609 - 0.866984, 0.000000, 0.000000, 0.498336 - 0.865414, 0.000000, 0.000000, 0.501058 - 0.863835, 0.000000, 0.000000, 0.503775 - 0.862247, 0.000000, 0.000000, 0.506487 - 0.860651, 0.000000, 0.000000, 0.509195 - 0.859047, 0.000000, 0.000000, 0.511897 - 0.857434, 0.000000, 0.000000, 0.514594 - 0.855813, 0.000000, 0.000000, 0.517286 - 0.854183, 0.000000, 0.000000, 0.519973 - 0.852544, 0.000000, 0.000000, 0.522655 - 0.850898, 0.000000, 0.000000, 0.525332 - 0.849243, 0.000000, 0.000000, 0.528003 - 0.847579, 0.000000, 0.000000, 0.530669 - 0.845907, 0.000000, 0.000000, 0.533330 - 0.844227, 0.000000, 0.000000, 0.535986 - 0.842538, 0.000000, 0.000000, 0.538636 - 0.840841, 0.000000, 0.000000, 0.541282 - 0.839136, 0.000000, 0.000000, 0.543921 - 0.837423, 0.000000, 0.000000, 0.546556 - 0.835701, 0.000000, 0.000000, 0.549185 - 0.833971, 0.000000, 0.000000, 0.551808 - 0.832233, 0.000000, 0.000000, 0.554427 - 0.830486, 0.000000, 0.000000, 0.557039 - 0.828732, 0.000000, 0.000000, 0.559646 - 0.826969, 0.000000, 0.000000, 0.562248 - 0.825198, 0.000000, 0.000000, 0.564844 - 0.823418, 0.000000, 0.000000, 0.567435 - 0.821631, 0.000000, 0.000000, 0.570019 - 0.819836, 0.000000, 0.000000, 0.572599 - 0.818032, 0.000000, 0.000000, 0.575172 - 0.816221, 0.000000, 0.000000, 0.577740 - 0.814401, 0.000000, 0.000000, 0.580303 - 0.812573, 0.000000, 0.000000, 0.582859 - 0.810738, 0.000000, 0.000000, 0.585410 - 0.808894, 0.000000, 0.000000, 0.587955 - 0.807042, 0.000000, 0.000000, 0.590494 - 0.805182, 0.000000, 0.000000, 0.593027 - 0.803315, 0.000000, 0.000000, 0.595555 - 0.801439, 0.000000, 0.000000, 0.598076 - 0.799556, 0.000000, 0.000000, 0.600592 - 0.797664, 0.000000, 0.000000, 0.603102 - 0.795765, 0.000000, 0.000000, 0.605605 - 0.793858, 0.000000, 0.000000, 0.608103 - 0.791943, 0.000000, 0.000000, 0.610595 - 0.790020, 0.000000, 0.000000, 0.613081 - 0.788090, 0.000000, 0.000000, 0.615561 - 0.786151, 0.000000, 0.000000, 0.618034 - 0.784205, 0.000000, 0.000000, 0.620502 - 0.782251, 0.000000, 0.000000, 0.622963 - 0.780290, 0.000000, 0.000000, 0.625418 - 0.778320, 0.000000, 0.000000, 0.627867 - 0.776343, 0.000000, 0.000000, 0.630310 - 0.774359, 0.000000, 0.000000, 0.632747 - 0.772366, 0.000000, 0.000000, 0.635177 - 0.770366, 0.000000, 0.000000, 0.637602 - 0.768359, 0.000000, 0.000000, 0.640019 - 0.766344, 0.000000, 0.000000, 0.642431 - 0.764321, 0.000000, 0.000000, 0.644836 - 0.762291, 0.000000, 0.000000, 0.647235 - 0.760253, 0.000000, 0.000000, 0.649627 - 0.758208, 0.000000, 0.000000, 0.652013 - 0.756155, 0.000000, 0.000000, 0.654393 - 0.754095, 0.000000, 0.000000, 0.656766 - 0.752027, 0.000000, 0.000000, 0.659132 - 0.749952, 0.000000, 0.000000, 0.661493 - 0.747869, 0.000000, 0.000000, 0.663846 - 0.745779, 0.000000, 0.000000, 0.666193 - 0.743682, 0.000000, 0.000000, 0.668534 - 0.741577, 0.000000, 0.000000, 0.670867 - 0.739465, 0.000000, 0.000000, 0.673195 - 0.737346, 0.000000, 0.000000, 0.675515 - 0.735220, 0.000000, 0.000000, 0.677829 - 0.733086, 0.000000, 0.000000, 0.680136 - 0.730945, 0.000000, 0.000000, 0.682437 - 0.728797, 0.000000, 0.000000, 0.684730 - 0.726641, 0.000000, 0.000000, 0.687017 - 0.724478, 0.000000, 0.000000, 0.689297 - 0.722309, 0.000000, 0.000000, 0.691571 - 0.720132, 0.000000, 0.000000, 0.693837 - 0.717948, 0.000000, 0.000000, 0.696097 - 0.715757, 0.000000, 0.000000, 0.698350 - 0.713558, 0.000000, 0.000000, 0.700596 - 0.711353, 0.000000, 0.000000, 0.702835 - 0.709141, 0.000000, 0.000000, 0.705067 - 0.706922, 0.000000, 0.000000, 0.707292 - 0.704695, 0.000000, 0.000000, 0.709510 - 0.702462, 0.000000, 0.000000, 0.711721 - 0.700222, 0.000000, 0.000000, 0.713925 - 0.697975, 0.000000, 0.000000, 0.716122 - 0.695721, 0.000000, 0.000000, 0.718312 - 0.693460, 0.000000, 0.000000, 0.720495 - 0.691192, 0.000000, 0.000000, 0.722671 - 0.688918, 0.000000, 0.000000, 0.724839 - 0.686637, 0.000000, 0.000000, 0.727001 - 0.684349, 0.000000, 0.000000, 0.729155 - 0.682054, 0.000000, 0.000000, 0.731302 - 0.679752, 0.000000, 0.000000, 0.733442 - 0.677444, 0.000000, 0.000000, 0.735575 - 0.675129, 0.000000, 0.000000, 0.737700 - 0.672807, 0.000000, 0.000000, 0.739818 - 0.670479, 0.000000, 0.000000, 0.741929 - 0.668144, 0.000000, 0.000000, 0.744032 - 0.665802, 0.000000, 0.000000, 0.746128 - 0.663454, 0.000000, 0.000000, 0.748217 - 0.661100, 0.000000, 0.000000, 0.750298 - 0.658739, 0.000000, 0.000000, 0.752372 - 0.656371, 0.000000, 0.000000, 0.754438 - 0.653997, 0.000000, 0.000000, 0.756497 - 0.651616, 0.000000, 0.000000, 0.758549 - 0.649229, 0.000000, 0.000000, 0.760593 - 0.646835, 0.000000, 0.000000, 0.762630 - 0.644436, 0.000000, 0.000000, 0.764659 - 0.642029, 0.000000, 0.000000, 0.766680 - 0.639617, 0.000000, 0.000000, 0.768694 - 0.637198, 0.000000, 0.000000, 0.770700 - 0.634773, 0.000000, 0.000000, 0.772699 - 0.632341, 0.000000, 0.000000, 0.774690 - 0.629904, 0.000000, 0.000000, 0.776673 - 0.627460, 0.000000, 0.000000, 0.778649 - 0.625010, 0.000000, 0.000000, 0.780617 - 0.622553, 0.000000, 0.000000, 0.782577 - 0.620091, 0.000000, 0.000000, 0.784530 - 0.617622, 0.000000, 0.000000, 0.786475 - 0.615148, 0.000000, 0.000000, 0.788412 - 0.612667, 0.000000, 0.000000, 0.790341 - 0.610180, 0.000000, 0.000000, 0.792263 - 0.607687, 0.000000, 0.000000, 0.794176 - 0.605189, 0.000000, 0.000000, 0.796082 - 0.602684, 0.000000, 0.000000, 0.797980 - 0.600173, 0.000000, 0.000000, 0.799870 - 0.597656, 0.000000, 0.000000, 0.801752 - 0.595134, 0.000000, 0.000000, 0.803627 - 0.592605, 0.000000, 0.000000, 0.805493 - 0.590071, 0.000000, 0.000000, 0.807351 - 0.587531, 0.000000, 0.000000, 0.809202 - 0.584985, 0.000000, 0.000000, 0.811044 - 0.582433, 0.000000, 0.000000, 0.812878 - 0.579876, 0.000000, 0.000000, 0.814705 - 0.577313, 0.000000, 0.000000, 0.816523 - 0.574744, 0.000000, 0.000000, 0.818333 - 0.572169, 0.000000, 0.000000, 0.820136 - 0.569589, 0.000000, 0.000000, 0.821930 - 0.567003, 0.000000, 0.000000, 0.823716 - 0.564412, 0.000000, 0.000000, 0.825493 - 0.561815, 0.000000, 0.000000, 0.827263 - 0.559212, 0.000000, 0.000000, 0.829025 - 0.556604, 0.000000, 0.000000, 0.830778 - 0.553991, 0.000000, 0.000000, 0.832523 - 0.551371, 0.000000, 0.000000, 0.834260 - 0.548747, 0.000000, 0.000000, 0.835988 - 0.546117, 0.000000, 0.000000, 0.837709 - 0.543482, 0.000000, 0.000000, 0.839421 - 0.540841, 0.000000, 0.000000, 0.841125 - 0.538195, 0.000000, 0.000000, 0.842820 - 0.535544, 0.000000, 0.000000, 0.844507 - 0.532887, 0.000000, 0.000000, 0.846186 - 0.530225, 0.000000, 0.000000, 0.847857 - 0.527558, 0.000000, 0.000000, 0.849519 - 0.524886, 0.000000, 0.000000, 0.851173 - 0.522208, 0.000000, 0.000000, 0.852818 - 0.519526, 0.000000, 0.000000, 0.854455 - 0.516838, 0.000000, 0.000000, 0.856083 - 0.514145, 0.000000, 0.000000, 0.857703 - 0.511447, 0.000000, 0.000000, 0.859315 - 0.508744, 0.000000, 0.000000, 0.860918 - 0.506036, 0.000000, 0.000000, 0.862512 - 0.503323, 0.000000, 0.000000, 0.864099 - 0.500605, 0.000000, 0.000000, 0.865676 - 0.497882, 0.000000, 0.000000, 0.867245 - 0.495154, 0.000000, 0.000000, 0.868805 - 0.492421, 0.000000, 0.000000, 0.870357 - 0.489683, 0.000000, 0.000000, 0.871900 - 0.486941, 0.000000, 0.000000, 0.873435 - 0.484194, 0.000000, 0.000000, 0.874961 - 0.481442, 0.000000, 0.000000, 0.876478 - 0.478685, 0.000000, 0.000000, 0.877987 - 0.475923, 0.000000, 0.000000, 0.879487 - 0.473157, 0.000000, 0.000000, 0.880978 - 0.470386, 0.000000, 0.000000, 0.882461 - 0.467610, 0.000000, 0.000000, 0.883935 - 0.464830, 0.000000, 0.000000, 0.885400 - 0.462045, 0.000000, 0.000000, 0.886856 - 0.459256, 0.000000, 0.000000, 0.888304 - 0.456462, 0.000000, 0.000000, 0.889743 - 0.453664, 0.000000, 0.000000, 0.891173 - 0.450861, 0.000000, 0.000000, 0.892594 - 0.448054, 0.000000, 0.000000, 0.894007 - 0.445242, 0.000000, 0.000000, 0.895410 - 0.442426, 0.000000, 0.000000, 0.896805 - 0.439605, 0.000000, 0.000000, 0.898191 - 0.436780, 0.000000, 0.000000, 0.899568 - 0.433951, 0.000000, 0.000000, 0.900936 - 0.431118, 0.000000, 0.000000, 0.902296 - 0.428280, 0.000000, 0.000000, 0.903646 - 0.425438, 0.000000, 0.000000, 0.904988 - 0.422592, 0.000000, 0.000000, 0.906320 - 0.419742, 0.000000, 0.000000, 0.907644 - 0.416887, 0.000000, 0.000000, 0.908958 - 0.414029, 0.000000, 0.000000, 0.910264 - 0.411166, 0.000000, 0.000000, 0.911561 - 0.408299, 0.000000, 0.000000, 0.912848 - 0.405428, 0.000000, 0.000000, 0.914127 - 0.402554, 0.000000, 0.000000, 0.915396 - 0.399675, 0.000000, 0.000000, 0.916657 - 0.396792, 0.000000, 0.000000, 0.917908 - 0.393906, 0.000000, 0.000000, 0.919151 - 0.391015, 0.000000, 0.000000, 0.920384 - 0.388121, 0.000000, 0.000000, 0.921609 - 0.385222, 0.000000, 0.000000, 0.922824 - 0.382320, 0.000000, 0.000000, 0.924030 - 0.379415, 0.000000, 0.000000, 0.925227 - 0.376505, 0.000000, 0.000000, 0.926415 - 0.373592, 0.000000, 0.000000, 0.927593 - 0.370675, 0.000000, 0.000000, 0.928763 - 0.367754, 0.000000, 0.000000, 0.929923 - 0.364830, 0.000000, 0.000000, 0.931074 - 0.361902, 0.000000, 0.000000, 0.932216 - 0.358971, 0.000000, 0.000000, 0.933349 - 0.356036, 0.000000, 0.000000, 0.934472 - 0.353098, 0.000000, 0.000000, 0.935587 - 0.350156, 0.000000, 0.000000, 0.936692 - 0.347210, 0.000000, 0.000000, 0.937787 - 0.344261, 0.000000, 0.000000, 0.938874 - 0.341309, 0.000000, 0.000000, 0.939951 - 0.338354, 0.000000, 0.000000, 0.941019 - 0.335395, 0.000000, 0.000000, 0.942078 - 0.332432, 0.000000, 0.000000, 0.943127 - 0.329467, 0.000000, 0.000000, 0.944167 - 0.326498, 0.000000, 0.000000, 0.945198 - 0.323526, 0.000000, 0.000000, 0.946219 - 0.320551, 0.000000, 0.000000, 0.947231 - 0.317572, 0.000000, 0.000000, 0.948234 - 0.314591, 0.000000, 0.000000, 0.949227 - 0.311606, 0.000000, 0.000000, 0.950211 - 0.308618, 0.000000, 0.000000, 0.951186 - 0.305628, 0.000000, 0.000000, 0.952151 - 0.302634, 0.000000, 0.000000, 0.953107 - 0.299637, 0.000000, 0.000000, 0.954053 - 0.296637, 0.000000, 0.000000, 0.954990 - 0.293635, 0.000000, 0.000000, 0.955918 - 0.290629, 0.000000, 0.000000, 0.956836 - 0.287621, 0.000000, 0.000000, 0.957744 - 0.284610, 0.000000, 0.000000, 0.958644 - 0.281595, 0.000000, 0.000000, 0.959533 - 0.278579, 0.000000, 0.000000, 0.960413 - 0.275559, 0.000000, 0.000000, 0.961284 - 0.272537, 0.000000, 0.000000, 0.962145 - 0.269512, 0.000000, 0.000000, 0.962997 - 0.266484, 0.000000, 0.000000, 0.963839 - 0.263454, 0.000000, 0.000000, 0.964672 - 0.260421, 0.000000, 0.000000, 0.965495 - 0.257385, 0.000000, 0.000000, 0.966309 - 0.254347, 0.000000, 0.000000, 0.967113 - 0.251307, 0.000000, 0.000000, 0.967907 - 0.248264, 0.000000, 0.000000, 0.968692 - 0.245218, 0.000000, 0.000000, 0.969468 - 0.242170, 0.000000, 0.000000, 0.970234 - 0.239120, 0.000000, 0.000000, 0.970990 - 0.236067, 0.000000, 0.000000, 0.971737 - 0.233012, 0.000000, 0.000000, 0.972474 - 0.229955, 0.000000, 0.000000, 0.973201 - 0.226896, 0.000000, 0.000000, 0.973919 - 0.223834, 0.000000, 0.000000, 0.974627 - 0.220770, 0.000000, 0.000000, 0.975326 - 0.217704, 0.000000, 0.000000, 0.976015 - 0.214635, 0.000000, 0.000000, 0.976694 - 0.211565, 0.000000, 0.000000, 0.977364 - 0.208492, 0.000000, 0.000000, 0.978024 - 0.205418, 0.000000, 0.000000, 0.978674 - 0.202341, 0.000000, 0.000000, 0.979315 - 0.199262, 0.000000, 0.000000, 0.979946 - 0.196182, 0.000000, 0.000000, 0.980568 - 0.193099, 0.000000, 0.000000, 0.981179 - 0.190015, 0.000000, 0.000000, 0.981781 - 0.186929, 0.000000, 0.000000, 0.982374 - 0.183840, 0.000000, 0.000000, 0.982956 - 0.180750, 0.000000, 0.000000, 0.983529 - 0.177659, 0.000000, 0.000000, 0.984092 - 0.174565, 0.000000, 0.000000, 0.984646 - 0.171470, 0.000000, 0.000000, 0.985189 - 0.168373, 0.000000, 0.000000, 0.985723 - 0.165274, 0.000000, 0.000000, 0.986248 - 0.162174, 0.000000, 0.000000, 0.986762 - 0.159072, 0.000000, 0.000000, 0.987267 - 0.155969, 0.000000, 0.000000, 0.987762 - 0.152864, 0.000000, 0.000000, 0.988247 - 0.149757, 0.000000, 0.000000, 0.988723 - 0.146650, 0.000000, 0.000000, 0.989189 - 0.143540, 0.000000, 0.000000, 0.989644 - 0.140429, 0.000000, 0.000000, 0.990091 - 0.137317, 0.000000, 0.000000, 0.990527 - 0.134204, 0.000000, 0.000000, 0.990954 - 0.131089, 0.000000, 0.000000, 0.991371 - 0.127973, 0.000000, 0.000000, 0.991778 - 0.124855, 0.000000, 0.000000, 0.992175 - 0.121736, 0.000000, 0.000000, 0.992562 - 0.118617, 0.000000, 0.000000, 0.992940 - 0.115496, 0.000000, 0.000000, 0.993308 - 0.112373, 0.000000, 0.000000, 0.993666 - 0.109250, 0.000000, 0.000000, 0.994014 - 0.106126, 0.000000, 0.000000, 0.994353 - 0.103000, 0.000000, 0.000000, 0.994681 - 0.099874, 0.000000, 0.000000, 0.995000 - 0.096747, 0.000000, 0.000000, 0.995309 - 0.093618, 0.000000, 0.000000, 0.995608 - 0.090489, 0.000000, 0.000000, 0.995897 - 0.087359, 0.000000, 0.000000, 0.996177 - 0.084228, 0.000000, 0.000000, 0.996447 - 0.081096, 0.000000, 0.000000, 0.996706 - 0.077963, 0.000000, 0.000000, 0.996956 - 0.074830, 0.000000, 0.000000, 0.997196 - 0.071695, 0.000000, 0.000000, 0.997427 - 0.068560, 0.000000, 0.000000, 0.997647 - 0.065425, 0.000000, 0.000000, 0.997857 - 0.062289, 0.000000, 0.000000, 0.998058 - 0.059152, 0.000000, 0.000000, 0.998249 - 0.056014, 0.000000, 0.000000, 0.998430 - 0.052876, 0.000000, 0.000000, 0.998601 - 0.049738, 0.000000, 0.000000, 0.998762 - 0.046599, 0.000000, 0.000000, 0.998914 - 0.043459, 0.000000, 0.000000, 0.999055 - 0.040320, 0.000000, 0.000000, 0.999187 - 0.037179, 0.000000, 0.000000, 0.999309 - 0.034039, 0.000000, 0.000000, 0.999421 - 0.030898, 0.000000, 0.000000, 0.999523 - 0.027756, 0.000000, 0.000000, 0.999615 - 0.024615, 0.000000, 0.000000, 0.999697 - 0.021473, 0.000000, 0.000000, 0.999769 - 0.018331, 0.000000, 0.000000, 0.999832 - 0.015189, 0.000000, 0.000000, 0.999885 - 0.012046, 0.000000, 0.000000, 0.999927 - 0.008904, 0.000000, 0.000000, 0.999960 - 0.005761, 0.000000, 0.000000, 0.999983 - 0.002619, 0.000000, 0.000000, 0.999997 - -0.000524, -0.000000, 0.000000, 1.000000 - -0.003666, -0.000000, 0.000000, 0.999993 - -0.006809, -0.000000, 0.000000, 0.999977 - -0.009952, -0.000000, 0.000000, 0.999950 - -0.013094, -0.000000, 0.000000, 0.999914 - -0.016236, -0.000000, 0.000000, 0.999868 - -0.019378, -0.000000, 0.000000, 0.999812 - -0.022520, -0.000000, 0.000000, 0.999746 - -0.025662, -0.000000, 0.000000, 0.999671 - -0.028804, -0.000000, 0.000000, 0.999585 - -0.031945, -0.000000, 0.000000, 0.999490 - -0.035086, -0.000000, 0.000000, 0.999384 - -0.038226, -0.000000, 0.000000, 0.999269 - -0.041366, -0.000000, 0.000000, 0.999144 - -0.044506, -0.000000, 0.000000, 0.999009 - -0.047645, -0.000000, 0.000000, 0.998864 - -0.050784, -0.000000, 0.000000, 0.998710 - -0.053922, -0.000000, 0.000000, 0.998545 - -0.057060, -0.000000, 0.000000, 0.998371 - -0.060198, -0.000000, 0.000000, 0.998186 - -0.063334, -0.000000, 0.000000, 0.997992 - -0.066470, -0.000000, 0.000000, 0.997788 - -0.069606, -0.000000, 0.000000, 0.997575 - -0.072740, -0.000000, 0.000000, 0.997351 - -0.075874, -0.000000, 0.000000, 0.997117 - -0.079007, -0.000000, 0.000000, 0.996874 - -0.082140, -0.000000, 0.000000, 0.996621 - -0.085271, -0.000000, 0.000000, 0.996358 - -0.088402, -0.000000, 0.000000, 0.996085 - -0.091532, -0.000000, 0.000000, 0.995802 - -0.094661, -0.000000, 0.000000, 0.995510 - -0.097789, -0.000000, 0.000000, 0.995207 - -0.100916, -0.000000, 0.000000, 0.994895 - -0.104042, -0.000000, 0.000000, 0.994573 - -0.107167, -0.000000, 0.000000, 0.994241 - -0.110291, -0.000000, 0.000000, 0.993899 - -0.113414, -0.000000, 0.000000, 0.993548 - -0.116536, -0.000000, 0.000000, 0.993186 - -0.119657, -0.000000, 0.000000, 0.992815 - -0.122776, -0.000000, 0.000000, 0.992434 - -0.125894, -0.000000, 0.000000, 0.992044 - -0.129011, -0.000000, 0.000000, 0.991643 - -0.132127, -0.000000, 0.000000, 0.991233 - -0.135242, -0.000000, 0.000000, 0.990813 - -0.138355, -0.000000, 0.000000, 0.990383 - -0.141466, -0.000000, 0.000000, 0.989943 - -0.144577, -0.000000, 0.000000, 0.989494 - -0.147686, -0.000000, 0.000000, 0.989034 - -0.150793, -0.000000, 0.000000, 0.988565 - -0.153899, -0.000000, 0.000000, 0.988087 - -0.157003, -0.000000, 0.000000, 0.987598 - -0.160106, -0.000000, 0.000000, 0.987100 - -0.163208, -0.000000, 0.000000, 0.986592 - -0.166307, -0.000000, 0.000000, 0.986074 - -0.169405, -0.000000, 0.000000, 0.985546 - -0.172502, -0.000000, 0.000000, 0.985009 - -0.175596, -0.000000, 0.000000, 0.984462 - -0.178689, -0.000000, 0.000000, 0.983906 - -0.181781, -0.000000, 0.000000, 0.983339 - -0.184870, -0.000000, 0.000000, 0.982763 - -0.187958, -0.000000, 0.000000, 0.982177 - -0.191043, -0.000000, 0.000000, 0.981582 - -0.194127, -0.000000, 0.000000, 0.980976 - -0.197209, -0.000000, 0.000000, 0.980361 - -0.200289, -0.000000, 0.000000, 0.979737 - -0.203367, -0.000000, 0.000000, 0.979103 - -0.206443, -0.000000, 0.000000, 0.978459 - -0.209517, -0.000000, 0.000000, 0.977805 - -0.212589, -0.000000, 0.000000, 0.977142 - -0.215658, -0.000000, 0.000000, 0.976469 - -0.218726, -0.000000, 0.000000, 0.975786 - -0.221791, -0.000000, 0.000000, 0.975094 - -0.224855, -0.000000, 0.000000, 0.974392 - -0.227916, -0.000000, 0.000000, 0.973681 - -0.230975, -0.000000, 0.000000, 0.972960 - -0.234031, -0.000000, 0.000000, 0.972229 - -0.237085, -0.000000, 0.000000, 0.971489 - -0.240137, -0.000000, 0.000000, 0.970739 - -0.243187, -0.000000, 0.000000, 0.969980 - -0.246234, -0.000000, 0.000000, 0.969210 - -0.249278, -0.000000, 0.000000, 0.968432 - -0.252321, -0.000000, 0.000000, 0.967644 - -0.255360, -0.000000, 0.000000, 0.966846 - -0.258397, -0.000000, 0.000000, 0.966039 - -0.261432, -0.000000, 0.000000, 0.965222 - -0.264464, -0.000000, 0.000000, 0.964396 - -0.267494, -0.000000, 0.000000, 0.963560 - -0.270520, -0.000000, 0.000000, 0.962714 - -0.273544, -0.000000, 0.000000, 0.961859 - -0.276566, -0.000000, 0.000000, 0.960995 - -0.279585, -0.000000, 0.000000, 0.960121 - -0.282600, -0.000000, 0.000000, 0.959238 - -0.285614, -0.000000, 0.000000, 0.958345 - -0.288624, -0.000000, 0.000000, 0.957443 - -0.291631, -0.000000, 0.000000, 0.956531 - -0.294636, -0.000000, 0.000000, 0.955610 - -0.297638, -0.000000, 0.000000, 0.954679 - -0.300636, -0.000000, 0.000000, 0.953739 - -0.303632, -0.000000, 0.000000, 0.952789 - -0.306625, -0.000000, 0.000000, 0.951830 - -0.309615, -0.000000, 0.000000, 0.950862 - -0.312601, -0.000000, 0.000000, 0.949884 - -0.315585, -0.000000, 0.000000, 0.948897 - -0.318565, -0.000000, 0.000000, 0.947901 - -0.321543, -0.000000, 0.000000, 0.946895 - -0.324517, -0.000000, 0.000000, 0.945880 - -0.327488, -0.000000, 0.000000, 0.944855 - -0.330456, -0.000000, 0.000000, 0.943822 - -0.333420, -0.000000, 0.000000, 0.942778 - -0.336381, -0.000000, 0.000000, 0.941726 - -0.339339, -0.000000, 0.000000, 0.940664 - -0.342294, -0.000000, 0.000000, 0.939593 - -0.345245, -0.000000, 0.000000, 0.938513 - -0.348192, -0.000000, 0.000000, 0.937423 - -0.351137, -0.000000, 0.000000, 0.936324 - -0.354077, -0.000000, 0.000000, 0.935216 - -0.357015, -0.000000, 0.000000, 0.934099 - -0.359948, -0.000000, 0.000000, 0.932972 - -0.362879, -0.000000, 0.000000, 0.931836 - -0.365805, -0.000000, 0.000000, 0.930691 - -0.368728, -0.000000, 0.000000, 0.929537 - -0.371648, -0.000000, 0.000000, 0.928374 - -0.374563, -0.000000, 0.000000, 0.927201 - -0.377475, -0.000000, 0.000000, 0.926020 - -0.380384, -0.000000, 0.000000, 0.924829 - -0.383288, -0.000000, 0.000000, 0.923629 - -0.386189, -0.000000, 0.000000, 0.922420 - -0.389086, -0.000000, 0.000000, 0.921201 - -0.391979, -0.000000, 0.000000, 0.919974 - -0.394868, -0.000000, 0.000000, 0.918738 - -0.397753, -0.000000, 0.000000, 0.917492 - -0.400635, -0.000000, 0.000000, 0.916238 - -0.403512, -0.000000, 0.000000, 0.914974 - -0.406386, -0.000000, 0.000000, 0.913702 - -0.409255, -0.000000, 0.000000, 0.912420 - -0.412121, -0.000000, 0.000000, 0.911129 - -0.414982, -0.000000, 0.000000, 0.909830 - -0.417839, -0.000000, 0.000000, 0.908521 - -0.420692, -0.000000, 0.000000, 0.907203 - -0.423541, -0.000000, 0.000000, 0.905877 - -0.426386, -0.000000, 0.000000, 0.904541 - -0.429226, -0.000000, 0.000000, 0.903197 - -0.432063, -0.000000, 0.000000, 0.901844 - -0.434895, -0.000000, 0.000000, 0.900481 - -0.437722, -0.000000, 0.000000, 0.899110 - -0.440546, -0.000000, 0.000000, 0.897730 - -0.443365, -0.000000, 0.000000, 0.896341 - -0.446180, -0.000000, 0.000000, 0.894943 - -0.448990, -0.000000, 0.000000, 0.893537 - -0.451796, -0.000000, 0.000000, 0.892121 - -0.454597, -0.000000, 0.000000, 0.890697 - -0.457394, -0.000000, 0.000000, 0.889264 - -0.460186, -0.000000, 0.000000, 0.887822 - -0.462974, -0.000000, 0.000000, 0.886372 - -0.465757, -0.000000, 0.000000, 0.884912 - -0.468536, -0.000000, 0.000000, 0.883444 - -0.471310, -0.000000, 0.000000, 0.881968 - -0.474079, -0.000000, 0.000000, 0.880482 - -0.476844, -0.000000, 0.000000, 0.878988 - -0.479604, -0.000000, 0.000000, 0.877485 - -0.482359, -0.000000, 0.000000, 0.875973 - -0.485110, -0.000000, 0.000000, 0.874453 - -0.487856, -0.000000, 0.000000, 0.872924 - -0.490596, -0.000000, 0.000000, 0.871387 - -0.493332, -0.000000, 0.000000, 0.869841 - -0.496064, -0.000000, 0.000000, 0.868286 - -0.498790, -0.000000, 0.000000, 0.866723 - -0.501511, -0.000000, 0.000000, 0.865151 - -0.504228, -0.000000, 0.000000, 0.863571 - -0.506939, -0.000000, 0.000000, 0.861982 - -0.509645, -0.000000, 0.000000, 0.860385 - -0.512347, -0.000000, 0.000000, 0.858779 - -0.515043, -0.000000, 0.000000, 0.857164 - -0.517734, -0.000000, 0.000000, 0.855541 - -0.520420, -0.000000, 0.000000, 0.853910 - -0.523101, -0.000000, 0.000000, 0.852270 - -0.525777, -0.000000, 0.000000, 0.850622 - -0.528448, -0.000000, 0.000000, 0.848966 - -0.531113, -0.000000, 0.000000, 0.847301 - -0.533773, -0.000000, 0.000000, 0.845628 - -0.536428, -0.000000, 0.000000, 0.843946 - -0.539078, -0.000000, 0.000000, 0.842256 - -0.541722, -0.000000, 0.000000, 0.840558 - -0.544361, -0.000000, 0.000000, 0.838851 - -0.546994, -0.000000, 0.000000, 0.837136 - -0.549622, -0.000000, 0.000000, 0.835413 - -0.552245, -0.000000, 0.000000, 0.833682 - -0.554862, -0.000000, 0.000000, 0.831942 - -0.557474, -0.000000, 0.000000, 0.830194 - -0.560080, -0.000000, 0.000000, 0.828438 - -0.562681, -0.000000, 0.000000, 0.826674 - -0.565276, -0.000000, 0.000000, 0.824902 - -0.567866, -0.000000, 0.000000, 0.823121 - -0.570450, -0.000000, 0.000000, 0.821333 - -0.573028, -0.000000, 0.000000, 0.819536 - -0.575601, -0.000000, 0.000000, 0.817731 - -0.578168, -0.000000, 0.000000, 0.815918 - -0.580729, -0.000000, 0.000000, 0.814097 - -0.583285, -0.000000, 0.000000, 0.812268 - -0.585834, -0.000000, 0.000000, 0.810431 - -0.588378, -0.000000, 0.000000, 0.808586 - -0.590917, -0.000000, 0.000000, 0.806733 - -0.593449, -0.000000, 0.000000, 0.804872 - -0.595975, -0.000000, 0.000000, 0.803003 - -0.598496, -0.000000, 0.000000, 0.801126 - -0.601011, -0.000000, 0.000000, 0.799241 - -0.603519, -0.000000, 0.000000, 0.797348 - -0.606022, -0.000000, 0.000000, 0.795448 - -0.608519, -0.000000, 0.000000, 0.793539 - -0.611010, -0.000000, 0.000000, 0.791623 - -0.613495, -0.000000, 0.000000, 0.789699 - -0.615973, -0.000000, 0.000000, 0.787767 - -0.618446, -0.000000, 0.000000, 0.785827 - -0.620912, -0.000000, 0.000000, 0.783880 - -0.623373, -0.000000, 0.000000, 0.781925 - -0.625827, -0.000000, 0.000000, 0.779962 - -0.628275, -0.000000, 0.000000, 0.777991 - -0.630717, -0.000000, 0.000000, 0.776013 - -0.633153, -0.000000, 0.000000, 0.774027 - -0.635582, -0.000000, 0.000000, 0.772033 - -0.638005, -0.000000, 0.000000, 0.770032 - -0.640422, -0.000000, 0.000000, 0.768023 - -0.642832, -0.000000, 0.000000, 0.766007 - -0.645236, -0.000000, 0.000000, 0.763983 - -0.647634, -0.000000, 0.000000, 0.761952 - -0.650025, -0.000000, 0.000000, 0.759913 - -0.652410, -0.000000, 0.000000, 0.757866 - -0.654789, -0.000000, 0.000000, 0.755812 - -0.657161, -0.000000, 0.000000, 0.753750 - -0.659526, -0.000000, 0.000000, 0.751682 - -0.661885, -0.000000, 0.000000, 0.749605 - -0.664238, -0.000000, 0.000000, 0.747521 - -0.666584, -0.000000, 0.000000, 0.745430 - -0.668923, -0.000000, 0.000000, 0.743332 - -0.671256, -0.000000, 0.000000, 0.741226 - -0.673582, -0.000000, 0.000000, 0.739113 - -0.675901, -0.000000, 0.000000, 0.736992 - -0.678214, -0.000000, 0.000000, 0.734864 - -0.680520, -0.000000, 0.000000, 0.732729 - -0.682819, -0.000000, 0.000000, 0.730587 - -0.685112, -0.000000, 0.000000, 0.728438 - -0.687398, -0.000000, 0.000000, 0.726281 - -0.689677, -0.000000, 0.000000, 0.724117 - -0.691949, -0.000000, 0.000000, 0.721946 - -0.694214, -0.000000, 0.000000, 0.719768 - -0.696473, -0.000000, 0.000000, 0.717583 - -0.698725, -0.000000, 0.000000, 0.715391 - -0.700969, -0.000000, 0.000000, 0.713191 - -0.703207, -0.000000, 0.000000, 0.710985 - -0.705438, -0.000000, 0.000000, 0.708771 - -0.707662, -0.000000, 0.000000, 0.706551 - -0.709879, -0.000000, 0.000000, 0.704324 - -0.712089, -0.000000, 0.000000, 0.702089 - -0.714292, -0.000000, 0.000000, 0.699848 - -0.716488, -0.000000, 0.000000, 0.697600 - -0.718676, -0.000000, 0.000000, 0.695345 - -0.720858, -0.000000, 0.000000, 0.693083 - -0.723033, -0.000000, 0.000000, 0.690814 - -0.725200, -0.000000, 0.000000, 0.688538 - -0.727360, -0.000000, 0.000000, 0.686256 - -0.729513, -0.000000, 0.000000, 0.683967 - -0.731659, -0.000000, 0.000000, 0.681671 - -0.733798, -0.000000, 0.000000, 0.679368 - -0.735929, -0.000000, 0.000000, 0.677058 - -0.738053, -0.000000, 0.000000, 0.674742 - -0.740170, -0.000000, 0.000000, 0.672420 - -0.742280, -0.000000, 0.000000, 0.670090 - -0.744382, -0.000000, 0.000000, 0.667754 - -0.746477, -0.000000, 0.000000, 0.665412 - -0.748564, -0.000000, 0.000000, 0.663062 - -0.750644, -0.000000, 0.000000, 0.660707 - -0.752717, -0.000000, 0.000000, 0.658344 - -0.754782, -0.000000, 0.000000, 0.655976 - -0.756840, -0.000000, 0.000000, 0.653600 - -0.758890, -0.000000, 0.000000, 0.651219 - -0.760933, -0.000000, 0.000000, 0.648830 - -0.762968, -0.000000, 0.000000, 0.646436 - -0.764996, -0.000000, 0.000000, 0.644035 - -0.767016, -0.000000, 0.000000, 0.641628 - -0.769029, -0.000000, 0.000000, 0.639214 - -0.771034, -0.000000, 0.000000, 0.636794 - -0.773031, -0.000000, 0.000000, 0.634368 - -0.775021, -0.000000, 0.000000, 0.631935 - -0.777003, -0.000000, 0.000000, 0.629497 - -0.778978, -0.000000, 0.000000, 0.627052 - -0.780944, -0.000000, 0.000000, 0.624601 - -0.782903, -0.000000, 0.000000, 0.622143 - -0.784855, -0.000000, 0.000000, 0.619680 - -0.786798, -0.000000, 0.000000, 0.617210 - -0.788734, -0.000000, 0.000000, 0.614735 - -0.790662, -0.000000, 0.000000, 0.612253 - -0.792582, -0.000000, 0.000000, 0.609765 - -0.794494, -0.000000, 0.000000, 0.607271 - -0.796399, -0.000000, 0.000000, 0.604772 - -0.798296, -0.000000, 0.000000, 0.602266 - -0.800184, -0.000000, 0.000000, 0.599754 - -0.802065, -0.000000, 0.000000, 0.597236 - -0.803938, -0.000000, 0.000000, 0.594713 - -0.805803, -0.000000, 0.000000, 0.592183 - -0.807660, -0.000000, 0.000000, 0.589648 - -0.809509, -0.000000, 0.000000, 0.587107 - -0.811350, -0.000000, 0.000000, 0.584560 - -0.813183, -0.000000, 0.000000, 0.582008 - -0.815008, -0.000000, 0.000000, 0.579449 - -0.816825, -0.000000, 0.000000, 0.576885 - -0.818634, -0.000000, 0.000000, 0.574315 - -0.820435, -0.000000, 0.000000, 0.571740 - -0.822228, -0.000000, 0.000000, 0.569158 - -0.824012, -0.000000, 0.000000, 0.566572 - -0.825789, -0.000000, 0.000000, 0.563979 - -0.827557, -0.000000, 0.000000, 0.561381 - -0.829317, -0.000000, 0.000000, 0.558778 - -0.831069, -0.000000, 0.000000, 0.556169 - -0.832813, -0.000000, 0.000000, 0.553554 - -0.834549, -0.000000, 0.000000, 0.550934 - -0.836276, -0.000000, 0.000000, 0.548309 - -0.837995, -0.000000, 0.000000, 0.545678 - -0.839706, -0.000000, 0.000000, 0.543042 - -0.841408, -0.000000, 0.000000, 0.540400 - -0.843102, -0.000000, 0.000000, 0.537754 - -0.844788, -0.000000, 0.000000, 0.535101 - -0.846465, -0.000000, 0.000000, 0.532444 - -0.848134, -0.000000, 0.000000, 0.529781 - -0.849795, -0.000000, 0.000000, 0.527113 - -0.851447, -0.000000, 0.000000, 0.524440 - -0.853091, -0.000000, 0.000000, 0.521761 - -0.854727, -0.000000, 0.000000, 0.519078 - -0.856354, -0.000000, 0.000000, 0.516389 - -0.857973, -0.000000, 0.000000, 0.513696 - -0.859583, -0.000000, 0.000000, 0.510997 - -0.861184, -0.000000, 0.000000, 0.508293 - -0.862777, -0.000000, 0.000000, 0.505584 - -0.864362, -0.000000, 0.000000, 0.502870 - -0.865938, -0.000000, 0.000000, 0.500151 - -0.867506, -0.000000, 0.000000, 0.497427 - -0.869065, -0.000000, 0.000000, 0.494699 - -0.870615, -0.000000, 0.000000, 0.491965 - -0.872157, -0.000000, 0.000000, 0.489227 - -0.873690, -0.000000, 0.000000, 0.486483 - -0.875214, -0.000000, 0.000000, 0.483735 - -0.876730, -0.000000, 0.000000, 0.480982 - -0.878237, -0.000000, 0.000000, 0.478225 - -0.879736, -0.000000, 0.000000, 0.475462 - -0.881226, -0.000000, 0.000000, 0.472695 - -0.882707, -0.000000, 0.000000, 0.469924 - -0.884179, -0.000000, 0.000000, 0.467147 - -0.885643, -0.000000, 0.000000, 0.464366 - -0.887098, -0.000000, 0.000000, 0.461581 - -0.888544, -0.000000, 0.000000, 0.458791 - -0.889982, -0.000000, 0.000000, 0.455996 - -0.891410, -0.000000, 0.000000, 0.453197 - -0.892830, -0.000000, 0.000000, 0.450393 - -0.894241, -0.000000, 0.000000, 0.447585 - -0.895643, -0.000000, 0.000000, 0.444773 - -0.897037, -0.000000, 0.000000, 0.441956 - -0.898421, -0.000000, 0.000000, 0.439135 - -0.899797, -0.000000, 0.000000, 0.436309 - -0.901164, -0.000000, 0.000000, 0.433479 - -0.902521, -0.000000, 0.000000, 0.430645 - -0.903870, -0.000000, 0.000000, 0.427807 - -0.905210, -0.000000, 0.000000, 0.424964 - -0.906541, -0.000000, 0.000000, 0.422117 - -0.907863, -0.000000, 0.000000, 0.419266 - -0.909177, -0.000000, 0.000000, 0.416411 - -0.910481, -0.000000, 0.000000, 0.413552 - -0.911776, -0.000000, 0.000000, 0.410688 - -0.913062, -0.000000, 0.000000, 0.407821 - -0.914339, -0.000000, 0.000000, 0.404950 - -0.915607, -0.000000, 0.000000, 0.402074 - -0.916866, -0.000000, 0.000000, 0.399195 - -0.918116, -0.000000, 0.000000, 0.396311 - -0.919357, -0.000000, 0.000000, 0.393424 - -0.920589, -0.000000, 0.000000, 0.390533 - -0.921812, -0.000000, 0.000000, 0.387638 - -0.923025, -0.000000, 0.000000, 0.384739 - -0.924230, -0.000000, 0.000000, 0.381836 - -0.925425, -0.000000, 0.000000, 0.378930 - -0.926612, -0.000000, 0.000000, 0.376020 - -0.927789, -0.000000, 0.000000, 0.373106 - -0.928957, -0.000000, 0.000000, 0.370188 - -0.930115, -0.000000, 0.000000, 0.367267 - -0.931265, -0.000000, 0.000000, 0.364342 - -0.932405, -0.000000, 0.000000, 0.361414 - -0.933537, -0.000000, 0.000000, 0.358482 - -0.934659, -0.000000, 0.000000, 0.355547 - -0.935771, -0.000000, 0.000000, 0.352607 - -0.936875, -0.000000, 0.000000, 0.349665 - -0.937969, -0.000000, 0.000000, 0.346719 - -0.939054, -0.000000, 0.000000, 0.343770 - -0.940130, -0.000000, 0.000000, 0.340817 - -0.941196, -0.000000, 0.000000, 0.337861 - -0.942253, -0.000000, 0.000000, 0.334901 - -0.943301, -0.000000, 0.000000, 0.331938 - -0.944340, -0.000000, 0.000000, 0.328972 - -0.945369, -0.000000, 0.000000, 0.326003 - -0.946389, -0.000000, 0.000000, 0.323030 - -0.947399, -0.000000, 0.000000, 0.320055 - -0.948400, -0.000000, 0.000000, 0.317076 - -0.949392, -0.000000, 0.000000, 0.314094 - -0.950374, -0.000000, 0.000000, 0.311108 - -0.951347, -0.000000, 0.000000, 0.308120 - -0.952311, -0.000000, 0.000000, 0.305129 - -0.953265, -0.000000, 0.000000, 0.302135 - -0.954210, -0.000000, 0.000000, 0.299137 - -0.955145, -0.000000, 0.000000, 0.296137 - -0.956071, -0.000000, 0.000000, 0.293134 - -0.956988, -0.000000, 0.000000, 0.290128 - -0.957895, -0.000000, 0.000000, 0.287119 - -0.958792, -0.000000, 0.000000, 0.284107 - -0.959681, -0.000000, 0.000000, 0.281093 - -0.960559, -0.000000, 0.000000, 0.278076 - -0.961428, -0.000000, 0.000000, 0.275056 - -0.962288, -0.000000, 0.000000, 0.272033 - -0.963138, -0.000000, 0.000000, 0.269007 - -0.963979, -0.000000, 0.000000, 0.265979 - -0.964810, -0.000000, 0.000000, 0.262948 - -0.965631, -0.000000, 0.000000, 0.259915 - -0.966444, -0.000000, 0.000000, 0.256879 - -0.967246, -0.000000, 0.000000, 0.253841 - -0.968039, -0.000000, 0.000000, 0.250800 - -0.968822, -0.000000, 0.000000, 0.247756 - -0.969596, -0.000000, 0.000000, 0.244710 - -0.970360, -0.000000, 0.000000, 0.241662 - -0.971115, -0.000000, 0.000000, 0.238611 - -0.971860, -0.000000, 0.000000, 0.235558 - -0.972596, -0.000000, 0.000000, 0.232503 - -0.973322, -0.000000, 0.000000, 0.229445 - -0.974038, -0.000000, 0.000000, 0.226385 - -0.974744, -0.000000, 0.000000, 0.223323 - -0.975441, -0.000000, 0.000000, 0.220259 - -0.976129, -0.000000, 0.000000, 0.217192 - -0.976807, -0.000000, 0.000000, 0.214124 - -0.977475, -0.000000, 0.000000, 0.211053 - -0.978133, -0.000000, 0.000000, 0.207980 - -0.978782, -0.000000, 0.000000, 0.204905 - -0.979421, -0.000000, 0.000000, 0.201828 - -0.980050, -0.000000, 0.000000, 0.198749 - -0.980670, -0.000000, 0.000000, 0.195668 - -0.981280, -0.000000, 0.000000, 0.192585 - -0.981881, -0.000000, 0.000000, 0.189501 - -0.982471, -0.000000, 0.000000, 0.186414 - -0.983052, -0.000000, 0.000000, 0.183326 - -0.983624, -0.000000, 0.000000, 0.180235 - -0.984185, -0.000000, 0.000000, 0.177143 - -0.984737, -0.000000, 0.000000, 0.174049 - -0.985279, -0.000000, 0.000000, 0.170954 - -0.985811, -0.000000, 0.000000, 0.167857 - -0.986334, -0.000000, 0.000000, 0.164758 - -0.986847, -0.000000, 0.000000, 0.161657 - -0.987350, -0.000000, 0.000000, 0.158555 - -0.987844, -0.000000, 0.000000, 0.155451 - -0.988327, -0.000000, 0.000000, 0.152346 - -0.988801, -0.000000, 0.000000, 0.149240 - -0.989265, -0.000000, 0.000000, 0.146131 - -0.989720, -0.000000, 0.000000, 0.143022 - -0.990164, -0.000000, 0.000000, 0.139911 - -0.990599, -0.000000, 0.000000, 0.136798 - -0.991024, -0.000000, 0.000000, 0.133685 - -0.991439, -0.000000, 0.000000, 0.130569 - -0.991845, -0.000000, 0.000000, 0.127453 - -0.992240, -0.000000, 0.000000, 0.124335 - -0.992626, -0.000000, 0.000000, 0.121217 - -0.993002, -0.000000, 0.000000, 0.118097 - -0.993368, -0.000000, 0.000000, 0.114975 - -0.993725, -0.000000, 0.000000, 0.111853 - -0.994071, -0.000000, 0.000000, 0.108729 - -0.994408, -0.000000, 0.000000, 0.105605 - -0.994735, -0.000000, 0.000000, 0.102479 - -0.995052, -0.000000, 0.000000, 0.099353 - -0.995360, -0.000000, 0.000000, 0.096225 - -0.995657, -0.000000, 0.000000, 0.093097 - -0.995945, -0.000000, 0.000000, 0.089967 - -0.996223, -0.000000, 0.000000, 0.086837 - -0.996491, -0.000000, 0.000000, 0.083706 - -0.996749, -0.000000, 0.000000, 0.080574 - -0.996997, -0.000000, 0.000000, 0.077441 - -0.997235, -0.000000, 0.000000, 0.074307 - -0.997464, -0.000000, 0.000000, 0.071173 - -0.997683, -0.000000, 0.000000, 0.068038 - -0.997892, -0.000000, 0.000000, 0.064902 - -0.998091, -0.000000, 0.000000, 0.061766 - -0.998280, -0.000000, 0.000000, 0.058629 - -0.998459, -0.000000, 0.000000, 0.055491 - -0.998629, -0.000000, 0.000000, 0.052353 - -0.998788, -0.000000, 0.000000, 0.049215 - -0.998938, -0.000000, 0.000000, 0.046076 - -0.999078, -0.000000, 0.000000, 0.042936 - -0.999208, -0.000000, 0.000000, 0.039796 - -0.999328, -0.000000, 0.000000, 0.036656 - -0.999438, -0.000000, 0.000000, 0.033515 - -0.999539, -0.000000, 0.000000, 0.030374 - -0.999629, -0.000000, 0.000000, 0.027233 - -0.999710, -0.000000, 0.000000, 0.024091 - -0.999781, -0.000000, 0.000000, 0.020949 - -0.999841, -0.000000, 0.000000, 0.017807 - -0.999892, -0.000000, 0.000000, 0.014665 - -0.999934, -0.000000, 0.000000, 0.011523 - -0.999965, -0.000000, 0.000000, 0.008380 - -0.999986, -0.000000, 0.000000, 0.005238 - -0.999998, -0.000000, 0.000000, 0.002095 - -0.999999, 0.000000, -0.000000, -0.001048 - -0.999991, 0.000000, -0.000000, -0.004190 - -0.999973, 0.000000, -0.000000, -0.007333 - -0.999945, 0.000000, -0.000000, -0.010475 - -0.999907, 0.000000, -0.000000, -0.013618 - -0.999860, 0.000000, -0.000000, -0.016760 - -0.999802, 0.000000, -0.000000, -0.019902 - -0.999734, 0.000000, -0.000000, -0.023044 - -0.999657, 0.000000, -0.000000, -0.026186 - -0.999570, 0.000000, -0.000000, -0.029327 - -0.999473, 0.000000, -0.000000, -0.032468 - -0.999366, 0.000000, -0.000000, -0.035609 - -0.999249, 0.000000, -0.000000, -0.038750 - -0.999122, 0.000000, -0.000000, -0.041890 - -0.998986, 0.000000, -0.000000, -0.045029 - -0.998839, 0.000000, -0.000000, -0.048169 - -0.998683, 0.000000, -0.000000, -0.051307 - -0.998517, 0.000000, -0.000000, -0.054445 - -0.998341, 0.000000, -0.000000, -0.057583 - -0.998155, 0.000000, -0.000000, -0.060720 - -0.997959, 0.000000, -0.000000, -0.063857 - -0.997753, 0.000000, -0.000000, -0.066993 - -0.997538, 0.000000, -0.000000, -0.070128 - -0.997313, 0.000000, -0.000000, -0.073263 - -0.997078, 0.000000, -0.000000, -0.076396 - -0.996833, 0.000000, -0.000000, -0.079529 - -0.996578, 0.000000, -0.000000, -0.082662 - -0.996313, 0.000000, -0.000000, -0.085793 - -0.996038, 0.000000, -0.000000, -0.088924 - -0.995754, 0.000000, -0.000000, -0.092054 - -0.995460, 0.000000, -0.000000, -0.095182 - -0.995156, 0.000000, -0.000000, -0.098310 - -0.994842, 0.000000, -0.000000, -0.101437 - -0.994518, 0.000000, -0.000000, -0.104563 - -0.994185, 0.000000, -0.000000, -0.107688 - -0.993841, 0.000000, -0.000000, -0.110812 - -0.993488, 0.000000, -0.000000, -0.113935 - -0.993125, 0.000000, -0.000000, -0.117056 - -0.992753, 0.000000, -0.000000, -0.120177 - -0.992370, 0.000000, -0.000000, -0.123296 - -0.991978, 0.000000, -0.000000, -0.126414 - -0.991575, 0.000000, -0.000000, -0.129531 - -0.991163, 0.000000, -0.000000, -0.132646 - -0.990742, 0.000000, -0.000000, -0.135761 - -0.990310, 0.000000, -0.000000, -0.138873 - -0.989869, 0.000000, -0.000000, -0.141985 - -0.989418, 0.000000, -0.000000, -0.145095 - -0.988957, 0.000000, -0.000000, -0.148204 - -0.988486, 0.000000, -0.000000, -0.151311 - -0.988006, 0.000000, -0.000000, -0.154417 - -0.987516, 0.000000, -0.000000, -0.157521 - -0.987016, 0.000000, -0.000000, -0.160623 - -0.986506, 0.000000, -0.000000, -0.163724 - -0.985987, 0.000000, -0.000000, -0.166824 - -0.985458, 0.000000, -0.000000, -0.169922 - -0.984919, 0.000000, -0.000000, -0.173018 - -0.984370, 0.000000, -0.000000, -0.176112 - -0.983812, 0.000000, -0.000000, -0.179205 - -0.983244, 0.000000, -0.000000, -0.182296 - -0.982666, 0.000000, -0.000000, -0.185385 - -0.982079, 0.000000, -0.000000, -0.188472 - -0.981481, 0.000000, -0.000000, -0.191557 - -0.980875, 0.000000, -0.000000, -0.194641 - -0.980258, 0.000000, -0.000000, -0.197722 - -0.979632, 0.000000, -0.000000, -0.200802 - -0.978996, 0.000000, -0.000000, -0.203880 - -0.978350, 0.000000, -0.000000, -0.206955 - -0.977695, 0.000000, -0.000000, -0.210029 - -0.977030, 0.000000, -0.000000, -0.213100 - -0.976356, 0.000000, -0.000000, -0.216170 - -0.975672, 0.000000, -0.000000, -0.219237 - -0.974978, 0.000000, -0.000000, -0.222302 - -0.974274, 0.000000, -0.000000, -0.225365 - -0.973561, 0.000000, -0.000000, -0.228426 - -0.972839, 0.000000, -0.000000, -0.231484 - -0.972106, 0.000000, -0.000000, -0.234540 - -0.971365, 0.000000, -0.000000, -0.237594 - -0.970613, 0.000000, -0.000000, -0.240646 - -0.969852, 0.000000, -0.000000, -0.243695 - -0.969081, 0.000000, -0.000000, -0.246741 - -0.968301, 0.000000, -0.000000, -0.249786 - -0.967511, 0.000000, -0.000000, -0.252827 - -0.966712, 0.000000, -0.000000, -0.255867 - -0.965903, 0.000000, -0.000000, -0.258903 - -0.965085, 0.000000, -0.000000, -0.261938 - -0.964257, 0.000000, -0.000000, -0.264969 - -0.963419, 0.000000, -0.000000, -0.267998 - -0.962572, 0.000000, -0.000000, -0.271025 - -0.961716, 0.000000, -0.000000, -0.274048 - -0.960850, 0.000000, -0.000000, -0.277069 - -0.959975, 0.000000, -0.000000, -0.280087 - -0.959090, 0.000000, -0.000000, -0.283103 - -0.958195, 0.000000, -0.000000, -0.286116 - -0.957291, 0.000000, -0.000000, -0.289125 - -0.956378, 0.000000, -0.000000, -0.292132 - -0.955455, 0.000000, -0.000000, -0.295136 - -0.954523, 0.000000, -0.000000, -0.298138 - -0.953581, 0.000000, -0.000000, -0.301136 - -0.952630, 0.000000, -0.000000, -0.304131 - -0.951670, 0.000000, -0.000000, -0.307123 - -0.950700, 0.000000, -0.000000, -0.310113 - -0.949721, 0.000000, -0.000000, -0.313099 - -0.948732, 0.000000, -0.000000, -0.316082 - -0.947734, 0.000000, -0.000000, -0.319062 - -0.946727, 0.000000, -0.000000, -0.322039 - -0.945710, 0.000000, -0.000000, -0.325012 - -0.944684, 0.000000, -0.000000, -0.327983 - -0.943648, 0.000000, -0.000000, -0.330950 - -0.942604, 0.000000, -0.000000, -0.333914 - -0.941550, 0.000000, -0.000000, -0.336874 - -0.940486, 0.000000, -0.000000, -0.339832 - -0.939414, 0.000000, -0.000000, -0.342786 - -0.938332, 0.000000, -0.000000, -0.345736 - -0.937241, 0.000000, -0.000000, -0.348683 - -0.936140, 0.000000, -0.000000, -0.351627 - -0.935031, 0.000000, -0.000000, -0.354567 - -0.933912, 0.000000, -0.000000, -0.357504 - -0.932784, 0.000000, -0.000000, -0.360437 - -0.931646, 0.000000, -0.000000, -0.363367 - -0.930500, 0.000000, -0.000000, -0.366293 - -0.929344, 0.000000, -0.000000, -0.369215 - -0.928179, 0.000000, -0.000000, -0.372134 - -0.927005, 0.000000, -0.000000, -0.375049 - -0.925822, 0.000000, -0.000000, -0.377960 - -0.924629, 0.000000, -0.000000, -0.380868 - -0.923428, 0.000000, -0.000000, -0.383772 - -0.922217, 0.000000, -0.000000, -0.386672 - -0.920998, 0.000000, -0.000000, -0.389568 - -0.919769, 0.000000, -0.000000, -0.392461 - -0.918531, 0.000000, -0.000000, -0.395349 - -0.917284, 0.000000, -0.000000, -0.398234 - -0.916028, 0.000000, -0.000000, -0.401115 - -0.914763, 0.000000, -0.000000, -0.403991 - -0.913489, 0.000000, -0.000000, -0.406864 - -0.912206, 0.000000, -0.000000, -0.409733 - -0.910913, 0.000000, -0.000000, -0.412598 - -0.909612, 0.000000, -0.000000, -0.415458 - -0.908302, 0.000000, -0.000000, -0.418315 - -0.906983, 0.000000, -0.000000, -0.421167 - -0.905655, 0.000000, -0.000000, -0.424015 - -0.904318, 0.000000, -0.000000, -0.426860 - -0.902972, 0.000000, -0.000000, -0.429699 - -0.901617, 0.000000, -0.000000, -0.432535 - -0.900253, 0.000000, -0.000000, -0.435366 - -0.898881, 0.000000, -0.000000, -0.438193 - -0.897499, 0.000000, -0.000000, -0.441016 - -0.896109, 0.000000, -0.000000, -0.443834 - -0.894710, 0.000000, -0.000000, -0.446648 - -0.893302, 0.000000, -0.000000, -0.449458 - -0.891885, 0.000000, -0.000000, -0.452263 - -0.890459, 0.000000, -0.000000, -0.455064 - -0.889024, 0.000000, -0.000000, -0.457860 - -0.887581, 0.000000, -0.000000, -0.460651 - -0.886129, 0.000000, -0.000000, -0.463438 - -0.884668, 0.000000, -0.000000, -0.466221 - -0.883199, 0.000000, -0.000000, -0.468999 - -0.881721, 0.000000, -0.000000, -0.471772 - -0.880234, 0.000000, -0.000000, -0.474541 - -0.878738, 0.000000, -0.000000, -0.477305 - -0.877234, 0.000000, -0.000000, -0.480064 - -0.875721, 0.000000, -0.000000, -0.482818 - -0.874199, 0.000000, -0.000000, -0.485568 - -0.872669, 0.000000, -0.000000, -0.488313 - -0.871130, 0.000000, -0.000000, -0.491053 - -0.869582, 0.000000, -0.000000, -0.493788 - -0.868026, 0.000000, -0.000000, -0.496518 - -0.866462, 0.000000, -0.000000, -0.499244 - -0.864888, 0.000000, -0.000000, -0.501964 - -0.863307, 0.000000, -0.000000, -0.504680 - -0.861716, 0.000000, -0.000000, -0.507390 - -0.860117, 0.000000, -0.000000, -0.510096 - -0.858510, 0.000000, -0.000000, -0.512797 - -0.856894, 0.000000, -0.000000, -0.515492 - -0.855270, 0.000000, -0.000000, -0.518182 - -0.853638, 0.000000, -0.000000, -0.520868 - -0.851996, 0.000000, -0.000000, -0.523548 - -0.850347, 0.000000, -0.000000, -0.526223 - -0.848689, 0.000000, -0.000000, -0.528892 - -0.847023, 0.000000, -0.000000, -0.531557 - -0.845348, 0.000000, -0.000000, -0.534216 - -0.843665, 0.000000, -0.000000, -0.536870 - -0.841974, 0.000000, -0.000000, -0.539519 - -0.840274, 0.000000, -0.000000, -0.542162 - -0.838566, 0.000000, -0.000000, -0.544800 - -0.836850, 0.000000, -0.000000, -0.547433 - -0.835125, 0.000000, -0.000000, -0.550060 - -0.833392, 0.000000, -0.000000, -0.552682 - -0.831651, 0.000000, -0.000000, -0.555298 - -0.829902, 0.000000, -0.000000, -0.557909 - -0.828145, 0.000000, -0.000000, -0.560514 - -0.826379, 0.000000, -0.000000, -0.563114 - -0.824606, 0.000000, -0.000000, -0.565708 - -0.822824, 0.000000, -0.000000, -0.568297 - -0.821034, 0.000000, -0.000000, -0.570880 - -0.819235, 0.000000, -0.000000, -0.573457 - -0.817429, 0.000000, -0.000000, -0.576029 - -0.815615, 0.000000, -0.000000, -0.578595 - -0.813793, 0.000000, -0.000000, -0.581155 - -0.811962, 0.000000, -0.000000, -0.583710 - -0.810124, 0.000000, -0.000000, -0.586259 - -0.808277, 0.000000, -0.000000, -0.588802 - -0.806423, 0.000000, -0.000000, -0.591339 - -0.804561, 0.000000, -0.000000, -0.593870 - -0.802690, 0.000000, -0.000000, -0.596396 - -0.800812, 0.000000, -0.000000, -0.598915 - -0.798926, 0.000000, -0.000000, -0.601429 - -0.797032, 0.000000, -0.000000, -0.603937 - -0.795130, 0.000000, -0.000000, -0.606439 - -0.793220, 0.000000, -0.000000, -0.608935 - -0.791303, 0.000000, -0.000000, -0.611424 - -0.789377, 0.000000, -0.000000, -0.613908 - -0.787444, 0.000000, -0.000000, -0.616386 - -0.785503, 0.000000, -0.000000, -0.618857 - -0.783555, 0.000000, -0.000000, -0.621323 - -0.781598, 0.000000, -0.000000, -0.623782 - -0.779634, 0.000000, -0.000000, -0.626235 - -0.777662, 0.000000, -0.000000, -0.628682 - -0.775683, 0.000000, -0.000000, -0.631123 - -0.773695, 0.000000, -0.000000, -0.633558 - -0.771700, 0.000000, -0.000000, -0.635986 - -0.769698, 0.000000, -0.000000, -0.638408 - -0.767688, 0.000000, -0.000000, -0.640824 - -0.765670, 0.000000, -0.000000, -0.643233 - -0.763645, 0.000000, -0.000000, -0.645636 - -0.761612, 0.000000, -0.000000, -0.648033 - -0.759572, 0.000000, -0.000000, -0.650423 - -0.757524, 0.000000, -0.000000, -0.652807 - -0.755469, 0.000000, -0.000000, -0.655185 - -0.753406, 0.000000, -0.000000, -0.657555 - -0.751336, 0.000000, -0.000000, -0.659920 - -0.749258, 0.000000, -0.000000, -0.662278 - -0.747173, 0.000000, -0.000000, -0.664629 - -0.745081, 0.000000, -0.000000, -0.666974 - -0.742981, 0.000000, -0.000000, -0.669312 - -0.740874, 0.000000, -0.000000, -0.671644 - -0.738760, 0.000000, -0.000000, -0.673969 - -0.736638, 0.000000, -0.000000, -0.676287 - -0.734509, 0.000000, -0.000000, -0.678599 - -0.732373, 0.000000, -0.000000, -0.680904 - -0.730229, 0.000000, -0.000000, -0.683202 - -0.728079, 0.000000, -0.000000, -0.685493 - -0.725921, 0.000000, -0.000000, -0.687778 - -0.723756, 0.000000, -0.000000, -0.690056 - -0.721584, 0.000000, -0.000000, -0.692327 - -0.719404, 0.000000, -0.000000, -0.694591 - -0.717218, 0.000000, -0.000000, -0.696849 - -0.715025, 0.000000, -0.000000, -0.699099 - -0.712824, 0.000000, -0.000000, -0.701343 - -0.710616, 0.000000, -0.000000, -0.703580 - -0.708402, 0.000000, -0.000000, -0.705809 - -0.706180, 0.000000, -0.000000, -0.708032 - -0.703952, 0.000000, -0.000000, -0.710248 - -0.701716, 0.000000, -0.000000, -0.712457 - -0.699474, 0.000000, -0.000000, -0.714658 - -0.697224, 0.000000, -0.000000, -0.716853 - -0.694968, 0.000000, -0.000000, -0.719041 - -0.692705, 0.000000, -0.000000, -0.721221 - -0.690435, 0.000000, -0.000000, -0.723394 - -0.688158, 0.000000, -0.000000, -0.725561 - -0.685875, 0.000000, -0.000000, -0.727720 - -0.683584, 0.000000, -0.000000, -0.729872 - -0.681287, 0.000000, -0.000000, -0.732016 - -0.678983, 0.000000, -0.000000, -0.734154 - -0.676673, 0.000000, -0.000000, -0.736284 - -0.674356, 0.000000, -0.000000, -0.738407 - -0.672032, 0.000000, -0.000000, -0.740522 - -0.669701, 0.000000, -0.000000, -0.742631 - -0.667364, 0.000000, -0.000000, -0.744732 - -0.665020, 0.000000, -0.000000, -0.746825 - -0.662670, 0.000000, -0.000000, -0.748911 - -0.660313, 0.000000, -0.000000, -0.750990 - -0.657950, 0.000000, -0.000000, -0.753062 - -0.655580, 0.000000, -0.000000, -0.755126 - -0.653204, 0.000000, -0.000000, -0.757182 - -0.650821, 0.000000, -0.000000, -0.759231 - -0.648432, 0.000000, -0.000000, -0.761273 - -0.646036, 0.000000, -0.000000, -0.763307 - -0.643634, 0.000000, -0.000000, -0.765333 - -0.641226, 0.000000, -0.000000, -0.767352 - -0.638811, 0.000000, -0.000000, -0.769363 - -0.636390, 0.000000, -0.000000, -0.771367 - -0.633963, 0.000000, -0.000000, -0.773363 - -0.631529, 0.000000, -0.000000, -0.775352 - -0.629090, 0.000000, -0.000000, -0.777333 - -0.626644, 0.000000, -0.000000, -0.779306 - -0.624192, 0.000000, -0.000000, -0.781271 - -0.621733, 0.000000, -0.000000, -0.783229 - -0.619269, 0.000000, -0.000000, -0.785179 - -0.616798, 0.000000, -0.000000, -0.787121 - -0.614321, 0.000000, -0.000000, -0.789056 - -0.611839, 0.000000, -0.000000, -0.790983 - -0.609350, 0.000000, -0.000000, -0.792901 - -0.606855, 0.000000, -0.000000, -0.794812 - -0.604354, 0.000000, -0.000000, -0.796716 - -0.601848, 0.000000, -0.000000, -0.798611 - -0.599335, 0.000000, -0.000000, -0.800498 - -0.596816, 0.000000, -0.000000, -0.802378 - -0.594292, 0.000000, -0.000000, -0.804250 - -0.591761, 0.000000, -0.000000, -0.806113 - -0.589225, 0.000000, -0.000000, -0.807969 - -0.586683, 0.000000, -0.000000, -0.809817 - -0.584135, 0.000000, -0.000000, -0.811656 - -0.581581, 0.000000, -0.000000, -0.813488 - -0.579022, 0.000000, -0.000000, -0.815312 - -0.576457, 0.000000, -0.000000, -0.817127 - -0.573886, 0.000000, -0.000000, -0.818935 - -0.571310, 0.000000, -0.000000, -0.820734 - -0.568728, 0.000000, -0.000000, -0.822526 - -0.566140, 0.000000, -0.000000, -0.824309 - -0.563547, 0.000000, -0.000000, -0.826084 - -0.560948, 0.000000, -0.000000, -0.827851 - -0.558343, 0.000000, -0.000000, -0.829610 - -0.555734, 0.000000, -0.000000, -0.831360 - -0.553118, 0.000000, -0.000000, -0.833103 - -0.550497, 0.000000, -0.000000, -0.834837 - -0.547871, 0.000000, -0.000000, -0.836563 - -0.545239, 0.000000, -0.000000, -0.838280 - -0.542602, 0.000000, -0.000000, -0.839990 - -0.539960, 0.000000, -0.000000, -0.841691 - -0.537312, 0.000000, -0.000000, -0.843384 - -0.534659, 0.000000, -0.000000, -0.845068 - -0.532000, 0.000000, -0.000000, -0.846744 - -0.529337, 0.000000, -0.000000, -0.848412 - -0.526668, 0.000000, -0.000000, -0.850071 - -0.523994, 0.000000, -0.000000, -0.851722 - -0.521315, 0.000000, -0.000000, -0.853365 - -0.518630, 0.000000, -0.000000, -0.854999 - -0.515941, 0.000000, -0.000000, -0.856624 - -0.513246, 0.000000, -0.000000, -0.858241 - -0.510546, 0.000000, -0.000000, -0.859850 - -0.507842, 0.000000, -0.000000, -0.861450 - -0.505132, 0.000000, -0.000000, -0.863042 - -0.502417, 0.000000, -0.000000, -0.864625 - -0.499698, 0.000000, -0.000000, -0.866200 - -0.496973, 0.000000, -0.000000, -0.867766 - -0.494243, 0.000000, -0.000000, -0.869324 - -0.491509, 0.000000, -0.000000, -0.870872 - -0.488770, 0.000000, -0.000000, -0.872413 - -0.486026, 0.000000, -0.000000, -0.873945 - -0.483277, 0.000000, -0.000000, -0.875468 - -0.480523, 0.000000, -0.000000, -0.876982 - -0.477765, 0.000000, -0.000000, -0.878488 - -0.475002, 0.000000, -0.000000, -0.879985 - -0.472234, 0.000000, -0.000000, -0.881473 - -0.469461, 0.000000, -0.000000, -0.882953 - -0.466684, 0.000000, -0.000000, -0.884424 - -0.463902, 0.000000, -0.000000, -0.885886 - -0.461116, 0.000000, -0.000000, -0.887340 - -0.458325, 0.000000, -0.000000, -0.888785 - -0.455530, 0.000000, -0.000000, -0.890220 - -0.452730, 0.000000, -0.000000, -0.891648 - -0.449926, 0.000000, -0.000000, -0.893066 - -0.447117, 0.000000, -0.000000, -0.894476 - -0.444304, 0.000000, -0.000000, -0.895876 - -0.441486, 0.000000, -0.000000, -0.897268 - -0.438664, 0.000000, -0.000000, -0.898651 - -0.435838, 0.000000, -0.000000, -0.900025 - -0.433007, 0.000000, -0.000000, -0.901390 - -0.430172, 0.000000, -0.000000, -0.902747 - -0.427333, 0.000000, -0.000000, -0.904094 - -0.424490, 0.000000, -0.000000, -0.905433 - -0.421642, 0.000000, -0.000000, -0.906762 - -0.418791, 0.000000, -0.000000, -0.908083 - -0.415935, 0.000000, -0.000000, -0.909394 - -0.413075, 0.000000, -0.000000, -0.910697 - -0.410211, 0.000000, -0.000000, -0.911991 - -0.407343, 0.000000, -0.000000, -0.913275 - -0.404471, 0.000000, -0.000000, -0.914551 - -0.401594, 0.000000, -0.000000, -0.915818 - -0.398714, 0.000000, -0.000000, -0.917075 - -0.395830, 0.000000, -0.000000, -0.918324 - -0.392942, 0.000000, -0.000000, -0.919563 - -0.390051, 0.000000, -0.000000, -0.920793 - -0.387155, 0.000000, -0.000000, -0.922015 - -0.384256, 0.000000, -0.000000, -0.923227 - -0.381352, 0.000000, -0.000000, -0.924430 - -0.378445, 0.000000, -0.000000, -0.925624 - -0.375535, 0.000000, -0.000000, -0.926808 - -0.372620, 0.000000, -0.000000, -0.927984 - -0.369702, 0.000000, -0.000000, -0.929150 - -0.366780, 0.000000, -0.000000, -0.930308 - -0.363855, 0.000000, -0.000000, -0.931456 - -0.360926, 0.000000, -0.000000, -0.932595 - -0.357993, 0.000000, -0.000000, -0.933724 - -0.355057, 0.000000, -0.000000, -0.934845 - -0.352117, 0.000000, -0.000000, -0.935956 - -0.349174, 0.000000, -0.000000, -0.937058 - -0.346228, 0.000000, -0.000000, -0.938151 - -0.343278, 0.000000, -0.000000, -0.939234 - -0.340324, 0.000000, -0.000000, -0.940308 - -0.337368, 0.000000, -0.000000, -0.941373 - -0.334407, 0.000000, -0.000000, -0.942429 - -0.331444, 0.000000, -0.000000, -0.943475 - -0.328478, 0.000000, -0.000000, -0.944512 - -0.325508, 0.000000, -0.000000, -0.945539 - -0.322535, 0.000000, -0.000000, -0.946558 - -0.319558, 0.000000, -0.000000, -0.947567 - -0.316579, 0.000000, -0.000000, -0.948566 - -0.313596, 0.000000, -0.000000, -0.949556 - -0.310611, 0.000000, -0.000000, -0.950537 - -0.307622, 0.000000, -0.000000, -0.951509 - -0.304630, 0.000000, -0.000000, -0.952471 - -0.301635, 0.000000, -0.000000, -0.953423 - -0.298638, 0.000000, -0.000000, -0.954367 - -0.295637, 0.000000, -0.000000, -0.955300 - -0.292633, 0.000000, -0.000000, -0.956225 - -0.289627, 0.000000, -0.000000, -0.957140 - -0.286617, 0.000000, -0.000000, -0.958045 - -0.283605, 0.000000, -0.000000, -0.958941 - -0.280590, 0.000000, -0.000000, -0.959828 - -0.277572, 0.000000, -0.000000, -0.960705 - -0.274552, 0.000000, -0.000000, -0.961572 - -0.271529, 0.000000, -0.000000, -0.962430 - -0.268503, 0.000000, -0.000000, -0.963279 - -0.265474, 0.000000, -0.000000, -0.964118 - -0.262443, 0.000000, -0.000000, -0.964947 - -0.259409, 0.000000, -0.000000, -0.965767 - -0.256373, 0.000000, -0.000000, -0.966578 - -0.253334, 0.000000, -0.000000, -0.967379 - -0.250293, 0.000000, -0.000000, -0.968170 - -0.247249, 0.000000, -0.000000, -0.968952 - -0.244203, 0.000000, -0.000000, -0.969724 - -0.241154, 0.000000, -0.000000, -0.970487 - -0.238103, 0.000000, -0.000000, -0.971240 - -0.235049, 0.000000, -0.000000, -0.971983 - -0.231994, 0.000000, -0.000000, -0.972717 - -0.228936, 0.000000, -0.000000, -0.973442 - -0.225875, 0.000000, -0.000000, -0.974156 - -0.222813, 0.000000, -0.000000, -0.974861 - -0.219748, 0.000000, -0.000000, -0.975557 - -0.216681, 0.000000, -0.000000, -0.976242 - -0.213612, 0.000000, -0.000000, -0.976919 - -0.210541, 0.000000, -0.000000, -0.977585 - -0.207468, 0.000000, -0.000000, -0.978242 - -0.204392, 0.000000, -0.000000, -0.978889 - -0.201315, 0.000000, -0.000000, -0.979527 - -0.198236, 0.000000, -0.000000, -0.980154 - -0.195155, 0.000000, -0.000000, -0.980773 - -0.192071, 0.000000, -0.000000, -0.981381 - -0.188986, 0.000000, -0.000000, -0.981980 - -0.185899, 0.000000, -0.000000, -0.982569 - -0.182811, 0.000000, -0.000000, -0.983148 - -0.179720, 0.000000, -0.000000, -0.983718 - -0.176628, 0.000000, -0.000000, -0.984278 - -0.173534, 0.000000, -0.000000, -0.984828 - -0.170438, 0.000000, -0.000000, -0.985368 - -0.167340, 0.000000, -0.000000, -0.985899 - -0.164241, 0.000000, -0.000000, -0.986420 - -0.161140, 0.000000, -0.000000, -0.986932 - -0.158038, 0.000000, -0.000000, -0.987433 - -0.154934, 0.000000, -0.000000, -0.987925 - -0.151829, 0.000000, -0.000000, -0.988407 - -0.148722, 0.000000, -0.000000, -0.988879 - -0.145613, 0.000000, -0.000000, -0.989342 - -0.142503, 0.000000, -0.000000, -0.989794 - -0.139392, 0.000000, -0.000000, -0.990237 - -0.136279, 0.000000, -0.000000, -0.990670 - -0.133165, 0.000000, -0.000000, -0.991094 - -0.130050, 0.000000, -0.000000, -0.991507 - -0.126934, 0.000000, -0.000000, -0.991911 - -0.123816, 0.000000, -0.000000, -0.992305 - -0.120697, 0.000000, -0.000000, -0.992689 - -0.117576, 0.000000, -0.000000, -0.993064 - -0.114455, 0.000000, -0.000000, -0.993428 - -0.111332, 0.000000, -0.000000, -0.993783 - -0.108209, 0.000000, -0.000000, -0.994128 - -0.105084, 0.000000, -0.000000, -0.994463 - -0.101958, 0.000000, -0.000000, -0.994789 - -0.098832, 0.000000, -0.000000, -0.995104 - -0.095704, 0.000000, -0.000000, -0.995410 - -0.092575, 0.000000, -0.000000, -0.995706 - -0.089446, 0.000000, -0.000000, -0.995992 - -0.086315, 0.000000, -0.000000, -0.996268 - -0.083184, 0.000000, -0.000000, -0.996534 - -0.080052, 0.000000, -0.000000, -0.996791 - -0.076919, 0.000000, -0.000000, -0.997037 - -0.073785, 0.000000, -0.000000, -0.997274 - -0.070650, 0.000000, -0.000000, -0.997501 - -0.067515, 0.000000, -0.000000, -0.997718 - -0.064380, 0.000000, -0.000000, -0.997925 - -0.061243, 0.000000, -0.000000, -0.998123 - -0.058106, 0.000000, -0.000000, -0.998310 - -0.054968, 0.000000, -0.000000, -0.998488 - -0.051830, 0.000000, -0.000000, -0.998656 - -0.048692, 0.000000, -0.000000, -0.998814 - -0.045553, 0.000000, -0.000000, -0.998962 - -0.042413, 0.000000, -0.000000, -0.999100 - -0.039273, 0.000000, -0.000000, -0.999229 - -0.036132, 0.000000, -0.000000, -0.999347 - -0.032992, 0.000000, -0.000000, -0.999456 - -0.029851, 0.000000, -0.000000, -0.999554 - -0.026709, 0.000000, -0.000000, -0.999643 - -0.023568, 0.000000, -0.000000, -0.999722 - -0.020426, 0.000000, -0.000000, -0.999791 - -0.017284, 0.000000, -0.000000, -0.999851 - -0.014141, 0.000000, -0.000000, -0.999900 - -0.010999, 0.000000, -0.000000, -0.999940 - -0.007857, 0.000000, -0.000000, -0.999969 - -0.004714, 0.000000, -0.000000, -0.999989 - -0.001571, 0.000000, -0.000000, -0.999999 - 0.001571, 0.000000, 0.000000, -0.999999 - 0.004714, 0.000000, 0.000000, -0.999989 - 0.007857, 0.000000, 0.000000, -0.999969 - 0.010999, 0.000000, 0.000000, -0.999940 - 0.014141, 0.000000, 0.000000, -0.999900 - 0.017284, 0.000000, 0.000000, -0.999851 - 0.020426, 0.000000, 0.000000, -0.999791 - 0.023568, 0.000000, 0.000000, -0.999722 - 0.026709, 0.000000, 0.000000, -0.999643 - 0.029851, 0.000000, 0.000000, -0.999554 - 0.032992, 0.000000, 0.000000, -0.999456 - 0.036132, 0.000000, 0.000000, -0.999347 - 0.039273, 0.000000, 0.000000, -0.999229 - 0.042413, 0.000000, 0.000000, -0.999100 - 0.045553, 0.000000, 0.000000, -0.998962 - 0.048692, 0.000000, 0.000000, -0.998814 - 0.051830, 0.000000, 0.000000, -0.998656 - 0.054968, 0.000000, 0.000000, -0.998488 - 0.058106, 0.000000, 0.000000, -0.998310 - 0.061243, 0.000000, 0.000000, -0.998123 - 0.064380, 0.000000, 0.000000, -0.997925 - 0.067515, 0.000000, 0.000000, -0.997718 - 0.070650, 0.000000, 0.000000, -0.997501 - 0.073785, 0.000000, 0.000000, -0.997274 - 0.076919, 0.000000, 0.000000, -0.997037 - 0.080052, 0.000000, 0.000000, -0.996791 - 0.083184, 0.000000, 0.000000, -0.996534 - 0.086315, 0.000000, 0.000000, -0.996268 - 0.089446, 0.000000, 0.000000, -0.995992 - 0.092575, 0.000000, 0.000000, -0.995706 - 0.095704, 0.000000, 0.000000, -0.995410 - 0.098832, 0.000000, 0.000000, -0.995104 - 0.101958, 0.000000, 0.000000, -0.994789 - 0.105084, 0.000000, 0.000000, -0.994463 - 0.108209, 0.000000, 0.000000, -0.994128 - 0.111332, 0.000000, 0.000000, -0.993783 - 0.114455, 0.000000, 0.000000, -0.993428 - 0.117576, 0.000000, 0.000000, -0.993064 - 0.120697, 0.000000, 0.000000, -0.992689 - 0.123816, 0.000000, 0.000000, -0.992305 - 0.126934, 0.000000, 0.000000, -0.991911 - 0.130050, 0.000000, 0.000000, -0.991507 - 0.133165, 0.000000, 0.000000, -0.991094 - 0.136279, 0.000000, 0.000000, -0.990670 - 0.139392, 0.000000, 0.000000, -0.990237 - 0.142503, 0.000000, 0.000000, -0.989794 - 0.145613, 0.000000, 0.000000, -0.989342 - 0.148722, 0.000000, 0.000000, -0.988879 - 0.151829, 0.000000, 0.000000, -0.988407 - 0.154934, 0.000000, 0.000000, -0.987925 - 0.158038, 0.000000, 0.000000, -0.987433 - 0.161140, 0.000000, 0.000000, -0.986932 - 0.164241, 0.000000, 0.000000, -0.986420 - 0.167340, 0.000000, 0.000000, -0.985899 - 0.170438, 0.000000, 0.000000, -0.985368 - 0.173534, 0.000000, 0.000000, -0.984828 - 0.176628, 0.000000, 0.000000, -0.984278 - 0.179720, 0.000000, 0.000000, -0.983718 - 0.182811, 0.000000, 0.000000, -0.983148 - 0.185899, 0.000000, 0.000000, -0.982569 - 0.188986, 0.000000, 0.000000, -0.981980 - 0.192071, 0.000000, 0.000000, -0.981381 - 0.195155, 0.000000, 0.000000, -0.980773 - 0.198236, 0.000000, 0.000000, -0.980154 - 0.201315, 0.000000, 0.000000, -0.979527 - 0.204392, 0.000000, 0.000000, -0.978889 - 0.207468, 0.000000, 0.000000, -0.978242 - 0.210541, 0.000000, 0.000000, -0.977585 - 0.213612, 0.000000, 0.000000, -0.976919 - 0.216681, 0.000000, 0.000000, -0.976242 - 0.219748, 0.000000, 0.000000, -0.975557 - 0.222813, 0.000000, 0.000000, -0.974861 - 0.225875, 0.000000, 0.000000, -0.974156 - 0.228936, 0.000000, 0.000000, -0.973442 - 0.231994, 0.000000, 0.000000, -0.972717 - 0.235049, 0.000000, 0.000000, -0.971983 - 0.238103, 0.000000, 0.000000, -0.971240 - 0.241154, 0.000000, 0.000000, -0.970487 - 0.244203, 0.000000, 0.000000, -0.969724 - 0.247249, 0.000000, 0.000000, -0.968952 - 0.250293, 0.000000, 0.000000, -0.968170 - 0.253334, 0.000000, 0.000000, -0.967379 - 0.256373, 0.000000, 0.000000, -0.966578 - 0.259409, 0.000000, 0.000000, -0.965767 - 0.262443, 0.000000, 0.000000, -0.964947 - 0.265474, 0.000000, 0.000000, -0.964118 - 0.268503, 0.000000, 0.000000, -0.963279 - 0.271529, 0.000000, 0.000000, -0.962430 - 0.274552, 0.000000, 0.000000, -0.961572 - 0.277572, 0.000000, 0.000000, -0.960705 - 0.280590, 0.000000, 0.000000, -0.959828 - 0.283605, 0.000000, 0.000000, -0.958941 - 0.286617, 0.000000, 0.000000, -0.958045 - 0.289627, 0.000000, 0.000000, -0.957140 - 0.292633, 0.000000, 0.000000, -0.956225 - 0.295637, 0.000000, 0.000000, -0.955300 - 0.298638, 0.000000, 0.000000, -0.954367 - 0.301635, 0.000000, 0.000000, -0.953423 - 0.304630, 0.000000, 0.000000, -0.952471 - 0.307622, 0.000000, 0.000000, -0.951509 - 0.310611, 0.000000, 0.000000, -0.950537 - 0.313596, 0.000000, 0.000000, -0.949556 - 0.316579, 0.000000, 0.000000, -0.948566 - 0.319558, 0.000000, 0.000000, -0.947567 - 0.322535, 0.000000, 0.000000, -0.946558 - 0.325508, 0.000000, 0.000000, -0.945539 - 0.328478, 0.000000, 0.000000, -0.944512 - 0.331444, 0.000000, 0.000000, -0.943475 - 0.334407, 0.000000, 0.000000, -0.942429 - 0.337368, 0.000000, 0.000000, -0.941373 - 0.340324, 0.000000, 0.000000, -0.940308 - 0.343278, 0.000000, 0.000000, -0.939234 - 0.346228, 0.000000, 0.000000, -0.938151 - 0.349174, 0.000000, 0.000000, -0.937058 - 0.352117, 0.000000, 0.000000, -0.935956 - 0.355057, 0.000000, 0.000000, -0.934845 - 0.357993, 0.000000, 0.000000, -0.933724 - 0.360926, 0.000000, 0.000000, -0.932595 - 0.363855, 0.000000, 0.000000, -0.931456 - 0.366780, 0.000000, 0.000000, -0.930308 - 0.369702, 0.000000, 0.000000, -0.929150 - 0.372620, 0.000000, 0.000000, -0.927984 - 0.375535, 0.000000, 0.000000, -0.926808 - 0.378445, 0.000000, 0.000000, -0.925624 - 0.381352, 0.000000, 0.000000, -0.924430 - 0.384256, 0.000000, 0.000000, -0.923227 - 0.387155, 0.000000, 0.000000, -0.922015 - 0.390051, 0.000000, 0.000000, -0.920793 - 0.392942, 0.000000, 0.000000, -0.919563 - 0.395830, 0.000000, 0.000000, -0.918324 - 0.398714, 0.000000, 0.000000, -0.917075 - 0.401594, 0.000000, 0.000000, -0.915818 - 0.404471, 0.000000, 0.000000, -0.914551 - 0.407343, 0.000000, 0.000000, -0.913275 - 0.410211, 0.000000, 0.000000, -0.911991 - 0.413075, 0.000000, 0.000000, -0.910697 - 0.415935, 0.000000, 0.000000, -0.909394 - 0.418791, 0.000000, 0.000000, -0.908083 - 0.421642, 0.000000, 0.000000, -0.906762 - 0.424490, 0.000000, 0.000000, -0.905433 - 0.427333, 0.000000, 0.000000, -0.904094 - 0.430172, 0.000000, 0.000000, -0.902747 - 0.433007, 0.000000, 0.000000, -0.901390 - 0.435838, 0.000000, 0.000000, -0.900025 - 0.438664, 0.000000, 0.000000, -0.898651 - 0.441486, 0.000000, 0.000000, -0.897268 - 0.444304, 0.000000, 0.000000, -0.895876 - 0.447117, 0.000000, 0.000000, -0.894476 - 0.449926, 0.000000, 0.000000, -0.893066 - 0.452730, 0.000000, 0.000000, -0.891648 - 0.455530, 0.000000, 0.000000, -0.890220 - 0.458325, 0.000000, 0.000000, -0.888785 - 0.461116, 0.000000, 0.000000, -0.887340 - 0.463902, 0.000000, 0.000000, -0.885886 - 0.466684, 0.000000, 0.000000, -0.884424 - 0.469461, 0.000000, 0.000000, -0.882953 - 0.472234, 0.000000, 0.000000, -0.881473 - 0.475002, 0.000000, 0.000000, -0.879985 - 0.477765, 0.000000, 0.000000, -0.878488 - 0.480523, 0.000000, 0.000000, -0.876982 - 0.483277, 0.000000, 0.000000, -0.875468 - 0.486026, 0.000000, 0.000000, -0.873945 - 0.488770, 0.000000, 0.000000, -0.872413 - 0.491509, 0.000000, 0.000000, -0.870872 - 0.494243, 0.000000, 0.000000, -0.869324 - 0.496973, 0.000000, 0.000000, -0.867766 - 0.499698, 0.000000, 0.000000, -0.866200 - 0.502417, 0.000000, 0.000000, -0.864625 - 0.505132, 0.000000, 0.000000, -0.863042 - 0.507842, 0.000000, 0.000000, -0.861450 - 0.510546, 0.000000, 0.000000, -0.859850 - 0.513246, 0.000000, 0.000000, -0.858241 - 0.515941, 0.000000, 0.000000, -0.856624 - 0.518630, 0.000000, 0.000000, -0.854999 - 0.521315, 0.000000, 0.000000, -0.853365 - 0.523994, 0.000000, 0.000000, -0.851722 - 0.526668, 0.000000, 0.000000, -0.850071 - 0.529337, 0.000000, 0.000000, -0.848412 - 0.532000, 0.000000, 0.000000, -0.846744 - 0.534659, 0.000000, 0.000000, -0.845068 - 0.537312, 0.000000, 0.000000, -0.843384 - 0.539960, 0.000000, 0.000000, -0.841691 - 0.542602, 0.000000, 0.000000, -0.839990 - 0.545239, 0.000000, 0.000000, -0.838280 - 0.547871, 0.000000, 0.000000, -0.836563 - 0.550497, 0.000000, 0.000000, -0.834837 - 0.553118, 0.000000, 0.000000, -0.833103 - 0.555734, 0.000000, 0.000000, -0.831360 - 0.558343, 0.000000, 0.000000, -0.829610 - 0.560948, 0.000000, 0.000000, -0.827851 - 0.563547, 0.000000, 0.000000, -0.826084 - 0.566140, 0.000000, 0.000000, -0.824309 - 0.568728, 0.000000, 0.000000, -0.822526 - 0.571310, 0.000000, 0.000000, -0.820734 - 0.573886, 0.000000, 0.000000, -0.818935 - 0.576457, 0.000000, 0.000000, -0.817127 - 0.579022, 0.000000, 0.000000, -0.815312 - 0.581581, 0.000000, 0.000000, -0.813488 - 0.584135, 0.000000, 0.000000, -0.811656 - 0.586683, 0.000000, 0.000000, -0.809817 - 0.589225, 0.000000, 0.000000, -0.807969 - 0.591761, 0.000000, 0.000000, -0.806113 - 0.594292, 0.000000, 0.000000, -0.804250 - 0.596816, 0.000000, 0.000000, -0.802378 - 0.599335, 0.000000, 0.000000, -0.800498 - 0.601848, 0.000000, 0.000000, -0.798611 - 0.604354, 0.000000, 0.000000, -0.796716 - 0.606855, 0.000000, 0.000000, -0.794812 - 0.609350, 0.000000, 0.000000, -0.792901 - 0.611839, 0.000000, 0.000000, -0.790983 - 0.614321, 0.000000, 0.000000, -0.789056 - 0.616798, 0.000000, 0.000000, -0.787121 - 0.619269, 0.000000, 0.000000, -0.785179 - 0.621733, 0.000000, 0.000000, -0.783229 - 0.624192, 0.000000, 0.000000, -0.781271 - 0.626644, 0.000000, 0.000000, -0.779306 - 0.629090, 0.000000, 0.000000, -0.777333 - 0.631529, 0.000000, 0.000000, -0.775352 - 0.633963, 0.000000, 0.000000, -0.773363 - 0.636390, 0.000000, 0.000000, -0.771367 - 0.638811, 0.000000, 0.000000, -0.769363 - 0.641226, 0.000000, 0.000000, -0.767352 - 0.643634, 0.000000, 0.000000, -0.765333 - 0.646036, 0.000000, 0.000000, -0.763307 - 0.648432, 0.000000, 0.000000, -0.761273 - 0.650821, 0.000000, 0.000000, -0.759231 - 0.653204, 0.000000, 0.000000, -0.757182 - 0.655580, 0.000000, 0.000000, -0.755126 - 0.657950, 0.000000, 0.000000, -0.753062 - 0.660313, 0.000000, 0.000000, -0.750990 - 0.662670, 0.000000, 0.000000, -0.748911 - 0.665020, 0.000000, 0.000000, -0.746825 - 0.667364, 0.000000, 0.000000, -0.744732 - 0.669701, 0.000000, 0.000000, -0.742631 - 0.672032, 0.000000, 0.000000, -0.740522 - 0.674356, 0.000000, 0.000000, -0.738407 - 0.676673, 0.000000, 0.000000, -0.736284 - 0.678983, 0.000000, 0.000000, -0.734154 - 0.681287, 0.000000, 0.000000, -0.732016 - 0.683584, 0.000000, 0.000000, -0.729872 - 0.685875, 0.000000, 0.000000, -0.727720 - 0.688158, 0.000000, 0.000000, -0.725561 - 0.690435, 0.000000, 0.000000, -0.723394 - 0.692705, 0.000000, 0.000000, -0.721221 - 0.694968, 0.000000, 0.000000, -0.719041 - 0.697224, 0.000000, 0.000000, -0.716853 - 0.699474, 0.000000, 0.000000, -0.714658 - 0.701716, 0.000000, 0.000000, -0.712457 - 0.703952, 0.000000, 0.000000, -0.710248 - 0.706180, 0.000000, 0.000000, -0.708032 - 0.708402, 0.000000, 0.000000, -0.705809 - 0.710616, 0.000000, 0.000000, -0.703580 - 0.712824, 0.000000, 0.000000, -0.701343 - 0.715025, 0.000000, 0.000000, -0.699099 - 0.717218, 0.000000, 0.000000, -0.696849 - 0.719404, 0.000000, 0.000000, -0.694591 - 0.721584, 0.000000, 0.000000, -0.692327 - 0.723756, 0.000000, 0.000000, -0.690056 - 0.725921, 0.000000, 0.000000, -0.687778 - 0.728079, 0.000000, 0.000000, -0.685493 - 0.730229, 0.000000, 0.000000, -0.683202 - 0.732373, 0.000000, 0.000000, -0.680904 - 0.734509, 0.000000, 0.000000, -0.678599 - 0.736638, 0.000000, 0.000000, -0.676287 - 0.738760, 0.000000, 0.000000, -0.673969 - 0.740874, 0.000000, 0.000000, -0.671644 - 0.742981, 0.000000, 0.000000, -0.669312 - 0.745081, 0.000000, 0.000000, -0.666974 - 0.747173, 0.000000, 0.000000, -0.664629 - 0.749258, 0.000000, 0.000000, -0.662278 - 0.751336, 0.000000, 0.000000, -0.659920 - 0.753406, 0.000000, 0.000000, -0.657555 - 0.755469, 0.000000, 0.000000, -0.655185 - 0.757524, 0.000000, 0.000000, -0.652807 - 0.759572, 0.000000, 0.000000, -0.650423 - 0.761612, 0.000000, 0.000000, -0.648033 - 0.763645, 0.000000, 0.000000, -0.645636 - 0.765670, 0.000000, 0.000000, -0.643233 - 0.767688, 0.000000, 0.000000, -0.640824 - 0.769698, 0.000000, 0.000000, -0.638408 - 0.771700, 0.000000, 0.000000, -0.635986 - 0.773695, 0.000000, 0.000000, -0.633558 - 0.775683, 0.000000, 0.000000, -0.631123 - 0.777662, 0.000000, 0.000000, -0.628682 - 0.779634, 0.000000, 0.000000, -0.626235 - 0.781598, 0.000000, 0.000000, -0.623782 - 0.783555, 0.000000, 0.000000, -0.621323 - 0.785503, 0.000000, 0.000000, -0.618857 - 0.787444, 0.000000, 0.000000, -0.616386 - 0.789377, 0.000000, 0.000000, -0.613908 - 0.791303, 0.000000, 0.000000, -0.611424 - 0.793220, 0.000000, 0.000000, -0.608935 - 0.795130, 0.000000, 0.000000, -0.606439 - 0.797032, 0.000000, 0.000000, -0.603937 - 0.798926, 0.000000, 0.000000, -0.601429 - 0.800812, 0.000000, 0.000000, -0.598915 - 0.802690, 0.000000, 0.000000, -0.596396 - 0.804561, 0.000000, 0.000000, -0.593870 - 0.806423, 0.000000, 0.000000, -0.591339 - 0.808277, 0.000000, 0.000000, -0.588802 - 0.810124, 0.000000, 0.000000, -0.586259 - 0.811962, 0.000000, 0.000000, -0.583710 - 0.813793, 0.000000, 0.000000, -0.581155 - 0.815615, 0.000000, 0.000000, -0.578595 - 0.817429, 0.000000, 0.000000, -0.576029 - 0.819235, 0.000000, 0.000000, -0.573457 - 0.821034, 0.000000, 0.000000, -0.570880 - 0.822824, 0.000000, 0.000000, -0.568297 - 0.824606, 0.000000, 0.000000, -0.565708 - 0.826379, 0.000000, 0.000000, -0.563114 - 0.828145, 0.000000, 0.000000, -0.560514 - 0.829902, 0.000000, 0.000000, -0.557909 - 0.831651, 0.000000, 0.000000, -0.555298 - 0.833392, 0.000000, 0.000000, -0.552682 - 0.835125, 0.000000, 0.000000, -0.550060 - 0.836850, 0.000000, 0.000000, -0.547433 - 0.838566, 0.000000, 0.000000, -0.544800 - 0.840274, 0.000000, 0.000000, -0.542162 - 0.841974, 0.000000, 0.000000, -0.539519 - 0.843665, 0.000000, 0.000000, -0.536870 - 0.845348, 0.000000, 0.000000, -0.534216 - 0.847023, 0.000000, 0.000000, -0.531557 - 0.848689, 0.000000, 0.000000, -0.528892 - 0.850347, 0.000000, 0.000000, -0.526223 - 0.851996, 0.000000, 0.000000, -0.523548 - 0.853638, 0.000000, 0.000000, -0.520868 - 0.855270, 0.000000, 0.000000, -0.518182 - 0.856894, 0.000000, 0.000000, -0.515492 - 0.858510, 0.000000, 0.000000, -0.512797 - 0.860117, 0.000000, 0.000000, -0.510096 - 0.861716, 0.000000, 0.000000, -0.507390 - 0.863307, 0.000000, 0.000000, -0.504680 - 0.864888, 0.000000, 0.000000, -0.501964 - 0.866462, 0.000000, 0.000000, -0.499244 - 0.868026, 0.000000, 0.000000, -0.496518 - 0.869582, 0.000000, 0.000000, -0.493788 - 0.871130, 0.000000, 0.000000, -0.491053 - 0.872669, 0.000000, 0.000000, -0.488313 - 0.874199, 0.000000, 0.000000, -0.485568 - 0.875721, 0.000000, 0.000000, -0.482818 - 0.877234, 0.000000, 0.000000, -0.480064 - 0.878738, 0.000000, 0.000000, -0.477305 - 0.880234, 0.000000, 0.000000, -0.474541 - 0.881721, 0.000000, 0.000000, -0.471772 - 0.883199, 0.000000, 0.000000, -0.468999 - 0.884668, 0.000000, 0.000000, -0.466221 - 0.886129, 0.000000, 0.000000, -0.463438 - 0.887581, 0.000000, 0.000000, -0.460651 - 0.889024, 0.000000, 0.000000, -0.457860 - 0.890459, 0.000000, 0.000000, -0.455064 - 0.891885, 0.000000, 0.000000, -0.452263 - 0.893302, 0.000000, 0.000000, -0.449458 - 0.894710, 0.000000, 0.000000, -0.446648 - 0.896109, 0.000000, 0.000000, -0.443834 - 0.897499, 0.000000, 0.000000, -0.441016 - 0.898881, 0.000000, 0.000000, -0.438193 - 0.900253, 0.000000, 0.000000, -0.435366 - 0.901617, 0.000000, 0.000000, -0.432535 - 0.902972, 0.000000, 0.000000, -0.429699 - 0.904318, 0.000000, 0.000000, -0.426860 - 0.905655, 0.000000, 0.000000, -0.424015 - 0.906983, 0.000000, 0.000000, -0.421167 - 0.908302, 0.000000, 0.000000, -0.418315 - 0.909612, 0.000000, 0.000000, -0.415458 - 0.910913, 0.000000, 0.000000, -0.412598 - 0.912206, 0.000000, 0.000000, -0.409733 - 0.913489, 0.000000, 0.000000, -0.406864 - 0.914763, 0.000000, 0.000000, -0.403991 - 0.916028, 0.000000, 0.000000, -0.401115 - 0.917284, 0.000000, 0.000000, -0.398234 - 0.918531, 0.000000, 0.000000, -0.395349 - 0.919769, 0.000000, 0.000000, -0.392461 - 0.920998, 0.000000, 0.000000, -0.389568 - 0.922217, 0.000000, 0.000000, -0.386672 - 0.923428, 0.000000, 0.000000, -0.383772 - 0.924629, 0.000000, 0.000000, -0.380868 - 0.925822, 0.000000, 0.000000, -0.377960 - 0.927005, 0.000000, 0.000000, -0.375049 - 0.928179, 0.000000, 0.000000, -0.372134 - 0.929344, 0.000000, 0.000000, -0.369215 - 0.930500, 0.000000, 0.000000, -0.366293 - 0.931646, 0.000000, 0.000000, -0.363367 - 0.932784, 0.000000, 0.000000, -0.360437 - 0.933912, 0.000000, 0.000000, -0.357504 - 0.935031, 0.000000, 0.000000, -0.354567 - 0.936140, 0.000000, 0.000000, -0.351627 - 0.937241, 0.000000, 0.000000, -0.348683 - 0.938332, 0.000000, 0.000000, -0.345736 - 0.939414, 0.000000, 0.000000, -0.342786 - 0.940486, 0.000000, 0.000000, -0.339832 - 0.941550, 0.000000, 0.000000, -0.336874 - 0.942604, 0.000000, 0.000000, -0.333914 - 0.943648, 0.000000, 0.000000, -0.330950 - 0.944684, 0.000000, 0.000000, -0.327983 - 0.945710, 0.000000, 0.000000, -0.325012 - 0.946727, 0.000000, 0.000000, -0.322039 - 0.947734, 0.000000, 0.000000, -0.319062 - 0.948732, 0.000000, 0.000000, -0.316082 - 0.949721, 0.000000, 0.000000, -0.313099 - 0.950700, 0.000000, 0.000000, -0.310113 - 0.951670, 0.000000, 0.000000, -0.307123 - 0.952630, 0.000000, 0.000000, -0.304131 - 0.953581, 0.000000, 0.000000, -0.301136 - 0.954523, 0.000000, 0.000000, -0.298138 - 0.955455, 0.000000, 0.000000, -0.295136 - 0.956378, 0.000000, 0.000000, -0.292132 - 0.957291, 0.000000, 0.000000, -0.289125 - 0.958195, 0.000000, 0.000000, -0.286116 - 0.959090, 0.000000, 0.000000, -0.283103 - 0.959975, 0.000000, 0.000000, -0.280087 - 0.960850, 0.000000, 0.000000, -0.277069 - 0.961716, 0.000000, 0.000000, -0.274048 - 0.962572, 0.000000, 0.000000, -0.271025 - 0.963419, 0.000000, 0.000000, -0.267998 - 0.964257, 0.000000, 0.000000, -0.264969 - 0.965085, 0.000000, 0.000000, -0.261938 - 0.965903, 0.000000, 0.000000, -0.258903 - 0.966712, 0.000000, 0.000000, -0.255867 - 0.967511, 0.000000, 0.000000, -0.252827 - 0.968301, 0.000000, 0.000000, -0.249786 - 0.969081, 0.000000, 0.000000, -0.246741 - 0.969852, 0.000000, 0.000000, -0.243695 - 0.970613, 0.000000, 0.000000, -0.240646 - 0.971365, 0.000000, 0.000000, -0.237594 - 0.972106, 0.000000, 0.000000, -0.234540 - 0.972839, 0.000000, 0.000000, -0.231484 - 0.973561, 0.000000, 0.000000, -0.228426 - 0.974274, 0.000000, 0.000000, -0.225365 - 0.974978, 0.000000, 0.000000, -0.222302 - 0.975672, 0.000000, 0.000000, -0.219237 - 0.976356, 0.000000, 0.000000, -0.216170 - 0.977030, 0.000000, 0.000000, -0.213100 - 0.977695, 0.000000, 0.000000, -0.210029 - 0.978350, 0.000000, 0.000000, -0.206955 - 0.978996, 0.000000, 0.000000, -0.203880 - 0.979632, 0.000000, 0.000000, -0.200802 - 0.980258, 0.000000, 0.000000, -0.197722 - 0.980875, 0.000000, 0.000000, -0.194641 - 0.981481, 0.000000, 0.000000, -0.191557 - 0.982079, 0.000000, 0.000000, -0.188472 - 0.982666, 0.000000, 0.000000, -0.185385 - 0.983244, 0.000000, 0.000000, -0.182296 - 0.983812, 0.000000, 0.000000, -0.179205 - 0.984370, 0.000000, 0.000000, -0.176112 - 0.984919, 0.000000, 0.000000, -0.173018 - 0.985458, 0.000000, 0.000000, -0.169922 - 0.985987, 0.000000, 0.000000, -0.166824 - 0.986506, 0.000000, 0.000000, -0.163724 - 0.987016, 0.000000, 0.000000, -0.160623 - 0.987516, 0.000000, 0.000000, -0.157521 - 0.988006, 0.000000, 0.000000, -0.154417 - 0.988486, 0.000000, 0.000000, -0.151311 - 0.988957, 0.000000, 0.000000, -0.148204 - 0.989418, 0.000000, 0.000000, -0.145095 - 0.989869, 0.000000, 0.000000, -0.141985 - 0.990310, 0.000000, 0.000000, -0.138873 - 0.990742, 0.000000, 0.000000, -0.135761 - 0.991163, 0.000000, 0.000000, -0.132646 - 0.991575, 0.000000, 0.000000, -0.129531 - 0.991978, 0.000000, 0.000000, -0.126414 - 0.992370, 0.000000, 0.000000, -0.123296 - 0.992753, 0.000000, 0.000000, -0.120177 - 0.993125, 0.000000, 0.000000, -0.117056 - 0.993488, 0.000000, 0.000000, -0.113935 - 0.993841, 0.000000, 0.000000, -0.110812 - 0.994185, 0.000000, 0.000000, -0.107688 - 0.994518, 0.000000, 0.000000, -0.104563 - 0.994842, 0.000000, 0.000000, -0.101437 - 0.995156, 0.000000, 0.000000, -0.098310 - 0.995460, 0.000000, 0.000000, -0.095182 - 0.995754, 0.000000, 0.000000, -0.092054 - 0.996038, 0.000000, 0.000000, -0.088924 - 0.996313, 0.000000, 0.000000, -0.085793 - 0.996578, 0.000000, 0.000000, -0.082662 - 0.996833, 0.000000, 0.000000, -0.079529 - 0.997078, 0.000000, 0.000000, -0.076396 - 0.997313, 0.000000, 0.000000, -0.073263 - 0.997538, 0.000000, 0.000000, -0.070128 - 0.997753, 0.000000, 0.000000, -0.066993 - 0.997959, 0.000000, 0.000000, -0.063857 - 0.998155, 0.000000, 0.000000, -0.060720 - 0.998341, 0.000000, 0.000000, -0.057583 - 0.998517, 0.000000, 0.000000, -0.054445 - 0.998683, 0.000000, 0.000000, -0.051307 - 0.998839, 0.000000, 0.000000, -0.048169 - 0.998986, 0.000000, 0.000000, -0.045029 - 0.999122, 0.000000, 0.000000, -0.041890 - 0.999249, 0.000000, 0.000000, -0.038750 - 0.999366, 0.000000, 0.000000, -0.035609 - 0.999473, 0.000000, 0.000000, -0.032468 - 0.999570, 0.000000, 0.000000, -0.029327 - 0.999657, 0.000000, 0.000000, -0.026186 - 0.999734, 0.000000, 0.000000, -0.023044 - 0.999802, 0.000000, 0.000000, -0.019902 - 0.999860, 0.000000, 0.000000, -0.016760 - 0.999907, 0.000000, 0.000000, -0.013618 - 0.999945, 0.000000, 0.000000, -0.010475 - 0.999973, 0.000000, 0.000000, -0.007333 - 0.999991, 0.000000, 0.000000, -0.004190 - 0.999999, 0.000000, 0.000000, -0.001048 - 0.999998, 0.000000, 0.000000, 0.002095 - 0.999986, 0.000000, 0.000000, 0.005238 - 0.999965, 0.000000, 0.000000, 0.008380 - 0.999934, 0.000000, 0.000000, 0.011523 - 0.999892, 0.000000, 0.000000, 0.014665 - 0.999841, 0.000000, 0.000000, 0.017807 - 0.999781, 0.000000, 0.000000, 0.020949 - 0.999710, 0.000000, 0.000000, 0.024091 - 0.999629, 0.000000, 0.000000, 0.027233 - 0.999539, 0.000000, 0.000000, 0.030374 - 0.999438, 0.000000, 0.000000, 0.033515 - 0.999328, 0.000000, 0.000000, 0.036656 - 0.999208, 0.000000, 0.000000, 0.039796 - 0.999078, 0.000000, 0.000000, 0.042936 - 0.998938, 0.000000, 0.000000, 0.046076 - 0.998788, 0.000000, 0.000000, 0.049215 - 0.998629, 0.000000, 0.000000, 0.052353 - 0.998459, 0.000000, 0.000000, 0.055491 - 0.998280, 0.000000, 0.000000, 0.058629 - 0.998091, 0.000000, 0.000000, 0.061766 - 0.997892, 0.000000, 0.000000, 0.064902 - 0.997683, 0.000000, 0.000000, 0.068038 - 0.997464, 0.000000, 0.000000, 0.071173 - 0.997235, 0.000000, 0.000000, 0.074307 - 0.996997, 0.000000, 0.000000, 0.077441 - 0.996749, 0.000000, 0.000000, 0.080574 - 0.996491, 0.000000, 0.000000, 0.083706 - 0.996223, 0.000000, 0.000000, 0.086837 - 0.995945, 0.000000, 0.000000, 0.089967 - 0.995657, 0.000000, 0.000000, 0.093097 - 0.995360, 0.000000, 0.000000, 0.096225 - 0.995052, 0.000000, 0.000000, 0.099353 - 0.994735, 0.000000, 0.000000, 0.102479 - 0.994408, 0.000000, 0.000000, 0.105605 - 0.994071, 0.000000, 0.000000, 0.108729 - 0.993725, 0.000000, 0.000000, 0.111853 - 0.993368, 0.000000, 0.000000, 0.114975 - 0.993002, 0.000000, 0.000000, 0.118097 - 0.992626, 0.000000, 0.000000, 0.121217 - 0.992240, 0.000000, 0.000000, 0.124335 - 0.991845, 0.000000, 0.000000, 0.127453 - 0.991439, 0.000000, 0.000000, 0.130569 - 0.991024, 0.000000, 0.000000, 0.133685 - 0.990599, 0.000000, 0.000000, 0.136798 - 0.990164, 0.000000, 0.000000, 0.139911 - 0.989720, 0.000000, 0.000000, 0.143022 - 0.989265, 0.000000, 0.000000, 0.146131 - 0.988801, 0.000000, 0.000000, 0.149240 - 0.988327, 0.000000, 0.000000, 0.152346 - 0.987844, 0.000000, 0.000000, 0.155451 - 0.987350, 0.000000, 0.000000, 0.158555 - 0.986847, 0.000000, 0.000000, 0.161657 - 0.986334, 0.000000, 0.000000, 0.164758 - 0.985811, 0.000000, 0.000000, 0.167857 - 0.985279, 0.000000, 0.000000, 0.170954 - 0.984737, 0.000000, 0.000000, 0.174049 - 0.984185, 0.000000, 0.000000, 0.177143 - 0.983624, 0.000000, 0.000000, 0.180235 - 0.983052, 0.000000, 0.000000, 0.183326 - 0.982471, 0.000000, 0.000000, 0.186414 - 0.981881, 0.000000, 0.000000, 0.189501 - 0.981280, 0.000000, 0.000000, 0.192585 - 0.980670, 0.000000, 0.000000, 0.195668 - 0.980050, 0.000000, 0.000000, 0.198749 - 0.979421, 0.000000, 0.000000, 0.201828 - 0.978782, 0.000000, 0.000000, 0.204905 - 0.978133, 0.000000, 0.000000, 0.207980 - 0.977475, 0.000000, 0.000000, 0.211053 - 0.976807, 0.000000, 0.000000, 0.214124 - 0.976129, 0.000000, 0.000000, 0.217192 - 0.975441, 0.000000, 0.000000, 0.220259 - 0.974744, 0.000000, 0.000000, 0.223323 - 0.974038, 0.000000, 0.000000, 0.226385 - 0.973322, 0.000000, 0.000000, 0.229445 - 0.972596, 0.000000, 0.000000, 0.232503 - 0.971860, 0.000000, 0.000000, 0.235558 - 0.971115, 0.000000, 0.000000, 0.238611 - 0.970360, 0.000000, 0.000000, 0.241662 - 0.969596, 0.000000, 0.000000, 0.244710 - 0.968822, 0.000000, 0.000000, 0.247756 - 0.968039, 0.000000, 0.000000, 0.250800 - 0.967246, 0.000000, 0.000000, 0.253841 - 0.966444, 0.000000, 0.000000, 0.256879 - 0.965631, 0.000000, 0.000000, 0.259915 - 0.964810, 0.000000, 0.000000, 0.262948 - 0.963979, 0.000000, 0.000000, 0.265979 - 0.963138, 0.000000, 0.000000, 0.269007 - 0.962288, 0.000000, 0.000000, 0.272033 - 0.961428, 0.000000, 0.000000, 0.275056 - 0.960559, 0.000000, 0.000000, 0.278076 - 0.959681, 0.000000, 0.000000, 0.281093 - 0.958792, 0.000000, 0.000000, 0.284107 - 0.957895, 0.000000, 0.000000, 0.287119 - 0.956988, 0.000000, 0.000000, 0.290128 - 0.956071, 0.000000, 0.000000, 0.293134 - 0.955145, 0.000000, 0.000000, 0.296137 - 0.954210, 0.000000, 0.000000, 0.299137 - 0.953265, 0.000000, 0.000000, 0.302135 - 0.952311, 0.000000, 0.000000, 0.305129 - 0.951347, 0.000000, 0.000000, 0.308120 - 0.950374, 0.000000, 0.000000, 0.311108 - 0.949392, 0.000000, 0.000000, 0.314094 - 0.948400, 0.000000, 0.000000, 0.317076 - 0.947399, 0.000000, 0.000000, 0.320055 - 0.946389, 0.000000, 0.000000, 0.323030 - 0.945369, 0.000000, 0.000000, 0.326003 - 0.944340, 0.000000, 0.000000, 0.328972 - 0.943301, 0.000000, 0.000000, 0.331938 - 0.942253, 0.000000, 0.000000, 0.334901 - 0.941196, 0.000000, 0.000000, 0.337861 - 0.940130, 0.000000, 0.000000, 0.340817 - 0.939054, 0.000000, 0.000000, 0.343770 - 0.937969, 0.000000, 0.000000, 0.346719 - 0.936875, 0.000000, 0.000000, 0.349665 - 0.935771, 0.000000, 0.000000, 0.352607 - 0.934659, 0.000000, 0.000000, 0.355547 - 0.933537, 0.000000, 0.000000, 0.358482 - 0.932405, 0.000000, 0.000000, 0.361414 - 0.931265, 0.000000, 0.000000, 0.364342 - 0.930115, 0.000000, 0.000000, 0.367267 - 0.928957, 0.000000, 0.000000, 0.370188 - 0.927789, 0.000000, 0.000000, 0.373106 - 0.926612, 0.000000, 0.000000, 0.376020 - 0.925425, 0.000000, 0.000000, 0.378930 - 0.924230, 0.000000, 0.000000, 0.381836 - 0.923025, 0.000000, 0.000000, 0.384739 - 0.921812, 0.000000, 0.000000, 0.387638 - 0.920589, 0.000000, 0.000000, 0.390533 - 0.919357, 0.000000, 0.000000, 0.393424 - 0.918116, 0.000000, 0.000000, 0.396311 - 0.916866, 0.000000, 0.000000, 0.399195 - 0.915607, 0.000000, 0.000000, 0.402074 - 0.914339, 0.000000, 0.000000, 0.404950 - 0.913062, 0.000000, 0.000000, 0.407821 - 0.911776, 0.000000, 0.000000, 0.410688 - 0.910481, 0.000000, 0.000000, 0.413552 - 0.909177, 0.000000, 0.000000, 0.416411 - 0.907863, 0.000000, 0.000000, 0.419266 - 0.906541, 0.000000, 0.000000, 0.422117 - 0.905210, 0.000000, 0.000000, 0.424964 - 0.903870, 0.000000, 0.000000, 0.427807 - 0.902521, 0.000000, 0.000000, 0.430645 - 0.901164, 0.000000, 0.000000, 0.433479 - 0.899797, 0.000000, 0.000000, 0.436309 - 0.898421, 0.000000, 0.000000, 0.439135 - 0.897037, 0.000000, 0.000000, 0.441956 - 0.895643, 0.000000, 0.000000, 0.444773 - 0.894241, 0.000000, 0.000000, 0.447585 - 0.892830, 0.000000, 0.000000, 0.450393 - 0.891410, 0.000000, 0.000000, 0.453197 - 0.889982, 0.000000, 0.000000, 0.455996 - 0.888544, 0.000000, 0.000000, 0.458791 - 0.887098, 0.000000, 0.000000, 0.461581 - 0.885643, 0.000000, 0.000000, 0.464366 - 0.884179, 0.000000, 0.000000, 0.467147 - 0.882707, 0.000000, 0.000000, 0.469924 - 0.881226, 0.000000, 0.000000, 0.472695 - 0.879736, 0.000000, 0.000000, 0.475462 - 0.878237, 0.000000, 0.000000, 0.478225 - 0.876730, 0.000000, 0.000000, 0.480982 - 0.875214, 0.000000, 0.000000, 0.483735 - 0.873690, 0.000000, 0.000000, 0.486483 - 0.872157, 0.000000, 0.000000, 0.489227 - 0.870615, 0.000000, 0.000000, 0.491965 - 0.869065, 0.000000, 0.000000, 0.494699 - 0.867506, 0.000000, 0.000000, 0.497427 - 0.865938, 0.000000, 0.000000, 0.500151 - 0.864362, 0.000000, 0.000000, 0.502870 - 0.862777, 0.000000, 0.000000, 0.505584 - 0.861184, 0.000000, 0.000000, 0.508293 - 0.859583, 0.000000, 0.000000, 0.510997 - 0.857973, 0.000000, 0.000000, 0.513696 - 0.856354, 0.000000, 0.000000, 0.516389 - 0.854727, 0.000000, 0.000000, 0.519078 - 0.853091, 0.000000, 0.000000, 0.521761 - 0.851447, 0.000000, 0.000000, 0.524440 - 0.849795, 0.000000, 0.000000, 0.527113 - 0.848134, 0.000000, 0.000000, 0.529781 - 0.846465, 0.000000, 0.000000, 0.532444 - 0.844788, 0.000000, 0.000000, 0.535101 - 0.843102, 0.000000, 0.000000, 0.537754 - 0.841408, 0.000000, 0.000000, 0.540400 - 0.839706, 0.000000, 0.000000, 0.543042 - 0.837995, 0.000000, 0.000000, 0.545678 - 0.836276, 0.000000, 0.000000, 0.548309 - 0.834549, 0.000000, 0.000000, 0.550934 - 0.832813, 0.000000, 0.000000, 0.553554 - 0.831069, 0.000000, 0.000000, 0.556169 - 0.829317, 0.000000, 0.000000, 0.558778 - 0.827557, 0.000000, 0.000000, 0.561381 - 0.825789, 0.000000, 0.000000, 0.563979 - 0.824012, 0.000000, 0.000000, 0.566572 - 0.822228, 0.000000, 0.000000, 0.569158 - 0.820435, 0.000000, 0.000000, 0.571740 - 0.818634, 0.000000, 0.000000, 0.574315 - 0.816825, 0.000000, 0.000000, 0.576885 - 0.815008, 0.000000, 0.000000, 0.579449 - 0.813183, 0.000000, 0.000000, 0.582008 - 0.811350, 0.000000, 0.000000, 0.584560 - 0.809509, 0.000000, 0.000000, 0.587107 - 0.807660, 0.000000, 0.000000, 0.589648 - 0.805803, 0.000000, 0.000000, 0.592183 - 0.803938, 0.000000, 0.000000, 0.594713 - 0.802065, 0.000000, 0.000000, 0.597236 - 0.800184, 0.000000, 0.000000, 0.599754 - 0.798296, 0.000000, 0.000000, 0.602266 - 0.796399, 0.000000, 0.000000, 0.604772 - 0.794494, 0.000000, 0.000000, 0.607271 - 0.792582, 0.000000, 0.000000, 0.609765 - 0.790662, 0.000000, 0.000000, 0.612253 - 0.788734, 0.000000, 0.000000, 0.614735 - 0.786798, 0.000000, 0.000000, 0.617210 - 0.784855, 0.000000, 0.000000, 0.619680 - 0.782903, 0.000000, 0.000000, 0.622143 - 0.780944, 0.000000, 0.000000, 0.624601 - 0.778978, 0.000000, 0.000000, 0.627052 - 0.777003, 0.000000, 0.000000, 0.629497 - 0.775021, 0.000000, 0.000000, 0.631935 - 0.773031, 0.000000, 0.000000, 0.634368 - 0.771034, 0.000000, 0.000000, 0.636794 - 0.769029, 0.000000, 0.000000, 0.639214 - 0.767016, 0.000000, 0.000000, 0.641628 - 0.764996, 0.000000, 0.000000, 0.644035 - 0.762968, 0.000000, 0.000000, 0.646436 - 0.760933, 0.000000, 0.000000, 0.648830 - 0.758890, 0.000000, 0.000000, 0.651219 - 0.756840, 0.000000, 0.000000, 0.653600 - 0.754782, 0.000000, 0.000000, 0.655976 - 0.752717, 0.000000, 0.000000, 0.658344 - 0.750644, 0.000000, 0.000000, 0.660707 - 0.748564, 0.000000, 0.000000, 0.663062 - 0.746477, 0.000000, 0.000000, 0.665412 - 0.744382, 0.000000, 0.000000, 0.667754 - 0.742280, 0.000000, 0.000000, 0.670090 - 0.740170, 0.000000, 0.000000, 0.672420 - 0.738053, 0.000000, 0.000000, 0.674742 - 0.735929, 0.000000, 0.000000, 0.677058 - 0.733798, 0.000000, 0.000000, 0.679368 - 0.731659, 0.000000, 0.000000, 0.681671 - 0.729513, 0.000000, 0.000000, 0.683967 - 0.727360, 0.000000, 0.000000, 0.686256 - 0.725200, 0.000000, 0.000000, 0.688538 - 0.723033, 0.000000, 0.000000, 0.690814 - 0.720858, 0.000000, 0.000000, 0.693083 - 0.718676, 0.000000, 0.000000, 0.695345 - 0.716488, 0.000000, 0.000000, 0.697600 - 0.714292, 0.000000, 0.000000, 0.699848 - 0.712089, 0.000000, 0.000000, 0.702089 - 0.709879, 0.000000, 0.000000, 0.704324 - 0.707662, 0.000000, 0.000000, 0.706551 - 0.705438, 0.000000, 0.000000, 0.708771 - 0.703207, 0.000000, 0.000000, 0.710985 - 0.700969, 0.000000, 0.000000, 0.713191 - 0.698725, 0.000000, 0.000000, 0.715391 - 0.696473, 0.000000, 0.000000, 0.717583 - 0.694214, 0.000000, 0.000000, 0.719768 - 0.691949, 0.000000, 0.000000, 0.721946 - 0.689677, 0.000000, 0.000000, 0.724117 - 0.687398, 0.000000, 0.000000, 0.726281 - 0.685112, 0.000000, 0.000000, 0.728438 - 0.682819, 0.000000, 0.000000, 0.730587 - 0.680520, 0.000000, 0.000000, 0.732729 - 0.678214, 0.000000, 0.000000, 0.734864 - 0.675901, 0.000000, 0.000000, 0.736992 - 0.673582, 0.000000, 0.000000, 0.739113 - 0.671256, 0.000000, 0.000000, 0.741226 - 0.668923, 0.000000, 0.000000, 0.743332 - 0.666584, 0.000000, 0.000000, 0.745430 - 0.664238, 0.000000, 0.000000, 0.747521 - 0.661885, 0.000000, 0.000000, 0.749605 - 0.659526, 0.000000, 0.000000, 0.751682 - 0.657161, 0.000000, 0.000000, 0.753750 - 0.654789, 0.000000, 0.000000, 0.755812 - 0.652410, 0.000000, 0.000000, 0.757866 - 0.650025, 0.000000, 0.000000, 0.759913 - 0.647634, 0.000000, 0.000000, 0.761952 - 0.645236, 0.000000, 0.000000, 0.763983 - 0.642832, 0.000000, 0.000000, 0.766007 - 0.640422, 0.000000, 0.000000, 0.768023 - 0.638005, 0.000000, 0.000000, 0.770032 - 0.635582, 0.000000, 0.000000, 0.772033 - 0.633153, 0.000000, 0.000000, 0.774027 - 0.630717, 0.000000, 0.000000, 0.776013 - 0.628275, 0.000000, 0.000000, 0.777991 - 0.625827, 0.000000, 0.000000, 0.779962 - 0.623373, 0.000000, 0.000000, 0.781925 - 0.620912, 0.000000, 0.000000, 0.783880 - 0.618446, 0.000000, 0.000000, 0.785827 - 0.615973, 0.000000, 0.000000, 0.787767 - 0.613495, 0.000000, 0.000000, 0.789699 - 0.611010, 0.000000, 0.000000, 0.791623 - 0.608519, 0.000000, 0.000000, 0.793539 - 0.606022, 0.000000, 0.000000, 0.795448 - 0.603519, 0.000000, 0.000000, 0.797348 - 0.601011, 0.000000, 0.000000, 0.799241 - 0.598496, 0.000000, 0.000000, 0.801126 - 0.595975, 0.000000, 0.000000, 0.803003 - 0.593449, 0.000000, 0.000000, 0.804872 - 0.590917, 0.000000, 0.000000, 0.806733 - 0.588378, 0.000000, 0.000000, 0.808586 - 0.585834, 0.000000, 0.000000, 0.810431 - 0.583285, 0.000000, 0.000000, 0.812268 - 0.580729, 0.000000, 0.000000, 0.814097 - 0.578168, 0.000000, 0.000000, 0.815918 - 0.575601, 0.000000, 0.000000, 0.817731 - 0.573028, 0.000000, 0.000000, 0.819536 - 0.570450, 0.000000, 0.000000, 0.821333 - 0.567866, 0.000000, 0.000000, 0.823121 - 0.565276, 0.000000, 0.000000, 0.824902 - 0.562681, 0.000000, 0.000000, 0.826674 - 0.560080, 0.000000, 0.000000, 0.828438 - 0.557474, 0.000000, 0.000000, 0.830194 - 0.554862, 0.000000, 0.000000, 0.831942 - 0.552245, 0.000000, 0.000000, 0.833682 - 0.549622, 0.000000, 0.000000, 0.835413 - 0.546994, 0.000000, 0.000000, 0.837136 - 0.544361, 0.000000, 0.000000, 0.838851 - 0.541722, 0.000000, 0.000000, 0.840558 - 0.539078, 0.000000, 0.000000, 0.842256 - 0.536428, 0.000000, 0.000000, 0.843946 - 0.533773, 0.000000, 0.000000, 0.845628 - 0.531113, 0.000000, 0.000000, 0.847301 - 0.528448, 0.000000, 0.000000, 0.848966 - 0.525777, 0.000000, 0.000000, 0.850622 - 0.523101, 0.000000, 0.000000, 0.852270 - 0.520420, 0.000000, 0.000000, 0.853910 - 0.517734, 0.000000, 0.000000, 0.855541 - 0.515043, 0.000000, 0.000000, 0.857164 - 0.512347, 0.000000, 0.000000, 0.858779 - 0.509645, 0.000000, 0.000000, 0.860385 - 0.506939, 0.000000, 0.000000, 0.861982 - 0.504228, 0.000000, 0.000000, 0.863571 - 0.501511, 0.000000, 0.000000, 0.865151 - 0.498790, 0.000000, 0.000000, 0.866723 - 0.496064, 0.000000, 0.000000, 0.868286 - 0.493332, 0.000000, 0.000000, 0.869841 - 0.490596, 0.000000, 0.000000, 0.871387 - 0.487856, 0.000000, 0.000000, 0.872924 - 0.485110, 0.000000, 0.000000, 0.874453 - 0.482359, 0.000000, 0.000000, 0.875973 - 0.479604, 0.000000, 0.000000, 0.877485 - 0.476844, 0.000000, 0.000000, 0.878988 - 0.474079, 0.000000, 0.000000, 0.880482 - 0.471310, 0.000000, 0.000000, 0.881968 - 0.468536, 0.000000, 0.000000, 0.883444 - 0.465757, 0.000000, 0.000000, 0.884912 - 0.462974, 0.000000, 0.000000, 0.886372 - 0.460186, 0.000000, 0.000000, 0.887822 - 0.457394, 0.000000, 0.000000, 0.889264 - 0.454597, 0.000000, 0.000000, 0.890697 - 0.451796, 0.000000, 0.000000, 0.892121 - 0.448990, 0.000000, 0.000000, 0.893537 - 0.446180, 0.000000, 0.000000, 0.894943 - 0.443365, 0.000000, 0.000000, 0.896341 - 0.440546, 0.000000, 0.000000, 0.897730 - 0.437722, 0.000000, 0.000000, 0.899110 - 0.434895, 0.000000, 0.000000, 0.900481 - 0.432063, 0.000000, 0.000000, 0.901844 - 0.429226, 0.000000, 0.000000, 0.903197 - 0.426386, 0.000000, 0.000000, 0.904541 - 0.423541, 0.000000, 0.000000, 0.905877 - 0.420692, 0.000000, 0.000000, 0.907203 - 0.417839, 0.000000, 0.000000, 0.908521 - 0.414982, 0.000000, 0.000000, 0.909830 - 0.412121, 0.000000, 0.000000, 0.911129 - 0.409255, 0.000000, 0.000000, 0.912420 - 0.406386, 0.000000, 0.000000, 0.913702 - 0.403512, 0.000000, 0.000000, 0.914974 - 0.400635, 0.000000, 0.000000, 0.916238 - 0.397753, 0.000000, 0.000000, 0.917492 - 0.394868, 0.000000, 0.000000, 0.918738 - 0.391979, 0.000000, 0.000000, 0.919974 - 0.389086, 0.000000, 0.000000, 0.921201 - 0.386189, 0.000000, 0.000000, 0.922420 - 0.383288, 0.000000, 0.000000, 0.923629 - 0.380384, 0.000000, 0.000000, 0.924829 - 0.377475, 0.000000, 0.000000, 0.926020 - 0.374563, 0.000000, 0.000000, 0.927201 - 0.371648, 0.000000, 0.000000, 0.928374 - 0.368728, 0.000000, 0.000000, 0.929537 - 0.365805, 0.000000, 0.000000, 0.930691 - 0.362879, 0.000000, 0.000000, 0.931836 - 0.359948, 0.000000, 0.000000, 0.932972 - 0.357015, 0.000000, 0.000000, 0.934099 - 0.354077, 0.000000, 0.000000, 0.935216 - 0.351137, 0.000000, 0.000000, 0.936324 - 0.348192, 0.000000, 0.000000, 0.937423 - 0.345245, 0.000000, 0.000000, 0.938513 - 0.342294, 0.000000, 0.000000, 0.939593 - 0.339339, 0.000000, 0.000000, 0.940664 - 0.336381, 0.000000, 0.000000, 0.941726 - 0.333420, 0.000000, 0.000000, 0.942778 - 0.330456, 0.000000, 0.000000, 0.943822 - 0.327488, 0.000000, 0.000000, 0.944855 - 0.324517, 0.000000, 0.000000, 0.945880 - 0.321543, 0.000000, 0.000000, 0.946895 - 0.318565, 0.000000, 0.000000, 0.947901 - 0.315585, 0.000000, 0.000000, 0.948897 - 0.312601, 0.000000, 0.000000, 0.949884 - 0.309615, 0.000000, 0.000000, 0.950862 - 0.306625, 0.000000, 0.000000, 0.951830 - 0.303632, 0.000000, 0.000000, 0.952789 - 0.300636, 0.000000, 0.000000, 0.953739 - 0.297638, 0.000000, 0.000000, 0.954679 - 0.294636, 0.000000, 0.000000, 0.955610 - 0.291631, 0.000000, 0.000000, 0.956531 - 0.288624, 0.000000, 0.000000, 0.957443 - 0.285614, 0.000000, 0.000000, 0.958345 - 0.282600, 0.000000, 0.000000, 0.959238 - 0.279585, 0.000000, 0.000000, 0.960121 - 0.276566, 0.000000, 0.000000, 0.960995 - 0.273544, 0.000000, 0.000000, 0.961859 - 0.270520, 0.000000, 0.000000, 0.962714 - 0.267494, 0.000000, 0.000000, 0.963560 - 0.264464, 0.000000, 0.000000, 0.964396 - 0.261432, 0.000000, 0.000000, 0.965222 - 0.258397, 0.000000, 0.000000, 0.966039 - 0.255360, 0.000000, 0.000000, 0.966846 - 0.252321, 0.000000, 0.000000, 0.967644 - 0.249278, 0.000000, 0.000000, 0.968432 - 0.246234, 0.000000, 0.000000, 0.969210 - 0.243187, 0.000000, 0.000000, 0.969980 - 0.240137, 0.000000, 0.000000, 0.970739 - 0.237085, 0.000000, 0.000000, 0.971489 - 0.234031, 0.000000, 0.000000, 0.972229 - 0.230975, 0.000000, 0.000000, 0.972960 - 0.227916, 0.000000, 0.000000, 0.973681 - 0.224855, 0.000000, 0.000000, 0.974392 - 0.221791, 0.000000, 0.000000, 0.975094 - 0.218726, 0.000000, 0.000000, 0.975786 - 0.215658, 0.000000, 0.000000, 0.976469 - 0.212589, 0.000000, 0.000000, 0.977142 - 0.209517, 0.000000, 0.000000, 0.977805 - 0.206443, 0.000000, 0.000000, 0.978459 - 0.203367, 0.000000, 0.000000, 0.979103 - 0.200289, 0.000000, 0.000000, 0.979737 - 0.197209, 0.000000, 0.000000, 0.980361 - 0.194127, 0.000000, 0.000000, 0.980976 - 0.191043, 0.000000, 0.000000, 0.981582 - 0.187958, 0.000000, 0.000000, 0.982177 - 0.184870, 0.000000, 0.000000, 0.982763 - 0.181781, 0.000000, 0.000000, 0.983339 - 0.178689, 0.000000, 0.000000, 0.983906 - 0.175596, 0.000000, 0.000000, 0.984462 - 0.172502, 0.000000, 0.000000, 0.985009 - 0.169405, 0.000000, 0.000000, 0.985546 - 0.166307, 0.000000, 0.000000, 0.986074 - 0.163208, 0.000000, 0.000000, 0.986592 - 0.160106, 0.000000, 0.000000, 0.987100 - 0.157003, 0.000000, 0.000000, 0.987598 - 0.153899, 0.000000, 0.000000, 0.988087 - 0.150793, 0.000000, 0.000000, 0.988565 - 0.147686, 0.000000, 0.000000, 0.989034 - 0.144577, 0.000000, 0.000000, 0.989494 - 0.141466, 0.000000, 0.000000, 0.989943 - 0.138355, 0.000000, 0.000000, 0.990383 - 0.135242, 0.000000, 0.000000, 0.990813 - 0.132127, 0.000000, 0.000000, 0.991233 - 0.129011, 0.000000, 0.000000, 0.991643 - 0.125894, 0.000000, 0.000000, 0.992044 - 0.122776, 0.000000, 0.000000, 0.992434 - 0.119657, 0.000000, 0.000000, 0.992815 - 0.116536, 0.000000, 0.000000, 0.993186 - 0.113414, 0.000000, 0.000000, 0.993548 - 0.110291, 0.000000, 0.000000, 0.993899 - 0.107167, 0.000000, 0.000000, 0.994241 - 0.104042, 0.000000, 0.000000, 0.994573 - 0.100916, 0.000000, 0.000000, 0.994895 - 0.097789, 0.000000, 0.000000, 0.995207 - 0.094661, 0.000000, 0.000000, 0.995510 - 0.091532, 0.000000, 0.000000, 0.995802 - 0.088402, 0.000000, 0.000000, 0.996085 - 0.085271, 0.000000, 0.000000, 0.996358 - 0.082140, 0.000000, 0.000000, 0.996621 - 0.079007, 0.000000, 0.000000, 0.996874 - 0.075874, 0.000000, 0.000000, 0.997117 - 0.072740, 0.000000, 0.000000, 0.997351 - 0.069606, 0.000000, 0.000000, 0.997575 - 0.066470, 0.000000, 0.000000, 0.997788 - 0.063334, 0.000000, 0.000000, 0.997992 - 0.060198, 0.000000, 0.000000, 0.998186 - 0.057060, 0.000000, 0.000000, 0.998371 - 0.053922, 0.000000, 0.000000, 0.998545 - 0.050784, 0.000000, 0.000000, 0.998710 - 0.047645, 0.000000, 0.000000, 0.998864 - 0.044506, 0.000000, 0.000000, 0.999009 - 0.041366, 0.000000, 0.000000, 0.999144 - 0.038226, 0.000000, 0.000000, 0.999269 - 0.035086, 0.000000, 0.000000, 0.999384 - 0.031945, 0.000000, 0.000000, 0.999490 - 0.028804, 0.000000, 0.000000, 0.999585 - 0.025662, 0.000000, 0.000000, 0.999671 - 0.022520, 0.000000, 0.000000, 0.999746 - 0.019378, 0.000000, 0.000000, 0.999812 - 0.016236, 0.000000, 0.000000, 0.999868 - 0.013094, 0.000000, 0.000000, 0.999914 - 0.009952, 0.000000, 0.000000, 0.999950 - 0.006809, 0.000000, 0.000000, 0.999977 - 0.003666, 0.000000, 0.000000, 0.999993 - 0.000524, 0.000000, 0.000000, 1.000000 - -0.002619, -0.000000, 0.000000, 0.999997 - -0.005761, -0.000000, 0.000000, 0.999983 - -0.008904, -0.000000, 0.000000, 0.999960 - -0.012046, -0.000000, 0.000000, 0.999927 - -0.015189, -0.000000, 0.000000, 0.999885 - -0.018331, -0.000000, 0.000000, 0.999832 - -0.021473, -0.000000, 0.000000, 0.999769 - -0.024615, -0.000000, 0.000000, 0.999697 - -0.027756, -0.000000, 0.000000, 0.999615 - -0.030898, -0.000000, 0.000000, 0.999523 - -0.034039, -0.000000, 0.000000, 0.999421 - -0.037179, -0.000000, 0.000000, 0.999309 - -0.040320, -0.000000, 0.000000, 0.999187 - -0.043459, -0.000000, 0.000000, 0.999055 - -0.046599, -0.000000, 0.000000, 0.998914 - -0.049738, -0.000000, 0.000000, 0.998762 - -0.052876, -0.000000, 0.000000, 0.998601 - -0.056014, -0.000000, 0.000000, 0.998430 - -0.059152, -0.000000, 0.000000, 0.998249 - -0.062289, -0.000000, 0.000000, 0.998058 - -0.065425, -0.000000, 0.000000, 0.997857 - -0.068560, -0.000000, 0.000000, 0.997647 - -0.071695, -0.000000, 0.000000, 0.997427 - -0.074830, -0.000000, 0.000000, 0.997196 - -0.077963, -0.000000, 0.000000, 0.996956 - -0.081096, -0.000000, 0.000000, 0.996706 - -0.084228, -0.000000, 0.000000, 0.996447 - -0.087359, -0.000000, 0.000000, 0.996177 - -0.090489, -0.000000, 0.000000, 0.995897 - -0.093618, -0.000000, 0.000000, 0.995608 - -0.096747, -0.000000, 0.000000, 0.995309 - -0.099874, -0.000000, 0.000000, 0.995000 - -0.103000, -0.000000, 0.000000, 0.994681 - -0.106126, -0.000000, 0.000000, 0.994353 - -0.109250, -0.000000, 0.000000, 0.994014 - -0.112373, -0.000000, 0.000000, 0.993666 - -0.115496, -0.000000, 0.000000, 0.993308 - -0.118617, -0.000000, 0.000000, 0.992940 - -0.121736, -0.000000, 0.000000, 0.992562 - -0.124855, -0.000000, 0.000000, 0.992175 - -0.127973, -0.000000, 0.000000, 0.991778 - -0.131089, -0.000000, 0.000000, 0.991371 - -0.134204, -0.000000, 0.000000, 0.990954 - -0.137317, -0.000000, 0.000000, 0.990527 - -0.140429, -0.000000, 0.000000, 0.990091 - -0.143540, -0.000000, 0.000000, 0.989644 - -0.146650, -0.000000, 0.000000, 0.989189 - -0.149757, -0.000000, 0.000000, 0.988723 - -0.152864, -0.000000, 0.000000, 0.988247 - -0.155969, -0.000000, 0.000000, 0.987762 - -0.159072, -0.000000, 0.000000, 0.987267 - -0.162174, -0.000000, 0.000000, 0.986762 - -0.165274, -0.000000, 0.000000, 0.986248 - -0.168373, -0.000000, 0.000000, 0.985723 - -0.171470, -0.000000, 0.000000, 0.985189 - -0.174565, -0.000000, 0.000000, 0.984646 - -0.177659, -0.000000, 0.000000, 0.984092 - -0.180750, -0.000000, 0.000000, 0.983529 - -0.183840, -0.000000, 0.000000, 0.982956 - -0.186929, -0.000000, 0.000000, 0.982374 - -0.190015, -0.000000, 0.000000, 0.981781 - -0.193099, -0.000000, 0.000000, 0.981179 - -0.196182, -0.000000, 0.000000, 0.980568 - -0.199262, -0.000000, 0.000000, 0.979946 - -0.202341, -0.000000, 0.000000, 0.979315 - -0.205418, -0.000000, 0.000000, 0.978674 - -0.208492, -0.000000, 0.000000, 0.978024 - -0.211565, -0.000000, 0.000000, 0.977364 - -0.214635, -0.000000, 0.000000, 0.976694 - -0.217704, -0.000000, 0.000000, 0.976015 - -0.220770, -0.000000, 0.000000, 0.975326 - -0.223834, -0.000000, 0.000000, 0.974627 - -0.226896, -0.000000, 0.000000, 0.973919 - -0.229955, -0.000000, 0.000000, 0.973201 - -0.233012, -0.000000, 0.000000, 0.972474 - -0.236067, -0.000000, 0.000000, 0.971737 - -0.239120, -0.000000, 0.000000, 0.970990 - -0.242170, -0.000000, 0.000000, 0.970234 - -0.245218, -0.000000, 0.000000, 0.969468 - -0.248264, -0.000000, 0.000000, 0.968692 - -0.251307, -0.000000, 0.000000, 0.967907 - -0.254347, -0.000000, 0.000000, 0.967113 - -0.257385, -0.000000, 0.000000, 0.966309 - -0.260421, -0.000000, 0.000000, 0.965495 - -0.263454, -0.000000, 0.000000, 0.964672 - -0.266484, -0.000000, 0.000000, 0.963839 - -0.269512, -0.000000, 0.000000, 0.962997 - -0.272537, -0.000000, 0.000000, 0.962145 - -0.275559, -0.000000, 0.000000, 0.961284 - -0.278579, -0.000000, 0.000000, 0.960413 - -0.281595, -0.000000, 0.000000, 0.959533 - -0.284610, -0.000000, 0.000000, 0.958644 - -0.287621, -0.000000, 0.000000, 0.957744 - -0.290629, -0.000000, 0.000000, 0.956836 - -0.293635, -0.000000, 0.000000, 0.955918 - -0.296637, -0.000000, 0.000000, 0.954990 - -0.299637, -0.000000, 0.000000, 0.954053 - -0.302634, -0.000000, 0.000000, 0.953107 - -0.305628, -0.000000, 0.000000, 0.952151 - -0.308618, -0.000000, 0.000000, 0.951186 - -0.311606, -0.000000, 0.000000, 0.950211 - -0.314591, -0.000000, 0.000000, 0.949227 - -0.317572, -0.000000, 0.000000, 0.948234 - -0.320551, -0.000000, 0.000000, 0.947231 - -0.323526, -0.000000, 0.000000, 0.946219 - -0.326498, -0.000000, 0.000000, 0.945198 - -0.329467, -0.000000, 0.000000, 0.944167 - -0.332432, -0.000000, 0.000000, 0.943127 - -0.335395, -0.000000, 0.000000, 0.942078 - -0.338354, -0.000000, 0.000000, 0.941019 - -0.341309, -0.000000, 0.000000, 0.939951 - -0.344261, -0.000000, 0.000000, 0.938874 - -0.347210, -0.000000, 0.000000, 0.937787 - -0.350156, -0.000000, 0.000000, 0.936692 - -0.353098, -0.000000, 0.000000, 0.935587 - -0.356036, -0.000000, 0.000000, 0.934472 - -0.358971, -0.000000, 0.000000, 0.933349 - -0.361902, -0.000000, 0.000000, 0.932216 - -0.364830, -0.000000, 0.000000, 0.931074 - -0.367754, -0.000000, 0.000000, 0.929923 - -0.370675, -0.000000, 0.000000, 0.928763 - -0.373592, -0.000000, 0.000000, 0.927593 - -0.376505, -0.000000, 0.000000, 0.926415 - -0.379415, -0.000000, 0.000000, 0.925227 - -0.382320, -0.000000, 0.000000, 0.924030 - -0.385222, -0.000000, 0.000000, 0.922824 - -0.388121, -0.000000, 0.000000, 0.921609 - -0.391015, -0.000000, 0.000000, 0.920384 - -0.393906, -0.000000, 0.000000, 0.919151 - -0.396792, -0.000000, 0.000000, 0.917908 - -0.399675, -0.000000, 0.000000, 0.916657 - -0.402554, -0.000000, 0.000000, 0.915396 - -0.405428, -0.000000, 0.000000, 0.914127 - -0.408299, -0.000000, 0.000000, 0.912848 - -0.411166, -0.000000, 0.000000, 0.911561 - -0.414029, -0.000000, 0.000000, 0.910264 - -0.416887, -0.000000, 0.000000, 0.908958 - -0.419742, -0.000000, 0.000000, 0.907644 - -0.422592, -0.000000, 0.000000, 0.906320 - -0.425438, -0.000000, 0.000000, 0.904988 - -0.428280, -0.000000, 0.000000, 0.903646 - -0.431118, -0.000000, 0.000000, 0.902296 - -0.433951, -0.000000, 0.000000, 0.900936 - -0.436780, -0.000000, 0.000000, 0.899568 - -0.439605, -0.000000, 0.000000, 0.898191 - -0.442426, -0.000000, 0.000000, 0.896805 - -0.445242, -0.000000, 0.000000, 0.895410 - -0.448054, -0.000000, 0.000000, 0.894007 - -0.450861, -0.000000, 0.000000, 0.892594 - -0.453664, -0.000000, 0.000000, 0.891173 - -0.456462, -0.000000, 0.000000, 0.889743 - -0.459256, -0.000000, 0.000000, 0.888304 - -0.462045, -0.000000, 0.000000, 0.886856 - -0.464830, -0.000000, 0.000000, 0.885400 - -0.467610, -0.000000, 0.000000, 0.883935 - -0.470386, -0.000000, 0.000000, 0.882461 - -0.473157, -0.000000, 0.000000, 0.880978 - -0.475923, -0.000000, 0.000000, 0.879487 - -0.478685, -0.000000, 0.000000, 0.877987 - -0.481442, -0.000000, 0.000000, 0.876478 - -0.484194, -0.000000, 0.000000, 0.874961 - -0.486941, -0.000000, 0.000000, 0.873435 - -0.489683, -0.000000, 0.000000, 0.871900 - -0.492421, -0.000000, 0.000000, 0.870357 - -0.495154, -0.000000, 0.000000, 0.868805 - -0.497882, -0.000000, 0.000000, 0.867245 - -0.500605, -0.000000, 0.000000, 0.865676 - -0.503323, -0.000000, 0.000000, 0.864099 - -0.506036, -0.000000, 0.000000, 0.862512 - -0.508744, -0.000000, 0.000000, 0.860918 - -0.511447, -0.000000, 0.000000, 0.859315 - -0.514145, -0.000000, 0.000000, 0.857703 - -0.516838, -0.000000, 0.000000, 0.856083 - -0.519526, -0.000000, 0.000000, 0.854455 - -0.522208, -0.000000, 0.000000, 0.852818 - -0.524886, -0.000000, 0.000000, 0.851173 - -0.527558, -0.000000, 0.000000, 0.849519 - -0.530225, -0.000000, 0.000000, 0.847857 - -0.532887, -0.000000, 0.000000, 0.846186 - -0.535544, -0.000000, 0.000000, 0.844507 - -0.538195, -0.000000, 0.000000, 0.842820 - -0.540841, -0.000000, 0.000000, 0.841125 - -0.543482, -0.000000, 0.000000, 0.839421 - -0.546117, -0.000000, 0.000000, 0.837709 - -0.548747, -0.000000, 0.000000, 0.835988 - -0.551371, -0.000000, 0.000000, 0.834260 - -0.553991, -0.000000, 0.000000, 0.832523 - -0.556604, -0.000000, 0.000000, 0.830778 - -0.559212, -0.000000, 0.000000, 0.829025 - -0.561815, -0.000000, 0.000000, 0.827263 - -0.564412, -0.000000, 0.000000, 0.825493 - -0.567003, -0.000000, 0.000000, 0.823716 - -0.569589, -0.000000, 0.000000, 0.821930 - -0.572169, -0.000000, 0.000000, 0.820136 - -0.574744, -0.000000, 0.000000, 0.818333 - -0.577313, -0.000000, 0.000000, 0.816523 - -0.579876, -0.000000, 0.000000, 0.814705 - -0.582433, -0.000000, 0.000000, 0.812878 - -0.584985, -0.000000, 0.000000, 0.811044 - -0.587531, -0.000000, 0.000000, 0.809202 - -0.590071, -0.000000, 0.000000, 0.807351 - -0.592605, -0.000000, 0.000000, 0.805493 - -0.595134, -0.000000, 0.000000, 0.803627 - -0.597656, -0.000000, 0.000000, 0.801752 - -0.600173, -0.000000, 0.000000, 0.799870 - -0.602684, -0.000000, 0.000000, 0.797980 - -0.605189, -0.000000, 0.000000, 0.796082 - -0.607687, -0.000000, 0.000000, 0.794176 - -0.610180, -0.000000, 0.000000, 0.792263 - -0.612667, -0.000000, 0.000000, 0.790341 - -0.615148, -0.000000, 0.000000, 0.788412 - -0.617622, -0.000000, 0.000000, 0.786475 - -0.620091, -0.000000, 0.000000, 0.784530 - -0.622553, -0.000000, 0.000000, 0.782577 - -0.625010, -0.000000, 0.000000, 0.780617 - -0.627460, -0.000000, 0.000000, 0.778649 - -0.629904, -0.000000, 0.000000, 0.776673 - -0.632341, -0.000000, 0.000000, 0.774690 - -0.634773, -0.000000, 0.000000, 0.772699 - -0.637198, -0.000000, 0.000000, 0.770700 - -0.639617, -0.000000, 0.000000, 0.768694 - -0.642029, -0.000000, 0.000000, 0.766680 - -0.644436, -0.000000, 0.000000, 0.764659 - -0.646835, -0.000000, 0.000000, 0.762630 - -0.649229, -0.000000, 0.000000, 0.760593 - -0.651616, -0.000000, 0.000000, 0.758549 - -0.653997, -0.000000, 0.000000, 0.756497 - -0.656371, -0.000000, 0.000000, 0.754438 - -0.658739, -0.000000, 0.000000, 0.752372 - -0.661100, -0.000000, 0.000000, 0.750298 - -0.663454, -0.000000, 0.000000, 0.748217 - -0.665802, -0.000000, 0.000000, 0.746128 - -0.668144, -0.000000, 0.000000, 0.744032 - -0.670479, -0.000000, 0.000000, 0.741929 - -0.672807, -0.000000, 0.000000, 0.739818 - -0.675129, -0.000000, 0.000000, 0.737700 - -0.677444, -0.000000, 0.000000, 0.735575 - -0.679752, -0.000000, 0.000000, 0.733442 - -0.682054, -0.000000, 0.000000, 0.731302 - -0.684349, -0.000000, 0.000000, 0.729155 - -0.686637, -0.000000, 0.000000, 0.727001 - -0.688918, -0.000000, 0.000000, 0.724839 - -0.691192, -0.000000, 0.000000, 0.722671 - -0.693460, -0.000000, 0.000000, 0.720495 - -0.695721, -0.000000, 0.000000, 0.718312 - -0.697975, -0.000000, 0.000000, 0.716122 - -0.700222, -0.000000, 0.000000, 0.713925 - -0.702462, -0.000000, 0.000000, 0.711721 - -0.704695, -0.000000, 0.000000, 0.709510 - -0.706922, -0.000000, 0.000000, 0.707292 - -0.709141, -0.000000, 0.000000, 0.705067 - -0.711353, -0.000000, 0.000000, 0.702835 - -0.713558, -0.000000, 0.000000, 0.700596 - -0.715757, -0.000000, 0.000000, 0.698350 - -0.717948, -0.000000, 0.000000, 0.696097 - -0.720132, -0.000000, 0.000000, 0.693837 - -0.722309, -0.000000, 0.000000, 0.691571 - -0.724478, -0.000000, 0.000000, 0.689297 - -0.726641, -0.000000, 0.000000, 0.687017 - -0.728797, -0.000000, 0.000000, 0.684730 - -0.730945, -0.000000, 0.000000, 0.682437 - -0.733086, -0.000000, 0.000000, 0.680136 - -0.735220, -0.000000, 0.000000, 0.677829 - -0.737346, -0.000000, 0.000000, 0.675515 - -0.739465, -0.000000, 0.000000, 0.673195 - -0.741577, -0.000000, 0.000000, 0.670867 - -0.743682, -0.000000, 0.000000, 0.668534 - -0.745779, -0.000000, 0.000000, 0.666193 - -0.747869, -0.000000, 0.000000, 0.663846 - -0.749952, -0.000000, 0.000000, 0.661493 - -0.752027, -0.000000, 0.000000, 0.659132 - -0.754095, -0.000000, 0.000000, 0.656766 - -0.756155, -0.000000, 0.000000, 0.654393 - -0.758208, -0.000000, 0.000000, 0.652013 - -0.760253, -0.000000, 0.000000, 0.649627 - -0.762291, -0.000000, 0.000000, 0.647235 - -0.764321, -0.000000, 0.000000, 0.644836 - -0.766344, -0.000000, 0.000000, 0.642431 - -0.768359, -0.000000, 0.000000, 0.640019 - -0.770366, -0.000000, 0.000000, 0.637602 - -0.772366, -0.000000, 0.000000, 0.635177 - -0.774359, -0.000000, 0.000000, 0.632747 - -0.776343, -0.000000, 0.000000, 0.630310 - -0.778320, -0.000000, 0.000000, 0.627867 - -0.780290, -0.000000, 0.000000, 0.625418 - -0.782251, -0.000000, 0.000000, 0.622963 - -0.784205, -0.000000, 0.000000, 0.620502 - -0.786151, -0.000000, 0.000000, 0.618034 - -0.788090, -0.000000, 0.000000, 0.615561 - -0.790020, -0.000000, 0.000000, 0.613081 - -0.791943, -0.000000, 0.000000, 0.610595 - -0.793858, -0.000000, 0.000000, 0.608103 - -0.795765, -0.000000, 0.000000, 0.605605 - -0.797664, -0.000000, 0.000000, 0.603102 - -0.799556, -0.000000, 0.000000, 0.600592 - -0.801439, -0.000000, 0.000000, 0.598076 - -0.803315, -0.000000, 0.000000, 0.595555 - -0.805182, -0.000000, 0.000000, 0.593027 - -0.807042, -0.000000, 0.000000, 0.590494 - -0.808894, -0.000000, 0.000000, 0.587955 - -0.810738, -0.000000, 0.000000, 0.585410 - -0.812573, -0.000000, 0.000000, 0.582859 - -0.814401, -0.000000, 0.000000, 0.580303 - -0.816221, -0.000000, 0.000000, 0.577740 - -0.818032, -0.000000, 0.000000, 0.575172 - -0.819836, -0.000000, 0.000000, 0.572599 - -0.821631, -0.000000, 0.000000, 0.570019 - -0.823418, -0.000000, 0.000000, 0.567435 - -0.825198, -0.000000, 0.000000, 0.564844 - -0.826969, -0.000000, 0.000000, 0.562248 - -0.828732, -0.000000, 0.000000, 0.559646 - -0.830486, -0.000000, 0.000000, 0.557039 - -0.832233, -0.000000, 0.000000, 0.554427 - -0.833971, -0.000000, 0.000000, 0.551808 - -0.835701, -0.000000, 0.000000, 0.549185 - -0.837423, -0.000000, 0.000000, 0.546556 - -0.839136, -0.000000, 0.000000, 0.543921 - -0.840841, -0.000000, 0.000000, 0.541282 - -0.842538, -0.000000, 0.000000, 0.538636 - -0.844227, -0.000000, 0.000000, 0.535986 - -0.845907, -0.000000, 0.000000, 0.533330 - -0.847579, -0.000000, 0.000000, 0.530669 - -0.849243, -0.000000, 0.000000, 0.528003 - -0.850898, -0.000000, 0.000000, 0.525332 - -0.852544, -0.000000, 0.000000, 0.522655 - -0.854183, -0.000000, 0.000000, 0.519973 - -0.855813, -0.000000, 0.000000, 0.517286 - -0.857434, -0.000000, 0.000000, 0.514594 - -0.859047, -0.000000, 0.000000, 0.511897 - -0.860651, -0.000000, 0.000000, 0.509195 - -0.862247, -0.000000, 0.000000, 0.506487 - -0.863835, -0.000000, 0.000000, 0.503775 - -0.865414, -0.000000, 0.000000, 0.501058 - -0.866984, -0.000000, 0.000000, 0.498336 - -0.868546, -0.000000, 0.000000, 0.495609 - -0.870099, -0.000000, 0.000000, 0.492877 - -0.871644, -0.000000, 0.000000, 0.490140 - -0.873180, -0.000000, 0.000000, 0.487398 - -0.874707, -0.000000, 0.000000, 0.484652 - -0.876226, -0.000000, 0.000000, 0.481901 - -0.877736, -0.000000, 0.000000, 0.479145 - -0.879237, -0.000000, 0.000000, 0.476384 - -0.880730, -0.000000, 0.000000, 0.473618 - -0.882214, -0.000000, 0.000000, 0.470848 - -0.883690, -0.000000, 0.000000, 0.468073 - -0.885156, -0.000000, 0.000000, 0.465294 - -0.886614, -0.000000, 0.000000, 0.462510 - -0.888063, -0.000000, 0.000000, 0.459721 - -0.889504, -0.000000, 0.000000, 0.456928 - -0.890935, -0.000000, 0.000000, 0.454130 - -0.892358, -0.000000, 0.000000, 0.451328 - -0.893772, -0.000000, 0.000000, 0.448522 - -0.895177, -0.000000, 0.000000, 0.445711 - -0.896573, -0.000000, 0.000000, 0.442895 - -0.897961, -0.000000, 0.000000, 0.440076 - -0.899339, -0.000000, 0.000000, 0.437251 - -0.900709, -0.000000, 0.000000, 0.434423 - -0.902070, -0.000000, 0.000000, 0.431590 - -0.903422, -0.000000, 0.000000, 0.428753 - -0.904765, -0.000000, 0.000000, 0.425912 - -0.906099, -0.000000, 0.000000, 0.423067 - -0.907424, -0.000000, 0.000000, 0.420217 - -0.908740, -0.000000, 0.000000, 0.417363 - -0.910047, -0.000000, 0.000000, 0.414505 - -0.911345, -0.000000, 0.000000, 0.411643 - -0.912634, -0.000000, 0.000000, 0.408777 - -0.913914, -0.000000, 0.000000, 0.405907 - -0.915185, -0.000000, 0.000000, 0.403033 - -0.916448, -0.000000, 0.000000, 0.400155 - -0.917701, -0.000000, 0.000000, 0.397273 - -0.918944, -0.000000, 0.000000, 0.394387 - -0.920179, -0.000000, 0.000000, 0.391497 - -0.921405, -0.000000, 0.000000, 0.388603 - -0.922622, -0.000000, 0.000000, 0.385706 - -0.923829, -0.000000, 0.000000, 0.382804 - -0.925028, -0.000000, 0.000000, 0.379899 - -0.926217, -0.000000, 0.000000, 0.376990 - -0.927397, -0.000000, 0.000000, 0.374078 - -0.928568, -0.000000, 0.000000, 0.371161 - -0.929730, -0.000000, 0.000000, 0.368241 - -0.930883, -0.000000, 0.000000, 0.365318 - -0.932026, -0.000000, 0.000000, 0.362391 - -0.933161, -0.000000, 0.000000, 0.359460 - -0.934286, -0.000000, 0.000000, 0.356525 - -0.935401, -0.000000, 0.000000, 0.353588 - -0.936508, -0.000000, 0.000000, 0.350646 - -0.937605, -0.000000, 0.000000, 0.347701 - -0.938693, -0.000000, 0.000000, 0.344753 - -0.939772, -0.000000, 0.000000, 0.341801 - -0.940842, -0.000000, 0.000000, 0.338846 - -0.941902, -0.000000, 0.000000, 0.335888 - -0.942953, -0.000000, 0.000000, 0.332926 - -0.943994, -0.000000, 0.000000, 0.329961 - -0.945027, -0.000000, 0.000000, 0.326993 - -0.946050, -0.000000, 0.000000, 0.324021 - -0.947063, -0.000000, 0.000000, 0.321047 - -0.948068, -0.000000, 0.000000, 0.318069 - -0.949062, -0.000000, 0.000000, 0.315088 - -0.950048, -0.000000, 0.000000, 0.312104 - -0.951024, -0.000000, 0.000000, 0.309117 - -0.951991, -0.000000, 0.000000, 0.306126 - -0.952948, -0.000000, 0.000000, 0.303133 - -0.953896, -0.000000, 0.000000, 0.300137 - -0.954835, -0.000000, 0.000000, 0.297138 - -0.955764, -0.000000, 0.000000, 0.294135 - -0.956683, -0.000000, 0.000000, 0.291130 - -0.957594, -0.000000, 0.000000, 0.288122 - -0.958494, -0.000000, 0.000000, 0.285112 - -0.959386, -0.000000, 0.000000, 0.282098 - -0.960267, -0.000000, 0.000000, 0.279082 - -0.961140, -0.000000, 0.000000, 0.276062 - -0.962003, -0.000000, 0.000000, 0.273041 - -0.962856, -0.000000, 0.000000, 0.270016 - -0.963700, -0.000000, 0.000000, 0.266989 - -0.964534, -0.000000, 0.000000, 0.263959 - -0.965359, -0.000000, 0.000000, 0.260926 - -0.966174, -0.000000, 0.000000, 0.257891 - -0.966980, -0.000000, 0.000000, 0.254854 - -0.967776, -0.000000, 0.000000, 0.251814 - -0.968562, -0.000000, 0.000000, 0.248771 - -0.969339, -0.000000, 0.000000, 0.245726 - -0.970107, -0.000000, 0.000000, 0.242678 - -0.970865, -0.000000, 0.000000, 0.239629 - -0.971613, -0.000000, 0.000000, 0.236576 - -0.972352, -0.000000, 0.000000, 0.233522 - -0.973081, -0.000000, 0.000000, 0.230465 - -0.973800, -0.000000, 0.000000, 0.227406 - -0.974510, -0.000000, 0.000000, 0.224344 - -0.975210, -0.000000, 0.000000, 0.221281 - -0.975901, -0.000000, 0.000000, 0.218215 - -0.976582, -0.000000, 0.000000, 0.215147 - -0.977253, -0.000000, 0.000000, 0.212077 - -0.977915, -0.000000, 0.000000, 0.209005 - -0.978567, -0.000000, 0.000000, 0.205930 - -0.979209, -0.000000, 0.000000, 0.202854 - -0.979842, -0.000000, 0.000000, 0.199776 - -0.980465, -0.000000, 0.000000, 0.196695 - -0.981078, -0.000000, 0.000000, 0.193613 - -0.981682, -0.000000, 0.000000, 0.190529 - -0.982275, -0.000000, 0.000000, 0.187443 - -0.982860, -0.000000, 0.000000, 0.184355 - -0.983434, -0.000000, 0.000000, 0.181266 - -0.983999, -0.000000, 0.000000, 0.178174 - -0.984554, -0.000000, 0.000000, 0.175081 - -0.985099, -0.000000, 0.000000, 0.171986 - -0.985635, -0.000000, 0.000000, 0.168889 - -0.986161, -0.000000, 0.000000, 0.165791 - -0.986677, -0.000000, 0.000000, 0.162691 - -0.987183, -0.000000, 0.000000, 0.159589 - -0.987680, -0.000000, 0.000000, 0.156486 - -0.988167, -0.000000, 0.000000, 0.153382 - -0.988644, -0.000000, 0.000000, 0.150275 - -0.989112, -0.000000, 0.000000, 0.147168 - -0.989569, -0.000000, 0.000000, 0.144058 - -0.990017, -0.000000, 0.000000, 0.140948 - -0.990455, -0.000000, 0.000000, 0.137836 - -0.990883, -0.000000, 0.000000, 0.134723 - -0.991302, -0.000000, 0.000000, 0.131608 - -0.991711, -0.000000, 0.000000, 0.128492 - -0.992109, -0.000000, 0.000000, 0.125375 - -0.992499, -0.000000, 0.000000, 0.122256 - -0.992878, -0.000000, 0.000000, 0.119137 - -0.993247, -0.000000, 0.000000, 0.116016 - -0.993607, -0.000000, 0.000000, 0.112894 - -0.993957, -0.000000, 0.000000, 0.109771 - -0.994297, -0.000000, 0.000000, 0.106647 - -0.994627, -0.000000, 0.000000, 0.103521 - -0.994948, -0.000000, 0.000000, 0.100395 - -0.995258, -0.000000, 0.000000, 0.097268 - -0.995559, -0.000000, 0.000000, 0.094140 - -0.995850, -0.000000, 0.000000, 0.091010 - -0.996131, -0.000000, 0.000000, 0.087880 - -0.996402, -0.000000, 0.000000, 0.084750 - -0.996664, -0.000000, 0.000000, 0.081618 - -0.996915, -0.000000, 0.000000, 0.078485 - -0.997157, -0.000000, 0.000000, 0.075352 - -0.997389, -0.000000, 0.000000, 0.072218 - -0.997611, -0.000000, 0.000000, 0.069083 - -0.997823, -0.000000, 0.000000, 0.065948 - -0.998025, -0.000000, 0.000000, 0.062811 - -0.998218, -0.000000, 0.000000, 0.059675 - -0.998400, -0.000000, 0.000000, 0.056537 - -0.998573, -0.000000, 0.000000, 0.053399 - -0.998736, -0.000000, 0.000000, 0.050261 - -0.998889, -0.000000, 0.000000, 0.047122 - -0.999032, -0.000000, 0.000000, 0.043983 - -0.999166, -0.000000, 0.000000, 0.040843 - -0.999289, -0.000000, 0.000000, 0.037703 - -0.999403, -0.000000, 0.000000, 0.034562 - -0.999506, -0.000000, 0.000000, 0.031421 - -0.999600, -0.000000, 0.000000, 0.028280 - -0.999684, -0.000000, 0.000000, 0.025138 - -0.999758, -0.000000, 0.000000, 0.021997 - -0.999822, -0.000000, 0.000000, 0.018855 - -0.999877, -0.000000, 0.000000, 0.015713 - -0.999921, -0.000000, 0.000000, 0.012570 - -0.999956, -0.000000, 0.000000, 0.009428 - -0.999980, -0.000000, 0.000000, 0.006285 - -0.999995, -0.000000, 0.000000, 0.003143 - -1.000000, -0.000000, 0.000000, 0.000000 diff --git a/scripts/trajectories/full-circle-T15.0-w0.4.csv b/scripts/trajectories/full-circle-T15.0-w0.4.csv deleted file mode 100644 index 593fc7961a8d8eb232ac265b10964aaf8bf8bf7e..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-T15.0-w0.4.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 0.999980, 0.000000, 0.000000, 0.006285 - 0.999921, 0.000000, 0.000000, 0.012570 - 0.999822, 0.000000, 0.000000, 0.018855 - 0.999684, 0.000000, 0.000000, 0.025138 - 0.999506, 0.000000, 0.000000, 0.031421 - 0.999289, 0.000000, 0.000000, 0.037703 - 0.999032, 0.000000, 0.000000, 0.043983 - 0.998736, 0.000000, 0.000000, 0.050261 - 0.998400, 0.000000, 0.000000, 0.056537 - 0.998025, 0.000000, 0.000000, 0.062811 - 0.997611, 0.000000, 0.000000, 0.069083 - 0.997157, 0.000000, 0.000000, 0.075352 - 0.996664, 0.000000, 0.000000, 0.081618 - 0.996131, 0.000000, 0.000000, 0.087880 - 0.995559, 0.000000, 0.000000, 0.094140 - 0.994948, 0.000000, 0.000000, 0.100395 - 0.994297, 0.000000, 0.000000, 0.106647 - 0.993607, 0.000000, 0.000000, 0.112894 - 0.992878, 0.000000, 0.000000, 0.119137 - 0.992109, 0.000000, 0.000000, 0.125375 - 0.991302, 0.000000, 0.000000, 0.131608 - 0.990455, 0.000000, 0.000000, 0.137836 - 0.989569, 0.000000, 0.000000, 0.144058 - 0.988644, 0.000000, 0.000000, 0.150275 - 0.987680, 0.000000, 0.000000, 0.156486 - 0.986677, 0.000000, 0.000000, 0.162691 - 0.985635, 0.000000, 0.000000, 0.168889 - 0.984554, 0.000000, 0.000000, 0.175081 - 0.983434, 0.000000, 0.000000, 0.181266 - 0.982275, 0.000000, 0.000000, 0.187443 - 0.981078, 0.000000, 0.000000, 0.193613 - 0.979842, 0.000000, 0.000000, 0.199776 - 0.978567, 0.000000, 0.000000, 0.205930 - 0.977253, 0.000000, 0.000000, 0.212077 - 0.975901, 0.000000, 0.000000, 0.218215 - 0.974510, 0.000000, 0.000000, 0.224344 - 0.973081, 0.000000, 0.000000, 0.230465 - 0.971613, 0.000000, 0.000000, 0.236576 - 0.970107, 0.000000, 0.000000, 0.242678 - 0.968562, 0.000000, 0.000000, 0.248771 - 0.966980, 0.000000, 0.000000, 0.254854 - 0.965359, 0.000000, 0.000000, 0.260926 - 0.963700, 0.000000, 0.000000, 0.266989 - 0.962003, 0.000000, 0.000000, 0.273041 - 0.960267, 0.000000, 0.000000, 0.279082 - 0.958494, 0.000000, 0.000000, 0.285112 - 0.956683, 0.000000, 0.000000, 0.291130 - 0.954835, 0.000000, 0.000000, 0.297138 - 0.952948, 0.000000, 0.000000, 0.303133 - 0.951024, 0.000000, 0.000000, 0.309117 - 0.949062, 0.000000, 0.000000, 0.315088 - 0.947063, 0.000000, 0.000000, 0.321047 - 0.945027, 0.000000, 0.000000, 0.326993 - 0.942953, 0.000000, 0.000000, 0.332926 - 0.940842, 0.000000, 0.000000, 0.338846 - 0.938693, 0.000000, 0.000000, 0.344753 - 0.936508, 0.000000, 0.000000, 0.350646 - 0.934286, 0.000000, 0.000000, 0.356525 - 0.932026, 0.000000, 0.000000, 0.362391 - 0.929730, 0.000000, 0.000000, 0.368241 - 0.927397, 0.000000, 0.000000, 0.374078 - 0.925028, 0.000000, 0.000000, 0.379899 - 0.922622, 0.000000, 0.000000, 0.385706 - 0.920179, 0.000000, 0.000000, 0.391497 - 0.917701, 0.000000, 0.000000, 0.397273 - 0.915185, 0.000000, 0.000000, 0.403033 - 0.912634, 0.000000, 0.000000, 0.408777 - 0.910047, 0.000000, 0.000000, 0.414505 - 0.907424, 0.000000, 0.000000, 0.420217 - 0.904765, 0.000000, 0.000000, 0.425912 - 0.902070, 0.000000, 0.000000, 0.431590 - 0.899339, 0.000000, 0.000000, 0.437251 - 0.896573, 0.000000, 0.000000, 0.442895 - 0.893772, 0.000000, 0.000000, 0.448522 - 0.890935, 0.000000, 0.000000, 0.454130 - 0.888063, 0.000000, 0.000000, 0.459721 - 0.885156, 0.000000, 0.000000, 0.465294 - 0.882214, 0.000000, 0.000000, 0.470848 - 0.879237, 0.000000, 0.000000, 0.476384 - 0.876226, 0.000000, 0.000000, 0.481901 - 0.873180, 0.000000, 0.000000, 0.487398 - 0.870099, 0.000000, 0.000000, 0.492877 - 0.866984, 0.000000, 0.000000, 0.498336 - 0.863835, 0.000000, 0.000000, 0.503775 - 0.860651, 0.000000, 0.000000, 0.509195 - 0.857434, 0.000000, 0.000000, 0.514594 - 0.854183, 0.000000, 0.000000, 0.519973 - 0.850898, 0.000000, 0.000000, 0.525332 - 0.847579, 0.000000, 0.000000, 0.530669 - 0.844227, 0.000000, 0.000000, 0.535986 - 0.840841, 0.000000, 0.000000, 0.541282 - 0.837423, 0.000000, 0.000000, 0.546556 - 0.833971, 0.000000, 0.000000, 0.551808 - 0.830486, 0.000000, 0.000000, 0.557039 - 0.826969, 0.000000, 0.000000, 0.562248 - 0.823418, 0.000000, 0.000000, 0.567435 - 0.819836, 0.000000, 0.000000, 0.572599 - 0.816221, 0.000000, 0.000000, 0.577740 - 0.812573, 0.000000, 0.000000, 0.582859 - 0.808894, 0.000000, 0.000000, 0.587955 - 0.805182, 0.000000, 0.000000, 0.593027 - 0.801439, 0.000000, 0.000000, 0.598076 - 0.797664, 0.000000, 0.000000, 0.603102 - 0.793858, 0.000000, 0.000000, 0.608103 - 0.790020, 0.000000, 0.000000, 0.613081 - 0.786151, 0.000000, 0.000000, 0.618034 - 0.782251, 0.000000, 0.000000, 0.622963 - 0.778320, 0.000000, 0.000000, 0.627867 - 0.774359, 0.000000, 0.000000, 0.632747 - 0.770366, 0.000000, 0.000000, 0.637602 - 0.766344, 0.000000, 0.000000, 0.642431 - 0.762291, 0.000000, 0.000000, 0.647235 - 0.758208, 0.000000, 0.000000, 0.652013 - 0.754095, 0.000000, 0.000000, 0.656766 - 0.749952, 0.000000, 0.000000, 0.661493 - 0.745779, 0.000000, 0.000000, 0.666193 - 0.741577, 0.000000, 0.000000, 0.670867 - 0.737346, 0.000000, 0.000000, 0.675515 - 0.733086, 0.000000, 0.000000, 0.680136 - 0.728797, 0.000000, 0.000000, 0.684730 - 0.724478, 0.000000, 0.000000, 0.689297 - 0.720132, 0.000000, 0.000000, 0.693837 - 0.715757, 0.000000, 0.000000, 0.698350 - 0.711353, 0.000000, 0.000000, 0.702835 - 0.706922, 0.000000, 0.000000, 0.707292 - 0.702462, 0.000000, 0.000000, 0.711721 - 0.697975, 0.000000, 0.000000, 0.716122 - 0.693460, 0.000000, 0.000000, 0.720495 - 0.688918, 0.000000, 0.000000, 0.724839 - 0.684349, 0.000000, 0.000000, 0.729155 - 0.679752, 0.000000, 0.000000, 0.733442 - 0.675129, 0.000000, 0.000000, 0.737700 - 0.670479, 0.000000, 0.000000, 0.741929 - 0.665802, 0.000000, 0.000000, 0.746128 - 0.661100, 0.000000, 0.000000, 0.750298 - 0.656371, 0.000000, 0.000000, 0.754438 - 0.651616, 0.000000, 0.000000, 0.758549 - 0.646835, 0.000000, 0.000000, 0.762630 - 0.642029, 0.000000, 0.000000, 0.766680 - 0.637198, 0.000000, 0.000000, 0.770700 - 0.632341, 0.000000, 0.000000, 0.774690 - 0.627460, 0.000000, 0.000000, 0.778649 - 0.622553, 0.000000, 0.000000, 0.782577 - 0.617622, 0.000000, 0.000000, 0.786475 - 0.612667, 0.000000, 0.000000, 0.790341 - 0.607687, 0.000000, 0.000000, 0.794176 - 0.602684, 0.000000, 0.000000, 0.797980 - 0.597656, 0.000000, 0.000000, 0.801752 - 0.592605, 0.000000, 0.000000, 0.805493 - 0.587531, 0.000000, 0.000000, 0.809202 - 0.582433, 0.000000, 0.000000, 0.812878 - 0.577313, 0.000000, 0.000000, 0.816523 - 0.572169, 0.000000, 0.000000, 0.820136 - 0.567003, 0.000000, 0.000000, 0.823716 - 0.561815, 0.000000, 0.000000, 0.827263 - 0.556604, 0.000000, 0.000000, 0.830778 - 0.551371, 0.000000, 0.000000, 0.834260 - 0.546117, 0.000000, 0.000000, 0.837709 - 0.540841, 0.000000, 0.000000, 0.841125 - 0.535544, 0.000000, 0.000000, 0.844507 - 0.530225, 0.000000, 0.000000, 0.847857 - 0.524886, 0.000000, 0.000000, 0.851173 - 0.519526, 0.000000, 0.000000, 0.854455 - 0.514145, 0.000000, 0.000000, 0.857703 - 0.508744, 0.000000, 0.000000, 0.860918 - 0.503323, 0.000000, 0.000000, 0.864099 - 0.497882, 0.000000, 0.000000, 0.867245 - 0.492421, 0.000000, 0.000000, 0.870357 - 0.486941, 0.000000, 0.000000, 0.873435 - 0.481442, 0.000000, 0.000000, 0.876478 - 0.475923, 0.000000, 0.000000, 0.879487 - 0.470386, 0.000000, 0.000000, 0.882461 - 0.464830, 0.000000, 0.000000, 0.885400 - 0.459256, 0.000000, 0.000000, 0.888304 - 0.453664, 0.000000, 0.000000, 0.891173 - 0.448054, 0.000000, 0.000000, 0.894007 - 0.442426, 0.000000, 0.000000, 0.896805 - 0.436780, 0.000000, 0.000000, 0.899568 - 0.431118, 0.000000, 0.000000, 0.902296 - 0.425438, 0.000000, 0.000000, 0.904988 - 0.419742, 0.000000, 0.000000, 0.907644 - 0.414029, 0.000000, 0.000000, 0.910264 - 0.408299, 0.000000, 0.000000, 0.912848 - 0.402554, 0.000000, 0.000000, 0.915396 - 0.396792, 0.000000, 0.000000, 0.917908 - 0.391015, 0.000000, 0.000000, 0.920384 - 0.385222, 0.000000, 0.000000, 0.922824 - 0.379415, 0.000000, 0.000000, 0.925227 - 0.373592, 0.000000, 0.000000, 0.927593 - 0.367754, 0.000000, 0.000000, 0.929923 - 0.361902, 0.000000, 0.000000, 0.932216 - 0.356036, 0.000000, 0.000000, 0.934472 - 0.350156, 0.000000, 0.000000, 0.936692 - 0.344261, 0.000000, 0.000000, 0.938874 - 0.338354, 0.000000, 0.000000, 0.941019 - 0.332432, 0.000000, 0.000000, 0.943127 - 0.326498, 0.000000, 0.000000, 0.945198 - 0.320551, 0.000000, 0.000000, 0.947231 - 0.314591, 0.000000, 0.000000, 0.949227 - 0.308618, 0.000000, 0.000000, 0.951186 - 0.302634, 0.000000, 0.000000, 0.953107 - 0.296637, 0.000000, 0.000000, 0.954990 - 0.290629, 0.000000, 0.000000, 0.956836 - 0.284610, 0.000000, 0.000000, 0.958644 - 0.278579, 0.000000, 0.000000, 0.960413 - 0.272537, 0.000000, 0.000000, 0.962145 - 0.266484, 0.000000, 0.000000, 0.963839 - 0.260421, 0.000000, 0.000000, 0.965495 - 0.254347, 0.000000, 0.000000, 0.967113 - 0.248264, 0.000000, 0.000000, 0.968692 - 0.242170, 0.000000, 0.000000, 0.970234 - 0.236067, 0.000000, 0.000000, 0.971737 - 0.229955, 0.000000, 0.000000, 0.973201 - 0.223834, 0.000000, 0.000000, 0.974627 - 0.217704, 0.000000, 0.000000, 0.976015 - 0.211565, 0.000000, 0.000000, 0.977364 - 0.205418, 0.000000, 0.000000, 0.978674 - 0.199262, 0.000000, 0.000000, 0.979946 - 0.193099, 0.000000, 0.000000, 0.981179 - 0.186929, 0.000000, 0.000000, 0.982374 - 0.180750, 0.000000, 0.000000, 0.983529 - 0.174565, 0.000000, 0.000000, 0.984646 - 0.168373, 0.000000, 0.000000, 0.985723 - 0.162174, 0.000000, 0.000000, 0.986762 - 0.155969, 0.000000, 0.000000, 0.987762 - 0.149757, 0.000000, 0.000000, 0.988723 - 0.143540, 0.000000, 0.000000, 0.989644 - 0.137317, 0.000000, 0.000000, 0.990527 - 0.131089, 0.000000, 0.000000, 0.991371 - 0.124855, 0.000000, 0.000000, 0.992175 - 0.118617, 0.000000, 0.000000, 0.992940 - 0.112373, 0.000000, 0.000000, 0.993666 - 0.106126, 0.000000, 0.000000, 0.994353 - 0.099874, 0.000000, 0.000000, 0.995000 - 0.093618, 0.000000, 0.000000, 0.995608 - 0.087359, 0.000000, 0.000000, 0.996177 - 0.081096, 0.000000, 0.000000, 0.996706 - 0.074830, 0.000000, 0.000000, 0.997196 - 0.068560, 0.000000, 0.000000, 0.997647 - 0.062289, 0.000000, 0.000000, 0.998058 - 0.056014, 0.000000, 0.000000, 0.998430 - 0.049738, 0.000000, 0.000000, 0.998762 - 0.043459, 0.000000, 0.000000, 0.999055 - 0.037179, 0.000000, 0.000000, 0.999309 - 0.030898, 0.000000, 0.000000, 0.999523 - 0.024615, 0.000000, 0.000000, 0.999697 - 0.018331, 0.000000, 0.000000, 0.999832 - 0.012046, 0.000000, 0.000000, 0.999927 - 0.005761, 0.000000, 0.000000, 0.999983 - -0.000524, -0.000000, 0.000000, 1.000000 - -0.006809, -0.000000, 0.000000, 0.999977 - -0.013094, -0.000000, 0.000000, 0.999914 - -0.019378, -0.000000, 0.000000, 0.999812 - -0.025662, -0.000000, 0.000000, 0.999671 - -0.031945, -0.000000, 0.000000, 0.999490 - -0.038226, -0.000000, 0.000000, 0.999269 - -0.044506, -0.000000, 0.000000, 0.999009 - -0.050784, -0.000000, 0.000000, 0.998710 - -0.057060, -0.000000, 0.000000, 0.998371 - -0.063334, -0.000000, 0.000000, 0.997992 - -0.069606, -0.000000, 0.000000, 0.997575 - -0.075874, -0.000000, 0.000000, 0.997117 - -0.082140, -0.000000, 0.000000, 0.996621 - -0.088402, -0.000000, 0.000000, 0.996085 - -0.094661, -0.000000, 0.000000, 0.995510 - -0.100916, -0.000000, 0.000000, 0.994895 - -0.107167, -0.000000, 0.000000, 0.994241 - -0.113414, -0.000000, 0.000000, 0.993548 - -0.119657, -0.000000, 0.000000, 0.992815 - -0.125894, -0.000000, 0.000000, 0.992044 - -0.132127, -0.000000, 0.000000, 0.991233 - -0.138355, -0.000000, 0.000000, 0.990383 - -0.144577, -0.000000, 0.000000, 0.989494 - -0.150793, -0.000000, 0.000000, 0.988565 - -0.157003, -0.000000, 0.000000, 0.987598 - -0.163208, -0.000000, 0.000000, 0.986592 - -0.169405, -0.000000, 0.000000, 0.985546 - -0.175596, -0.000000, 0.000000, 0.984462 - -0.181781, -0.000000, 0.000000, 0.983339 - -0.187958, -0.000000, 0.000000, 0.982177 - -0.194127, -0.000000, 0.000000, 0.980976 - -0.200289, -0.000000, 0.000000, 0.979737 - -0.206443, -0.000000, 0.000000, 0.978459 - -0.212589, -0.000000, 0.000000, 0.977142 - -0.218726, -0.000000, 0.000000, 0.975786 - -0.224855, -0.000000, 0.000000, 0.974392 - -0.230975, -0.000000, 0.000000, 0.972960 - -0.237085, -0.000000, 0.000000, 0.971489 - -0.243187, -0.000000, 0.000000, 0.969980 - -0.249278, -0.000000, 0.000000, 0.968432 - -0.255360, -0.000000, 0.000000, 0.966846 - -0.261432, -0.000000, 0.000000, 0.965222 - -0.267494, -0.000000, 0.000000, 0.963560 - -0.273544, -0.000000, 0.000000, 0.961859 - -0.279585, -0.000000, 0.000000, 0.960121 - -0.285614, -0.000000, 0.000000, 0.958345 - -0.291631, -0.000000, 0.000000, 0.956531 - -0.297638, -0.000000, 0.000000, 0.954679 - -0.303632, -0.000000, 0.000000, 0.952789 - -0.309615, -0.000000, 0.000000, 0.950862 - -0.315585, -0.000000, 0.000000, 0.948897 - -0.321543, -0.000000, 0.000000, 0.946895 - -0.327488, -0.000000, 0.000000, 0.944855 - -0.333420, -0.000000, 0.000000, 0.942778 - -0.339339, -0.000000, 0.000000, 0.940664 - -0.345245, -0.000000, 0.000000, 0.938513 - -0.351137, -0.000000, 0.000000, 0.936324 - -0.357015, -0.000000, 0.000000, 0.934099 - -0.362879, -0.000000, 0.000000, 0.931836 - -0.368728, -0.000000, 0.000000, 0.929537 - -0.374563, -0.000000, 0.000000, 0.927201 - -0.380384, -0.000000, 0.000000, 0.924829 - -0.386189, -0.000000, 0.000000, 0.922420 - -0.391979, -0.000000, 0.000000, 0.919974 - -0.397753, -0.000000, 0.000000, 0.917492 - -0.403512, -0.000000, 0.000000, 0.914974 - -0.409255, -0.000000, 0.000000, 0.912420 - -0.414982, -0.000000, 0.000000, 0.909830 - -0.420692, -0.000000, 0.000000, 0.907203 - -0.426386, -0.000000, 0.000000, 0.904541 - -0.432063, -0.000000, 0.000000, 0.901844 - -0.437722, -0.000000, 0.000000, 0.899110 - -0.443365, -0.000000, 0.000000, 0.896341 - -0.448990, -0.000000, 0.000000, 0.893537 - -0.454597, -0.000000, 0.000000, 0.890697 - -0.460186, -0.000000, 0.000000, 0.887822 - -0.465757, -0.000000, 0.000000, 0.884912 - -0.471310, -0.000000, 0.000000, 0.881968 - -0.476844, -0.000000, 0.000000, 0.878988 - -0.482359, -0.000000, 0.000000, 0.875973 - -0.487856, -0.000000, 0.000000, 0.872924 - -0.493332, -0.000000, 0.000000, 0.869841 - -0.498790, -0.000000, 0.000000, 0.866723 - -0.504228, -0.000000, 0.000000, 0.863571 - -0.509645, -0.000000, 0.000000, 0.860385 - -0.515043, -0.000000, 0.000000, 0.857164 - -0.520420, -0.000000, 0.000000, 0.853910 - -0.525777, -0.000000, 0.000000, 0.850622 - -0.531113, -0.000000, 0.000000, 0.847301 - -0.536428, -0.000000, 0.000000, 0.843946 - -0.541722, -0.000000, 0.000000, 0.840558 - -0.546994, -0.000000, 0.000000, 0.837136 - -0.552245, -0.000000, 0.000000, 0.833682 - -0.557474, -0.000000, 0.000000, 0.830194 - -0.562681, -0.000000, 0.000000, 0.826674 - -0.567866, -0.000000, 0.000000, 0.823121 - -0.573028, -0.000000, 0.000000, 0.819536 - -0.578168, -0.000000, 0.000000, 0.815918 - -0.583285, -0.000000, 0.000000, 0.812268 - -0.588378, -0.000000, 0.000000, 0.808586 - -0.593449, -0.000000, 0.000000, 0.804872 - -0.598496, -0.000000, 0.000000, 0.801126 - -0.603519, -0.000000, 0.000000, 0.797348 - -0.608519, -0.000000, 0.000000, 0.793539 - -0.613495, -0.000000, 0.000000, 0.789699 - -0.618446, -0.000000, 0.000000, 0.785827 - -0.623373, -0.000000, 0.000000, 0.781925 - -0.628275, -0.000000, 0.000000, 0.777991 - -0.633153, -0.000000, 0.000000, 0.774027 - -0.638005, -0.000000, 0.000000, 0.770032 - -0.642832, -0.000000, 0.000000, 0.766007 - -0.647634, -0.000000, 0.000000, 0.761952 - -0.652410, -0.000000, 0.000000, 0.757866 - -0.657161, -0.000000, 0.000000, 0.753750 - -0.661885, -0.000000, 0.000000, 0.749605 - -0.666584, -0.000000, 0.000000, 0.745430 - -0.671256, -0.000000, 0.000000, 0.741226 - -0.675901, -0.000000, 0.000000, 0.736992 - -0.680520, -0.000000, 0.000000, 0.732729 - -0.685112, -0.000000, 0.000000, 0.728438 - -0.689677, -0.000000, 0.000000, 0.724117 - -0.694214, -0.000000, 0.000000, 0.719768 - -0.698725, -0.000000, 0.000000, 0.715391 - -0.703207, -0.000000, 0.000000, 0.710985 - -0.707662, -0.000000, 0.000000, 0.706551 - -0.712089, -0.000000, 0.000000, 0.702089 - -0.716488, -0.000000, 0.000000, 0.697600 - -0.720858, -0.000000, 0.000000, 0.693083 - -0.725200, -0.000000, 0.000000, 0.688538 - -0.729513, -0.000000, 0.000000, 0.683967 - -0.733798, -0.000000, 0.000000, 0.679368 - -0.738053, -0.000000, 0.000000, 0.674742 - -0.742280, -0.000000, 0.000000, 0.670090 - -0.746477, -0.000000, 0.000000, 0.665412 - -0.750644, -0.000000, 0.000000, 0.660707 - -0.754782, -0.000000, 0.000000, 0.655976 - -0.758890, -0.000000, 0.000000, 0.651219 - -0.762968, -0.000000, 0.000000, 0.646436 - -0.767016, -0.000000, 0.000000, 0.641628 - -0.771034, -0.000000, 0.000000, 0.636794 - -0.775021, -0.000000, 0.000000, 0.631935 - -0.778978, -0.000000, 0.000000, 0.627052 - -0.782903, -0.000000, 0.000000, 0.622143 - -0.786798, -0.000000, 0.000000, 0.617210 - -0.790662, -0.000000, 0.000000, 0.612253 - -0.794494, -0.000000, 0.000000, 0.607271 - -0.798296, -0.000000, 0.000000, 0.602266 - -0.802065, -0.000000, 0.000000, 0.597236 - -0.805803, -0.000000, 0.000000, 0.592183 - -0.809509, -0.000000, 0.000000, 0.587107 - -0.813183, -0.000000, 0.000000, 0.582008 - -0.816825, -0.000000, 0.000000, 0.576885 - -0.820435, -0.000000, 0.000000, 0.571740 - -0.824012, -0.000000, 0.000000, 0.566572 - -0.827557, -0.000000, 0.000000, 0.561381 - -0.831069, -0.000000, 0.000000, 0.556169 - -0.834549, -0.000000, 0.000000, 0.550934 - -0.837995, -0.000000, 0.000000, 0.545678 - -0.841408, -0.000000, 0.000000, 0.540400 - -0.844788, -0.000000, 0.000000, 0.535101 - -0.848134, -0.000000, 0.000000, 0.529781 - -0.851447, -0.000000, 0.000000, 0.524440 - -0.854727, -0.000000, 0.000000, 0.519078 - -0.857973, -0.000000, 0.000000, 0.513696 - -0.861184, -0.000000, 0.000000, 0.508293 - -0.864362, -0.000000, 0.000000, 0.502870 - -0.867506, -0.000000, 0.000000, 0.497427 - -0.870615, -0.000000, 0.000000, 0.491965 - -0.873690, -0.000000, 0.000000, 0.486483 - -0.876730, -0.000000, 0.000000, 0.480982 - -0.879736, -0.000000, 0.000000, 0.475462 - -0.882707, -0.000000, 0.000000, 0.469924 - -0.885643, -0.000000, 0.000000, 0.464366 - -0.888544, -0.000000, 0.000000, 0.458791 - -0.891410, -0.000000, 0.000000, 0.453197 - -0.894241, -0.000000, 0.000000, 0.447585 - -0.897037, -0.000000, 0.000000, 0.441956 - -0.899797, -0.000000, 0.000000, 0.436309 - -0.902521, -0.000000, 0.000000, 0.430645 - -0.905210, -0.000000, 0.000000, 0.424964 - -0.907863, -0.000000, 0.000000, 0.419266 - -0.910481, -0.000000, 0.000000, 0.413552 - -0.913062, -0.000000, 0.000000, 0.407821 - -0.915607, -0.000000, 0.000000, 0.402074 - -0.918116, -0.000000, 0.000000, 0.396311 - -0.920589, -0.000000, 0.000000, 0.390533 - -0.923025, -0.000000, 0.000000, 0.384739 - -0.925425, -0.000000, 0.000000, 0.378930 - -0.927789, -0.000000, 0.000000, 0.373106 - -0.930115, -0.000000, 0.000000, 0.367267 - -0.932405, -0.000000, 0.000000, 0.361414 - -0.934659, -0.000000, 0.000000, 0.355547 - -0.936875, -0.000000, 0.000000, 0.349665 - -0.939054, -0.000000, 0.000000, 0.343770 - -0.941196, -0.000000, 0.000000, 0.337861 - -0.943301, -0.000000, 0.000000, 0.331938 - -0.945369, -0.000000, 0.000000, 0.326003 - -0.947399, -0.000000, 0.000000, 0.320055 - -0.949392, -0.000000, 0.000000, 0.314094 - -0.951347, -0.000000, 0.000000, 0.308120 - -0.953265, -0.000000, 0.000000, 0.302135 - -0.955145, -0.000000, 0.000000, 0.296137 - -0.956988, -0.000000, 0.000000, 0.290128 - -0.958792, -0.000000, 0.000000, 0.284107 - -0.960559, -0.000000, 0.000000, 0.278076 - -0.962288, -0.000000, 0.000000, 0.272033 - -0.963979, -0.000000, 0.000000, 0.265979 - -0.965631, -0.000000, 0.000000, 0.259915 - -0.967246, -0.000000, 0.000000, 0.253841 - -0.968822, -0.000000, 0.000000, 0.247756 - -0.970360, -0.000000, 0.000000, 0.241662 - -0.971860, -0.000000, 0.000000, 0.235558 - -0.973322, -0.000000, 0.000000, 0.229445 - -0.974744, -0.000000, 0.000000, 0.223323 - -0.976129, -0.000000, 0.000000, 0.217192 - -0.977475, -0.000000, 0.000000, 0.211053 - -0.978782, -0.000000, 0.000000, 0.204905 - -0.980050, -0.000000, 0.000000, 0.198749 - -0.981280, -0.000000, 0.000000, 0.192585 - -0.982471, -0.000000, 0.000000, 0.186414 - -0.983624, -0.000000, 0.000000, 0.180235 - -0.984737, -0.000000, 0.000000, 0.174049 - -0.985811, -0.000000, 0.000000, 0.167857 - -0.986847, -0.000000, 0.000000, 0.161657 - -0.987844, -0.000000, 0.000000, 0.155451 - -0.988801, -0.000000, 0.000000, 0.149240 - -0.989720, -0.000000, 0.000000, 0.143022 - -0.990599, -0.000000, 0.000000, 0.136798 - -0.991439, -0.000000, 0.000000, 0.130569 - -0.992240, -0.000000, 0.000000, 0.124335 - -0.993002, -0.000000, 0.000000, 0.118097 - -0.993725, -0.000000, 0.000000, 0.111853 - -0.994408, -0.000000, 0.000000, 0.105605 - -0.995052, -0.000000, 0.000000, 0.099353 - -0.995657, -0.000000, 0.000000, 0.093097 - -0.996223, -0.000000, 0.000000, 0.086837 - -0.996749, -0.000000, 0.000000, 0.080574 - -0.997235, -0.000000, 0.000000, 0.074307 - -0.997683, -0.000000, 0.000000, 0.068038 - -0.998091, -0.000000, 0.000000, 0.061766 - -0.998459, -0.000000, 0.000000, 0.055491 - -0.998788, -0.000000, 0.000000, 0.049215 - -0.999078, -0.000000, 0.000000, 0.042936 - -0.999328, -0.000000, 0.000000, 0.036656 - -0.999539, -0.000000, 0.000000, 0.030374 - -0.999710, -0.000000, 0.000000, 0.024091 - -0.999841, -0.000000, 0.000000, 0.017807 - -0.999934, -0.000000, 0.000000, 0.011523 - -0.999986, -0.000000, 0.000000, 0.005238 - -0.999999, 0.000000, -0.000000, -0.001048 - -0.999973, 0.000000, -0.000000, -0.007333 - -0.999907, 0.000000, -0.000000, -0.013618 - -0.999802, 0.000000, -0.000000, -0.019902 - -0.999657, 0.000000, -0.000000, -0.026186 - -0.999473, 0.000000, -0.000000, -0.032468 - -0.999249, 0.000000, -0.000000, -0.038750 - -0.998986, 0.000000, -0.000000, -0.045029 - -0.998683, 0.000000, -0.000000, -0.051307 - -0.998341, 0.000000, -0.000000, -0.057583 - -0.997959, 0.000000, -0.000000, -0.063857 - -0.997538, 0.000000, -0.000000, -0.070128 - -0.997078, 0.000000, -0.000000, -0.076396 - -0.996578, 0.000000, -0.000000, -0.082662 - -0.996038, 0.000000, -0.000000, -0.088924 - -0.995460, 0.000000, -0.000000, -0.095182 - -0.994842, 0.000000, -0.000000, -0.101437 - -0.994185, 0.000000, -0.000000, -0.107688 - -0.993488, 0.000000, -0.000000, -0.113935 - -0.992753, 0.000000, -0.000000, -0.120177 - -0.991978, 0.000000, -0.000000, -0.126414 - -0.991163, 0.000000, -0.000000, -0.132646 - -0.990310, 0.000000, -0.000000, -0.138873 - -0.989418, 0.000000, -0.000000, -0.145095 - -0.988486, 0.000000, -0.000000, -0.151311 - -0.987516, 0.000000, -0.000000, -0.157521 - -0.986506, 0.000000, -0.000000, -0.163724 - -0.985458, 0.000000, -0.000000, -0.169922 - -0.984370, 0.000000, -0.000000, -0.176112 - -0.983244, 0.000000, -0.000000, -0.182296 - -0.982079, 0.000000, -0.000000, -0.188472 - -0.980875, 0.000000, -0.000000, -0.194641 - -0.979632, 0.000000, -0.000000, -0.200802 - -0.978350, 0.000000, -0.000000, -0.206955 - -0.977030, 0.000000, -0.000000, -0.213100 - -0.975672, 0.000000, -0.000000, -0.219237 - -0.974274, 0.000000, -0.000000, -0.225365 - -0.972839, 0.000000, -0.000000, -0.231484 - -0.971365, 0.000000, -0.000000, -0.237594 - -0.969852, 0.000000, -0.000000, -0.243695 - -0.968301, 0.000000, -0.000000, -0.249786 - -0.966712, 0.000000, -0.000000, -0.255867 - -0.965085, 0.000000, -0.000000, -0.261938 - -0.963419, 0.000000, -0.000000, -0.267998 - -0.961716, 0.000000, -0.000000, -0.274048 - -0.959975, 0.000000, -0.000000, -0.280087 - -0.958195, 0.000000, -0.000000, -0.286116 - -0.956378, 0.000000, -0.000000, -0.292132 - -0.954523, 0.000000, -0.000000, -0.298138 - -0.952630, 0.000000, -0.000000, -0.304131 - -0.950700, 0.000000, -0.000000, -0.310113 - -0.948732, 0.000000, -0.000000, -0.316082 - -0.946727, 0.000000, -0.000000, -0.322039 - -0.944684, 0.000000, -0.000000, -0.327983 - -0.942604, 0.000000, -0.000000, -0.333914 - -0.940486, 0.000000, -0.000000, -0.339832 - -0.938332, 0.000000, -0.000000, -0.345736 - -0.936140, 0.000000, -0.000000, -0.351627 - -0.933912, 0.000000, -0.000000, -0.357504 - -0.931646, 0.000000, -0.000000, -0.363367 - -0.929344, 0.000000, -0.000000, -0.369215 - -0.927005, 0.000000, -0.000000, -0.375049 - -0.924629, 0.000000, -0.000000, -0.380868 - -0.922217, 0.000000, -0.000000, -0.386672 - -0.919769, 0.000000, -0.000000, -0.392461 - -0.917284, 0.000000, -0.000000, -0.398234 - -0.914763, 0.000000, -0.000000, -0.403991 - -0.912206, 0.000000, -0.000000, -0.409733 - -0.909612, 0.000000, -0.000000, -0.415458 - -0.906983, 0.000000, -0.000000, -0.421167 - -0.904318, 0.000000, -0.000000, -0.426860 - -0.901617, 0.000000, -0.000000, -0.432535 - -0.898881, 0.000000, -0.000000, -0.438193 - -0.896109, 0.000000, -0.000000, -0.443834 - -0.893302, 0.000000, -0.000000, -0.449458 - -0.890459, 0.000000, -0.000000, -0.455064 - -0.887581, 0.000000, -0.000000, -0.460651 - -0.884668, 0.000000, -0.000000, -0.466221 - -0.881721, 0.000000, -0.000000, -0.471772 - -0.878738, 0.000000, -0.000000, -0.477305 - -0.875721, 0.000000, -0.000000, -0.482818 - -0.872669, 0.000000, -0.000000, -0.488313 - -0.869582, 0.000000, -0.000000, -0.493788 - -0.866462, 0.000000, -0.000000, -0.499244 - -0.863307, 0.000000, -0.000000, -0.504680 - -0.860117, 0.000000, -0.000000, -0.510096 - -0.856894, 0.000000, -0.000000, -0.515492 - -0.853638, 0.000000, -0.000000, -0.520868 - -0.850347, 0.000000, -0.000000, -0.526223 - -0.847023, 0.000000, -0.000000, -0.531557 - -0.843665, 0.000000, -0.000000, -0.536870 - -0.840274, 0.000000, -0.000000, -0.542162 - -0.836850, 0.000000, -0.000000, -0.547433 - -0.833392, 0.000000, -0.000000, -0.552682 - -0.829902, 0.000000, -0.000000, -0.557909 - -0.826379, 0.000000, -0.000000, -0.563114 - -0.822824, 0.000000, -0.000000, -0.568297 - -0.819235, 0.000000, -0.000000, -0.573457 - -0.815615, 0.000000, -0.000000, -0.578595 - -0.811962, 0.000000, -0.000000, -0.583710 - -0.808277, 0.000000, -0.000000, -0.588802 - -0.804561, 0.000000, -0.000000, -0.593870 - -0.800812, 0.000000, -0.000000, -0.598915 - -0.797032, 0.000000, -0.000000, -0.603937 - -0.793220, 0.000000, -0.000000, -0.608935 - -0.789377, 0.000000, -0.000000, -0.613908 - -0.785503, 0.000000, -0.000000, -0.618857 - -0.781598, 0.000000, -0.000000, -0.623782 - -0.777662, 0.000000, -0.000000, -0.628682 - -0.773695, 0.000000, -0.000000, -0.633558 - -0.769698, 0.000000, -0.000000, -0.638408 - -0.765670, 0.000000, -0.000000, -0.643233 - -0.761612, 0.000000, -0.000000, -0.648033 - -0.757524, 0.000000, -0.000000, -0.652807 - -0.753406, 0.000000, -0.000000, -0.657555 - -0.749258, 0.000000, -0.000000, -0.662278 - -0.745081, 0.000000, -0.000000, -0.666974 - -0.740874, 0.000000, -0.000000, -0.671644 - -0.736638, 0.000000, -0.000000, -0.676287 - -0.732373, 0.000000, -0.000000, -0.680904 - -0.728079, 0.000000, -0.000000, -0.685493 - -0.723756, 0.000000, -0.000000, -0.690056 - -0.719404, 0.000000, -0.000000, -0.694591 - -0.715025, 0.000000, -0.000000, -0.699099 - -0.710616, 0.000000, -0.000000, -0.703580 - -0.706180, 0.000000, -0.000000, -0.708032 - -0.701716, 0.000000, -0.000000, -0.712457 - -0.697224, 0.000000, -0.000000, -0.716853 - -0.692705, 0.000000, -0.000000, -0.721221 - -0.688158, 0.000000, -0.000000, -0.725561 - -0.683584, 0.000000, -0.000000, -0.729872 - -0.678983, 0.000000, -0.000000, -0.734154 - -0.674356, 0.000000, -0.000000, -0.738407 - -0.669701, 0.000000, -0.000000, -0.742631 - -0.665020, 0.000000, -0.000000, -0.746825 - -0.660313, 0.000000, -0.000000, -0.750990 - -0.655580, 0.000000, -0.000000, -0.755126 - -0.650821, 0.000000, -0.000000, -0.759231 - -0.646036, 0.000000, -0.000000, -0.763307 - -0.641226, 0.000000, -0.000000, -0.767352 - -0.636390, 0.000000, -0.000000, -0.771367 - -0.631529, 0.000000, -0.000000, -0.775352 - -0.626644, 0.000000, -0.000000, -0.779306 - -0.621733, 0.000000, -0.000000, -0.783229 - -0.616798, 0.000000, -0.000000, -0.787121 - -0.611839, 0.000000, -0.000000, -0.790983 - -0.606855, 0.000000, -0.000000, -0.794812 - -0.601848, 0.000000, -0.000000, -0.798611 - -0.596816, 0.000000, -0.000000, -0.802378 - -0.591761, 0.000000, -0.000000, -0.806113 - -0.586683, 0.000000, -0.000000, -0.809817 - -0.581581, 0.000000, -0.000000, -0.813488 - -0.576457, 0.000000, -0.000000, -0.817127 - -0.571310, 0.000000, -0.000000, -0.820734 - -0.566140, 0.000000, -0.000000, -0.824309 - -0.560948, 0.000000, -0.000000, -0.827851 - -0.555734, 0.000000, -0.000000, -0.831360 - -0.550497, 0.000000, -0.000000, -0.834837 - -0.545239, 0.000000, -0.000000, -0.838280 - -0.539960, 0.000000, -0.000000, -0.841691 - -0.534659, 0.000000, -0.000000, -0.845068 - -0.529337, 0.000000, -0.000000, -0.848412 - -0.523994, 0.000000, -0.000000, -0.851722 - -0.518630, 0.000000, -0.000000, -0.854999 - -0.513246, 0.000000, -0.000000, -0.858241 - -0.507842, 0.000000, -0.000000, -0.861450 - -0.502417, 0.000000, -0.000000, -0.864625 - -0.496973, 0.000000, -0.000000, -0.867766 - -0.491509, 0.000000, -0.000000, -0.870872 - -0.486026, 0.000000, -0.000000, -0.873945 - -0.480523, 0.000000, -0.000000, -0.876982 - -0.475002, 0.000000, -0.000000, -0.879985 - -0.469461, 0.000000, -0.000000, -0.882953 - -0.463902, 0.000000, -0.000000, -0.885886 - -0.458325, 0.000000, -0.000000, -0.888785 - -0.452730, 0.000000, -0.000000, -0.891648 - -0.447117, 0.000000, -0.000000, -0.894476 - -0.441486, 0.000000, -0.000000, -0.897268 - -0.435838, 0.000000, -0.000000, -0.900025 - -0.430172, 0.000000, -0.000000, -0.902747 - -0.424490, 0.000000, -0.000000, -0.905433 - -0.418791, 0.000000, -0.000000, -0.908083 - -0.413075, 0.000000, -0.000000, -0.910697 - -0.407343, 0.000000, -0.000000, -0.913275 - -0.401594, 0.000000, -0.000000, -0.915818 - -0.395830, 0.000000, -0.000000, -0.918324 - -0.390051, 0.000000, -0.000000, -0.920793 - -0.384256, 0.000000, -0.000000, -0.923227 - -0.378445, 0.000000, -0.000000, -0.925624 - -0.372620, 0.000000, -0.000000, -0.927984 - -0.366780, 0.000000, -0.000000, -0.930308 - -0.360926, 0.000000, -0.000000, -0.932595 - -0.355057, 0.000000, -0.000000, -0.934845 - -0.349174, 0.000000, -0.000000, -0.937058 - -0.343278, 0.000000, -0.000000, -0.939234 - -0.337368, 0.000000, -0.000000, -0.941373 - -0.331444, 0.000000, -0.000000, -0.943475 - -0.325508, 0.000000, -0.000000, -0.945539 - -0.319558, 0.000000, -0.000000, -0.947567 - -0.313596, 0.000000, -0.000000, -0.949556 - -0.307622, 0.000000, -0.000000, -0.951509 - -0.301635, 0.000000, -0.000000, -0.953423 - -0.295637, 0.000000, -0.000000, -0.955300 - -0.289627, 0.000000, -0.000000, -0.957140 - -0.283605, 0.000000, -0.000000, -0.958941 - -0.277572, 0.000000, -0.000000, -0.960705 - -0.271529, 0.000000, -0.000000, -0.962430 - -0.265474, 0.000000, -0.000000, -0.964118 - -0.259409, 0.000000, -0.000000, -0.965767 - -0.253334, 0.000000, -0.000000, -0.967379 - -0.247249, 0.000000, -0.000000, -0.968952 - -0.241154, 0.000000, -0.000000, -0.970487 - -0.235049, 0.000000, -0.000000, -0.971983 - -0.228936, 0.000000, -0.000000, -0.973442 - -0.222813, 0.000000, -0.000000, -0.974861 - -0.216681, 0.000000, -0.000000, -0.976242 - -0.210541, 0.000000, -0.000000, -0.977585 - -0.204392, 0.000000, -0.000000, -0.978889 - -0.198236, 0.000000, -0.000000, -0.980154 - -0.192071, 0.000000, -0.000000, -0.981381 - -0.185899, 0.000000, -0.000000, -0.982569 - -0.179720, 0.000000, -0.000000, -0.983718 - -0.173534, 0.000000, -0.000000, -0.984828 - -0.167340, 0.000000, -0.000000, -0.985899 - -0.161140, 0.000000, -0.000000, -0.986932 - -0.154934, 0.000000, -0.000000, -0.987925 - -0.148722, 0.000000, -0.000000, -0.988879 - -0.142503, 0.000000, -0.000000, -0.989794 - -0.136279, 0.000000, -0.000000, -0.990670 - -0.130050, 0.000000, -0.000000, -0.991507 - -0.123816, 0.000000, -0.000000, -0.992305 - -0.117576, 0.000000, -0.000000, -0.993064 - -0.111332, 0.000000, -0.000000, -0.993783 - -0.105084, 0.000000, -0.000000, -0.994463 - -0.098832, 0.000000, -0.000000, -0.995104 - -0.092575, 0.000000, -0.000000, -0.995706 - -0.086315, 0.000000, -0.000000, -0.996268 - -0.080052, 0.000000, -0.000000, -0.996791 - -0.073785, 0.000000, -0.000000, -0.997274 - -0.067515, 0.000000, -0.000000, -0.997718 - -0.061243, 0.000000, -0.000000, -0.998123 - -0.054968, 0.000000, -0.000000, -0.998488 - -0.048692, 0.000000, -0.000000, -0.998814 - -0.042413, 0.000000, -0.000000, -0.999100 - -0.036132, 0.000000, -0.000000, -0.999347 - -0.029851, 0.000000, -0.000000, -0.999554 - -0.023568, 0.000000, -0.000000, -0.999722 - -0.017284, 0.000000, -0.000000, -0.999851 - -0.010999, 0.000000, -0.000000, -0.999940 - -0.004714, 0.000000, -0.000000, -0.999989 - 0.001571, 0.000000, 0.000000, -0.999999 - 0.007857, 0.000000, 0.000000, -0.999969 - 0.014141, 0.000000, 0.000000, -0.999900 - 0.020426, 0.000000, 0.000000, -0.999791 - 0.026709, 0.000000, 0.000000, -0.999643 - 0.032992, 0.000000, 0.000000, -0.999456 - 0.039273, 0.000000, 0.000000, -0.999229 - 0.045553, 0.000000, 0.000000, -0.998962 - 0.051830, 0.000000, 0.000000, -0.998656 - 0.058106, 0.000000, 0.000000, -0.998310 - 0.064380, 0.000000, 0.000000, -0.997925 - 0.070650, 0.000000, 0.000000, -0.997501 - 0.076919, 0.000000, 0.000000, -0.997037 - 0.083184, 0.000000, 0.000000, -0.996534 - 0.089446, 0.000000, 0.000000, -0.995992 - 0.095704, 0.000000, 0.000000, -0.995410 - 0.101958, 0.000000, 0.000000, -0.994789 - 0.108209, 0.000000, 0.000000, -0.994128 - 0.114455, 0.000000, 0.000000, -0.993428 - 0.120697, 0.000000, 0.000000, -0.992689 - 0.126934, 0.000000, 0.000000, -0.991911 - 0.133165, 0.000000, 0.000000, -0.991094 - 0.139392, 0.000000, 0.000000, -0.990237 - 0.145613, 0.000000, 0.000000, -0.989342 - 0.151829, 0.000000, 0.000000, -0.988407 - 0.158038, 0.000000, 0.000000, -0.987433 - 0.164241, 0.000000, 0.000000, -0.986420 - 0.170438, 0.000000, 0.000000, -0.985368 - 0.176628, 0.000000, 0.000000, -0.984278 - 0.182811, 0.000000, 0.000000, -0.983148 - 0.188986, 0.000000, 0.000000, -0.981980 - 0.195155, 0.000000, 0.000000, -0.980773 - 0.201315, 0.000000, 0.000000, -0.979527 - 0.207468, 0.000000, 0.000000, -0.978242 - 0.213612, 0.000000, 0.000000, -0.976919 - 0.219748, 0.000000, 0.000000, -0.975557 - 0.225875, 0.000000, 0.000000, -0.974156 - 0.231994, 0.000000, 0.000000, -0.972717 - 0.238103, 0.000000, 0.000000, -0.971240 - 0.244203, 0.000000, 0.000000, -0.969724 - 0.250293, 0.000000, 0.000000, -0.968170 - 0.256373, 0.000000, 0.000000, -0.966578 - 0.262443, 0.000000, 0.000000, -0.964947 - 0.268503, 0.000000, 0.000000, -0.963279 - 0.274552, 0.000000, 0.000000, -0.961572 - 0.280590, 0.000000, 0.000000, -0.959828 - 0.286617, 0.000000, 0.000000, -0.958045 - 0.292633, 0.000000, 0.000000, -0.956225 - 0.298638, 0.000000, 0.000000, -0.954367 - 0.304630, 0.000000, 0.000000, -0.952471 - 0.310611, 0.000000, 0.000000, -0.950537 - 0.316579, 0.000000, 0.000000, -0.948566 - 0.322535, 0.000000, 0.000000, -0.946558 - 0.328478, 0.000000, 0.000000, -0.944512 - 0.334407, 0.000000, 0.000000, -0.942429 - 0.340324, 0.000000, 0.000000, -0.940308 - 0.346228, 0.000000, 0.000000, -0.938151 - 0.352117, 0.000000, 0.000000, -0.935956 - 0.357993, 0.000000, 0.000000, -0.933724 - 0.363855, 0.000000, 0.000000, -0.931456 - 0.369702, 0.000000, 0.000000, -0.929150 - 0.375535, 0.000000, 0.000000, -0.926808 - 0.381352, 0.000000, 0.000000, -0.924430 - 0.387155, 0.000000, 0.000000, -0.922015 - 0.392942, 0.000000, 0.000000, -0.919563 - 0.398714, 0.000000, 0.000000, -0.917075 - 0.404471, 0.000000, 0.000000, -0.914551 - 0.410211, 0.000000, 0.000000, -0.911991 - 0.415935, 0.000000, 0.000000, -0.909394 - 0.421642, 0.000000, 0.000000, -0.906762 - 0.427333, 0.000000, 0.000000, -0.904094 - 0.433007, 0.000000, 0.000000, -0.901390 - 0.438664, 0.000000, 0.000000, -0.898651 - 0.444304, 0.000000, 0.000000, -0.895876 - 0.449926, 0.000000, 0.000000, -0.893066 - 0.455530, 0.000000, 0.000000, -0.890220 - 0.461116, 0.000000, 0.000000, -0.887340 - 0.466684, 0.000000, 0.000000, -0.884424 - 0.472234, 0.000000, 0.000000, -0.881473 - 0.477765, 0.000000, 0.000000, -0.878488 - 0.483277, 0.000000, 0.000000, -0.875468 - 0.488770, 0.000000, 0.000000, -0.872413 - 0.494243, 0.000000, 0.000000, -0.869324 - 0.499698, 0.000000, 0.000000, -0.866200 - 0.505132, 0.000000, 0.000000, -0.863042 - 0.510546, 0.000000, 0.000000, -0.859850 - 0.515941, 0.000000, 0.000000, -0.856624 - 0.521315, 0.000000, 0.000000, -0.853365 - 0.526668, 0.000000, 0.000000, -0.850071 - 0.532000, 0.000000, 0.000000, -0.846744 - 0.537312, 0.000000, 0.000000, -0.843384 - 0.542602, 0.000000, 0.000000, -0.839990 - 0.547871, 0.000000, 0.000000, -0.836563 - 0.553118, 0.000000, 0.000000, -0.833103 - 0.558343, 0.000000, 0.000000, -0.829610 - 0.563547, 0.000000, 0.000000, -0.826084 - 0.568728, 0.000000, 0.000000, -0.822526 - 0.573886, 0.000000, 0.000000, -0.818935 - 0.579022, 0.000000, 0.000000, -0.815312 - 0.584135, 0.000000, 0.000000, -0.811656 - 0.589225, 0.000000, 0.000000, -0.807969 - 0.594292, 0.000000, 0.000000, -0.804250 - 0.599335, 0.000000, 0.000000, -0.800498 - 0.604354, 0.000000, 0.000000, -0.796716 - 0.609350, 0.000000, 0.000000, -0.792901 - 0.614321, 0.000000, 0.000000, -0.789056 - 0.619269, 0.000000, 0.000000, -0.785179 - 0.624192, 0.000000, 0.000000, -0.781271 - 0.629090, 0.000000, 0.000000, -0.777333 - 0.633963, 0.000000, 0.000000, -0.773363 - 0.638811, 0.000000, 0.000000, -0.769363 - 0.643634, 0.000000, 0.000000, -0.765333 - 0.648432, 0.000000, 0.000000, -0.761273 - 0.653204, 0.000000, 0.000000, -0.757182 - 0.657950, 0.000000, 0.000000, -0.753062 - 0.662670, 0.000000, 0.000000, -0.748911 - 0.667364, 0.000000, 0.000000, -0.744732 - 0.672032, 0.000000, 0.000000, -0.740522 - 0.676673, 0.000000, 0.000000, -0.736284 - 0.681287, 0.000000, 0.000000, -0.732016 - 0.685875, 0.000000, 0.000000, -0.727720 - 0.690435, 0.000000, 0.000000, -0.723394 - 0.694968, 0.000000, 0.000000, -0.719041 - 0.699474, 0.000000, 0.000000, -0.714658 - 0.703952, 0.000000, 0.000000, -0.710248 - 0.708402, 0.000000, 0.000000, -0.705809 - 0.712824, 0.000000, 0.000000, -0.701343 - 0.717218, 0.000000, 0.000000, -0.696849 - 0.721584, 0.000000, 0.000000, -0.692327 - 0.725921, 0.000000, 0.000000, -0.687778 - 0.730229, 0.000000, 0.000000, -0.683202 - 0.734509, 0.000000, 0.000000, -0.678599 - 0.738760, 0.000000, 0.000000, -0.673969 - 0.742981, 0.000000, 0.000000, -0.669312 - 0.747173, 0.000000, 0.000000, -0.664629 - 0.751336, 0.000000, 0.000000, -0.659920 - 0.755469, 0.000000, 0.000000, -0.655185 - 0.759572, 0.000000, 0.000000, -0.650423 - 0.763645, 0.000000, 0.000000, -0.645636 - 0.767688, 0.000000, 0.000000, -0.640824 - 0.771700, 0.000000, 0.000000, -0.635986 - 0.775683, 0.000000, 0.000000, -0.631123 - 0.779634, 0.000000, 0.000000, -0.626235 - 0.783555, 0.000000, 0.000000, -0.621323 - 0.787444, 0.000000, 0.000000, -0.616386 - 0.791303, 0.000000, 0.000000, -0.611424 - 0.795130, 0.000000, 0.000000, -0.606439 - 0.798926, 0.000000, 0.000000, -0.601429 - 0.802690, 0.000000, 0.000000, -0.596396 - 0.806423, 0.000000, 0.000000, -0.591339 - 0.810124, 0.000000, 0.000000, -0.586259 - 0.813793, 0.000000, 0.000000, -0.581155 - 0.817429, 0.000000, 0.000000, -0.576029 - 0.821034, 0.000000, 0.000000, -0.570880 - 0.824606, 0.000000, 0.000000, -0.565708 - 0.828145, 0.000000, 0.000000, -0.560514 - 0.831651, 0.000000, 0.000000, -0.555298 - 0.835125, 0.000000, 0.000000, -0.550060 - 0.838566, 0.000000, 0.000000, -0.544800 - 0.841974, 0.000000, 0.000000, -0.539519 - 0.845348, 0.000000, 0.000000, -0.534216 - 0.848689, 0.000000, 0.000000, -0.528892 - 0.851996, 0.000000, 0.000000, -0.523548 - 0.855270, 0.000000, 0.000000, -0.518182 - 0.858510, 0.000000, 0.000000, -0.512797 - 0.861716, 0.000000, 0.000000, -0.507390 - 0.864888, 0.000000, 0.000000, -0.501964 - 0.868026, 0.000000, 0.000000, -0.496518 - 0.871130, 0.000000, 0.000000, -0.491053 - 0.874199, 0.000000, 0.000000, -0.485568 - 0.877234, 0.000000, 0.000000, -0.480064 - 0.880234, 0.000000, 0.000000, -0.474541 - 0.883199, 0.000000, 0.000000, -0.468999 - 0.886129, 0.000000, 0.000000, -0.463438 - 0.889024, 0.000000, 0.000000, -0.457860 - 0.891885, 0.000000, 0.000000, -0.452263 - 0.894710, 0.000000, 0.000000, -0.446648 - 0.897499, 0.000000, 0.000000, -0.441016 - 0.900253, 0.000000, 0.000000, -0.435366 - 0.902972, 0.000000, 0.000000, -0.429699 - 0.905655, 0.000000, 0.000000, -0.424015 - 0.908302, 0.000000, 0.000000, -0.418315 - 0.910913, 0.000000, 0.000000, -0.412598 - 0.913489, 0.000000, 0.000000, -0.406864 - 0.916028, 0.000000, 0.000000, -0.401115 - 0.918531, 0.000000, 0.000000, -0.395349 - 0.920998, 0.000000, 0.000000, -0.389568 - 0.923428, 0.000000, 0.000000, -0.383772 - 0.925822, 0.000000, 0.000000, -0.377960 - 0.928179, 0.000000, 0.000000, -0.372134 - 0.930500, 0.000000, 0.000000, -0.366293 - 0.932784, 0.000000, 0.000000, -0.360437 - 0.935031, 0.000000, 0.000000, -0.354567 - 0.937241, 0.000000, 0.000000, -0.348683 - 0.939414, 0.000000, 0.000000, -0.342786 - 0.941550, 0.000000, 0.000000, -0.336874 - 0.943648, 0.000000, 0.000000, -0.330950 - 0.945710, 0.000000, 0.000000, -0.325012 - 0.947734, 0.000000, 0.000000, -0.319062 - 0.949721, 0.000000, 0.000000, -0.313099 - 0.951670, 0.000000, 0.000000, -0.307123 - 0.953581, 0.000000, 0.000000, -0.301136 - 0.955455, 0.000000, 0.000000, -0.295136 - 0.957291, 0.000000, 0.000000, -0.289125 - 0.959090, 0.000000, 0.000000, -0.283103 - 0.960850, 0.000000, 0.000000, -0.277069 - 0.962572, 0.000000, 0.000000, -0.271025 - 0.964257, 0.000000, 0.000000, -0.264969 - 0.965903, 0.000000, 0.000000, -0.258903 - 0.967511, 0.000000, 0.000000, -0.252827 - 0.969081, 0.000000, 0.000000, -0.246741 - 0.970613, 0.000000, 0.000000, -0.240646 - 0.972106, 0.000000, 0.000000, -0.234540 - 0.973561, 0.000000, 0.000000, -0.228426 - 0.974978, 0.000000, 0.000000, -0.222302 - 0.976356, 0.000000, 0.000000, -0.216170 - 0.977695, 0.000000, 0.000000, -0.210029 - 0.978996, 0.000000, 0.000000, -0.203880 - 0.980258, 0.000000, 0.000000, -0.197722 - 0.981481, 0.000000, 0.000000, -0.191557 - 0.982666, 0.000000, 0.000000, -0.185385 - 0.983812, 0.000000, 0.000000, -0.179205 - 0.984919, 0.000000, 0.000000, -0.173018 - 0.985987, 0.000000, 0.000000, -0.166824 - 0.987016, 0.000000, 0.000000, -0.160623 - 0.988006, 0.000000, 0.000000, -0.154417 - 0.988957, 0.000000, 0.000000, -0.148204 - 0.989869, 0.000000, 0.000000, -0.141985 - 0.990742, 0.000000, 0.000000, -0.135761 - 0.991575, 0.000000, 0.000000, -0.129531 - 0.992370, 0.000000, 0.000000, -0.123296 - 0.993125, 0.000000, 0.000000, -0.117056 - 0.993841, 0.000000, 0.000000, -0.110812 - 0.994518, 0.000000, 0.000000, -0.104563 - 0.995156, 0.000000, 0.000000, -0.098310 - 0.995754, 0.000000, 0.000000, -0.092054 - 0.996313, 0.000000, 0.000000, -0.085793 - 0.996833, 0.000000, 0.000000, -0.079529 - 0.997313, 0.000000, 0.000000, -0.073263 - 0.997753, 0.000000, 0.000000, -0.066993 - 0.998155, 0.000000, 0.000000, -0.060720 - 0.998517, 0.000000, 0.000000, -0.054445 - 0.998839, 0.000000, 0.000000, -0.048169 - 0.999122, 0.000000, 0.000000, -0.041890 - 0.999366, 0.000000, 0.000000, -0.035609 - 0.999570, 0.000000, 0.000000, -0.029327 - 0.999734, 0.000000, 0.000000, -0.023044 - 0.999860, 0.000000, 0.000000, -0.016760 - 0.999945, 0.000000, 0.000000, -0.010475 - 0.999991, 0.000000, 0.000000, -0.004190 - 0.999998, 0.000000, 0.000000, 0.002095 - 0.999965, 0.000000, 0.000000, 0.008380 - 0.999892, 0.000000, 0.000000, 0.014665 - 0.999781, 0.000000, 0.000000, 0.020949 - 0.999629, 0.000000, 0.000000, 0.027233 - 0.999438, 0.000000, 0.000000, 0.033515 - 0.999208, 0.000000, 0.000000, 0.039796 - 0.998938, 0.000000, 0.000000, 0.046076 - 0.998629, 0.000000, 0.000000, 0.052353 - 0.998280, 0.000000, 0.000000, 0.058629 - 0.997892, 0.000000, 0.000000, 0.064902 - 0.997464, 0.000000, 0.000000, 0.071173 - 0.996997, 0.000000, 0.000000, 0.077441 - 0.996491, 0.000000, 0.000000, 0.083706 - 0.995945, 0.000000, 0.000000, 0.089967 - 0.995360, 0.000000, 0.000000, 0.096225 - 0.994735, 0.000000, 0.000000, 0.102479 - 0.994071, 0.000000, 0.000000, 0.108729 - 0.993368, 0.000000, 0.000000, 0.114975 - 0.992626, 0.000000, 0.000000, 0.121217 - 0.991845, 0.000000, 0.000000, 0.127453 - 0.991024, 0.000000, 0.000000, 0.133685 - 0.990164, 0.000000, 0.000000, 0.139911 - 0.989265, 0.000000, 0.000000, 0.146131 - 0.988327, 0.000000, 0.000000, 0.152346 - 0.987350, 0.000000, 0.000000, 0.158555 - 0.986334, 0.000000, 0.000000, 0.164758 - 0.985279, 0.000000, 0.000000, 0.170954 - 0.984185, 0.000000, 0.000000, 0.177143 - 0.983052, 0.000000, 0.000000, 0.183326 - 0.981881, 0.000000, 0.000000, 0.189501 - 0.980670, 0.000000, 0.000000, 0.195668 - 0.979421, 0.000000, 0.000000, 0.201828 - 0.978133, 0.000000, 0.000000, 0.207980 - 0.976807, 0.000000, 0.000000, 0.214124 - 0.975441, 0.000000, 0.000000, 0.220259 - 0.974038, 0.000000, 0.000000, 0.226385 - 0.972596, 0.000000, 0.000000, 0.232503 - 0.971115, 0.000000, 0.000000, 0.238611 - 0.969596, 0.000000, 0.000000, 0.244710 - 0.968039, 0.000000, 0.000000, 0.250800 - 0.966444, 0.000000, 0.000000, 0.256879 - 0.964810, 0.000000, 0.000000, 0.262948 - 0.963138, 0.000000, 0.000000, 0.269007 - 0.961428, 0.000000, 0.000000, 0.275056 - 0.959681, 0.000000, 0.000000, 0.281093 - 0.957895, 0.000000, 0.000000, 0.287119 - 0.956071, 0.000000, 0.000000, 0.293134 - 0.954210, 0.000000, 0.000000, 0.299137 - 0.952311, 0.000000, 0.000000, 0.305129 - 0.950374, 0.000000, 0.000000, 0.311108 - 0.948400, 0.000000, 0.000000, 0.317076 - 0.946389, 0.000000, 0.000000, 0.323030 - 0.944340, 0.000000, 0.000000, 0.328972 - 0.942253, 0.000000, 0.000000, 0.334901 - 0.940130, 0.000000, 0.000000, 0.340817 - 0.937969, 0.000000, 0.000000, 0.346719 - 0.935771, 0.000000, 0.000000, 0.352607 - 0.933537, 0.000000, 0.000000, 0.358482 - 0.931265, 0.000000, 0.000000, 0.364342 - 0.928957, 0.000000, 0.000000, 0.370188 - 0.926612, 0.000000, 0.000000, 0.376020 - 0.924230, 0.000000, 0.000000, 0.381836 - 0.921812, 0.000000, 0.000000, 0.387638 - 0.919357, 0.000000, 0.000000, 0.393424 - 0.916866, 0.000000, 0.000000, 0.399195 - 0.914339, 0.000000, 0.000000, 0.404950 - 0.911776, 0.000000, 0.000000, 0.410688 - 0.909177, 0.000000, 0.000000, 0.416411 - 0.906541, 0.000000, 0.000000, 0.422117 - 0.903870, 0.000000, 0.000000, 0.427807 - 0.901164, 0.000000, 0.000000, 0.433479 - 0.898421, 0.000000, 0.000000, 0.439135 - 0.895643, 0.000000, 0.000000, 0.444773 - 0.892830, 0.000000, 0.000000, 0.450393 - 0.889982, 0.000000, 0.000000, 0.455996 - 0.887098, 0.000000, 0.000000, 0.461581 - 0.884179, 0.000000, 0.000000, 0.467147 - 0.881226, 0.000000, 0.000000, 0.472695 - 0.878237, 0.000000, 0.000000, 0.478225 - 0.875214, 0.000000, 0.000000, 0.483735 - 0.872157, 0.000000, 0.000000, 0.489227 - 0.869065, 0.000000, 0.000000, 0.494699 - 0.865938, 0.000000, 0.000000, 0.500151 - 0.862777, 0.000000, 0.000000, 0.505584 - 0.859583, 0.000000, 0.000000, 0.510997 - 0.856354, 0.000000, 0.000000, 0.516389 - 0.853091, 0.000000, 0.000000, 0.521761 - 0.849795, 0.000000, 0.000000, 0.527113 - 0.846465, 0.000000, 0.000000, 0.532444 - 0.843102, 0.000000, 0.000000, 0.537754 - 0.839706, 0.000000, 0.000000, 0.543042 - 0.836276, 0.000000, 0.000000, 0.548309 - 0.832813, 0.000000, 0.000000, 0.553554 - 0.829317, 0.000000, 0.000000, 0.558778 - 0.825789, 0.000000, 0.000000, 0.563979 - 0.822228, 0.000000, 0.000000, 0.569158 - 0.818634, 0.000000, 0.000000, 0.574315 - 0.815008, 0.000000, 0.000000, 0.579449 - 0.811350, 0.000000, 0.000000, 0.584560 - 0.807660, 0.000000, 0.000000, 0.589648 - 0.803938, 0.000000, 0.000000, 0.594713 - 0.800184, 0.000000, 0.000000, 0.599754 - 0.796399, 0.000000, 0.000000, 0.604772 - 0.792582, 0.000000, 0.000000, 0.609765 - 0.788734, 0.000000, 0.000000, 0.614735 - 0.784855, 0.000000, 0.000000, 0.619680 - 0.780944, 0.000000, 0.000000, 0.624601 - 0.777003, 0.000000, 0.000000, 0.629497 - 0.773031, 0.000000, 0.000000, 0.634368 - 0.769029, 0.000000, 0.000000, 0.639214 - 0.764996, 0.000000, 0.000000, 0.644035 - 0.760933, 0.000000, 0.000000, 0.648830 - 0.756840, 0.000000, 0.000000, 0.653600 - 0.752717, 0.000000, 0.000000, 0.658344 - 0.748564, 0.000000, 0.000000, 0.663062 - 0.744382, 0.000000, 0.000000, 0.667754 - 0.740170, 0.000000, 0.000000, 0.672420 - 0.735929, 0.000000, 0.000000, 0.677058 - 0.731659, 0.000000, 0.000000, 0.681671 - 0.727360, 0.000000, 0.000000, 0.686256 - 0.723033, 0.000000, 0.000000, 0.690814 - 0.718676, 0.000000, 0.000000, 0.695345 - 0.714292, 0.000000, 0.000000, 0.699848 - 0.709879, 0.000000, 0.000000, 0.704324 - 0.705438, 0.000000, 0.000000, 0.708771 - 0.700969, 0.000000, 0.000000, 0.713191 - 0.696473, 0.000000, 0.000000, 0.717583 - 0.691949, 0.000000, 0.000000, 0.721946 - 0.687398, 0.000000, 0.000000, 0.726281 - 0.682819, 0.000000, 0.000000, 0.730587 - 0.678214, 0.000000, 0.000000, 0.734864 - 0.673582, 0.000000, 0.000000, 0.739113 - 0.668923, 0.000000, 0.000000, 0.743332 - 0.664238, 0.000000, 0.000000, 0.747521 - 0.659526, 0.000000, 0.000000, 0.751682 - 0.654789, 0.000000, 0.000000, 0.755812 - 0.650025, 0.000000, 0.000000, 0.759913 - 0.645236, 0.000000, 0.000000, 0.763983 - 0.640422, 0.000000, 0.000000, 0.768023 - 0.635582, 0.000000, 0.000000, 0.772033 - 0.630717, 0.000000, 0.000000, 0.776013 - 0.625827, 0.000000, 0.000000, 0.779962 - 0.620912, 0.000000, 0.000000, 0.783880 - 0.615973, 0.000000, 0.000000, 0.787767 - 0.611010, 0.000000, 0.000000, 0.791623 - 0.606022, 0.000000, 0.000000, 0.795448 - 0.601011, 0.000000, 0.000000, 0.799241 - 0.595975, 0.000000, 0.000000, 0.803003 - 0.590917, 0.000000, 0.000000, 0.806733 - 0.585834, 0.000000, 0.000000, 0.810431 - 0.580729, 0.000000, 0.000000, 0.814097 - 0.575601, 0.000000, 0.000000, 0.817731 - 0.570450, 0.000000, 0.000000, 0.821333 - 0.565276, 0.000000, 0.000000, 0.824902 - 0.560080, 0.000000, 0.000000, 0.828438 - 0.554862, 0.000000, 0.000000, 0.831942 - 0.549622, 0.000000, 0.000000, 0.835413 - 0.544361, 0.000000, 0.000000, 0.838851 - 0.539078, 0.000000, 0.000000, 0.842256 - 0.533773, 0.000000, 0.000000, 0.845628 - 0.528448, 0.000000, 0.000000, 0.848966 - 0.523101, 0.000000, 0.000000, 0.852270 - 0.517734, 0.000000, 0.000000, 0.855541 - 0.512347, 0.000000, 0.000000, 0.858779 - 0.506939, 0.000000, 0.000000, 0.861982 - 0.501511, 0.000000, 0.000000, 0.865151 - 0.496064, 0.000000, 0.000000, 0.868286 - 0.490596, 0.000000, 0.000000, 0.871387 - 0.485110, 0.000000, 0.000000, 0.874453 - 0.479604, 0.000000, 0.000000, 0.877485 - 0.474079, 0.000000, 0.000000, 0.880482 - 0.468536, 0.000000, 0.000000, 0.883444 - 0.462974, 0.000000, 0.000000, 0.886372 - 0.457394, 0.000000, 0.000000, 0.889264 - 0.451796, 0.000000, 0.000000, 0.892121 - 0.446180, 0.000000, 0.000000, 0.894943 - 0.440546, 0.000000, 0.000000, 0.897730 - 0.434895, 0.000000, 0.000000, 0.900481 - 0.429226, 0.000000, 0.000000, 0.903197 - 0.423541, 0.000000, 0.000000, 0.905877 - 0.417839, 0.000000, 0.000000, 0.908521 - 0.412121, 0.000000, 0.000000, 0.911129 - 0.406386, 0.000000, 0.000000, 0.913702 - 0.400635, 0.000000, 0.000000, 0.916238 - 0.394868, 0.000000, 0.000000, 0.918738 - 0.389086, 0.000000, 0.000000, 0.921201 - 0.383288, 0.000000, 0.000000, 0.923629 - 0.377475, 0.000000, 0.000000, 0.926020 - 0.371648, 0.000000, 0.000000, 0.928374 - 0.365805, 0.000000, 0.000000, 0.930691 - 0.359948, 0.000000, 0.000000, 0.932972 - 0.354077, 0.000000, 0.000000, 0.935216 - 0.348192, 0.000000, 0.000000, 0.937423 - 0.342294, 0.000000, 0.000000, 0.939593 - 0.336381, 0.000000, 0.000000, 0.941726 - 0.330456, 0.000000, 0.000000, 0.943822 - 0.324517, 0.000000, 0.000000, 0.945880 - 0.318565, 0.000000, 0.000000, 0.947901 - 0.312601, 0.000000, 0.000000, 0.949884 - 0.306625, 0.000000, 0.000000, 0.951830 - 0.300636, 0.000000, 0.000000, 0.953739 - 0.294636, 0.000000, 0.000000, 0.955610 - 0.288624, 0.000000, 0.000000, 0.957443 - 0.282600, 0.000000, 0.000000, 0.959238 - 0.276566, 0.000000, 0.000000, 0.960995 - 0.270520, 0.000000, 0.000000, 0.962714 - 0.264464, 0.000000, 0.000000, 0.964396 - 0.258397, 0.000000, 0.000000, 0.966039 - 0.252321, 0.000000, 0.000000, 0.967644 - 0.246234, 0.000000, 0.000000, 0.969210 - 0.240137, 0.000000, 0.000000, 0.970739 - 0.234031, 0.000000, 0.000000, 0.972229 - 0.227916, 0.000000, 0.000000, 0.973681 - 0.221791, 0.000000, 0.000000, 0.975094 - 0.215658, 0.000000, 0.000000, 0.976469 - 0.209517, 0.000000, 0.000000, 0.977805 - 0.203367, 0.000000, 0.000000, 0.979103 - 0.197209, 0.000000, 0.000000, 0.980361 - 0.191043, 0.000000, 0.000000, 0.981582 - 0.184870, 0.000000, 0.000000, 0.982763 - 0.178689, 0.000000, 0.000000, 0.983906 - 0.172502, 0.000000, 0.000000, 0.985009 - 0.166307, 0.000000, 0.000000, 0.986074 - 0.160106, 0.000000, 0.000000, 0.987100 - 0.153899, 0.000000, 0.000000, 0.988087 - 0.147686, 0.000000, 0.000000, 0.989034 - 0.141466, 0.000000, 0.000000, 0.989943 - 0.135242, 0.000000, 0.000000, 0.990813 - 0.129011, 0.000000, 0.000000, 0.991643 - 0.122776, 0.000000, 0.000000, 0.992434 - 0.116536, 0.000000, 0.000000, 0.993186 - 0.110291, 0.000000, 0.000000, 0.993899 - 0.104042, 0.000000, 0.000000, 0.994573 - 0.097789, 0.000000, 0.000000, 0.995207 - 0.091532, 0.000000, 0.000000, 0.995802 - 0.085271, 0.000000, 0.000000, 0.996358 - 0.079007, 0.000000, 0.000000, 0.996874 - 0.072740, 0.000000, 0.000000, 0.997351 - 0.066470, 0.000000, 0.000000, 0.997788 - 0.060198, 0.000000, 0.000000, 0.998186 - 0.053922, 0.000000, 0.000000, 0.998545 - 0.047645, 0.000000, 0.000000, 0.998864 - 0.041366, 0.000000, 0.000000, 0.999144 - 0.035086, 0.000000, 0.000000, 0.999384 - 0.028804, 0.000000, 0.000000, 0.999585 - 0.022520, 0.000000, 0.000000, 0.999746 - 0.016236, 0.000000, 0.000000, 0.999868 - 0.009952, 0.000000, 0.000000, 0.999950 - 0.003666, 0.000000, 0.000000, 0.999993 - -0.002619, -0.000000, 0.000000, 0.999997 - -0.008904, -0.000000, 0.000000, 0.999960 - -0.015189, -0.000000, 0.000000, 0.999885 - -0.021473, -0.000000, 0.000000, 0.999769 - -0.027756, -0.000000, 0.000000, 0.999615 - -0.034039, -0.000000, 0.000000, 0.999421 - -0.040320, -0.000000, 0.000000, 0.999187 - -0.046599, -0.000000, 0.000000, 0.998914 - -0.052876, -0.000000, 0.000000, 0.998601 - -0.059152, -0.000000, 0.000000, 0.998249 - -0.065425, -0.000000, 0.000000, 0.997857 - -0.071695, -0.000000, 0.000000, 0.997427 - -0.077963, -0.000000, 0.000000, 0.996956 - -0.084228, -0.000000, 0.000000, 0.996447 - -0.090489, -0.000000, 0.000000, 0.995897 - -0.096747, -0.000000, 0.000000, 0.995309 - -0.103000, -0.000000, 0.000000, 0.994681 - -0.109250, -0.000000, 0.000000, 0.994014 - -0.115496, -0.000000, 0.000000, 0.993308 - -0.121736, -0.000000, 0.000000, 0.992562 - -0.127973, -0.000000, 0.000000, 0.991778 - -0.134204, -0.000000, 0.000000, 0.990954 - -0.140429, -0.000000, 0.000000, 0.990091 - -0.146650, -0.000000, 0.000000, 0.989189 - -0.152864, -0.000000, 0.000000, 0.988247 - -0.159072, -0.000000, 0.000000, 0.987267 - -0.165274, -0.000000, 0.000000, 0.986248 - -0.171470, -0.000000, 0.000000, 0.985189 - -0.177659, -0.000000, 0.000000, 0.984092 - -0.183840, -0.000000, 0.000000, 0.982956 - -0.190015, -0.000000, 0.000000, 0.981781 - -0.196182, -0.000000, 0.000000, 0.980568 - -0.202341, -0.000000, 0.000000, 0.979315 - -0.208492, -0.000000, 0.000000, 0.978024 - -0.214635, -0.000000, 0.000000, 0.976694 - -0.220770, -0.000000, 0.000000, 0.975326 - -0.226896, -0.000000, 0.000000, 0.973919 - -0.233012, -0.000000, 0.000000, 0.972474 - -0.239120, -0.000000, 0.000000, 0.970990 - -0.245218, -0.000000, 0.000000, 0.969468 - -0.251307, -0.000000, 0.000000, 0.967907 - -0.257385, -0.000000, 0.000000, 0.966309 - -0.263454, -0.000000, 0.000000, 0.964672 - -0.269512, -0.000000, 0.000000, 0.962997 - -0.275559, -0.000000, 0.000000, 0.961284 - -0.281595, -0.000000, 0.000000, 0.959533 - -0.287621, -0.000000, 0.000000, 0.957744 - -0.293635, -0.000000, 0.000000, 0.955918 - -0.299637, -0.000000, 0.000000, 0.954053 - -0.305628, -0.000000, 0.000000, 0.952151 - -0.311606, -0.000000, 0.000000, 0.950211 - -0.317572, -0.000000, 0.000000, 0.948234 - -0.323526, -0.000000, 0.000000, 0.946219 - -0.329467, -0.000000, 0.000000, 0.944167 - -0.335395, -0.000000, 0.000000, 0.942078 - -0.341309, -0.000000, 0.000000, 0.939951 - -0.347210, -0.000000, 0.000000, 0.937787 - -0.353098, -0.000000, 0.000000, 0.935587 - -0.358971, -0.000000, 0.000000, 0.933349 - -0.364830, -0.000000, 0.000000, 0.931074 - -0.370675, -0.000000, 0.000000, 0.928763 - -0.376505, -0.000000, 0.000000, 0.926415 - -0.382320, -0.000000, 0.000000, 0.924030 - -0.388121, -0.000000, 0.000000, 0.921609 - -0.393906, -0.000000, 0.000000, 0.919151 - -0.399675, -0.000000, 0.000000, 0.916657 - -0.405428, -0.000000, 0.000000, 0.914127 - -0.411166, -0.000000, 0.000000, 0.911561 - -0.416887, -0.000000, 0.000000, 0.908958 - -0.422592, -0.000000, 0.000000, 0.906320 - -0.428280, -0.000000, 0.000000, 0.903646 - -0.433951, -0.000000, 0.000000, 0.900936 - -0.439605, -0.000000, 0.000000, 0.898191 - -0.445242, -0.000000, 0.000000, 0.895410 - -0.450861, -0.000000, 0.000000, 0.892594 - -0.456462, -0.000000, 0.000000, 0.889743 - -0.462045, -0.000000, 0.000000, 0.886856 - -0.467610, -0.000000, 0.000000, 0.883935 - -0.473157, -0.000000, 0.000000, 0.880978 - -0.478685, -0.000000, 0.000000, 0.877987 - -0.484194, -0.000000, 0.000000, 0.874961 - -0.489683, -0.000000, 0.000000, 0.871900 - -0.495154, -0.000000, 0.000000, 0.868805 - -0.500605, -0.000000, 0.000000, 0.865676 - -0.506036, -0.000000, 0.000000, 0.862512 - -0.511447, -0.000000, 0.000000, 0.859315 - -0.516838, -0.000000, 0.000000, 0.856083 - -0.522208, -0.000000, 0.000000, 0.852818 - -0.527558, -0.000000, 0.000000, 0.849519 - -0.532887, -0.000000, 0.000000, 0.846186 - -0.538195, -0.000000, 0.000000, 0.842820 - -0.543482, -0.000000, 0.000000, 0.839421 - -0.548747, -0.000000, 0.000000, 0.835988 - -0.553991, -0.000000, 0.000000, 0.832523 - -0.559212, -0.000000, 0.000000, 0.829025 - -0.564412, -0.000000, 0.000000, 0.825493 - -0.569589, -0.000000, 0.000000, 0.821930 - -0.574744, -0.000000, 0.000000, 0.818333 - -0.579876, -0.000000, 0.000000, 0.814705 - -0.584985, -0.000000, 0.000000, 0.811044 - -0.590071, -0.000000, 0.000000, 0.807351 - -0.595134, -0.000000, 0.000000, 0.803627 - -0.600173, -0.000000, 0.000000, 0.799870 - -0.605189, -0.000000, 0.000000, 0.796082 - -0.610180, -0.000000, 0.000000, 0.792263 - -0.615148, -0.000000, 0.000000, 0.788412 - -0.620091, -0.000000, 0.000000, 0.784530 - -0.625010, -0.000000, 0.000000, 0.780617 - -0.629904, -0.000000, 0.000000, 0.776673 - -0.634773, -0.000000, 0.000000, 0.772699 - -0.639617, -0.000000, 0.000000, 0.768694 - -0.644436, -0.000000, 0.000000, 0.764659 - -0.649229, -0.000000, 0.000000, 0.760593 - -0.653997, -0.000000, 0.000000, 0.756497 - -0.658739, -0.000000, 0.000000, 0.752372 - -0.663454, -0.000000, 0.000000, 0.748217 - -0.668144, -0.000000, 0.000000, 0.744032 - -0.672807, -0.000000, 0.000000, 0.739818 - -0.677444, -0.000000, 0.000000, 0.735575 - -0.682054, -0.000000, 0.000000, 0.731302 - -0.686637, -0.000000, 0.000000, 0.727001 - -0.691192, -0.000000, 0.000000, 0.722671 - -0.695721, -0.000000, 0.000000, 0.718312 - -0.700222, -0.000000, 0.000000, 0.713925 - -0.704695, -0.000000, 0.000000, 0.709510 - -0.709141, -0.000000, 0.000000, 0.705067 - -0.713558, -0.000000, 0.000000, 0.700596 - -0.717948, -0.000000, 0.000000, 0.696097 - -0.722309, -0.000000, 0.000000, 0.691571 - -0.726641, -0.000000, 0.000000, 0.687017 - -0.730945, -0.000000, 0.000000, 0.682437 - -0.735220, -0.000000, 0.000000, 0.677829 - -0.739465, -0.000000, 0.000000, 0.673195 - -0.743682, -0.000000, 0.000000, 0.668534 - -0.747869, -0.000000, 0.000000, 0.663846 - -0.752027, -0.000000, 0.000000, 0.659132 - -0.756155, -0.000000, 0.000000, 0.654393 - -0.760253, -0.000000, 0.000000, 0.649627 - -0.764321, -0.000000, 0.000000, 0.644836 - -0.768359, -0.000000, 0.000000, 0.640019 - -0.772366, -0.000000, 0.000000, 0.635177 - -0.776343, -0.000000, 0.000000, 0.630310 - -0.780290, -0.000000, 0.000000, 0.625418 - -0.784205, -0.000000, 0.000000, 0.620502 - -0.788090, -0.000000, 0.000000, 0.615561 - -0.791943, -0.000000, 0.000000, 0.610595 - -0.795765, -0.000000, 0.000000, 0.605605 - -0.799556, -0.000000, 0.000000, 0.600592 - -0.803315, -0.000000, 0.000000, 0.595555 - -0.807042, -0.000000, 0.000000, 0.590494 - -0.810738, -0.000000, 0.000000, 0.585410 - -0.814401, -0.000000, 0.000000, 0.580303 - -0.818032, -0.000000, 0.000000, 0.575172 - -0.821631, -0.000000, 0.000000, 0.570019 - -0.825198, -0.000000, 0.000000, 0.564844 - -0.828732, -0.000000, 0.000000, 0.559646 - -0.832233, -0.000000, 0.000000, 0.554427 - -0.835701, -0.000000, 0.000000, 0.549185 - -0.839136, -0.000000, 0.000000, 0.543921 - -0.842538, -0.000000, 0.000000, 0.538636 - -0.845907, -0.000000, 0.000000, 0.533330 - -0.849243, -0.000000, 0.000000, 0.528003 - -0.852544, -0.000000, 0.000000, 0.522655 - -0.855813, -0.000000, 0.000000, 0.517286 - -0.859047, -0.000000, 0.000000, 0.511897 - -0.862247, -0.000000, 0.000000, 0.506487 - -0.865414, -0.000000, 0.000000, 0.501058 - -0.868546, -0.000000, 0.000000, 0.495609 - -0.871644, -0.000000, 0.000000, 0.490140 - -0.874707, -0.000000, 0.000000, 0.484652 - -0.877736, -0.000000, 0.000000, 0.479145 - -0.880730, -0.000000, 0.000000, 0.473618 - -0.883690, -0.000000, 0.000000, 0.468073 - -0.886614, -0.000000, 0.000000, 0.462510 - -0.889504, -0.000000, 0.000000, 0.456928 - -0.892358, -0.000000, 0.000000, 0.451328 - -0.895177, -0.000000, 0.000000, 0.445711 - -0.897961, -0.000000, 0.000000, 0.440076 - -0.900709, -0.000000, 0.000000, 0.434423 - -0.903422, -0.000000, 0.000000, 0.428753 - -0.906099, -0.000000, 0.000000, 0.423067 - -0.908740, -0.000000, 0.000000, 0.417363 - -0.911345, -0.000000, 0.000000, 0.411643 - -0.913914, -0.000000, 0.000000, 0.405907 - -0.916448, -0.000000, 0.000000, 0.400155 - -0.918944, -0.000000, 0.000000, 0.394387 - -0.921405, -0.000000, 0.000000, 0.388603 - -0.923829, -0.000000, 0.000000, 0.382804 - -0.926217, -0.000000, 0.000000, 0.376990 - -0.928568, -0.000000, 0.000000, 0.371161 - -0.930883, -0.000000, 0.000000, 0.365318 - -0.933161, -0.000000, 0.000000, 0.359460 - -0.935401, -0.000000, 0.000000, 0.353588 - -0.937605, -0.000000, 0.000000, 0.347701 - -0.939772, -0.000000, 0.000000, 0.341801 - -0.941902, -0.000000, 0.000000, 0.335888 - -0.943994, -0.000000, 0.000000, 0.329961 - -0.946050, -0.000000, 0.000000, 0.324021 - -0.948068, -0.000000, 0.000000, 0.318069 - -0.950048, -0.000000, 0.000000, 0.312104 - -0.951991, -0.000000, 0.000000, 0.306126 - -0.953896, -0.000000, 0.000000, 0.300137 - -0.955764, -0.000000, 0.000000, 0.294135 - -0.957594, -0.000000, 0.000000, 0.288122 - -0.959386, -0.000000, 0.000000, 0.282098 - -0.961140, -0.000000, 0.000000, 0.276062 - -0.962856, -0.000000, 0.000000, 0.270016 - -0.964534, -0.000000, 0.000000, 0.263959 - -0.966174, -0.000000, 0.000000, 0.257891 - -0.967776, -0.000000, 0.000000, 0.251814 - -0.969339, -0.000000, 0.000000, 0.245726 - -0.970865, -0.000000, 0.000000, 0.239629 - -0.972352, -0.000000, 0.000000, 0.233522 - -0.973800, -0.000000, 0.000000, 0.227406 - -0.975210, -0.000000, 0.000000, 0.221281 - -0.976582, -0.000000, 0.000000, 0.215147 - -0.977915, -0.000000, 0.000000, 0.209005 - -0.979209, -0.000000, 0.000000, 0.202854 - -0.980465, -0.000000, 0.000000, 0.196695 - -0.981682, -0.000000, 0.000000, 0.190529 - -0.982860, -0.000000, 0.000000, 0.184355 - -0.983999, -0.000000, 0.000000, 0.178174 - -0.985099, -0.000000, 0.000000, 0.171986 - -0.986161, -0.000000, 0.000000, 0.165791 - -0.987183, -0.000000, 0.000000, 0.159589 - -0.988167, -0.000000, 0.000000, 0.153382 - -0.989112, -0.000000, 0.000000, 0.147168 - -0.990017, -0.000000, 0.000000, 0.140948 - -0.990883, -0.000000, 0.000000, 0.134723 - -0.991711, -0.000000, 0.000000, 0.128492 - -0.992499, -0.000000, 0.000000, 0.122256 - -0.993247, -0.000000, 0.000000, 0.116016 - -0.993957, -0.000000, 0.000000, 0.109771 - -0.994627, -0.000000, 0.000000, 0.103521 - -0.995258, -0.000000, 0.000000, 0.097268 - -0.995850, -0.000000, 0.000000, 0.091010 - -0.996402, -0.000000, 0.000000, 0.084750 - -0.996915, -0.000000, 0.000000, 0.078485 - -0.997389, -0.000000, 0.000000, 0.072218 - -0.997823, -0.000000, 0.000000, 0.065948 - -0.998218, -0.000000, 0.000000, 0.059675 - -0.998573, -0.000000, 0.000000, 0.053399 - -0.998889, -0.000000, 0.000000, 0.047122 - -0.999166, -0.000000, 0.000000, 0.040843 - -0.999403, -0.000000, 0.000000, 0.034562 - -0.999600, -0.000000, 0.000000, 0.028280 - -0.999758, -0.000000, 0.000000, 0.021997 - -0.999877, -0.000000, 0.000000, 0.015713 - -0.999956, -0.000000, 0.000000, 0.009428 - -0.999995, -0.000000, 0.000000, 0.003143 - -0.999995, 0.000000, -0.000000, -0.003143 - -0.999956, 0.000000, -0.000000, -0.009428 - -0.999877, 0.000000, -0.000000, -0.015713 - -0.999758, 0.000000, -0.000000, -0.021997 - -0.999600, 0.000000, -0.000000, -0.028280 - -0.999403, 0.000000, -0.000000, -0.034562 - -0.999166, 0.000000, -0.000000, -0.040843 - -0.998889, 0.000000, -0.000000, -0.047122 - -0.998573, 0.000000, -0.000000, -0.053399 - -0.998218, 0.000000, -0.000000, -0.059675 - -0.997823, 0.000000, -0.000000, -0.065948 - -0.997389, 0.000000, -0.000000, -0.072218 - -0.996915, 0.000000, -0.000000, -0.078485 - -0.996402, 0.000000, -0.000000, -0.084750 - -0.995850, 0.000000, -0.000000, -0.091010 - -0.995258, 0.000000, -0.000000, -0.097268 - -0.994627, 0.000000, -0.000000, -0.103521 - -0.993957, 0.000000, -0.000000, -0.109771 - -0.993247, 0.000000, -0.000000, -0.116016 - -0.992499, 0.000000, -0.000000, -0.122256 - -0.991711, 0.000000, -0.000000, -0.128492 - -0.990883, 0.000000, -0.000000, -0.134723 - -0.990017, 0.000000, -0.000000, -0.140948 - -0.989112, 0.000000, -0.000000, -0.147168 - -0.988167, 0.000000, -0.000000, -0.153382 - -0.987183, 0.000000, -0.000000, -0.159589 - -0.986161, 0.000000, -0.000000, -0.165791 - -0.985099, 0.000000, -0.000000, -0.171986 - -0.983999, 0.000000, -0.000000, -0.178174 - -0.982860, 0.000000, -0.000000, -0.184355 - -0.981682, 0.000000, -0.000000, -0.190529 - -0.980465, 0.000000, -0.000000, -0.196695 - -0.979209, 0.000000, -0.000000, -0.202854 - -0.977915, 0.000000, -0.000000, -0.209005 - -0.976582, 0.000000, -0.000000, -0.215147 - -0.975210, 0.000000, -0.000000, -0.221281 - -0.973800, 0.000000, -0.000000, -0.227406 - -0.972352, 0.000000, -0.000000, -0.233522 - -0.970865, 0.000000, -0.000000, -0.239629 - -0.969339, 0.000000, -0.000000, -0.245726 - -0.967776, 0.000000, -0.000000, -0.251814 - -0.966174, 0.000000, -0.000000, -0.257891 - -0.964534, 0.000000, -0.000000, -0.263959 - -0.962856, 0.000000, -0.000000, -0.270016 - -0.961140, 0.000000, -0.000000, -0.276062 - -0.959386, 0.000000, -0.000000, -0.282098 - -0.957594, 0.000000, -0.000000, -0.288122 - -0.955764, 0.000000, -0.000000, -0.294135 - -0.953896, 0.000000, -0.000000, -0.300137 - -0.951991, 0.000000, -0.000000, -0.306126 - -0.950048, 0.000000, -0.000000, -0.312104 - -0.948068, 0.000000, -0.000000, -0.318069 - -0.946050, 0.000000, -0.000000, -0.324021 - -0.943994, 0.000000, -0.000000, -0.329961 - -0.941902, 0.000000, -0.000000, -0.335888 - -0.939772, 0.000000, -0.000000, -0.341801 - -0.937605, 0.000000, -0.000000, -0.347701 - -0.935401, 0.000000, -0.000000, -0.353588 - -0.933161, 0.000000, -0.000000, -0.359460 - -0.930883, 0.000000, -0.000000, -0.365318 - -0.928568, 0.000000, -0.000000, -0.371161 - -0.926217, 0.000000, -0.000000, -0.376990 - -0.923829, 0.000000, -0.000000, -0.382804 - -0.921405, 0.000000, -0.000000, -0.388603 - -0.918944, 0.000000, -0.000000, -0.394387 - -0.916448, 0.000000, -0.000000, -0.400155 - -0.913914, 0.000000, -0.000000, -0.405907 - -0.911345, 0.000000, -0.000000, -0.411643 - -0.908740, 0.000000, -0.000000, -0.417363 - -0.906099, 0.000000, -0.000000, -0.423067 - -0.903422, 0.000000, -0.000000, -0.428753 - -0.900709, 0.000000, -0.000000, -0.434423 - -0.897961, 0.000000, -0.000000, -0.440076 - -0.895177, 0.000000, -0.000000, -0.445711 - -0.892358, 0.000000, -0.000000, -0.451328 - -0.889504, 0.000000, -0.000000, -0.456928 - -0.886614, 0.000000, -0.000000, -0.462510 - -0.883690, 0.000000, -0.000000, -0.468073 - -0.880730, 0.000000, -0.000000, -0.473618 - -0.877736, 0.000000, -0.000000, -0.479145 - -0.874707, 0.000000, -0.000000, -0.484652 - -0.871644, 0.000000, -0.000000, -0.490140 - -0.868546, 0.000000, -0.000000, -0.495609 - -0.865414, 0.000000, -0.000000, -0.501058 - -0.862247, 0.000000, -0.000000, -0.506487 - -0.859047, 0.000000, -0.000000, -0.511897 - -0.855813, 0.000000, -0.000000, -0.517286 - -0.852544, 0.000000, -0.000000, -0.522655 - -0.849243, 0.000000, -0.000000, -0.528003 - -0.845907, 0.000000, -0.000000, -0.533330 - -0.842538, 0.000000, -0.000000, -0.538636 - -0.839136, 0.000000, -0.000000, -0.543921 - -0.835701, 0.000000, -0.000000, -0.549185 - -0.832233, 0.000000, -0.000000, -0.554427 - -0.828732, 0.000000, -0.000000, -0.559646 - -0.825198, 0.000000, -0.000000, -0.564844 - -0.821631, 0.000000, -0.000000, -0.570019 - -0.818032, 0.000000, -0.000000, -0.575172 - -0.814401, 0.000000, -0.000000, -0.580303 - -0.810738, 0.000000, -0.000000, -0.585410 - -0.807042, 0.000000, -0.000000, -0.590494 - -0.803315, 0.000000, -0.000000, -0.595555 - -0.799556, 0.000000, -0.000000, -0.600592 - -0.795765, 0.000000, -0.000000, -0.605605 - -0.791943, 0.000000, -0.000000, -0.610595 - -0.788090, 0.000000, -0.000000, -0.615561 - -0.784205, 0.000000, -0.000000, -0.620502 - -0.780290, 0.000000, -0.000000, -0.625418 - -0.776343, 0.000000, -0.000000, -0.630310 - -0.772366, 0.000000, -0.000000, -0.635177 - -0.768359, 0.000000, -0.000000, -0.640019 - -0.764321, 0.000000, -0.000000, -0.644836 - -0.760253, 0.000000, -0.000000, -0.649627 - -0.756155, 0.000000, -0.000000, -0.654393 - -0.752027, 0.000000, -0.000000, -0.659132 - -0.747869, 0.000000, -0.000000, -0.663846 - -0.743682, 0.000000, -0.000000, -0.668534 - -0.739465, 0.000000, -0.000000, -0.673195 - -0.735220, 0.000000, -0.000000, -0.677829 - -0.730945, 0.000000, -0.000000, -0.682437 - -0.726641, 0.000000, -0.000000, -0.687017 - -0.722309, 0.000000, -0.000000, -0.691571 - -0.717948, 0.000000, -0.000000, -0.696097 - -0.713558, 0.000000, -0.000000, -0.700596 - -0.709141, 0.000000, -0.000000, -0.705067 - -0.704695, 0.000000, -0.000000, -0.709510 - -0.700222, 0.000000, -0.000000, -0.713925 - -0.695721, 0.000000, -0.000000, -0.718312 - -0.691192, 0.000000, -0.000000, -0.722671 - -0.686637, 0.000000, -0.000000, -0.727001 - -0.682054, 0.000000, -0.000000, -0.731302 - -0.677444, 0.000000, -0.000000, -0.735575 - -0.672807, 0.000000, -0.000000, -0.739818 - -0.668144, 0.000000, -0.000000, -0.744032 - -0.663454, 0.000000, -0.000000, -0.748217 - -0.658739, 0.000000, -0.000000, -0.752372 - -0.653997, 0.000000, -0.000000, -0.756497 - -0.649229, 0.000000, -0.000000, -0.760593 - -0.644436, 0.000000, -0.000000, -0.764659 - -0.639617, 0.000000, -0.000000, -0.768694 - -0.634773, 0.000000, -0.000000, -0.772699 - -0.629904, 0.000000, -0.000000, -0.776673 - -0.625010, 0.000000, -0.000000, -0.780617 - -0.620091, 0.000000, -0.000000, -0.784530 - -0.615148, 0.000000, -0.000000, -0.788412 - -0.610180, 0.000000, -0.000000, -0.792263 - -0.605189, 0.000000, -0.000000, -0.796082 - -0.600173, 0.000000, -0.000000, -0.799870 - -0.595134, 0.000000, -0.000000, -0.803627 - -0.590071, 0.000000, -0.000000, -0.807351 - -0.584985, 0.000000, -0.000000, -0.811044 - -0.579876, 0.000000, -0.000000, -0.814705 - -0.574744, 0.000000, -0.000000, -0.818333 - -0.569589, 0.000000, -0.000000, -0.821930 - -0.564412, 0.000000, -0.000000, -0.825493 - -0.559212, 0.000000, -0.000000, -0.829025 - -0.553991, 0.000000, -0.000000, -0.832523 - -0.548747, 0.000000, -0.000000, -0.835988 - -0.543482, 0.000000, -0.000000, -0.839421 - -0.538195, 0.000000, -0.000000, -0.842820 - -0.532887, 0.000000, -0.000000, -0.846186 - -0.527558, 0.000000, -0.000000, -0.849519 - -0.522208, 0.000000, -0.000000, -0.852818 - -0.516838, 0.000000, -0.000000, -0.856083 - -0.511447, 0.000000, -0.000000, -0.859315 - -0.506036, 0.000000, -0.000000, -0.862512 - -0.500605, 0.000000, -0.000000, -0.865676 - -0.495154, 0.000000, -0.000000, -0.868805 - -0.489683, 0.000000, -0.000000, -0.871900 - -0.484194, 0.000000, -0.000000, -0.874961 - -0.478685, 0.000000, -0.000000, -0.877987 - -0.473157, 0.000000, -0.000000, -0.880978 - -0.467610, 0.000000, -0.000000, -0.883935 - -0.462045, 0.000000, -0.000000, -0.886856 - -0.456462, 0.000000, -0.000000, -0.889743 - -0.450861, 0.000000, -0.000000, -0.892594 - -0.445242, 0.000000, -0.000000, -0.895410 - -0.439605, 0.000000, -0.000000, -0.898191 - -0.433951, 0.000000, -0.000000, -0.900936 - -0.428280, 0.000000, -0.000000, -0.903646 - -0.422592, 0.000000, -0.000000, -0.906320 - -0.416887, 0.000000, -0.000000, -0.908958 - -0.411166, 0.000000, -0.000000, -0.911561 - -0.405428, 0.000000, -0.000000, -0.914127 - -0.399675, 0.000000, -0.000000, -0.916657 - -0.393906, 0.000000, -0.000000, -0.919151 - -0.388121, 0.000000, -0.000000, -0.921609 - -0.382320, 0.000000, -0.000000, -0.924030 - -0.376505, 0.000000, -0.000000, -0.926415 - -0.370675, 0.000000, -0.000000, -0.928763 - -0.364830, 0.000000, -0.000000, -0.931074 - -0.358971, 0.000000, -0.000000, -0.933349 - -0.353098, 0.000000, -0.000000, -0.935587 - -0.347210, 0.000000, -0.000000, -0.937787 - -0.341309, 0.000000, -0.000000, -0.939951 - -0.335395, 0.000000, -0.000000, -0.942078 - -0.329467, 0.000000, -0.000000, -0.944167 - -0.323526, 0.000000, -0.000000, -0.946219 - -0.317572, 0.000000, -0.000000, -0.948234 - -0.311606, 0.000000, -0.000000, -0.950211 - -0.305628, 0.000000, -0.000000, -0.952151 - -0.299637, 0.000000, -0.000000, -0.954053 - -0.293635, 0.000000, -0.000000, -0.955918 - -0.287621, 0.000000, -0.000000, -0.957744 - -0.281595, 0.000000, -0.000000, -0.959533 - -0.275559, 0.000000, -0.000000, -0.961284 - -0.269512, 0.000000, -0.000000, -0.962997 - -0.263454, 0.000000, -0.000000, -0.964672 - -0.257385, 0.000000, -0.000000, -0.966309 - -0.251307, 0.000000, -0.000000, -0.967907 - -0.245218, 0.000000, -0.000000, -0.969468 - -0.239120, 0.000000, -0.000000, -0.970990 - -0.233012, 0.000000, -0.000000, -0.972474 - -0.226896, 0.000000, -0.000000, -0.973919 - -0.220770, 0.000000, -0.000000, -0.975326 - -0.214635, 0.000000, -0.000000, -0.976694 - -0.208492, 0.000000, -0.000000, -0.978024 - -0.202341, 0.000000, -0.000000, -0.979315 - -0.196182, 0.000000, -0.000000, -0.980568 - -0.190015, 0.000000, -0.000000, -0.981781 - -0.183840, 0.000000, -0.000000, -0.982956 - -0.177659, 0.000000, -0.000000, -0.984092 - -0.171470, 0.000000, -0.000000, -0.985189 - -0.165274, 0.000000, -0.000000, -0.986248 - -0.159072, 0.000000, -0.000000, -0.987267 - -0.152864, 0.000000, -0.000000, -0.988247 - -0.146650, 0.000000, -0.000000, -0.989189 - -0.140429, 0.000000, -0.000000, -0.990091 - -0.134204, 0.000000, -0.000000, -0.990954 - -0.127973, 0.000000, -0.000000, -0.991778 - -0.121736, 0.000000, -0.000000, -0.992562 - -0.115496, 0.000000, -0.000000, -0.993308 - -0.109250, 0.000000, -0.000000, -0.994014 - -0.103000, 0.000000, -0.000000, -0.994681 - -0.096747, 0.000000, -0.000000, -0.995309 - -0.090489, 0.000000, -0.000000, -0.995897 - -0.084228, 0.000000, -0.000000, -0.996447 - -0.077963, 0.000000, -0.000000, -0.996956 - -0.071695, 0.000000, -0.000000, -0.997427 - -0.065425, 0.000000, -0.000000, -0.997857 - -0.059152, 0.000000, -0.000000, -0.998249 - -0.052876, 0.000000, -0.000000, -0.998601 - -0.046599, 0.000000, -0.000000, -0.998914 - -0.040320, 0.000000, -0.000000, -0.999187 - -0.034039, 0.000000, -0.000000, -0.999421 - -0.027756, 0.000000, -0.000000, -0.999615 - -0.021473, 0.000000, -0.000000, -0.999769 - -0.015189, 0.000000, -0.000000, -0.999885 - -0.008904, 0.000000, -0.000000, -0.999960 - -0.002619, 0.000000, -0.000000, -0.999997 - 0.003666, 0.000000, 0.000000, -0.999993 - 0.009952, 0.000000, 0.000000, -0.999950 - 0.016236, 0.000000, 0.000000, -0.999868 - 0.022520, 0.000000, 0.000000, -0.999746 - 0.028804, 0.000000, 0.000000, -0.999585 - 0.035086, 0.000000, 0.000000, -0.999384 - 0.041366, 0.000000, 0.000000, -0.999144 - 0.047645, 0.000000, 0.000000, -0.998864 - 0.053922, 0.000000, 0.000000, -0.998545 - 0.060198, 0.000000, 0.000000, -0.998186 - 0.066470, 0.000000, 0.000000, -0.997788 - 0.072740, 0.000000, 0.000000, -0.997351 - 0.079007, 0.000000, 0.000000, -0.996874 - 0.085271, 0.000000, 0.000000, -0.996358 - 0.091532, 0.000000, 0.000000, -0.995802 - 0.097789, 0.000000, 0.000000, -0.995207 - 0.104042, 0.000000, 0.000000, -0.994573 - 0.110291, 0.000000, 0.000000, -0.993899 - 0.116536, 0.000000, 0.000000, -0.993186 - 0.122776, 0.000000, 0.000000, -0.992434 - 0.129011, 0.000000, 0.000000, -0.991643 - 0.135242, 0.000000, 0.000000, -0.990813 - 0.141466, 0.000000, 0.000000, -0.989943 - 0.147686, 0.000000, 0.000000, -0.989034 - 0.153899, 0.000000, 0.000000, -0.988087 - 0.160106, 0.000000, 0.000000, -0.987100 - 0.166307, 0.000000, 0.000000, -0.986074 - 0.172502, 0.000000, 0.000000, -0.985009 - 0.178689, 0.000000, 0.000000, -0.983906 - 0.184870, 0.000000, 0.000000, -0.982763 - 0.191043, 0.000000, 0.000000, -0.981582 - 0.197209, 0.000000, 0.000000, -0.980361 - 0.203367, 0.000000, 0.000000, -0.979103 - 0.209517, 0.000000, 0.000000, -0.977805 - 0.215658, 0.000000, 0.000000, -0.976469 - 0.221791, 0.000000, 0.000000, -0.975094 - 0.227916, 0.000000, 0.000000, -0.973681 - 0.234031, 0.000000, 0.000000, -0.972229 - 0.240137, 0.000000, 0.000000, -0.970739 - 0.246234, 0.000000, 0.000000, -0.969210 - 0.252321, 0.000000, 0.000000, -0.967644 - 0.258397, 0.000000, 0.000000, -0.966039 - 0.264464, 0.000000, 0.000000, -0.964396 - 0.270520, 0.000000, 0.000000, -0.962714 - 0.276566, 0.000000, 0.000000, -0.960995 - 0.282600, 0.000000, 0.000000, -0.959238 - 0.288624, 0.000000, 0.000000, -0.957443 - 0.294636, 0.000000, 0.000000, -0.955610 - 0.300636, 0.000000, 0.000000, -0.953739 - 0.306625, 0.000000, 0.000000, -0.951830 - 0.312601, 0.000000, 0.000000, -0.949884 - 0.318565, 0.000000, 0.000000, -0.947901 - 0.324517, 0.000000, 0.000000, -0.945880 - 0.330456, 0.000000, 0.000000, -0.943822 - 0.336381, 0.000000, 0.000000, -0.941726 - 0.342294, 0.000000, 0.000000, -0.939593 - 0.348192, 0.000000, 0.000000, -0.937423 - 0.354077, 0.000000, 0.000000, -0.935216 - 0.359948, 0.000000, 0.000000, -0.932972 - 0.365805, 0.000000, 0.000000, -0.930691 - 0.371648, 0.000000, 0.000000, -0.928374 - 0.377475, 0.000000, 0.000000, -0.926020 - 0.383288, 0.000000, 0.000000, -0.923629 - 0.389086, 0.000000, 0.000000, -0.921201 - 0.394868, 0.000000, 0.000000, -0.918738 - 0.400635, 0.000000, 0.000000, -0.916238 - 0.406386, 0.000000, 0.000000, -0.913702 - 0.412121, 0.000000, 0.000000, -0.911129 - 0.417839, 0.000000, 0.000000, -0.908521 - 0.423541, 0.000000, 0.000000, -0.905877 - 0.429226, 0.000000, 0.000000, -0.903197 - 0.434895, 0.000000, 0.000000, -0.900481 - 0.440546, 0.000000, 0.000000, -0.897730 - 0.446180, 0.000000, 0.000000, -0.894943 - 0.451796, 0.000000, 0.000000, -0.892121 - 0.457394, 0.000000, 0.000000, -0.889264 - 0.462974, 0.000000, 0.000000, -0.886372 - 0.468536, 0.000000, 0.000000, -0.883444 - 0.474079, 0.000000, 0.000000, -0.880482 - 0.479604, 0.000000, 0.000000, -0.877485 - 0.485110, 0.000000, 0.000000, -0.874453 - 0.490596, 0.000000, 0.000000, -0.871387 - 0.496064, 0.000000, 0.000000, -0.868286 - 0.501511, 0.000000, 0.000000, -0.865151 - 0.506939, 0.000000, 0.000000, -0.861982 - 0.512347, 0.000000, 0.000000, -0.858779 - 0.517734, 0.000000, 0.000000, -0.855541 - 0.523101, 0.000000, 0.000000, -0.852270 - 0.528448, 0.000000, 0.000000, -0.848966 - 0.533773, 0.000000, 0.000000, -0.845628 - 0.539078, 0.000000, 0.000000, -0.842256 - 0.544361, 0.000000, 0.000000, -0.838851 - 0.549622, 0.000000, 0.000000, -0.835413 - 0.554862, 0.000000, 0.000000, -0.831942 - 0.560080, 0.000000, 0.000000, -0.828438 - 0.565276, 0.000000, 0.000000, -0.824902 - 0.570450, 0.000000, 0.000000, -0.821333 - 0.575601, 0.000000, 0.000000, -0.817731 - 0.580729, 0.000000, 0.000000, -0.814097 - 0.585834, 0.000000, 0.000000, -0.810431 - 0.590917, 0.000000, 0.000000, -0.806733 - 0.595975, 0.000000, 0.000000, -0.803003 - 0.601011, 0.000000, 0.000000, -0.799241 - 0.606022, 0.000000, 0.000000, -0.795448 - 0.611010, 0.000000, 0.000000, -0.791623 - 0.615973, 0.000000, 0.000000, -0.787767 - 0.620912, 0.000000, 0.000000, -0.783880 - 0.625827, 0.000000, 0.000000, -0.779962 - 0.630717, 0.000000, 0.000000, -0.776013 - 0.635582, 0.000000, 0.000000, -0.772033 - 0.640422, 0.000000, 0.000000, -0.768023 - 0.645236, 0.000000, 0.000000, -0.763983 - 0.650025, 0.000000, 0.000000, -0.759913 - 0.654789, 0.000000, 0.000000, -0.755812 - 0.659526, 0.000000, 0.000000, -0.751682 - 0.664238, 0.000000, 0.000000, -0.747521 - 0.668923, 0.000000, 0.000000, -0.743332 - 0.673582, 0.000000, 0.000000, -0.739113 - 0.678214, 0.000000, 0.000000, -0.734864 - 0.682819, 0.000000, 0.000000, -0.730587 - 0.687398, 0.000000, 0.000000, -0.726281 - 0.691949, 0.000000, 0.000000, -0.721946 - 0.696473, 0.000000, 0.000000, -0.717583 - 0.700969, 0.000000, 0.000000, -0.713191 - 0.705438, 0.000000, 0.000000, -0.708771 - 0.709879, 0.000000, 0.000000, -0.704324 - 0.714292, 0.000000, 0.000000, -0.699848 - 0.718676, 0.000000, 0.000000, -0.695345 - 0.723033, 0.000000, 0.000000, -0.690814 - 0.727360, 0.000000, 0.000000, -0.686256 - 0.731659, 0.000000, 0.000000, -0.681671 - 0.735929, 0.000000, 0.000000, -0.677058 - 0.740170, 0.000000, 0.000000, -0.672420 - 0.744382, 0.000000, 0.000000, -0.667754 - 0.748564, 0.000000, 0.000000, -0.663062 - 0.752717, 0.000000, 0.000000, -0.658344 - 0.756840, 0.000000, 0.000000, -0.653600 - 0.760933, 0.000000, 0.000000, -0.648830 - 0.764996, 0.000000, 0.000000, -0.644035 - 0.769029, 0.000000, 0.000000, -0.639214 - 0.773031, 0.000000, 0.000000, -0.634368 - 0.777003, 0.000000, 0.000000, -0.629497 - 0.780944, 0.000000, 0.000000, -0.624601 - 0.784855, 0.000000, 0.000000, -0.619680 - 0.788734, 0.000000, 0.000000, -0.614735 - 0.792582, 0.000000, 0.000000, -0.609765 - 0.796399, 0.000000, 0.000000, -0.604772 - 0.800184, 0.000000, 0.000000, -0.599754 - 0.803938, 0.000000, 0.000000, -0.594713 - 0.807660, 0.000000, 0.000000, -0.589648 - 0.811350, 0.000000, 0.000000, -0.584560 - 0.815008, 0.000000, 0.000000, -0.579449 - 0.818634, 0.000000, 0.000000, -0.574315 - 0.822228, 0.000000, 0.000000, -0.569158 - 0.825789, 0.000000, 0.000000, -0.563979 - 0.829317, 0.000000, 0.000000, -0.558778 - 0.832813, 0.000000, 0.000000, -0.553554 - 0.836276, 0.000000, 0.000000, -0.548309 - 0.839706, 0.000000, 0.000000, -0.543042 - 0.843102, 0.000000, 0.000000, -0.537754 - 0.846465, 0.000000, 0.000000, -0.532444 - 0.849795, 0.000000, 0.000000, -0.527113 - 0.853091, 0.000000, 0.000000, -0.521761 - 0.856354, 0.000000, 0.000000, -0.516389 - 0.859583, 0.000000, 0.000000, -0.510997 - 0.862777, 0.000000, 0.000000, -0.505584 - 0.865938, 0.000000, 0.000000, -0.500151 - 0.869065, 0.000000, 0.000000, -0.494699 - 0.872157, 0.000000, 0.000000, -0.489227 - 0.875214, 0.000000, 0.000000, -0.483735 - 0.878237, 0.000000, 0.000000, -0.478225 - 0.881226, 0.000000, 0.000000, -0.472695 - 0.884179, 0.000000, 0.000000, -0.467147 - 0.887098, 0.000000, 0.000000, -0.461581 - 0.889982, 0.000000, 0.000000, -0.455996 - 0.892830, 0.000000, 0.000000, -0.450393 - 0.895643, 0.000000, 0.000000, -0.444773 - 0.898421, 0.000000, 0.000000, -0.439135 - 0.901164, 0.000000, 0.000000, -0.433479 - 0.903870, 0.000000, 0.000000, -0.427807 - 0.906541, 0.000000, 0.000000, -0.422117 - 0.909177, 0.000000, 0.000000, -0.416411 - 0.911776, 0.000000, 0.000000, -0.410688 - 0.914339, 0.000000, 0.000000, -0.404950 - 0.916866, 0.000000, 0.000000, -0.399195 - 0.919357, 0.000000, 0.000000, -0.393424 - 0.921812, 0.000000, 0.000000, -0.387638 - 0.924230, 0.000000, 0.000000, -0.381836 - 0.926612, 0.000000, 0.000000, -0.376020 - 0.928957, 0.000000, 0.000000, -0.370188 - 0.931265, 0.000000, 0.000000, -0.364342 - 0.933537, 0.000000, 0.000000, -0.358482 - 0.935771, 0.000000, 0.000000, -0.352607 - 0.937969, 0.000000, 0.000000, -0.346719 - 0.940130, 0.000000, 0.000000, -0.340817 - 0.942253, 0.000000, 0.000000, -0.334901 - 0.944340, 0.000000, 0.000000, -0.328972 - 0.946389, 0.000000, 0.000000, -0.323030 - 0.948400, 0.000000, 0.000000, -0.317076 - 0.950374, 0.000000, 0.000000, -0.311108 - 0.952311, 0.000000, 0.000000, -0.305129 - 0.954210, 0.000000, 0.000000, -0.299137 - 0.956071, 0.000000, 0.000000, -0.293134 - 0.957895, 0.000000, 0.000000, -0.287119 - 0.959681, 0.000000, 0.000000, -0.281093 - 0.961428, 0.000000, 0.000000, -0.275056 - 0.963138, 0.000000, 0.000000, -0.269007 - 0.964810, 0.000000, 0.000000, -0.262948 - 0.966444, 0.000000, 0.000000, -0.256879 - 0.968039, 0.000000, 0.000000, -0.250800 - 0.969596, 0.000000, 0.000000, -0.244710 - 0.971115, 0.000000, 0.000000, -0.238611 - 0.972596, 0.000000, 0.000000, -0.232503 - 0.974038, 0.000000, 0.000000, -0.226385 - 0.975441, 0.000000, 0.000000, -0.220259 - 0.976807, 0.000000, 0.000000, -0.214124 - 0.978133, 0.000000, 0.000000, -0.207980 - 0.979421, 0.000000, 0.000000, -0.201828 - 0.980670, 0.000000, 0.000000, -0.195668 - 0.981881, 0.000000, 0.000000, -0.189501 - 0.983052, 0.000000, 0.000000, -0.183326 - 0.984185, 0.000000, 0.000000, -0.177143 - 0.985279, 0.000000, 0.000000, -0.170954 - 0.986334, 0.000000, 0.000000, -0.164758 - 0.987350, 0.000000, 0.000000, -0.158555 - 0.988327, 0.000000, 0.000000, -0.152346 - 0.989265, 0.000000, 0.000000, -0.146131 - 0.990164, 0.000000, 0.000000, -0.139911 - 0.991024, 0.000000, 0.000000, -0.133685 - 0.991845, 0.000000, 0.000000, -0.127453 - 0.992626, 0.000000, 0.000000, -0.121217 - 0.993368, 0.000000, 0.000000, -0.114975 - 0.994071, 0.000000, 0.000000, -0.108729 - 0.994735, 0.000000, 0.000000, -0.102479 - 0.995360, 0.000000, 0.000000, -0.096225 - 0.995945, 0.000000, 0.000000, -0.089967 - 0.996491, 0.000000, 0.000000, -0.083706 - 0.996997, 0.000000, 0.000000, -0.077441 - 0.997464, 0.000000, 0.000000, -0.071173 - 0.997892, 0.000000, 0.000000, -0.064902 - 0.998280, 0.000000, 0.000000, -0.058629 - 0.998629, 0.000000, 0.000000, -0.052353 - 0.998938, 0.000000, 0.000000, -0.046076 - 0.999208, 0.000000, 0.000000, -0.039796 - 0.999438, 0.000000, 0.000000, -0.033515 - 0.999629, 0.000000, 0.000000, -0.027233 - 0.999781, 0.000000, 0.000000, -0.020949 - 0.999892, 0.000000, 0.000000, -0.014665 - 0.999965, 0.000000, 0.000000, -0.008380 - 0.999998, 0.000000, 0.000000, -0.002095 - 0.999991, 0.000000, 0.000000, 0.004190 - 0.999945, 0.000000, 0.000000, 0.010475 - 0.999860, 0.000000, 0.000000, 0.016760 - 0.999734, 0.000000, 0.000000, 0.023044 - 0.999570, 0.000000, 0.000000, 0.029327 - 0.999366, 0.000000, 0.000000, 0.035609 - 0.999122, 0.000000, 0.000000, 0.041890 - 0.998839, 0.000000, 0.000000, 0.048169 - 0.998517, 0.000000, 0.000000, 0.054445 - 0.998155, 0.000000, 0.000000, 0.060720 - 0.997753, 0.000000, 0.000000, 0.066993 - 0.997313, 0.000000, 0.000000, 0.073263 - 0.996833, 0.000000, 0.000000, 0.079529 - 0.996313, 0.000000, 0.000000, 0.085793 - 0.995754, 0.000000, 0.000000, 0.092054 - 0.995156, 0.000000, 0.000000, 0.098310 - 0.994518, 0.000000, 0.000000, 0.104563 - 0.993841, 0.000000, 0.000000, 0.110812 - 0.993125, 0.000000, 0.000000, 0.117056 - 0.992370, 0.000000, 0.000000, 0.123296 - 0.991575, 0.000000, 0.000000, 0.129531 - 0.990742, 0.000000, 0.000000, 0.135761 - 0.989869, 0.000000, 0.000000, 0.141985 - 0.988957, 0.000000, 0.000000, 0.148204 - 0.988006, 0.000000, 0.000000, 0.154417 - 0.987016, 0.000000, 0.000000, 0.160623 - 0.985987, 0.000000, 0.000000, 0.166824 - 0.984919, 0.000000, 0.000000, 0.173018 - 0.983812, 0.000000, 0.000000, 0.179205 - 0.982666, 0.000000, 0.000000, 0.185385 - 0.981481, 0.000000, 0.000000, 0.191557 - 0.980258, 0.000000, 0.000000, 0.197722 - 0.978996, 0.000000, 0.000000, 0.203880 - 0.977695, 0.000000, 0.000000, 0.210029 - 0.976356, 0.000000, 0.000000, 0.216170 - 0.974978, 0.000000, 0.000000, 0.222302 - 0.973561, 0.000000, 0.000000, 0.228426 - 0.972106, 0.000000, 0.000000, 0.234540 - 0.970613, 0.000000, 0.000000, 0.240646 - 0.969081, 0.000000, 0.000000, 0.246741 - 0.967511, 0.000000, 0.000000, 0.252827 - 0.965903, 0.000000, 0.000000, 0.258903 - 0.964257, 0.000000, 0.000000, 0.264969 - 0.962572, 0.000000, 0.000000, 0.271025 - 0.960850, 0.000000, 0.000000, 0.277069 - 0.959090, 0.000000, 0.000000, 0.283103 - 0.957291, 0.000000, 0.000000, 0.289125 - 0.955455, 0.000000, 0.000000, 0.295136 - 0.953581, 0.000000, 0.000000, 0.301136 - 0.951670, 0.000000, 0.000000, 0.307123 - 0.949721, 0.000000, 0.000000, 0.313099 - 0.947734, 0.000000, 0.000000, 0.319062 - 0.945710, 0.000000, 0.000000, 0.325012 - 0.943648, 0.000000, 0.000000, 0.330950 - 0.941550, 0.000000, 0.000000, 0.336874 - 0.939414, 0.000000, 0.000000, 0.342786 - 0.937241, 0.000000, 0.000000, 0.348683 - 0.935031, 0.000000, 0.000000, 0.354567 - 0.932784, 0.000000, 0.000000, 0.360437 - 0.930500, 0.000000, 0.000000, 0.366293 - 0.928179, 0.000000, 0.000000, 0.372134 - 0.925822, 0.000000, 0.000000, 0.377960 - 0.923428, 0.000000, 0.000000, 0.383772 - 0.920998, 0.000000, 0.000000, 0.389568 - 0.918531, 0.000000, 0.000000, 0.395349 - 0.916028, 0.000000, 0.000000, 0.401115 - 0.913489, 0.000000, 0.000000, 0.406864 - 0.910913, 0.000000, 0.000000, 0.412598 - 0.908302, 0.000000, 0.000000, 0.418315 - 0.905655, 0.000000, 0.000000, 0.424015 - 0.902972, 0.000000, 0.000000, 0.429699 - 0.900253, 0.000000, 0.000000, 0.435366 - 0.897499, 0.000000, 0.000000, 0.441016 - 0.894710, 0.000000, 0.000000, 0.446648 - 0.891885, 0.000000, 0.000000, 0.452263 - 0.889024, 0.000000, 0.000000, 0.457860 - 0.886129, 0.000000, 0.000000, 0.463438 - 0.883199, 0.000000, 0.000000, 0.468999 - 0.880234, 0.000000, 0.000000, 0.474541 - 0.877234, 0.000000, 0.000000, 0.480064 - 0.874199, 0.000000, 0.000000, 0.485568 - 0.871130, 0.000000, 0.000000, 0.491053 - 0.868026, 0.000000, 0.000000, 0.496518 - 0.864888, 0.000000, 0.000000, 0.501964 - 0.861716, 0.000000, 0.000000, 0.507390 - 0.858510, 0.000000, 0.000000, 0.512797 - 0.855270, 0.000000, 0.000000, 0.518182 - 0.851996, 0.000000, 0.000000, 0.523548 - 0.848689, 0.000000, 0.000000, 0.528892 - 0.845348, 0.000000, 0.000000, 0.534216 - 0.841974, 0.000000, 0.000000, 0.539519 - 0.838566, 0.000000, 0.000000, 0.544800 - 0.835125, 0.000000, 0.000000, 0.550060 - 0.831651, 0.000000, 0.000000, 0.555298 - 0.828145, 0.000000, 0.000000, 0.560514 - 0.824606, 0.000000, 0.000000, 0.565708 - 0.821034, 0.000000, 0.000000, 0.570880 - 0.817429, 0.000000, 0.000000, 0.576029 - 0.813793, 0.000000, 0.000000, 0.581155 - 0.810124, 0.000000, 0.000000, 0.586259 - 0.806423, 0.000000, 0.000000, 0.591339 - 0.802690, 0.000000, 0.000000, 0.596396 - 0.798926, 0.000000, 0.000000, 0.601429 - 0.795130, 0.000000, 0.000000, 0.606439 - 0.791303, 0.000000, 0.000000, 0.611424 - 0.787444, 0.000000, 0.000000, 0.616386 - 0.783555, 0.000000, 0.000000, 0.621323 - 0.779634, 0.000000, 0.000000, 0.626235 - 0.775683, 0.000000, 0.000000, 0.631123 - 0.771700, 0.000000, 0.000000, 0.635986 - 0.767688, 0.000000, 0.000000, 0.640824 - 0.763645, 0.000000, 0.000000, 0.645636 - 0.759572, 0.000000, 0.000000, 0.650423 - 0.755469, 0.000000, 0.000000, 0.655185 - 0.751336, 0.000000, 0.000000, 0.659920 - 0.747173, 0.000000, 0.000000, 0.664629 - 0.742981, 0.000000, 0.000000, 0.669312 - 0.738760, 0.000000, 0.000000, 0.673969 - 0.734509, 0.000000, 0.000000, 0.678599 - 0.730229, 0.000000, 0.000000, 0.683202 - 0.725921, 0.000000, 0.000000, 0.687778 - 0.721584, 0.000000, 0.000000, 0.692327 - 0.717218, 0.000000, 0.000000, 0.696849 - 0.712824, 0.000000, 0.000000, 0.701343 - 0.708402, 0.000000, 0.000000, 0.705809 - 0.703952, 0.000000, 0.000000, 0.710248 - 0.699474, 0.000000, 0.000000, 0.714658 - 0.694968, 0.000000, 0.000000, 0.719041 - 0.690435, 0.000000, 0.000000, 0.723394 - 0.685875, 0.000000, 0.000000, 0.727720 - 0.681287, 0.000000, 0.000000, 0.732016 - 0.676673, 0.000000, 0.000000, 0.736284 - 0.672032, 0.000000, 0.000000, 0.740522 - 0.667364, 0.000000, 0.000000, 0.744732 - 0.662670, 0.000000, 0.000000, 0.748911 - 0.657950, 0.000000, 0.000000, 0.753062 - 0.653204, 0.000000, 0.000000, 0.757182 - 0.648432, 0.000000, 0.000000, 0.761273 - 0.643634, 0.000000, 0.000000, 0.765333 - 0.638811, 0.000000, 0.000000, 0.769363 - 0.633963, 0.000000, 0.000000, 0.773363 - 0.629090, 0.000000, 0.000000, 0.777333 - 0.624192, 0.000000, 0.000000, 0.781271 - 0.619269, 0.000000, 0.000000, 0.785179 - 0.614321, 0.000000, 0.000000, 0.789056 - 0.609350, 0.000000, 0.000000, 0.792901 - 0.604354, 0.000000, 0.000000, 0.796716 - 0.599335, 0.000000, 0.000000, 0.800498 - 0.594292, 0.000000, 0.000000, 0.804250 - 0.589225, 0.000000, 0.000000, 0.807969 - 0.584135, 0.000000, 0.000000, 0.811656 - 0.579022, 0.000000, 0.000000, 0.815312 - 0.573886, 0.000000, 0.000000, 0.818935 - 0.568728, 0.000000, 0.000000, 0.822526 - 0.563547, 0.000000, 0.000000, 0.826084 - 0.558343, 0.000000, 0.000000, 0.829610 - 0.553118, 0.000000, 0.000000, 0.833103 - 0.547871, 0.000000, 0.000000, 0.836563 - 0.542602, 0.000000, 0.000000, 0.839990 - 0.537312, 0.000000, 0.000000, 0.843384 - 0.532000, 0.000000, 0.000000, 0.846744 - 0.526668, 0.000000, 0.000000, 0.850071 - 0.521315, 0.000000, 0.000000, 0.853365 - 0.515941, 0.000000, 0.000000, 0.856624 - 0.510546, 0.000000, 0.000000, 0.859850 - 0.505132, 0.000000, 0.000000, 0.863042 - 0.499698, 0.000000, 0.000000, 0.866200 - 0.494243, 0.000000, 0.000000, 0.869324 - 0.488770, 0.000000, 0.000000, 0.872413 - 0.483277, 0.000000, 0.000000, 0.875468 - 0.477765, 0.000000, 0.000000, 0.878488 - 0.472234, 0.000000, 0.000000, 0.881473 - 0.466684, 0.000000, 0.000000, 0.884424 - 0.461116, 0.000000, 0.000000, 0.887340 - 0.455530, 0.000000, 0.000000, 0.890220 - 0.449926, 0.000000, 0.000000, 0.893066 - 0.444304, 0.000000, 0.000000, 0.895876 - 0.438664, 0.000000, 0.000000, 0.898651 - 0.433007, 0.000000, 0.000000, 0.901390 - 0.427333, 0.000000, 0.000000, 0.904094 - 0.421642, 0.000000, 0.000000, 0.906762 - 0.415935, 0.000000, 0.000000, 0.909394 - 0.410211, 0.000000, 0.000000, 0.911991 - 0.404471, 0.000000, 0.000000, 0.914551 - 0.398714, 0.000000, 0.000000, 0.917075 - 0.392942, 0.000000, 0.000000, 0.919563 - 0.387155, 0.000000, 0.000000, 0.922015 - 0.381352, 0.000000, 0.000000, 0.924430 - 0.375535, 0.000000, 0.000000, 0.926808 - 0.369702, 0.000000, 0.000000, 0.929150 - 0.363855, 0.000000, 0.000000, 0.931456 - 0.357993, 0.000000, 0.000000, 0.933724 - 0.352117, 0.000000, 0.000000, 0.935956 - 0.346228, 0.000000, 0.000000, 0.938151 - 0.340324, 0.000000, 0.000000, 0.940308 - 0.334407, 0.000000, 0.000000, 0.942429 - 0.328478, 0.000000, 0.000000, 0.944512 - 0.322535, 0.000000, 0.000000, 0.946558 - 0.316579, 0.000000, 0.000000, 0.948566 - 0.310611, 0.000000, 0.000000, 0.950537 - 0.304630, 0.000000, 0.000000, 0.952471 - 0.298638, 0.000000, 0.000000, 0.954367 - 0.292633, 0.000000, 0.000000, 0.956225 - 0.286617, 0.000000, 0.000000, 0.958045 - 0.280590, 0.000000, 0.000000, 0.959828 - 0.274552, 0.000000, 0.000000, 0.961572 - 0.268503, 0.000000, 0.000000, 0.963279 - 0.262443, 0.000000, 0.000000, 0.964947 - 0.256373, 0.000000, 0.000000, 0.966578 - 0.250293, 0.000000, 0.000000, 0.968170 - 0.244203, 0.000000, 0.000000, 0.969724 - 0.238103, 0.000000, 0.000000, 0.971240 - 0.231994, 0.000000, 0.000000, 0.972717 - 0.225875, 0.000000, 0.000000, 0.974156 - 0.219748, 0.000000, 0.000000, 0.975557 - 0.213612, 0.000000, 0.000000, 0.976919 - 0.207468, 0.000000, 0.000000, 0.978242 - 0.201315, 0.000000, 0.000000, 0.979527 - 0.195155, 0.000000, 0.000000, 0.980773 - 0.188986, 0.000000, 0.000000, 0.981980 - 0.182811, 0.000000, 0.000000, 0.983148 - 0.176628, 0.000000, 0.000000, 0.984278 - 0.170438, 0.000000, 0.000000, 0.985368 - 0.164241, 0.000000, 0.000000, 0.986420 - 0.158038, 0.000000, 0.000000, 0.987433 - 0.151829, 0.000000, 0.000000, 0.988407 - 0.145613, 0.000000, 0.000000, 0.989342 - 0.139392, 0.000000, 0.000000, 0.990237 - 0.133165, 0.000000, 0.000000, 0.991094 - 0.126934, 0.000000, 0.000000, 0.991911 - 0.120697, 0.000000, 0.000000, 0.992689 - 0.114455, 0.000000, 0.000000, 0.993428 - 0.108209, 0.000000, 0.000000, 0.994128 - 0.101958, 0.000000, 0.000000, 0.994789 - 0.095704, 0.000000, 0.000000, 0.995410 - 0.089446, 0.000000, 0.000000, 0.995992 - 0.083184, 0.000000, 0.000000, 0.996534 - 0.076919, 0.000000, 0.000000, 0.997037 - 0.070650, 0.000000, 0.000000, 0.997501 - 0.064380, 0.000000, 0.000000, 0.997925 - 0.058106, 0.000000, 0.000000, 0.998310 - 0.051830, 0.000000, 0.000000, 0.998656 - 0.045553, 0.000000, 0.000000, 0.998962 - 0.039273, 0.000000, 0.000000, 0.999229 - 0.032992, 0.000000, 0.000000, 0.999456 - 0.026709, 0.000000, 0.000000, 0.999643 - 0.020426, 0.000000, 0.000000, 0.999791 - 0.014141, 0.000000, 0.000000, 0.999900 - 0.007857, 0.000000, 0.000000, 0.999969 - 0.001571, 0.000000, 0.000000, 0.999999 - -0.004714, -0.000000, 0.000000, 0.999989 - -0.010999, -0.000000, 0.000000, 0.999940 - -0.017284, -0.000000, 0.000000, 0.999851 - -0.023568, -0.000000, 0.000000, 0.999722 - -0.029851, -0.000000, 0.000000, 0.999554 - -0.036132, -0.000000, 0.000000, 0.999347 - -0.042413, -0.000000, 0.000000, 0.999100 - -0.048692, -0.000000, 0.000000, 0.998814 - -0.054968, -0.000000, 0.000000, 0.998488 - -0.061243, -0.000000, 0.000000, 0.998123 - -0.067515, -0.000000, 0.000000, 0.997718 - -0.073785, -0.000000, 0.000000, 0.997274 - -0.080052, -0.000000, 0.000000, 0.996791 - -0.086315, -0.000000, 0.000000, 0.996268 - -0.092575, -0.000000, 0.000000, 0.995706 - -0.098832, -0.000000, 0.000000, 0.995104 - -0.105084, -0.000000, 0.000000, 0.994463 - -0.111332, -0.000000, 0.000000, 0.993783 - -0.117576, -0.000000, 0.000000, 0.993064 - -0.123816, -0.000000, 0.000000, 0.992305 - -0.130050, -0.000000, 0.000000, 0.991507 - -0.136279, -0.000000, 0.000000, 0.990670 - -0.142503, -0.000000, 0.000000, 0.989794 - -0.148722, -0.000000, 0.000000, 0.988879 - -0.154934, -0.000000, 0.000000, 0.987925 - -0.161140, -0.000000, 0.000000, 0.986932 - -0.167340, -0.000000, 0.000000, 0.985899 - -0.173534, -0.000000, 0.000000, 0.984828 - -0.179720, -0.000000, 0.000000, 0.983718 - -0.185899, -0.000000, 0.000000, 0.982569 - -0.192071, -0.000000, 0.000000, 0.981381 - -0.198236, -0.000000, 0.000000, 0.980154 - -0.204392, -0.000000, 0.000000, 0.978889 - -0.210541, -0.000000, 0.000000, 0.977585 - -0.216681, -0.000000, 0.000000, 0.976242 - -0.222813, -0.000000, 0.000000, 0.974861 - -0.228936, -0.000000, 0.000000, 0.973442 - -0.235049, -0.000000, 0.000000, 0.971983 - -0.241154, -0.000000, 0.000000, 0.970487 - -0.247249, -0.000000, 0.000000, 0.968952 - -0.253334, -0.000000, 0.000000, 0.967379 - -0.259409, -0.000000, 0.000000, 0.965767 - -0.265474, -0.000000, 0.000000, 0.964118 - -0.271529, -0.000000, 0.000000, 0.962430 - -0.277572, -0.000000, 0.000000, 0.960705 - -0.283605, -0.000000, 0.000000, 0.958941 - -0.289627, -0.000000, 0.000000, 0.957140 - -0.295637, -0.000000, 0.000000, 0.955300 - -0.301635, -0.000000, 0.000000, 0.953423 - -0.307622, -0.000000, 0.000000, 0.951509 - -0.313596, -0.000000, 0.000000, 0.949556 - -0.319558, -0.000000, 0.000000, 0.947567 - -0.325508, -0.000000, 0.000000, 0.945539 - -0.331444, -0.000000, 0.000000, 0.943475 - -0.337368, -0.000000, 0.000000, 0.941373 - -0.343278, -0.000000, 0.000000, 0.939234 - -0.349174, -0.000000, 0.000000, 0.937058 - -0.355057, -0.000000, 0.000000, 0.934845 - -0.360926, -0.000000, 0.000000, 0.932595 - -0.366780, -0.000000, 0.000000, 0.930308 - -0.372620, -0.000000, 0.000000, 0.927984 - -0.378445, -0.000000, 0.000000, 0.925624 - -0.384256, -0.000000, 0.000000, 0.923227 - -0.390051, -0.000000, 0.000000, 0.920793 - -0.395830, -0.000000, 0.000000, 0.918324 - -0.401594, -0.000000, 0.000000, 0.915818 - -0.407343, -0.000000, 0.000000, 0.913275 - -0.413075, -0.000000, 0.000000, 0.910697 - -0.418791, -0.000000, 0.000000, 0.908083 - -0.424490, -0.000000, 0.000000, 0.905433 - -0.430172, -0.000000, 0.000000, 0.902747 - -0.435838, -0.000000, 0.000000, 0.900025 - -0.441486, -0.000000, 0.000000, 0.897268 - -0.447117, -0.000000, 0.000000, 0.894476 - -0.452730, -0.000000, 0.000000, 0.891648 - -0.458325, -0.000000, 0.000000, 0.888785 - -0.463902, -0.000000, 0.000000, 0.885886 - -0.469461, -0.000000, 0.000000, 0.882953 - -0.475002, -0.000000, 0.000000, 0.879985 - -0.480523, -0.000000, 0.000000, 0.876982 - -0.486026, -0.000000, 0.000000, 0.873945 - -0.491509, -0.000000, 0.000000, 0.870872 - -0.496973, -0.000000, 0.000000, 0.867766 - -0.502417, -0.000000, 0.000000, 0.864625 - -0.507842, -0.000000, 0.000000, 0.861450 - -0.513246, -0.000000, 0.000000, 0.858241 - -0.518630, -0.000000, 0.000000, 0.854999 - -0.523994, -0.000000, 0.000000, 0.851722 - -0.529337, -0.000000, 0.000000, 0.848412 - -0.534659, -0.000000, 0.000000, 0.845068 - -0.539960, -0.000000, 0.000000, 0.841691 - -0.545239, -0.000000, 0.000000, 0.838280 - -0.550497, -0.000000, 0.000000, 0.834837 - -0.555734, -0.000000, 0.000000, 0.831360 - -0.560948, -0.000000, 0.000000, 0.827851 - -0.566140, -0.000000, 0.000000, 0.824309 - -0.571310, -0.000000, 0.000000, 0.820734 - -0.576457, -0.000000, 0.000000, 0.817127 - -0.581581, -0.000000, 0.000000, 0.813488 - -0.586683, -0.000000, 0.000000, 0.809817 - -0.591761, -0.000000, 0.000000, 0.806113 - -0.596816, -0.000000, 0.000000, 0.802378 - -0.601848, -0.000000, 0.000000, 0.798611 - -0.606855, -0.000000, 0.000000, 0.794812 - -0.611839, -0.000000, 0.000000, 0.790983 - -0.616798, -0.000000, 0.000000, 0.787121 - -0.621733, -0.000000, 0.000000, 0.783229 - -0.626644, -0.000000, 0.000000, 0.779306 - -0.631529, -0.000000, 0.000000, 0.775352 - -0.636390, -0.000000, 0.000000, 0.771367 - -0.641226, -0.000000, 0.000000, 0.767352 - -0.646036, -0.000000, 0.000000, 0.763307 - -0.650821, -0.000000, 0.000000, 0.759231 - -0.655580, -0.000000, 0.000000, 0.755126 - -0.660313, -0.000000, 0.000000, 0.750990 - -0.665020, -0.000000, 0.000000, 0.746825 - -0.669701, -0.000000, 0.000000, 0.742631 - -0.674356, -0.000000, 0.000000, 0.738407 - -0.678983, -0.000000, 0.000000, 0.734154 - -0.683584, -0.000000, 0.000000, 0.729872 - -0.688158, -0.000000, 0.000000, 0.725561 - -0.692705, -0.000000, 0.000000, 0.721221 - -0.697224, -0.000000, 0.000000, 0.716853 - -0.701716, -0.000000, 0.000000, 0.712457 - -0.706180, -0.000000, 0.000000, 0.708032 - -0.710616, -0.000000, 0.000000, 0.703580 - -0.715025, -0.000000, 0.000000, 0.699099 - -0.719404, -0.000000, 0.000000, 0.694591 - -0.723756, -0.000000, 0.000000, 0.690056 - -0.728079, -0.000000, 0.000000, 0.685493 - -0.732373, -0.000000, 0.000000, 0.680904 - -0.736638, -0.000000, 0.000000, 0.676287 - -0.740874, -0.000000, 0.000000, 0.671644 - -0.745081, -0.000000, 0.000000, 0.666974 - -0.749258, -0.000000, 0.000000, 0.662278 - -0.753406, -0.000000, 0.000000, 0.657555 - -0.757524, -0.000000, 0.000000, 0.652807 - -0.761612, -0.000000, 0.000000, 0.648033 - -0.765670, -0.000000, 0.000000, 0.643233 - -0.769698, -0.000000, 0.000000, 0.638408 - -0.773695, -0.000000, 0.000000, 0.633558 - -0.777662, -0.000000, 0.000000, 0.628682 - -0.781598, -0.000000, 0.000000, 0.623782 - -0.785503, -0.000000, 0.000000, 0.618857 - -0.789377, -0.000000, 0.000000, 0.613908 - -0.793220, -0.000000, 0.000000, 0.608935 - -0.797032, -0.000000, 0.000000, 0.603937 - -0.800812, -0.000000, 0.000000, 0.598915 - -0.804561, -0.000000, 0.000000, 0.593870 - -0.808277, -0.000000, 0.000000, 0.588802 - -0.811962, -0.000000, 0.000000, 0.583710 - -0.815615, -0.000000, 0.000000, 0.578595 - -0.819235, -0.000000, 0.000000, 0.573457 - -0.822824, -0.000000, 0.000000, 0.568297 - -0.826379, -0.000000, 0.000000, 0.563114 - -0.829902, -0.000000, 0.000000, 0.557909 - -0.833392, -0.000000, 0.000000, 0.552682 - -0.836850, -0.000000, 0.000000, 0.547433 - -0.840274, -0.000000, 0.000000, 0.542162 - -0.843665, -0.000000, 0.000000, 0.536870 - -0.847023, -0.000000, 0.000000, 0.531557 - -0.850347, -0.000000, 0.000000, 0.526223 - -0.853638, -0.000000, 0.000000, 0.520868 - -0.856894, -0.000000, 0.000000, 0.515492 - -0.860117, -0.000000, 0.000000, 0.510096 - -0.863307, -0.000000, 0.000000, 0.504680 - -0.866462, -0.000000, 0.000000, 0.499244 - -0.869582, -0.000000, 0.000000, 0.493788 - -0.872669, -0.000000, 0.000000, 0.488313 - -0.875721, -0.000000, 0.000000, 0.482818 - -0.878738, -0.000000, 0.000000, 0.477305 - -0.881721, -0.000000, 0.000000, 0.471772 - -0.884668, -0.000000, 0.000000, 0.466221 - -0.887581, -0.000000, 0.000000, 0.460651 - -0.890459, -0.000000, 0.000000, 0.455064 - -0.893302, -0.000000, 0.000000, 0.449458 - -0.896109, -0.000000, 0.000000, 0.443834 - -0.898881, -0.000000, 0.000000, 0.438193 - -0.901617, -0.000000, 0.000000, 0.432535 - -0.904318, -0.000000, 0.000000, 0.426860 - -0.906983, -0.000000, 0.000000, 0.421167 - -0.909612, -0.000000, 0.000000, 0.415458 - -0.912206, -0.000000, 0.000000, 0.409733 - -0.914763, -0.000000, 0.000000, 0.403991 - -0.917284, -0.000000, 0.000000, 0.398234 - -0.919769, -0.000000, 0.000000, 0.392461 - -0.922217, -0.000000, 0.000000, 0.386672 - -0.924629, -0.000000, 0.000000, 0.380868 - -0.927005, -0.000000, 0.000000, 0.375049 - -0.929344, -0.000000, 0.000000, 0.369215 - -0.931646, -0.000000, 0.000000, 0.363367 - -0.933912, -0.000000, 0.000000, 0.357504 - -0.936140, -0.000000, 0.000000, 0.351627 - -0.938332, -0.000000, 0.000000, 0.345736 - -0.940486, -0.000000, 0.000000, 0.339832 - -0.942604, -0.000000, 0.000000, 0.333914 - -0.944684, -0.000000, 0.000000, 0.327983 - -0.946727, -0.000000, 0.000000, 0.322039 - -0.948732, -0.000000, 0.000000, 0.316082 - -0.950700, -0.000000, 0.000000, 0.310113 - -0.952630, -0.000000, 0.000000, 0.304131 - -0.954523, -0.000000, 0.000000, 0.298138 - -0.956378, -0.000000, 0.000000, 0.292132 - -0.958195, -0.000000, 0.000000, 0.286116 - -0.959975, -0.000000, 0.000000, 0.280087 - -0.961716, -0.000000, 0.000000, 0.274048 - -0.963419, -0.000000, 0.000000, 0.267998 - -0.965085, -0.000000, 0.000000, 0.261938 - -0.966712, -0.000000, 0.000000, 0.255867 - -0.968301, -0.000000, 0.000000, 0.249786 - -0.969852, -0.000000, 0.000000, 0.243695 - -0.971365, -0.000000, 0.000000, 0.237594 - -0.972839, -0.000000, 0.000000, 0.231484 - -0.974274, -0.000000, 0.000000, 0.225365 - -0.975672, -0.000000, 0.000000, 0.219237 - -0.977030, -0.000000, 0.000000, 0.213100 - -0.978350, -0.000000, 0.000000, 0.206955 - -0.979632, -0.000000, 0.000000, 0.200802 - -0.980875, -0.000000, 0.000000, 0.194641 - -0.982079, -0.000000, 0.000000, 0.188472 - -0.983244, -0.000000, 0.000000, 0.182296 - -0.984370, -0.000000, 0.000000, 0.176112 - -0.985458, -0.000000, 0.000000, 0.169922 - -0.986506, -0.000000, 0.000000, 0.163724 - -0.987516, -0.000000, 0.000000, 0.157521 - -0.988486, -0.000000, 0.000000, 0.151311 - -0.989418, -0.000000, 0.000000, 0.145095 - -0.990310, -0.000000, 0.000000, 0.138873 - -0.991163, -0.000000, 0.000000, 0.132646 - -0.991978, -0.000000, 0.000000, 0.126414 - -0.992753, -0.000000, 0.000000, 0.120177 - -0.993488, -0.000000, 0.000000, 0.113935 - -0.994185, -0.000000, 0.000000, 0.107688 - -0.994842, -0.000000, 0.000000, 0.101437 - -0.995460, -0.000000, 0.000000, 0.095182 - -0.996038, -0.000000, 0.000000, 0.088924 - -0.996578, -0.000000, 0.000000, 0.082662 - -0.997078, -0.000000, 0.000000, 0.076396 - -0.997538, -0.000000, 0.000000, 0.070128 - -0.997959, -0.000000, 0.000000, 0.063857 - -0.998341, -0.000000, 0.000000, 0.057583 - -0.998683, -0.000000, 0.000000, 0.051307 - -0.998986, -0.000000, 0.000000, 0.045029 - -0.999249, -0.000000, 0.000000, 0.038750 - -0.999473, -0.000000, 0.000000, 0.032468 - -0.999657, -0.000000, 0.000000, 0.026186 - -0.999802, -0.000000, 0.000000, 0.019902 - -0.999907, -0.000000, 0.000000, 0.013618 - -0.999973, -0.000000, 0.000000, 0.007333 - -0.999999, -0.000000, 0.000000, 0.001048 - -0.999986, 0.000000, -0.000000, -0.005238 - -0.999934, 0.000000, -0.000000, -0.011523 - -0.999841, 0.000000, -0.000000, -0.017807 - -0.999710, 0.000000, -0.000000, -0.024091 - -0.999539, 0.000000, -0.000000, -0.030374 - -0.999328, 0.000000, -0.000000, -0.036656 - -0.999078, 0.000000, -0.000000, -0.042936 - -0.998788, 0.000000, -0.000000, -0.049215 - -0.998459, 0.000000, -0.000000, -0.055491 - -0.998091, 0.000000, -0.000000, -0.061766 - -0.997683, 0.000000, -0.000000, -0.068038 - -0.997235, 0.000000, -0.000000, -0.074307 - -0.996749, 0.000000, -0.000000, -0.080574 - -0.996223, 0.000000, -0.000000, -0.086837 - -0.995657, 0.000000, -0.000000, -0.093097 - -0.995052, 0.000000, -0.000000, -0.099353 - -0.994408, 0.000000, -0.000000, -0.105605 - -0.993725, 0.000000, -0.000000, -0.111853 - -0.993002, 0.000000, -0.000000, -0.118097 - -0.992240, 0.000000, -0.000000, -0.124335 - -0.991439, 0.000000, -0.000000, -0.130569 - -0.990599, 0.000000, -0.000000, -0.136798 - -0.989720, 0.000000, -0.000000, -0.143022 - -0.988801, 0.000000, -0.000000, -0.149240 - -0.987844, 0.000000, -0.000000, -0.155451 - -0.986847, 0.000000, -0.000000, -0.161657 - -0.985811, 0.000000, -0.000000, -0.167857 - -0.984737, 0.000000, -0.000000, -0.174049 - -0.983624, 0.000000, -0.000000, -0.180235 - -0.982471, 0.000000, -0.000000, -0.186414 - -0.981280, 0.000000, -0.000000, -0.192585 - -0.980050, 0.000000, -0.000000, -0.198749 - -0.978782, 0.000000, -0.000000, -0.204905 - -0.977475, 0.000000, -0.000000, -0.211053 - -0.976129, 0.000000, -0.000000, -0.217192 - -0.974744, 0.000000, -0.000000, -0.223323 - -0.973322, 0.000000, -0.000000, -0.229445 - -0.971860, 0.000000, -0.000000, -0.235558 - -0.970360, 0.000000, -0.000000, -0.241662 - -0.968822, 0.000000, -0.000000, -0.247756 - -0.967246, 0.000000, -0.000000, -0.253841 - -0.965631, 0.000000, -0.000000, -0.259915 - -0.963979, 0.000000, -0.000000, -0.265979 - -0.962288, 0.000000, -0.000000, -0.272033 - -0.960559, 0.000000, -0.000000, -0.278076 - -0.958792, 0.000000, -0.000000, -0.284107 - -0.956988, 0.000000, -0.000000, -0.290128 - -0.955145, 0.000000, -0.000000, -0.296137 - -0.953265, 0.000000, -0.000000, -0.302135 - -0.951347, 0.000000, -0.000000, -0.308120 - -0.949392, 0.000000, -0.000000, -0.314094 - -0.947399, 0.000000, -0.000000, -0.320055 - -0.945369, 0.000000, -0.000000, -0.326003 - -0.943301, 0.000000, -0.000000, -0.331938 - -0.941196, 0.000000, -0.000000, -0.337861 - -0.939054, 0.000000, -0.000000, -0.343770 - -0.936875, 0.000000, -0.000000, -0.349665 - -0.934659, 0.000000, -0.000000, -0.355547 - -0.932405, 0.000000, -0.000000, -0.361414 - -0.930115, 0.000000, -0.000000, -0.367267 - -0.927789, 0.000000, -0.000000, -0.373106 - -0.925425, 0.000000, -0.000000, -0.378930 - -0.923025, 0.000000, -0.000000, -0.384739 - -0.920589, 0.000000, -0.000000, -0.390533 - -0.918116, 0.000000, -0.000000, -0.396311 - -0.915607, 0.000000, -0.000000, -0.402074 - -0.913062, 0.000000, -0.000000, -0.407821 - -0.910481, 0.000000, -0.000000, -0.413552 - -0.907863, 0.000000, -0.000000, -0.419266 - -0.905210, 0.000000, -0.000000, -0.424964 - -0.902521, 0.000000, -0.000000, -0.430645 - -0.899797, 0.000000, -0.000000, -0.436309 - -0.897037, 0.000000, -0.000000, -0.441956 - -0.894241, 0.000000, -0.000000, -0.447585 - -0.891410, 0.000000, -0.000000, -0.453197 - -0.888544, 0.000000, -0.000000, -0.458791 - -0.885643, 0.000000, -0.000000, -0.464366 - -0.882707, 0.000000, -0.000000, -0.469924 - -0.879736, 0.000000, -0.000000, -0.475462 - -0.876730, 0.000000, -0.000000, -0.480982 - -0.873690, 0.000000, -0.000000, -0.486483 - -0.870615, 0.000000, -0.000000, -0.491965 - -0.867506, 0.000000, -0.000000, -0.497427 - -0.864362, 0.000000, -0.000000, -0.502870 - -0.861184, 0.000000, -0.000000, -0.508293 - -0.857973, 0.000000, -0.000000, -0.513696 - -0.854727, 0.000000, -0.000000, -0.519078 - -0.851447, 0.000000, -0.000000, -0.524440 - -0.848134, 0.000000, -0.000000, -0.529781 - -0.844788, 0.000000, -0.000000, -0.535101 - -0.841408, 0.000000, -0.000000, -0.540400 - -0.837995, 0.000000, -0.000000, -0.545678 - -0.834549, 0.000000, -0.000000, -0.550934 - -0.831069, 0.000000, -0.000000, -0.556169 - -0.827557, 0.000000, -0.000000, -0.561381 - -0.824012, 0.000000, -0.000000, -0.566572 - -0.820435, 0.000000, -0.000000, -0.571740 - -0.816825, 0.000000, -0.000000, -0.576885 - -0.813183, 0.000000, -0.000000, -0.582008 - -0.809509, 0.000000, -0.000000, -0.587107 - -0.805803, 0.000000, -0.000000, -0.592183 - -0.802065, 0.000000, -0.000000, -0.597236 - -0.798296, 0.000000, -0.000000, -0.602266 - -0.794494, 0.000000, -0.000000, -0.607271 - -0.790662, 0.000000, -0.000000, -0.612253 - -0.786798, 0.000000, -0.000000, -0.617210 - -0.782903, 0.000000, -0.000000, -0.622143 - -0.778978, 0.000000, -0.000000, -0.627052 - -0.775021, 0.000000, -0.000000, -0.631935 - -0.771034, 0.000000, -0.000000, -0.636794 - -0.767016, 0.000000, -0.000000, -0.641628 - -0.762968, 0.000000, -0.000000, -0.646436 - -0.758890, 0.000000, -0.000000, -0.651219 - -0.754782, 0.000000, -0.000000, -0.655976 - -0.750644, 0.000000, -0.000000, -0.660707 - -0.746477, 0.000000, -0.000000, -0.665412 - -0.742280, 0.000000, -0.000000, -0.670090 - -0.738053, 0.000000, -0.000000, -0.674742 - -0.733798, 0.000000, -0.000000, -0.679368 - -0.729513, 0.000000, -0.000000, -0.683967 - -0.725200, 0.000000, -0.000000, -0.688538 - -0.720858, 0.000000, -0.000000, -0.693083 - -0.716488, 0.000000, -0.000000, -0.697600 - -0.712089, 0.000000, -0.000000, -0.702089 - -0.707662, 0.000000, -0.000000, -0.706551 - -0.703207, 0.000000, -0.000000, -0.710985 - -0.698725, 0.000000, -0.000000, -0.715391 - -0.694214, 0.000000, -0.000000, -0.719768 - -0.689677, 0.000000, -0.000000, -0.724117 - -0.685112, 0.000000, -0.000000, -0.728438 - -0.680520, 0.000000, -0.000000, -0.732729 - -0.675901, 0.000000, -0.000000, -0.736992 - -0.671256, 0.000000, -0.000000, -0.741226 - -0.666584, 0.000000, -0.000000, -0.745430 - -0.661885, 0.000000, -0.000000, -0.749605 - -0.657161, 0.000000, -0.000000, -0.753750 - -0.652410, 0.000000, -0.000000, -0.757866 - -0.647634, 0.000000, -0.000000, -0.761952 - -0.642832, 0.000000, -0.000000, -0.766007 - -0.638005, 0.000000, -0.000000, -0.770032 - -0.633153, 0.000000, -0.000000, -0.774027 - -0.628275, 0.000000, -0.000000, -0.777991 - -0.623373, 0.000000, -0.000000, -0.781925 - -0.618446, 0.000000, -0.000000, -0.785827 - -0.613495, 0.000000, -0.000000, -0.789699 - -0.608519, 0.000000, -0.000000, -0.793539 - -0.603519, 0.000000, -0.000000, -0.797348 - -0.598496, 0.000000, -0.000000, -0.801126 - -0.593449, 0.000000, -0.000000, -0.804872 - -0.588378, 0.000000, -0.000000, -0.808586 - -0.583285, 0.000000, -0.000000, -0.812268 - -0.578168, 0.000000, -0.000000, -0.815918 - -0.573028, 0.000000, -0.000000, -0.819536 - -0.567866, 0.000000, -0.000000, -0.823121 - -0.562681, 0.000000, -0.000000, -0.826674 - -0.557474, 0.000000, -0.000000, -0.830194 - -0.552245, 0.000000, -0.000000, -0.833682 - -0.546994, 0.000000, -0.000000, -0.837136 - -0.541722, 0.000000, -0.000000, -0.840558 - -0.536428, 0.000000, -0.000000, -0.843946 - -0.531113, 0.000000, -0.000000, -0.847301 - -0.525777, 0.000000, -0.000000, -0.850622 - -0.520420, 0.000000, -0.000000, -0.853910 - -0.515043, 0.000000, -0.000000, -0.857164 - -0.509645, 0.000000, -0.000000, -0.860385 - -0.504228, 0.000000, -0.000000, -0.863571 - -0.498790, 0.000000, -0.000000, -0.866723 - -0.493332, 0.000000, -0.000000, -0.869841 - -0.487856, 0.000000, -0.000000, -0.872924 - -0.482359, 0.000000, -0.000000, -0.875973 - -0.476844, 0.000000, -0.000000, -0.878988 - -0.471310, 0.000000, -0.000000, -0.881968 - -0.465757, 0.000000, -0.000000, -0.884912 - -0.460186, 0.000000, -0.000000, -0.887822 - -0.454597, 0.000000, -0.000000, -0.890697 - -0.448990, 0.000000, -0.000000, -0.893537 - -0.443365, 0.000000, -0.000000, -0.896341 - -0.437722, 0.000000, -0.000000, -0.899110 - -0.432063, 0.000000, -0.000000, -0.901844 - -0.426386, 0.000000, -0.000000, -0.904541 - -0.420692, 0.000000, -0.000000, -0.907203 - -0.414982, 0.000000, -0.000000, -0.909830 - -0.409255, 0.000000, -0.000000, -0.912420 - -0.403512, 0.000000, -0.000000, -0.914974 - -0.397753, 0.000000, -0.000000, -0.917492 - -0.391979, 0.000000, -0.000000, -0.919974 - -0.386189, 0.000000, -0.000000, -0.922420 - -0.380384, 0.000000, -0.000000, -0.924829 - -0.374563, 0.000000, -0.000000, -0.927201 - -0.368728, 0.000000, -0.000000, -0.929537 - -0.362879, 0.000000, -0.000000, -0.931836 - -0.357015, 0.000000, -0.000000, -0.934099 - -0.351137, 0.000000, -0.000000, -0.936324 - -0.345245, 0.000000, -0.000000, -0.938513 - -0.339339, 0.000000, -0.000000, -0.940664 - -0.333420, 0.000000, -0.000000, -0.942778 - -0.327488, 0.000000, -0.000000, -0.944855 - -0.321543, 0.000000, -0.000000, -0.946895 - -0.315585, 0.000000, -0.000000, -0.948897 - -0.309615, 0.000000, -0.000000, -0.950862 - -0.303632, 0.000000, -0.000000, -0.952789 - -0.297638, 0.000000, -0.000000, -0.954679 - -0.291631, 0.000000, -0.000000, -0.956531 - -0.285614, 0.000000, -0.000000, -0.958345 - -0.279585, 0.000000, -0.000000, -0.960121 - -0.273544, 0.000000, -0.000000, -0.961859 - -0.267494, 0.000000, -0.000000, -0.963560 - -0.261432, 0.000000, -0.000000, -0.965222 - -0.255360, 0.000000, -0.000000, -0.966846 - -0.249278, 0.000000, -0.000000, -0.968432 - -0.243187, 0.000000, -0.000000, -0.969980 - -0.237085, 0.000000, -0.000000, -0.971489 - -0.230975, 0.000000, -0.000000, -0.972960 - -0.224855, 0.000000, -0.000000, -0.974392 - -0.218726, 0.000000, -0.000000, -0.975786 - -0.212589, 0.000000, -0.000000, -0.977142 - -0.206443, 0.000000, -0.000000, -0.978459 - -0.200289, 0.000000, -0.000000, -0.979737 - -0.194127, 0.000000, -0.000000, -0.980976 - -0.187958, 0.000000, -0.000000, -0.982177 - -0.181781, 0.000000, -0.000000, -0.983339 - -0.175596, 0.000000, -0.000000, -0.984462 - -0.169405, 0.000000, -0.000000, -0.985546 - -0.163208, 0.000000, -0.000000, -0.986592 - -0.157003, 0.000000, -0.000000, -0.987598 - -0.150793, 0.000000, -0.000000, -0.988565 - -0.144577, 0.000000, -0.000000, -0.989494 - -0.138355, 0.000000, -0.000000, -0.990383 - -0.132127, 0.000000, -0.000000, -0.991233 - -0.125894, 0.000000, -0.000000, -0.992044 - -0.119657, 0.000000, -0.000000, -0.992815 - -0.113414, 0.000000, -0.000000, -0.993548 - -0.107167, 0.000000, -0.000000, -0.994241 - -0.100916, 0.000000, -0.000000, -0.994895 - -0.094661, 0.000000, -0.000000, -0.995510 - -0.088402, 0.000000, -0.000000, -0.996085 - -0.082140, 0.000000, -0.000000, -0.996621 - -0.075874, 0.000000, -0.000000, -0.997117 - -0.069606, 0.000000, -0.000000, -0.997575 - -0.063334, 0.000000, -0.000000, -0.997992 - -0.057060, 0.000000, -0.000000, -0.998371 - -0.050784, 0.000000, -0.000000, -0.998710 - -0.044506, 0.000000, -0.000000, -0.999009 - -0.038226, 0.000000, -0.000000, -0.999269 - -0.031945, 0.000000, -0.000000, -0.999490 - -0.025662, 0.000000, -0.000000, -0.999671 - -0.019378, 0.000000, -0.000000, -0.999812 - -0.013094, 0.000000, -0.000000, -0.999914 - -0.006809, 0.000000, -0.000000, -0.999977 - -0.000524, 0.000000, -0.000000, -1.000000 - 0.005761, 0.000000, 0.000000, -0.999983 - 0.012046, 0.000000, 0.000000, -0.999927 - 0.018331, 0.000000, 0.000000, -0.999832 - 0.024615, 0.000000, 0.000000, -0.999697 - 0.030898, 0.000000, 0.000000, -0.999523 - 0.037179, 0.000000, 0.000000, -0.999309 - 0.043459, 0.000000, 0.000000, -0.999055 - 0.049738, 0.000000, 0.000000, -0.998762 - 0.056014, 0.000000, 0.000000, -0.998430 - 0.062289, 0.000000, 0.000000, -0.998058 - 0.068560, 0.000000, 0.000000, -0.997647 - 0.074830, 0.000000, 0.000000, -0.997196 - 0.081096, 0.000000, 0.000000, -0.996706 - 0.087359, 0.000000, 0.000000, -0.996177 - 0.093618, 0.000000, 0.000000, -0.995608 - 0.099874, 0.000000, 0.000000, -0.995000 - 0.106126, 0.000000, 0.000000, -0.994353 - 0.112373, 0.000000, 0.000000, -0.993666 - 0.118617, 0.000000, 0.000000, -0.992940 - 0.124855, 0.000000, 0.000000, -0.992175 - 0.131089, 0.000000, 0.000000, -0.991371 - 0.137317, 0.000000, 0.000000, -0.990527 - 0.143540, 0.000000, 0.000000, -0.989644 - 0.149757, 0.000000, 0.000000, -0.988723 - 0.155969, 0.000000, 0.000000, -0.987762 - 0.162174, 0.000000, 0.000000, -0.986762 - 0.168373, 0.000000, 0.000000, -0.985723 - 0.174565, 0.000000, 0.000000, -0.984646 - 0.180750, 0.000000, 0.000000, -0.983529 - 0.186929, 0.000000, 0.000000, -0.982374 - 0.193099, 0.000000, 0.000000, -0.981179 - 0.199262, 0.000000, 0.000000, -0.979946 - 0.205418, 0.000000, 0.000000, -0.978674 - 0.211565, 0.000000, 0.000000, -0.977364 - 0.217704, 0.000000, 0.000000, -0.976015 - 0.223834, 0.000000, 0.000000, -0.974627 - 0.229955, 0.000000, 0.000000, -0.973201 - 0.236067, 0.000000, 0.000000, -0.971737 - 0.242170, 0.000000, 0.000000, -0.970234 - 0.248264, 0.000000, 0.000000, -0.968692 - 0.254347, 0.000000, 0.000000, -0.967113 - 0.260421, 0.000000, 0.000000, -0.965495 - 0.266484, 0.000000, 0.000000, -0.963839 - 0.272537, 0.000000, 0.000000, -0.962145 - 0.278579, 0.000000, 0.000000, -0.960413 - 0.284610, 0.000000, 0.000000, -0.958644 - 0.290629, 0.000000, 0.000000, -0.956836 - 0.296637, 0.000000, 0.000000, -0.954990 - 0.302634, 0.000000, 0.000000, -0.953107 - 0.308618, 0.000000, 0.000000, -0.951186 - 0.314591, 0.000000, 0.000000, -0.949227 - 0.320551, 0.000000, 0.000000, -0.947231 - 0.326498, 0.000000, 0.000000, -0.945198 - 0.332432, 0.000000, 0.000000, -0.943127 - 0.338354, 0.000000, 0.000000, -0.941019 - 0.344261, 0.000000, 0.000000, -0.938874 - 0.350156, 0.000000, 0.000000, -0.936692 - 0.356036, 0.000000, 0.000000, -0.934472 - 0.361902, 0.000000, 0.000000, -0.932216 - 0.367754, 0.000000, 0.000000, -0.929923 - 0.373592, 0.000000, 0.000000, -0.927593 - 0.379415, 0.000000, 0.000000, -0.925227 - 0.385222, 0.000000, 0.000000, -0.922824 - 0.391015, 0.000000, 0.000000, -0.920384 - 0.396792, 0.000000, 0.000000, -0.917908 - 0.402554, 0.000000, 0.000000, -0.915396 - 0.408299, 0.000000, 0.000000, -0.912848 - 0.414029, 0.000000, 0.000000, -0.910264 - 0.419742, 0.000000, 0.000000, -0.907644 - 0.425438, 0.000000, 0.000000, -0.904988 - 0.431118, 0.000000, 0.000000, -0.902296 - 0.436780, 0.000000, 0.000000, -0.899568 - 0.442426, 0.000000, 0.000000, -0.896805 - 0.448054, 0.000000, 0.000000, -0.894007 - 0.453664, 0.000000, 0.000000, -0.891173 - 0.459256, 0.000000, 0.000000, -0.888304 - 0.464830, 0.000000, 0.000000, -0.885400 - 0.470386, 0.000000, 0.000000, -0.882461 - 0.475923, 0.000000, 0.000000, -0.879487 - 0.481442, 0.000000, 0.000000, -0.876478 - 0.486941, 0.000000, 0.000000, -0.873435 - 0.492421, 0.000000, 0.000000, -0.870357 - 0.497882, 0.000000, 0.000000, -0.867245 - 0.503323, 0.000000, 0.000000, -0.864099 - 0.508744, 0.000000, 0.000000, -0.860918 - 0.514145, 0.000000, 0.000000, -0.857703 - 0.519526, 0.000000, 0.000000, -0.854455 - 0.524886, 0.000000, 0.000000, -0.851173 - 0.530225, 0.000000, 0.000000, -0.847857 - 0.535544, 0.000000, 0.000000, -0.844507 - 0.540841, 0.000000, 0.000000, -0.841125 - 0.546117, 0.000000, 0.000000, -0.837709 - 0.551371, 0.000000, 0.000000, -0.834260 - 0.556604, 0.000000, 0.000000, -0.830778 - 0.561815, 0.000000, 0.000000, -0.827263 - 0.567003, 0.000000, 0.000000, -0.823716 - 0.572169, 0.000000, 0.000000, -0.820136 - 0.577313, 0.000000, 0.000000, -0.816523 - 0.582433, 0.000000, 0.000000, -0.812878 - 0.587531, 0.000000, 0.000000, -0.809202 - 0.592605, 0.000000, 0.000000, -0.805493 - 0.597656, 0.000000, 0.000000, -0.801752 - 0.602684, 0.000000, 0.000000, -0.797980 - 0.607687, 0.000000, 0.000000, -0.794176 - 0.612667, 0.000000, 0.000000, -0.790341 - 0.617622, 0.000000, 0.000000, -0.786475 - 0.622553, 0.000000, 0.000000, -0.782577 - 0.627460, 0.000000, 0.000000, -0.778649 - 0.632341, 0.000000, 0.000000, -0.774690 - 0.637198, 0.000000, 0.000000, -0.770700 - 0.642029, 0.000000, 0.000000, -0.766680 - 0.646835, 0.000000, 0.000000, -0.762630 - 0.651616, 0.000000, 0.000000, -0.758549 - 0.656371, 0.000000, 0.000000, -0.754438 - 0.661100, 0.000000, 0.000000, -0.750298 - 0.665802, 0.000000, 0.000000, -0.746128 - 0.670479, 0.000000, 0.000000, -0.741929 - 0.675129, 0.000000, 0.000000, -0.737700 - 0.679752, 0.000000, 0.000000, -0.733442 - 0.684349, 0.000000, 0.000000, -0.729155 - 0.688918, 0.000000, 0.000000, -0.724839 - 0.693460, 0.000000, 0.000000, -0.720495 - 0.697975, 0.000000, 0.000000, -0.716122 - 0.702462, 0.000000, 0.000000, -0.711721 - 0.706922, 0.000000, 0.000000, -0.707292 - 0.711353, 0.000000, 0.000000, -0.702835 - 0.715757, 0.000000, 0.000000, -0.698350 - 0.720132, 0.000000, 0.000000, -0.693837 - 0.724478, 0.000000, 0.000000, -0.689297 - 0.728797, 0.000000, 0.000000, -0.684730 - 0.733086, 0.000000, 0.000000, -0.680136 - 0.737346, 0.000000, 0.000000, -0.675515 - 0.741577, 0.000000, 0.000000, -0.670867 - 0.745779, 0.000000, 0.000000, -0.666193 - 0.749952, 0.000000, 0.000000, -0.661493 - 0.754095, 0.000000, 0.000000, -0.656766 - 0.758208, 0.000000, 0.000000, -0.652013 - 0.762291, 0.000000, 0.000000, -0.647235 - 0.766344, 0.000000, 0.000000, -0.642431 - 0.770366, 0.000000, 0.000000, -0.637602 - 0.774359, 0.000000, 0.000000, -0.632747 - 0.778320, 0.000000, 0.000000, -0.627867 - 0.782251, 0.000000, 0.000000, -0.622963 - 0.786151, 0.000000, 0.000000, -0.618034 - 0.790020, 0.000000, 0.000000, -0.613081 - 0.793858, 0.000000, 0.000000, -0.608103 - 0.797664, 0.000000, 0.000000, -0.603102 - 0.801439, 0.000000, 0.000000, -0.598076 - 0.805182, 0.000000, 0.000000, -0.593027 - 0.808894, 0.000000, 0.000000, -0.587955 - 0.812573, 0.000000, 0.000000, -0.582859 - 0.816221, 0.000000, 0.000000, -0.577740 - 0.819836, 0.000000, 0.000000, -0.572599 - 0.823418, 0.000000, 0.000000, -0.567435 - 0.826969, 0.000000, 0.000000, -0.562248 - 0.830486, 0.000000, 0.000000, -0.557039 - 0.833971, 0.000000, 0.000000, -0.551808 - 0.837423, 0.000000, 0.000000, -0.546556 - 0.840841, 0.000000, 0.000000, -0.541282 - 0.844227, 0.000000, 0.000000, -0.535986 - 0.847579, 0.000000, 0.000000, -0.530669 - 0.850898, 0.000000, 0.000000, -0.525332 - 0.854183, 0.000000, 0.000000, -0.519973 - 0.857434, 0.000000, 0.000000, -0.514594 - 0.860651, 0.000000, 0.000000, -0.509195 - 0.863835, 0.000000, 0.000000, -0.503775 - 0.866984, 0.000000, 0.000000, -0.498336 - 0.870099, 0.000000, 0.000000, -0.492877 - 0.873180, 0.000000, 0.000000, -0.487398 - 0.876226, 0.000000, 0.000000, -0.481901 - 0.879237, 0.000000, 0.000000, -0.476384 - 0.882214, 0.000000, 0.000000, -0.470848 - 0.885156, 0.000000, 0.000000, -0.465294 - 0.888063, 0.000000, 0.000000, -0.459721 - 0.890935, 0.000000, 0.000000, -0.454130 - 0.893772, 0.000000, 0.000000, -0.448522 - 0.896573, 0.000000, 0.000000, -0.442895 - 0.899339, 0.000000, 0.000000, -0.437251 - 0.902070, 0.000000, 0.000000, -0.431590 - 0.904765, 0.000000, 0.000000, -0.425912 - 0.907424, 0.000000, 0.000000, -0.420217 - 0.910047, 0.000000, 0.000000, -0.414505 - 0.912634, 0.000000, 0.000000, -0.408777 - 0.915185, 0.000000, 0.000000, -0.403033 - 0.917701, 0.000000, 0.000000, -0.397273 - 0.920179, 0.000000, 0.000000, -0.391497 - 0.922622, 0.000000, 0.000000, -0.385706 - 0.925028, 0.000000, 0.000000, -0.379899 - 0.927397, 0.000000, 0.000000, -0.374078 - 0.929730, 0.000000, 0.000000, -0.368241 - 0.932026, 0.000000, 0.000000, -0.362391 - 0.934286, 0.000000, 0.000000, -0.356525 - 0.936508, 0.000000, 0.000000, -0.350646 - 0.938693, 0.000000, 0.000000, -0.344753 - 0.940842, 0.000000, 0.000000, -0.338846 - 0.942953, 0.000000, 0.000000, -0.332926 - 0.945027, 0.000000, 0.000000, -0.326993 - 0.947063, 0.000000, 0.000000, -0.321047 - 0.949062, 0.000000, 0.000000, -0.315088 - 0.951024, 0.000000, 0.000000, -0.309117 - 0.952948, 0.000000, 0.000000, -0.303133 - 0.954835, 0.000000, 0.000000, -0.297138 - 0.956683, 0.000000, 0.000000, -0.291130 - 0.958494, 0.000000, 0.000000, -0.285112 - 0.960267, 0.000000, 0.000000, -0.279082 - 0.962003, 0.000000, 0.000000, -0.273041 - 0.963700, 0.000000, 0.000000, -0.266989 - 0.965359, 0.000000, 0.000000, -0.260926 - 0.966980, 0.000000, 0.000000, -0.254854 - 0.968562, 0.000000, 0.000000, -0.248771 - 0.970107, 0.000000, 0.000000, -0.242678 - 0.971613, 0.000000, 0.000000, -0.236576 - 0.973081, 0.000000, 0.000000, -0.230465 - 0.974510, 0.000000, 0.000000, -0.224344 - 0.975901, 0.000000, 0.000000, -0.218215 - 0.977253, 0.000000, 0.000000, -0.212077 - 0.978567, 0.000000, 0.000000, -0.205930 - 0.979842, 0.000000, 0.000000, -0.199776 - 0.981078, 0.000000, 0.000000, -0.193613 - 0.982275, 0.000000, 0.000000, -0.187443 - 0.983434, 0.000000, 0.000000, -0.181266 - 0.984554, 0.000000, 0.000000, -0.175081 - 0.985635, 0.000000, 0.000000, -0.168889 - 0.986677, 0.000000, 0.000000, -0.162691 - 0.987680, 0.000000, 0.000000, -0.156486 - 0.988644, 0.000000, 0.000000, -0.150275 - 0.989569, 0.000000, 0.000000, -0.144058 - 0.990455, 0.000000, 0.000000, -0.137836 - 0.991302, 0.000000, 0.000000, -0.131608 - 0.992109, 0.000000, 0.000000, -0.125375 - 0.992878, 0.000000, 0.000000, -0.119137 - 0.993607, 0.000000, 0.000000, -0.112894 - 0.994297, 0.000000, 0.000000, -0.106647 - 0.994948, 0.000000, 0.000000, -0.100395 - 0.995559, 0.000000, 0.000000, -0.094140 - 0.996131, 0.000000, 0.000000, -0.087880 - 0.996664, 0.000000, 0.000000, -0.081618 - 0.997157, 0.000000, 0.000000, -0.075352 - 0.997611, 0.000000, 0.000000, -0.069083 - 0.998025, 0.000000, 0.000000, -0.062811 - 0.998400, 0.000000, 0.000000, -0.056537 - 0.998736, 0.000000, 0.000000, -0.050261 - 0.999032, 0.000000, 0.000000, -0.043983 - 0.999289, 0.000000, 0.000000, -0.037703 - 0.999506, 0.000000, 0.000000, -0.031421 - 0.999684, 0.000000, 0.000000, -0.025138 - 0.999822, 0.000000, 0.000000, -0.018855 - 0.999921, 0.000000, 0.000000, -0.012570 - 0.999980, 0.000000, 0.000000, -0.006285 - 1.000000, 0.000000, 0.000000, -0.000000 diff --git a/scripts/trajectories/full-circle-T15.0-w1.0.csv b/scripts/trajectories/full-circle-T15.0-w1.0.csv deleted file mode 100644 index db5f6c40b34e6697cdcc3b39e8872d791157abef..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-T15.0-w1.0.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 0.999877, 0.000000, 0.000000, 0.015713 - 0.999506, 0.000000, 0.000000, 0.031421 - 0.998889, 0.000000, 0.000000, 0.047122 - 0.998025, 0.000000, 0.000000, 0.062811 - 0.996915, 0.000000, 0.000000, 0.078485 - 0.995559, 0.000000, 0.000000, 0.094140 - 0.993957, 0.000000, 0.000000, 0.109771 - 0.992109, 0.000000, 0.000000, 0.125375 - 0.990017, 0.000000, 0.000000, 0.140948 - 0.987680, 0.000000, 0.000000, 0.156486 - 0.985099, 0.000000, 0.000000, 0.171986 - 0.982275, 0.000000, 0.000000, 0.187443 - 0.979209, 0.000000, 0.000000, 0.202854 - 0.975901, 0.000000, 0.000000, 0.218215 - 0.972352, 0.000000, 0.000000, 0.233522 - 0.968562, 0.000000, 0.000000, 0.248771 - 0.964534, 0.000000, 0.000000, 0.263959 - 0.960267, 0.000000, 0.000000, 0.279082 - 0.955764, 0.000000, 0.000000, 0.294135 - 0.951024, 0.000000, 0.000000, 0.309117 - 0.946050, 0.000000, 0.000000, 0.324021 - 0.940842, 0.000000, 0.000000, 0.338846 - 0.935401, 0.000000, 0.000000, 0.353588 - 0.929730, 0.000000, 0.000000, 0.368241 - 0.923829, 0.000000, 0.000000, 0.382804 - 0.917701, 0.000000, 0.000000, 0.397273 - 0.911345, 0.000000, 0.000000, 0.411643 - 0.904765, 0.000000, 0.000000, 0.425912 - 0.897961, 0.000000, 0.000000, 0.440076 - 0.890935, 0.000000, 0.000000, 0.454130 - 0.883690, 0.000000, 0.000000, 0.468073 - 0.876226, 0.000000, 0.000000, 0.481901 - 0.868546, 0.000000, 0.000000, 0.495609 - 0.860651, 0.000000, 0.000000, 0.509195 - 0.852544, 0.000000, 0.000000, 0.522655 - 0.844227, 0.000000, 0.000000, 0.535986 - 0.835701, 0.000000, 0.000000, 0.549185 - 0.826969, 0.000000, 0.000000, 0.562248 - 0.818032, 0.000000, 0.000000, 0.575172 - 0.808894, 0.000000, 0.000000, 0.587955 - 0.799556, 0.000000, 0.000000, 0.600592 - 0.790020, 0.000000, 0.000000, 0.613081 - 0.780290, 0.000000, 0.000000, 0.625418 - 0.770366, 0.000000, 0.000000, 0.637602 - 0.760253, 0.000000, 0.000000, 0.649627 - 0.749952, 0.000000, 0.000000, 0.661493 - 0.739465, 0.000000, 0.000000, 0.673195 - 0.728797, 0.000000, 0.000000, 0.684730 - 0.717948, 0.000000, 0.000000, 0.696097 - 0.706922, 0.000000, 0.000000, 0.707292 - 0.695721, 0.000000, 0.000000, 0.718312 - 0.684349, 0.000000, 0.000000, 0.729155 - 0.672807, 0.000000, 0.000000, 0.739818 - 0.661100, 0.000000, 0.000000, 0.750298 - 0.649229, 0.000000, 0.000000, 0.760593 - 0.637198, 0.000000, 0.000000, 0.770700 - 0.625010, 0.000000, 0.000000, 0.780617 - 0.612667, 0.000000, 0.000000, 0.790341 - 0.600173, 0.000000, 0.000000, 0.799870 - 0.587531, 0.000000, 0.000000, 0.809202 - 0.574744, 0.000000, 0.000000, 0.818333 - 0.561815, 0.000000, 0.000000, 0.827263 - 0.548747, 0.000000, 0.000000, 0.835988 - 0.535544, 0.000000, 0.000000, 0.844507 - 0.522208, 0.000000, 0.000000, 0.852818 - 0.508744, 0.000000, 0.000000, 0.860918 - 0.495154, 0.000000, 0.000000, 0.868805 - 0.481442, 0.000000, 0.000000, 0.876478 - 0.467610, 0.000000, 0.000000, 0.883935 - 0.453664, 0.000000, 0.000000, 0.891173 - 0.439605, 0.000000, 0.000000, 0.898191 - 0.425438, 0.000000, 0.000000, 0.904988 - 0.411166, 0.000000, 0.000000, 0.911561 - 0.396792, 0.000000, 0.000000, 0.917908 - 0.382320, 0.000000, 0.000000, 0.924030 - 0.367754, 0.000000, 0.000000, 0.929923 - 0.353098, 0.000000, 0.000000, 0.935587 - 0.338354, 0.000000, 0.000000, 0.941019 - 0.323526, 0.000000, 0.000000, 0.946219 - 0.308618, 0.000000, 0.000000, 0.951186 - 0.293635, 0.000000, 0.000000, 0.955918 - 0.278579, 0.000000, 0.000000, 0.960413 - 0.263454, 0.000000, 0.000000, 0.964672 - 0.248264, 0.000000, 0.000000, 0.968692 - 0.233012, 0.000000, 0.000000, 0.972474 - 0.217704, 0.000000, 0.000000, 0.976015 - 0.202341, 0.000000, 0.000000, 0.979315 - 0.186929, 0.000000, 0.000000, 0.982374 - 0.171470, 0.000000, 0.000000, 0.985189 - 0.155969, 0.000000, 0.000000, 0.987762 - 0.140429, 0.000000, 0.000000, 0.990091 - 0.124855, 0.000000, 0.000000, 0.992175 - 0.109250, 0.000000, 0.000000, 0.994014 - 0.093618, 0.000000, 0.000000, 0.995608 - 0.077963, 0.000000, 0.000000, 0.996956 - 0.062289, 0.000000, 0.000000, 0.998058 - 0.046599, 0.000000, 0.000000, 0.998914 - 0.030898, 0.000000, 0.000000, 0.999523 - 0.015189, 0.000000, 0.000000, 0.999885 - -0.000524, -0.000000, 0.000000, 1.000000 - -0.016236, -0.000000, 0.000000, 0.999868 - -0.031945, -0.000000, 0.000000, 0.999490 - -0.047645, -0.000000, 0.000000, 0.998864 - -0.063334, -0.000000, 0.000000, 0.997992 - -0.079007, -0.000000, 0.000000, 0.996874 - -0.094661, -0.000000, 0.000000, 0.995510 - -0.110291, -0.000000, 0.000000, 0.993899 - -0.125894, -0.000000, 0.000000, 0.992044 - -0.141466, -0.000000, 0.000000, 0.989943 - -0.157003, -0.000000, 0.000000, 0.987598 - -0.172502, -0.000000, 0.000000, 0.985009 - -0.187958, -0.000000, 0.000000, 0.982177 - -0.203367, -0.000000, 0.000000, 0.979103 - -0.218726, -0.000000, 0.000000, 0.975786 - -0.234031, -0.000000, 0.000000, 0.972229 - -0.249278, -0.000000, 0.000000, 0.968432 - -0.264464, -0.000000, 0.000000, 0.964396 - -0.279585, -0.000000, 0.000000, 0.960121 - -0.294636, -0.000000, 0.000000, 0.955610 - -0.309615, -0.000000, 0.000000, 0.950862 - -0.324517, -0.000000, 0.000000, 0.945880 - -0.339339, -0.000000, 0.000000, 0.940664 - -0.354077, -0.000000, 0.000000, 0.935216 - -0.368728, -0.000000, 0.000000, 0.929537 - -0.383288, -0.000000, 0.000000, 0.923629 - -0.397753, -0.000000, 0.000000, 0.917492 - -0.412121, -0.000000, 0.000000, 0.911129 - -0.426386, -0.000000, 0.000000, 0.904541 - -0.440546, -0.000000, 0.000000, 0.897730 - -0.454597, -0.000000, 0.000000, 0.890697 - -0.468536, -0.000000, 0.000000, 0.883444 - -0.482359, -0.000000, 0.000000, 0.875973 - -0.496064, -0.000000, 0.000000, 0.868286 - -0.509645, -0.000000, 0.000000, 0.860385 - -0.523101, -0.000000, 0.000000, 0.852270 - -0.536428, -0.000000, 0.000000, 0.843946 - -0.549622, -0.000000, 0.000000, 0.835413 - -0.562681, -0.000000, 0.000000, 0.826674 - -0.575601, -0.000000, 0.000000, 0.817731 - -0.588378, -0.000000, 0.000000, 0.808586 - -0.601011, -0.000000, 0.000000, 0.799241 - -0.613495, -0.000000, 0.000000, 0.789699 - -0.625827, -0.000000, 0.000000, 0.779962 - -0.638005, -0.000000, 0.000000, 0.770032 - -0.650025, -0.000000, 0.000000, 0.759913 - -0.661885, -0.000000, 0.000000, 0.749605 - -0.673582, -0.000000, 0.000000, 0.739113 - -0.685112, -0.000000, 0.000000, 0.728438 - -0.696473, -0.000000, 0.000000, 0.717583 - -0.707662, -0.000000, 0.000000, 0.706551 - -0.718676, -0.000000, 0.000000, 0.695345 - -0.729513, -0.000000, 0.000000, 0.683967 - -0.740170, -0.000000, 0.000000, 0.672420 - -0.750644, -0.000000, 0.000000, 0.660707 - -0.760933, -0.000000, 0.000000, 0.648830 - -0.771034, -0.000000, 0.000000, 0.636794 - -0.780944, -0.000000, 0.000000, 0.624601 - -0.790662, -0.000000, 0.000000, 0.612253 - -0.800184, -0.000000, 0.000000, 0.599754 - -0.809509, -0.000000, 0.000000, 0.587107 - -0.818634, -0.000000, 0.000000, 0.574315 - -0.827557, -0.000000, 0.000000, 0.561381 - -0.836276, -0.000000, 0.000000, 0.548309 - -0.844788, -0.000000, 0.000000, 0.535101 - -0.853091, -0.000000, 0.000000, 0.521761 - -0.861184, -0.000000, 0.000000, 0.508293 - -0.869065, -0.000000, 0.000000, 0.494699 - -0.876730, -0.000000, 0.000000, 0.480982 - -0.884179, -0.000000, 0.000000, 0.467147 - -0.891410, -0.000000, 0.000000, 0.453197 - -0.898421, -0.000000, 0.000000, 0.439135 - -0.905210, -0.000000, 0.000000, 0.424964 - -0.911776, -0.000000, 0.000000, 0.410688 - -0.918116, -0.000000, 0.000000, 0.396311 - -0.924230, -0.000000, 0.000000, 0.381836 - -0.930115, -0.000000, 0.000000, 0.367267 - -0.935771, -0.000000, 0.000000, 0.352607 - -0.941196, -0.000000, 0.000000, 0.337861 - -0.946389, -0.000000, 0.000000, 0.323030 - -0.951347, -0.000000, 0.000000, 0.308120 - -0.956071, -0.000000, 0.000000, 0.293134 - -0.960559, -0.000000, 0.000000, 0.278076 - -0.964810, -0.000000, 0.000000, 0.262948 - -0.968822, -0.000000, 0.000000, 0.247756 - -0.972596, -0.000000, 0.000000, 0.232503 - -0.976129, -0.000000, 0.000000, 0.217192 - -0.979421, -0.000000, 0.000000, 0.201828 - -0.982471, -0.000000, 0.000000, 0.186414 - -0.985279, -0.000000, 0.000000, 0.170954 - -0.987844, -0.000000, 0.000000, 0.155451 - -0.990164, -0.000000, 0.000000, 0.139911 - -0.992240, -0.000000, 0.000000, 0.124335 - -0.994071, -0.000000, 0.000000, 0.108729 - -0.995657, -0.000000, 0.000000, 0.093097 - -0.996997, -0.000000, 0.000000, 0.077441 - -0.998091, -0.000000, 0.000000, 0.061766 - -0.998938, -0.000000, 0.000000, 0.046076 - -0.999539, -0.000000, 0.000000, 0.030374 - -0.999892, -0.000000, 0.000000, 0.014665 - -0.999999, 0.000000, -0.000000, -0.001048 - -0.999860, 0.000000, -0.000000, -0.016760 - -0.999473, 0.000000, -0.000000, -0.032468 - -0.998839, 0.000000, -0.000000, -0.048169 - -0.997959, 0.000000, -0.000000, -0.063857 - -0.996833, 0.000000, -0.000000, -0.079529 - -0.995460, 0.000000, -0.000000, -0.095182 - -0.993841, 0.000000, -0.000000, -0.110812 - -0.991978, 0.000000, -0.000000, -0.126414 - -0.989869, 0.000000, -0.000000, -0.141985 - -0.987516, 0.000000, -0.000000, -0.157521 - -0.984919, 0.000000, -0.000000, -0.173018 - -0.982079, 0.000000, -0.000000, -0.188472 - -0.978996, 0.000000, -0.000000, -0.203880 - -0.975672, 0.000000, -0.000000, -0.219237 - -0.972106, 0.000000, -0.000000, -0.234540 - -0.968301, 0.000000, -0.000000, -0.249786 - -0.964257, 0.000000, -0.000000, -0.264969 - -0.959975, 0.000000, -0.000000, -0.280087 - -0.955455, 0.000000, -0.000000, -0.295136 - -0.950700, 0.000000, -0.000000, -0.310113 - -0.945710, 0.000000, -0.000000, -0.325012 - -0.940486, 0.000000, -0.000000, -0.339832 - -0.935031, 0.000000, -0.000000, -0.354567 - -0.929344, 0.000000, -0.000000, -0.369215 - -0.923428, 0.000000, -0.000000, -0.383772 - -0.917284, 0.000000, -0.000000, -0.398234 - -0.910913, 0.000000, -0.000000, -0.412598 - -0.904318, 0.000000, -0.000000, -0.426860 - -0.897499, 0.000000, -0.000000, -0.441016 - -0.890459, 0.000000, -0.000000, -0.455064 - -0.883199, 0.000000, -0.000000, -0.468999 - -0.875721, 0.000000, -0.000000, -0.482818 - -0.868026, 0.000000, -0.000000, -0.496518 - -0.860117, 0.000000, -0.000000, -0.510096 - -0.851996, 0.000000, -0.000000, -0.523548 - -0.843665, 0.000000, -0.000000, -0.536870 - -0.835125, 0.000000, -0.000000, -0.550060 - -0.826379, 0.000000, -0.000000, -0.563114 - -0.817429, 0.000000, -0.000000, -0.576029 - -0.808277, 0.000000, -0.000000, -0.588802 - -0.798926, 0.000000, -0.000000, -0.601429 - -0.789377, 0.000000, -0.000000, -0.613908 - -0.779634, 0.000000, -0.000000, -0.626235 - -0.769698, 0.000000, -0.000000, -0.638408 - -0.759572, 0.000000, -0.000000, -0.650423 - -0.749258, 0.000000, -0.000000, -0.662278 - -0.738760, 0.000000, -0.000000, -0.673969 - -0.728079, 0.000000, -0.000000, -0.685493 - -0.717218, 0.000000, -0.000000, -0.696849 - -0.706180, 0.000000, -0.000000, -0.708032 - -0.694968, 0.000000, -0.000000, -0.719041 - -0.683584, 0.000000, -0.000000, -0.729872 - -0.672032, 0.000000, -0.000000, -0.740522 - -0.660313, 0.000000, -0.000000, -0.750990 - -0.648432, 0.000000, -0.000000, -0.761273 - -0.636390, 0.000000, -0.000000, -0.771367 - -0.624192, 0.000000, -0.000000, -0.781271 - -0.611839, 0.000000, -0.000000, -0.790983 - -0.599335, 0.000000, -0.000000, -0.800498 - -0.586683, 0.000000, -0.000000, -0.809817 - -0.573886, 0.000000, -0.000000, -0.818935 - -0.560948, 0.000000, -0.000000, -0.827851 - -0.547871, 0.000000, -0.000000, -0.836563 - -0.534659, 0.000000, -0.000000, -0.845068 - -0.521315, 0.000000, -0.000000, -0.853365 - -0.507842, 0.000000, -0.000000, -0.861450 - -0.494243, 0.000000, -0.000000, -0.869324 - -0.480523, 0.000000, -0.000000, -0.876982 - -0.466684, 0.000000, -0.000000, -0.884424 - -0.452730, 0.000000, -0.000000, -0.891648 - -0.438664, 0.000000, -0.000000, -0.898651 - -0.424490, 0.000000, -0.000000, -0.905433 - -0.410211, 0.000000, -0.000000, -0.911991 - -0.395830, 0.000000, -0.000000, -0.918324 - -0.381352, 0.000000, -0.000000, -0.924430 - -0.366780, 0.000000, -0.000000, -0.930308 - -0.352117, 0.000000, -0.000000, -0.935956 - -0.337368, 0.000000, -0.000000, -0.941373 - -0.322535, 0.000000, -0.000000, -0.946558 - -0.307622, 0.000000, -0.000000, -0.951509 - -0.292633, 0.000000, -0.000000, -0.956225 - -0.277572, 0.000000, -0.000000, -0.960705 - -0.262443, 0.000000, -0.000000, -0.964947 - -0.247249, 0.000000, -0.000000, -0.968952 - -0.231994, 0.000000, -0.000000, -0.972717 - -0.216681, 0.000000, -0.000000, -0.976242 - -0.201315, 0.000000, -0.000000, -0.979527 - -0.185899, 0.000000, -0.000000, -0.982569 - -0.170438, 0.000000, -0.000000, -0.985368 - -0.154934, 0.000000, -0.000000, -0.987925 - -0.139392, 0.000000, -0.000000, -0.990237 - -0.123816, 0.000000, -0.000000, -0.992305 - -0.108209, 0.000000, -0.000000, -0.994128 - -0.092575, 0.000000, -0.000000, -0.995706 - -0.076919, 0.000000, -0.000000, -0.997037 - -0.061243, 0.000000, -0.000000, -0.998123 - -0.045553, 0.000000, -0.000000, -0.998962 - -0.029851, 0.000000, -0.000000, -0.999554 - -0.014141, 0.000000, -0.000000, -0.999900 - 0.001571, 0.000000, 0.000000, -0.999999 - 0.017284, 0.000000, 0.000000, -0.999851 - 0.032992, 0.000000, 0.000000, -0.999456 - 0.048692, 0.000000, 0.000000, -0.998814 - 0.064380, 0.000000, 0.000000, -0.997925 - 0.080052, 0.000000, 0.000000, -0.996791 - 0.095704, 0.000000, 0.000000, -0.995410 - 0.111332, 0.000000, 0.000000, -0.993783 - 0.126934, 0.000000, 0.000000, -0.991911 - 0.142503, 0.000000, 0.000000, -0.989794 - 0.158038, 0.000000, 0.000000, -0.987433 - 0.173534, 0.000000, 0.000000, -0.984828 - 0.188986, 0.000000, 0.000000, -0.981980 - 0.204392, 0.000000, 0.000000, -0.978889 - 0.219748, 0.000000, 0.000000, -0.975557 - 0.235049, 0.000000, 0.000000, -0.971983 - 0.250293, 0.000000, 0.000000, -0.968170 - 0.265474, 0.000000, 0.000000, -0.964118 - 0.280590, 0.000000, 0.000000, -0.959828 - 0.295637, 0.000000, 0.000000, -0.955300 - 0.310611, 0.000000, 0.000000, -0.950537 - 0.325508, 0.000000, 0.000000, -0.945539 - 0.340324, 0.000000, 0.000000, -0.940308 - 0.355057, 0.000000, 0.000000, -0.934845 - 0.369702, 0.000000, 0.000000, -0.929150 - 0.384256, 0.000000, 0.000000, -0.923227 - 0.398714, 0.000000, 0.000000, -0.917075 - 0.413075, 0.000000, 0.000000, -0.910697 - 0.427333, 0.000000, 0.000000, -0.904094 - 0.441486, 0.000000, 0.000000, -0.897268 - 0.455530, 0.000000, 0.000000, -0.890220 - 0.469461, 0.000000, 0.000000, -0.882953 - 0.483277, 0.000000, 0.000000, -0.875468 - 0.496973, 0.000000, 0.000000, -0.867766 - 0.510546, 0.000000, 0.000000, -0.859850 - 0.523994, 0.000000, 0.000000, -0.851722 - 0.537312, 0.000000, 0.000000, -0.843384 - 0.550497, 0.000000, 0.000000, -0.834837 - 0.563547, 0.000000, 0.000000, -0.826084 - 0.576457, 0.000000, 0.000000, -0.817127 - 0.589225, 0.000000, 0.000000, -0.807969 - 0.601848, 0.000000, 0.000000, -0.798611 - 0.614321, 0.000000, 0.000000, -0.789056 - 0.626644, 0.000000, 0.000000, -0.779306 - 0.638811, 0.000000, 0.000000, -0.769363 - 0.650821, 0.000000, 0.000000, -0.759231 - 0.662670, 0.000000, 0.000000, -0.748911 - 0.674356, 0.000000, 0.000000, -0.738407 - 0.685875, 0.000000, 0.000000, -0.727720 - 0.697224, 0.000000, 0.000000, -0.716853 - 0.708402, 0.000000, 0.000000, -0.705809 - 0.719404, 0.000000, 0.000000, -0.694591 - 0.730229, 0.000000, 0.000000, -0.683202 - 0.740874, 0.000000, 0.000000, -0.671644 - 0.751336, 0.000000, 0.000000, -0.659920 - 0.761612, 0.000000, 0.000000, -0.648033 - 0.771700, 0.000000, 0.000000, -0.635986 - 0.781598, 0.000000, 0.000000, -0.623782 - 0.791303, 0.000000, 0.000000, -0.611424 - 0.800812, 0.000000, 0.000000, -0.598915 - 0.810124, 0.000000, 0.000000, -0.586259 - 0.819235, 0.000000, 0.000000, -0.573457 - 0.828145, 0.000000, 0.000000, -0.560514 - 0.836850, 0.000000, 0.000000, -0.547433 - 0.845348, 0.000000, 0.000000, -0.534216 - 0.853638, 0.000000, 0.000000, -0.520868 - 0.861716, 0.000000, 0.000000, -0.507390 - 0.869582, 0.000000, 0.000000, -0.493788 - 0.877234, 0.000000, 0.000000, -0.480064 - 0.884668, 0.000000, 0.000000, -0.466221 - 0.891885, 0.000000, 0.000000, -0.452263 - 0.898881, 0.000000, 0.000000, -0.438193 - 0.905655, 0.000000, 0.000000, -0.424015 - 0.912206, 0.000000, 0.000000, -0.409733 - 0.918531, 0.000000, 0.000000, -0.395349 - 0.924629, 0.000000, 0.000000, -0.380868 - 0.930500, 0.000000, 0.000000, -0.366293 - 0.936140, 0.000000, 0.000000, -0.351627 - 0.941550, 0.000000, 0.000000, -0.336874 - 0.946727, 0.000000, 0.000000, -0.322039 - 0.951670, 0.000000, 0.000000, -0.307123 - 0.956378, 0.000000, 0.000000, -0.292132 - 0.960850, 0.000000, 0.000000, -0.277069 - 0.965085, 0.000000, 0.000000, -0.261938 - 0.969081, 0.000000, 0.000000, -0.246741 - 0.972839, 0.000000, 0.000000, -0.231484 - 0.976356, 0.000000, 0.000000, -0.216170 - 0.979632, 0.000000, 0.000000, -0.200802 - 0.982666, 0.000000, 0.000000, -0.185385 - 0.985458, 0.000000, 0.000000, -0.169922 - 0.988006, 0.000000, 0.000000, -0.154417 - 0.990310, 0.000000, 0.000000, -0.138873 - 0.992370, 0.000000, 0.000000, -0.123296 - 0.994185, 0.000000, 0.000000, -0.107688 - 0.995754, 0.000000, 0.000000, -0.092054 - 0.997078, 0.000000, 0.000000, -0.076396 - 0.998155, 0.000000, 0.000000, -0.060720 - 0.998986, 0.000000, 0.000000, -0.045029 - 0.999570, 0.000000, 0.000000, -0.029327 - 0.999907, 0.000000, 0.000000, -0.013618 - 0.999998, 0.000000, 0.000000, 0.002095 - 0.999841, 0.000000, 0.000000, 0.017807 - 0.999438, 0.000000, 0.000000, 0.033515 - 0.998788, 0.000000, 0.000000, 0.049215 - 0.997892, 0.000000, 0.000000, 0.064902 - 0.996749, 0.000000, 0.000000, 0.080574 - 0.995360, 0.000000, 0.000000, 0.096225 - 0.993725, 0.000000, 0.000000, 0.111853 - 0.991845, 0.000000, 0.000000, 0.127453 - 0.989720, 0.000000, 0.000000, 0.143022 - 0.987350, 0.000000, 0.000000, 0.158555 - 0.984737, 0.000000, 0.000000, 0.174049 - 0.981881, 0.000000, 0.000000, 0.189501 - 0.978782, 0.000000, 0.000000, 0.204905 - 0.975441, 0.000000, 0.000000, 0.220259 - 0.971860, 0.000000, 0.000000, 0.235558 - 0.968039, 0.000000, 0.000000, 0.250800 - 0.963979, 0.000000, 0.000000, 0.265979 - 0.959681, 0.000000, 0.000000, 0.281093 - 0.955145, 0.000000, 0.000000, 0.296137 - 0.950374, 0.000000, 0.000000, 0.311108 - 0.945369, 0.000000, 0.000000, 0.326003 - 0.940130, 0.000000, 0.000000, 0.340817 - 0.934659, 0.000000, 0.000000, 0.355547 - 0.928957, 0.000000, 0.000000, 0.370188 - 0.923025, 0.000000, 0.000000, 0.384739 - 0.916866, 0.000000, 0.000000, 0.399195 - 0.910481, 0.000000, 0.000000, 0.413552 - 0.903870, 0.000000, 0.000000, 0.427807 - 0.897037, 0.000000, 0.000000, 0.441956 - 0.889982, 0.000000, 0.000000, 0.455996 - 0.882707, 0.000000, 0.000000, 0.469924 - 0.875214, 0.000000, 0.000000, 0.483735 - 0.867506, 0.000000, 0.000000, 0.497427 - 0.859583, 0.000000, 0.000000, 0.510997 - 0.851447, 0.000000, 0.000000, 0.524440 - 0.843102, 0.000000, 0.000000, 0.537754 - 0.834549, 0.000000, 0.000000, 0.550934 - 0.825789, 0.000000, 0.000000, 0.563979 - 0.816825, 0.000000, 0.000000, 0.576885 - 0.807660, 0.000000, 0.000000, 0.589648 - 0.798296, 0.000000, 0.000000, 0.602266 - 0.788734, 0.000000, 0.000000, 0.614735 - 0.778978, 0.000000, 0.000000, 0.627052 - 0.769029, 0.000000, 0.000000, 0.639214 - 0.758890, 0.000000, 0.000000, 0.651219 - 0.748564, 0.000000, 0.000000, 0.663062 - 0.738053, 0.000000, 0.000000, 0.674742 - 0.727360, 0.000000, 0.000000, 0.686256 - 0.716488, 0.000000, 0.000000, 0.697600 - 0.705438, 0.000000, 0.000000, 0.708771 - 0.694214, 0.000000, 0.000000, 0.719768 - 0.682819, 0.000000, 0.000000, 0.730587 - 0.671256, 0.000000, 0.000000, 0.741226 - 0.659526, 0.000000, 0.000000, 0.751682 - 0.647634, 0.000000, 0.000000, 0.761952 - 0.635582, 0.000000, 0.000000, 0.772033 - 0.623373, 0.000000, 0.000000, 0.781925 - 0.611010, 0.000000, 0.000000, 0.791623 - 0.598496, 0.000000, 0.000000, 0.801126 - 0.585834, 0.000000, 0.000000, 0.810431 - 0.573028, 0.000000, 0.000000, 0.819536 - 0.560080, 0.000000, 0.000000, 0.828438 - 0.546994, 0.000000, 0.000000, 0.837136 - 0.533773, 0.000000, 0.000000, 0.845628 - 0.520420, 0.000000, 0.000000, 0.853910 - 0.506939, 0.000000, 0.000000, 0.861982 - 0.493332, 0.000000, 0.000000, 0.869841 - 0.479604, 0.000000, 0.000000, 0.877485 - 0.465757, 0.000000, 0.000000, 0.884912 - 0.451796, 0.000000, 0.000000, 0.892121 - 0.437722, 0.000000, 0.000000, 0.899110 - 0.423541, 0.000000, 0.000000, 0.905877 - 0.409255, 0.000000, 0.000000, 0.912420 - 0.394868, 0.000000, 0.000000, 0.918738 - 0.380384, 0.000000, 0.000000, 0.924829 - 0.365805, 0.000000, 0.000000, 0.930691 - 0.351137, 0.000000, 0.000000, 0.936324 - 0.336381, 0.000000, 0.000000, 0.941726 - 0.321543, 0.000000, 0.000000, 0.946895 - 0.306625, 0.000000, 0.000000, 0.951830 - 0.291631, 0.000000, 0.000000, 0.956531 - 0.276566, 0.000000, 0.000000, 0.960995 - 0.261432, 0.000000, 0.000000, 0.965222 - 0.246234, 0.000000, 0.000000, 0.969210 - 0.230975, 0.000000, 0.000000, 0.972960 - 0.215658, 0.000000, 0.000000, 0.976469 - 0.200289, 0.000000, 0.000000, 0.979737 - 0.184870, 0.000000, 0.000000, 0.982763 - 0.169405, 0.000000, 0.000000, 0.985546 - 0.153899, 0.000000, 0.000000, 0.988087 - 0.138355, 0.000000, 0.000000, 0.990383 - 0.122776, 0.000000, 0.000000, 0.992434 - 0.107167, 0.000000, 0.000000, 0.994241 - 0.091532, 0.000000, 0.000000, 0.995802 - 0.075874, 0.000000, 0.000000, 0.997117 - 0.060198, 0.000000, 0.000000, 0.998186 - 0.044506, 0.000000, 0.000000, 0.999009 - 0.028804, 0.000000, 0.000000, 0.999585 - 0.013094, 0.000000, 0.000000, 0.999914 - -0.002619, -0.000000, 0.000000, 0.999997 - -0.018331, -0.000000, 0.000000, 0.999832 - -0.034039, -0.000000, 0.000000, 0.999421 - -0.049738, -0.000000, 0.000000, 0.998762 - -0.065425, -0.000000, 0.000000, 0.997857 - -0.081096, -0.000000, 0.000000, 0.996706 - -0.096747, -0.000000, 0.000000, 0.995309 - -0.112373, -0.000000, 0.000000, 0.993666 - -0.127973, -0.000000, 0.000000, 0.991778 - -0.143540, -0.000000, 0.000000, 0.989644 - -0.159072, -0.000000, 0.000000, 0.987267 - -0.174565, -0.000000, 0.000000, 0.984646 - -0.190015, -0.000000, 0.000000, 0.981781 - -0.205418, -0.000000, 0.000000, 0.978674 - -0.220770, -0.000000, 0.000000, 0.975326 - -0.236067, -0.000000, 0.000000, 0.971737 - -0.251307, -0.000000, 0.000000, 0.967907 - -0.266484, -0.000000, 0.000000, 0.963839 - -0.281595, -0.000000, 0.000000, 0.959533 - -0.296637, -0.000000, 0.000000, 0.954990 - -0.311606, -0.000000, 0.000000, 0.950211 - -0.326498, -0.000000, 0.000000, 0.945198 - -0.341309, -0.000000, 0.000000, 0.939951 - -0.356036, -0.000000, 0.000000, 0.934472 - -0.370675, -0.000000, 0.000000, 0.928763 - -0.385222, -0.000000, 0.000000, 0.922824 - -0.399675, -0.000000, 0.000000, 0.916657 - -0.414029, -0.000000, 0.000000, 0.910264 - -0.428280, -0.000000, 0.000000, 0.903646 - -0.442426, -0.000000, 0.000000, 0.896805 - -0.456462, -0.000000, 0.000000, 0.889743 - -0.470386, -0.000000, 0.000000, 0.882461 - -0.484194, -0.000000, 0.000000, 0.874961 - -0.497882, -0.000000, 0.000000, 0.867245 - -0.511447, -0.000000, 0.000000, 0.859315 - -0.524886, -0.000000, 0.000000, 0.851173 - -0.538195, -0.000000, 0.000000, 0.842820 - -0.551371, -0.000000, 0.000000, 0.834260 - -0.564412, -0.000000, 0.000000, 0.825493 - -0.577313, -0.000000, 0.000000, 0.816523 - -0.590071, -0.000000, 0.000000, 0.807351 - -0.602684, -0.000000, 0.000000, 0.797980 - -0.615148, -0.000000, 0.000000, 0.788412 - -0.627460, -0.000000, 0.000000, 0.778649 - -0.639617, -0.000000, 0.000000, 0.768694 - -0.651616, -0.000000, 0.000000, 0.758549 - -0.663454, -0.000000, 0.000000, 0.748217 - -0.675129, -0.000000, 0.000000, 0.737700 - -0.686637, -0.000000, 0.000000, 0.727001 - -0.697975, -0.000000, 0.000000, 0.716122 - -0.709141, -0.000000, 0.000000, 0.705067 - -0.720132, -0.000000, 0.000000, 0.693837 - -0.730945, -0.000000, 0.000000, 0.682437 - -0.741577, -0.000000, 0.000000, 0.670867 - -0.752027, -0.000000, 0.000000, 0.659132 - -0.762291, -0.000000, 0.000000, 0.647235 - -0.772366, -0.000000, 0.000000, 0.635177 - -0.782251, -0.000000, 0.000000, 0.622963 - -0.791943, -0.000000, 0.000000, 0.610595 - -0.801439, -0.000000, 0.000000, 0.598076 - -0.810738, -0.000000, 0.000000, 0.585410 - -0.819836, -0.000000, 0.000000, 0.572599 - -0.828732, -0.000000, 0.000000, 0.559646 - -0.837423, -0.000000, 0.000000, 0.546556 - -0.845907, -0.000000, 0.000000, 0.533330 - -0.854183, -0.000000, 0.000000, 0.519973 - -0.862247, -0.000000, 0.000000, 0.506487 - -0.870099, -0.000000, 0.000000, 0.492877 - -0.877736, -0.000000, 0.000000, 0.479145 - -0.885156, -0.000000, 0.000000, 0.465294 - -0.892358, -0.000000, 0.000000, 0.451328 - -0.899339, -0.000000, 0.000000, 0.437251 - -0.906099, -0.000000, 0.000000, 0.423067 - -0.912634, -0.000000, 0.000000, 0.408777 - -0.918944, -0.000000, 0.000000, 0.394387 - -0.925028, -0.000000, 0.000000, 0.379899 - -0.930883, -0.000000, 0.000000, 0.365318 - -0.936508, -0.000000, 0.000000, 0.350646 - -0.941902, -0.000000, 0.000000, 0.335888 - -0.947063, -0.000000, 0.000000, 0.321047 - -0.951991, -0.000000, 0.000000, 0.306126 - -0.956683, -0.000000, 0.000000, 0.291130 - -0.961140, -0.000000, 0.000000, 0.276062 - -0.965359, -0.000000, 0.000000, 0.260926 - -0.969339, -0.000000, 0.000000, 0.245726 - -0.973081, -0.000000, 0.000000, 0.230465 - -0.976582, -0.000000, 0.000000, 0.215147 - -0.979842, -0.000000, 0.000000, 0.199776 - -0.982860, -0.000000, 0.000000, 0.184355 - -0.985635, -0.000000, 0.000000, 0.168889 - -0.988167, -0.000000, 0.000000, 0.153382 - -0.990455, -0.000000, 0.000000, 0.137836 - -0.992499, -0.000000, 0.000000, 0.122256 - -0.994297, -0.000000, 0.000000, 0.106647 - -0.995850, -0.000000, 0.000000, 0.091010 - -0.997157, -0.000000, 0.000000, 0.075352 - -0.998218, -0.000000, 0.000000, 0.059675 - -0.999032, -0.000000, 0.000000, 0.043983 - -0.999600, -0.000000, 0.000000, 0.028280 - -0.999921, -0.000000, 0.000000, 0.012570 - -0.999995, 0.000000, -0.000000, -0.003143 - -0.999822, 0.000000, -0.000000, -0.018855 - -0.999403, 0.000000, -0.000000, -0.034562 - -0.998736, 0.000000, -0.000000, -0.050261 - -0.997823, 0.000000, -0.000000, -0.065948 - -0.996664, 0.000000, -0.000000, -0.081618 - -0.995258, 0.000000, -0.000000, -0.097268 - -0.993607, 0.000000, -0.000000, -0.112894 - -0.991711, 0.000000, -0.000000, -0.128492 - -0.989569, 0.000000, -0.000000, -0.144058 - -0.987183, 0.000000, -0.000000, -0.159589 - -0.984554, 0.000000, -0.000000, -0.175081 - -0.981682, 0.000000, -0.000000, -0.190529 - -0.978567, 0.000000, -0.000000, -0.205930 - -0.975210, 0.000000, -0.000000, -0.221281 - -0.971613, 0.000000, -0.000000, -0.236576 - -0.967776, 0.000000, -0.000000, -0.251814 - -0.963700, 0.000000, -0.000000, -0.266989 - -0.959386, 0.000000, -0.000000, -0.282098 - -0.954835, 0.000000, -0.000000, -0.297138 - -0.950048, 0.000000, -0.000000, -0.312104 - -0.945027, 0.000000, -0.000000, -0.326993 - -0.939772, 0.000000, -0.000000, -0.341801 - -0.934286, 0.000000, -0.000000, -0.356525 - -0.928568, 0.000000, -0.000000, -0.371161 - -0.922622, 0.000000, -0.000000, -0.385706 - -0.916448, 0.000000, -0.000000, -0.400155 - -0.910047, 0.000000, -0.000000, -0.414505 - -0.903422, 0.000000, -0.000000, -0.428753 - -0.896573, 0.000000, -0.000000, -0.442895 - -0.889504, 0.000000, -0.000000, -0.456928 - -0.882214, 0.000000, -0.000000, -0.470848 - -0.874707, 0.000000, -0.000000, -0.484652 - -0.866984, 0.000000, -0.000000, -0.498336 - -0.859047, 0.000000, -0.000000, -0.511897 - -0.850898, 0.000000, -0.000000, -0.525332 - -0.842538, 0.000000, -0.000000, -0.538636 - -0.833971, 0.000000, -0.000000, -0.551808 - -0.825198, 0.000000, -0.000000, -0.564844 - -0.816221, 0.000000, -0.000000, -0.577740 - -0.807042, 0.000000, -0.000000, -0.590494 - -0.797664, 0.000000, -0.000000, -0.603102 - -0.788090, 0.000000, -0.000000, -0.615561 - -0.778320, 0.000000, -0.000000, -0.627867 - -0.768359, 0.000000, -0.000000, -0.640019 - -0.758208, 0.000000, -0.000000, -0.652013 - -0.747869, 0.000000, -0.000000, -0.663846 - -0.737346, 0.000000, -0.000000, -0.675515 - -0.726641, 0.000000, -0.000000, -0.687017 - -0.715757, 0.000000, -0.000000, -0.698350 - -0.704695, 0.000000, -0.000000, -0.709510 - -0.693460, 0.000000, -0.000000, -0.720495 - -0.682054, 0.000000, -0.000000, -0.731302 - -0.670479, 0.000000, -0.000000, -0.741929 - -0.658739, 0.000000, -0.000000, -0.752372 - -0.646835, 0.000000, -0.000000, -0.762630 - -0.634773, 0.000000, -0.000000, -0.772699 - -0.622553, 0.000000, -0.000000, -0.782577 - -0.610180, 0.000000, -0.000000, -0.792263 - -0.597656, 0.000000, -0.000000, -0.801752 - -0.584985, 0.000000, -0.000000, -0.811044 - -0.572169, 0.000000, -0.000000, -0.820136 - -0.559212, 0.000000, -0.000000, -0.829025 - -0.546117, 0.000000, -0.000000, -0.837709 - -0.532887, 0.000000, -0.000000, -0.846186 - -0.519526, 0.000000, -0.000000, -0.854455 - -0.506036, 0.000000, -0.000000, -0.862512 - -0.492421, 0.000000, -0.000000, -0.870357 - -0.478685, 0.000000, -0.000000, -0.877987 - -0.464830, 0.000000, -0.000000, -0.885400 - -0.450861, 0.000000, -0.000000, -0.892594 - -0.436780, 0.000000, -0.000000, -0.899568 - -0.422592, 0.000000, -0.000000, -0.906320 - -0.408299, 0.000000, -0.000000, -0.912848 - -0.393906, 0.000000, -0.000000, -0.919151 - -0.379415, 0.000000, -0.000000, -0.925227 - -0.364830, 0.000000, -0.000000, -0.931074 - -0.350156, 0.000000, -0.000000, -0.936692 - -0.335395, 0.000000, -0.000000, -0.942078 - -0.320551, 0.000000, -0.000000, -0.947231 - -0.305628, 0.000000, -0.000000, -0.952151 - -0.290629, 0.000000, -0.000000, -0.956836 - -0.275559, 0.000000, -0.000000, -0.961284 - -0.260421, 0.000000, -0.000000, -0.965495 - -0.245218, 0.000000, -0.000000, -0.969468 - -0.229955, 0.000000, -0.000000, -0.973201 - -0.214635, 0.000000, -0.000000, -0.976694 - -0.199262, 0.000000, -0.000000, -0.979946 - -0.183840, 0.000000, -0.000000, -0.982956 - -0.168373, 0.000000, -0.000000, -0.985723 - -0.152864, 0.000000, -0.000000, -0.988247 - -0.137317, 0.000000, -0.000000, -0.990527 - -0.121736, 0.000000, -0.000000, -0.992562 - -0.106126, 0.000000, -0.000000, -0.994353 - -0.090489, 0.000000, -0.000000, -0.995897 - -0.074830, 0.000000, -0.000000, -0.997196 - -0.059152, 0.000000, -0.000000, -0.998249 - -0.043459, 0.000000, -0.000000, -0.999055 - -0.027756, 0.000000, -0.000000, -0.999615 - -0.012046, 0.000000, -0.000000, -0.999927 - 0.003666, 0.000000, 0.000000, -0.999993 - 0.019378, 0.000000, 0.000000, -0.999812 - 0.035086, 0.000000, 0.000000, -0.999384 - 0.050784, 0.000000, 0.000000, -0.998710 - 0.066470, 0.000000, 0.000000, -0.997788 - 0.082140, 0.000000, 0.000000, -0.996621 - 0.097789, 0.000000, 0.000000, -0.995207 - 0.113414, 0.000000, 0.000000, -0.993548 - 0.129011, 0.000000, 0.000000, -0.991643 - 0.144577, 0.000000, 0.000000, -0.989494 - 0.160106, 0.000000, 0.000000, -0.987100 - 0.175596, 0.000000, 0.000000, -0.984462 - 0.191043, 0.000000, 0.000000, -0.981582 - 0.206443, 0.000000, 0.000000, -0.978459 - 0.221791, 0.000000, 0.000000, -0.975094 - 0.237085, 0.000000, 0.000000, -0.971489 - 0.252321, 0.000000, 0.000000, -0.967644 - 0.267494, 0.000000, 0.000000, -0.963560 - 0.282600, 0.000000, 0.000000, -0.959238 - 0.297638, 0.000000, 0.000000, -0.954679 - 0.312601, 0.000000, 0.000000, -0.949884 - 0.327488, 0.000000, 0.000000, -0.944855 - 0.342294, 0.000000, 0.000000, -0.939593 - 0.357015, 0.000000, 0.000000, -0.934099 - 0.371648, 0.000000, 0.000000, -0.928374 - 0.386189, 0.000000, 0.000000, -0.922420 - 0.400635, 0.000000, 0.000000, -0.916238 - 0.414982, 0.000000, 0.000000, -0.909830 - 0.429226, 0.000000, 0.000000, -0.903197 - 0.443365, 0.000000, 0.000000, -0.896341 - 0.457394, 0.000000, 0.000000, -0.889264 - 0.471310, 0.000000, 0.000000, -0.881968 - 0.485110, 0.000000, 0.000000, -0.874453 - 0.498790, 0.000000, 0.000000, -0.866723 - 0.512347, 0.000000, 0.000000, -0.858779 - 0.525777, 0.000000, 0.000000, -0.850622 - 0.539078, 0.000000, 0.000000, -0.842256 - 0.552245, 0.000000, 0.000000, -0.833682 - 0.565276, 0.000000, 0.000000, -0.824902 - 0.578168, 0.000000, 0.000000, -0.815918 - 0.590917, 0.000000, 0.000000, -0.806733 - 0.603519, 0.000000, 0.000000, -0.797348 - 0.615973, 0.000000, 0.000000, -0.787767 - 0.628275, 0.000000, 0.000000, -0.777991 - 0.640422, 0.000000, 0.000000, -0.768023 - 0.652410, 0.000000, 0.000000, -0.757866 - 0.664238, 0.000000, 0.000000, -0.747521 - 0.675901, 0.000000, 0.000000, -0.736992 - 0.687398, 0.000000, 0.000000, -0.726281 - 0.698725, 0.000000, 0.000000, -0.715391 - 0.709879, 0.000000, 0.000000, -0.704324 - 0.720858, 0.000000, 0.000000, -0.693083 - 0.731659, 0.000000, 0.000000, -0.681671 - 0.742280, 0.000000, 0.000000, -0.670090 - 0.752717, 0.000000, 0.000000, -0.658344 - 0.762968, 0.000000, 0.000000, -0.646436 - 0.773031, 0.000000, 0.000000, -0.634368 - 0.782903, 0.000000, 0.000000, -0.622143 - 0.792582, 0.000000, 0.000000, -0.609765 - 0.802065, 0.000000, 0.000000, -0.597236 - 0.811350, 0.000000, 0.000000, -0.584560 - 0.820435, 0.000000, 0.000000, -0.571740 - 0.829317, 0.000000, 0.000000, -0.558778 - 0.837995, 0.000000, 0.000000, -0.545678 - 0.846465, 0.000000, 0.000000, -0.532444 - 0.854727, 0.000000, 0.000000, -0.519078 - 0.862777, 0.000000, 0.000000, -0.505584 - 0.870615, 0.000000, 0.000000, -0.491965 - 0.878237, 0.000000, 0.000000, -0.478225 - 0.885643, 0.000000, 0.000000, -0.464366 - 0.892830, 0.000000, 0.000000, -0.450393 - 0.899797, 0.000000, 0.000000, -0.436309 - 0.906541, 0.000000, 0.000000, -0.422117 - 0.913062, 0.000000, 0.000000, -0.407821 - 0.919357, 0.000000, 0.000000, -0.393424 - 0.925425, 0.000000, 0.000000, -0.378930 - 0.931265, 0.000000, 0.000000, -0.364342 - 0.936875, 0.000000, 0.000000, -0.349665 - 0.942253, 0.000000, 0.000000, -0.334901 - 0.947399, 0.000000, 0.000000, -0.320055 - 0.952311, 0.000000, 0.000000, -0.305129 - 0.956988, 0.000000, 0.000000, -0.290128 - 0.961428, 0.000000, 0.000000, -0.275056 - 0.965631, 0.000000, 0.000000, -0.259915 - 0.969596, 0.000000, 0.000000, -0.244710 - 0.973322, 0.000000, 0.000000, -0.229445 - 0.976807, 0.000000, 0.000000, -0.214124 - 0.980050, 0.000000, 0.000000, -0.198749 - 0.983052, 0.000000, 0.000000, -0.183326 - 0.985811, 0.000000, 0.000000, -0.167857 - 0.988327, 0.000000, 0.000000, -0.152346 - 0.990599, 0.000000, 0.000000, -0.136798 - 0.992626, 0.000000, 0.000000, -0.121217 - 0.994408, 0.000000, 0.000000, -0.105605 - 0.995945, 0.000000, 0.000000, -0.089967 - 0.997235, 0.000000, 0.000000, -0.074307 - 0.998280, 0.000000, 0.000000, -0.058629 - 0.999078, 0.000000, 0.000000, -0.042936 - 0.999629, 0.000000, 0.000000, -0.027233 - 0.999934, 0.000000, 0.000000, -0.011523 - 0.999991, 0.000000, 0.000000, 0.004190 - 0.999802, 0.000000, 0.000000, 0.019902 - 0.999366, 0.000000, 0.000000, 0.035609 - 0.998683, 0.000000, 0.000000, 0.051307 - 0.997753, 0.000000, 0.000000, 0.066993 - 0.996578, 0.000000, 0.000000, 0.082662 - 0.995156, 0.000000, 0.000000, 0.098310 - 0.993488, 0.000000, 0.000000, 0.113935 - 0.991575, 0.000000, 0.000000, 0.129531 - 0.989418, 0.000000, 0.000000, 0.145095 - 0.987016, 0.000000, 0.000000, 0.160623 - 0.984370, 0.000000, 0.000000, 0.176112 - 0.981481, 0.000000, 0.000000, 0.191557 - 0.978350, 0.000000, 0.000000, 0.206955 - 0.974978, 0.000000, 0.000000, 0.222302 - 0.971365, 0.000000, 0.000000, 0.237594 - 0.967511, 0.000000, 0.000000, 0.252827 - 0.963419, 0.000000, 0.000000, 0.267998 - 0.959090, 0.000000, 0.000000, 0.283103 - 0.954523, 0.000000, 0.000000, 0.298138 - 0.949721, 0.000000, 0.000000, 0.313099 - 0.944684, 0.000000, 0.000000, 0.327983 - 0.939414, 0.000000, 0.000000, 0.342786 - 0.933912, 0.000000, 0.000000, 0.357504 - 0.928179, 0.000000, 0.000000, 0.372134 - 0.922217, 0.000000, 0.000000, 0.386672 - 0.916028, 0.000000, 0.000000, 0.401115 - 0.909612, 0.000000, 0.000000, 0.415458 - 0.902972, 0.000000, 0.000000, 0.429699 - 0.896109, 0.000000, 0.000000, 0.443834 - 0.889024, 0.000000, 0.000000, 0.457860 - 0.881721, 0.000000, 0.000000, 0.471772 - 0.874199, 0.000000, 0.000000, 0.485568 - 0.866462, 0.000000, 0.000000, 0.499244 - 0.858510, 0.000000, 0.000000, 0.512797 - 0.850347, 0.000000, 0.000000, 0.526223 - 0.841974, 0.000000, 0.000000, 0.539519 - 0.833392, 0.000000, 0.000000, 0.552682 - 0.824606, 0.000000, 0.000000, 0.565708 - 0.815615, 0.000000, 0.000000, 0.578595 - 0.806423, 0.000000, 0.000000, 0.591339 - 0.797032, 0.000000, 0.000000, 0.603937 - 0.787444, 0.000000, 0.000000, 0.616386 - 0.777662, 0.000000, 0.000000, 0.628682 - 0.767688, 0.000000, 0.000000, 0.640824 - 0.757524, 0.000000, 0.000000, 0.652807 - 0.747173, 0.000000, 0.000000, 0.664629 - 0.736638, 0.000000, 0.000000, 0.676287 - 0.725921, 0.000000, 0.000000, 0.687778 - 0.715025, 0.000000, 0.000000, 0.699099 - 0.703952, 0.000000, 0.000000, 0.710248 - 0.692705, 0.000000, 0.000000, 0.721221 - 0.681287, 0.000000, 0.000000, 0.732016 - 0.669701, 0.000000, 0.000000, 0.742631 - 0.657950, 0.000000, 0.000000, 0.753062 - 0.646036, 0.000000, 0.000000, 0.763307 - 0.633963, 0.000000, 0.000000, 0.773363 - 0.621733, 0.000000, 0.000000, 0.783229 - 0.609350, 0.000000, 0.000000, 0.792901 - 0.596816, 0.000000, 0.000000, 0.802378 - 0.584135, 0.000000, 0.000000, 0.811656 - 0.571310, 0.000000, 0.000000, 0.820734 - 0.558343, 0.000000, 0.000000, 0.829610 - 0.545239, 0.000000, 0.000000, 0.838280 - 0.532000, 0.000000, 0.000000, 0.846744 - 0.518630, 0.000000, 0.000000, 0.854999 - 0.505132, 0.000000, 0.000000, 0.863042 - 0.491509, 0.000000, 0.000000, 0.870872 - 0.477765, 0.000000, 0.000000, 0.878488 - 0.463902, 0.000000, 0.000000, 0.885886 - 0.449926, 0.000000, 0.000000, 0.893066 - 0.435838, 0.000000, 0.000000, 0.900025 - 0.421642, 0.000000, 0.000000, 0.906762 - 0.407343, 0.000000, 0.000000, 0.913275 - 0.392942, 0.000000, 0.000000, 0.919563 - 0.378445, 0.000000, 0.000000, 0.925624 - 0.363855, 0.000000, 0.000000, 0.931456 - 0.349174, 0.000000, 0.000000, 0.937058 - 0.334407, 0.000000, 0.000000, 0.942429 - 0.319558, 0.000000, 0.000000, 0.947567 - 0.304630, 0.000000, 0.000000, 0.952471 - 0.289627, 0.000000, 0.000000, 0.957140 - 0.274552, 0.000000, 0.000000, 0.961572 - 0.259409, 0.000000, 0.000000, 0.965767 - 0.244203, 0.000000, 0.000000, 0.969724 - 0.228936, 0.000000, 0.000000, 0.973442 - 0.213612, 0.000000, 0.000000, 0.976919 - 0.198236, 0.000000, 0.000000, 0.980154 - 0.182811, 0.000000, 0.000000, 0.983148 - 0.167340, 0.000000, 0.000000, 0.985899 - 0.151829, 0.000000, 0.000000, 0.988407 - 0.136279, 0.000000, 0.000000, 0.990670 - 0.120697, 0.000000, 0.000000, 0.992689 - 0.105084, 0.000000, 0.000000, 0.994463 - 0.089446, 0.000000, 0.000000, 0.995992 - 0.073785, 0.000000, 0.000000, 0.997274 - 0.058106, 0.000000, 0.000000, 0.998310 - 0.042413, 0.000000, 0.000000, 0.999100 - 0.026709, 0.000000, 0.000000, 0.999643 - 0.010999, 0.000000, 0.000000, 0.999940 - -0.004714, -0.000000, 0.000000, 0.999989 - -0.020426, -0.000000, 0.000000, 0.999791 - -0.036132, -0.000000, 0.000000, 0.999347 - -0.051830, -0.000000, 0.000000, 0.998656 - -0.067515, -0.000000, 0.000000, 0.997718 - -0.083184, -0.000000, 0.000000, 0.996534 - -0.098832, -0.000000, 0.000000, 0.995104 - -0.114455, -0.000000, 0.000000, 0.993428 - -0.130050, -0.000000, 0.000000, 0.991507 - -0.145613, -0.000000, 0.000000, 0.989342 - -0.161140, -0.000000, 0.000000, 0.986932 - -0.176628, -0.000000, 0.000000, 0.984278 - -0.192071, -0.000000, 0.000000, 0.981381 - -0.207468, -0.000000, 0.000000, 0.978242 - -0.222813, -0.000000, 0.000000, 0.974861 - -0.238103, -0.000000, 0.000000, 0.971240 - -0.253334, -0.000000, 0.000000, 0.967379 - -0.268503, -0.000000, 0.000000, 0.963279 - -0.283605, -0.000000, 0.000000, 0.958941 - -0.298638, -0.000000, 0.000000, 0.954367 - -0.313596, -0.000000, 0.000000, 0.949556 - -0.328478, -0.000000, 0.000000, 0.944512 - -0.343278, -0.000000, 0.000000, 0.939234 - -0.357993, -0.000000, 0.000000, 0.933724 - -0.372620, -0.000000, 0.000000, 0.927984 - -0.387155, -0.000000, 0.000000, 0.922015 - -0.401594, -0.000000, 0.000000, 0.915818 - -0.415935, -0.000000, 0.000000, 0.909394 - -0.430172, -0.000000, 0.000000, 0.902747 - -0.444304, -0.000000, 0.000000, 0.895876 - -0.458325, -0.000000, 0.000000, 0.888785 - -0.472234, -0.000000, 0.000000, 0.881473 - -0.486026, -0.000000, 0.000000, 0.873945 - -0.499698, -0.000000, 0.000000, 0.866200 - -0.513246, -0.000000, 0.000000, 0.858241 - -0.526668, -0.000000, 0.000000, 0.850071 - -0.539960, -0.000000, 0.000000, 0.841691 - -0.553118, -0.000000, 0.000000, 0.833103 - -0.566140, -0.000000, 0.000000, 0.824309 - -0.579022, -0.000000, 0.000000, 0.815312 - -0.591761, -0.000000, 0.000000, 0.806113 - -0.604354, -0.000000, 0.000000, 0.796716 - -0.616798, -0.000000, 0.000000, 0.787121 - -0.629090, -0.000000, 0.000000, 0.777333 - -0.641226, -0.000000, 0.000000, 0.767352 - -0.653204, -0.000000, 0.000000, 0.757182 - -0.665020, -0.000000, 0.000000, 0.746825 - -0.676673, -0.000000, 0.000000, 0.736284 - -0.688158, -0.000000, 0.000000, 0.725561 - -0.699474, -0.000000, 0.000000, 0.714658 - -0.710616, -0.000000, 0.000000, 0.703580 - -0.721584, -0.000000, 0.000000, 0.692327 - -0.732373, -0.000000, 0.000000, 0.680904 - -0.742981, -0.000000, 0.000000, 0.669312 - -0.753406, -0.000000, 0.000000, 0.657555 - -0.763645, -0.000000, 0.000000, 0.645636 - -0.773695, -0.000000, 0.000000, 0.633558 - -0.783555, -0.000000, 0.000000, 0.621323 - -0.793220, -0.000000, 0.000000, 0.608935 - -0.802690, -0.000000, 0.000000, 0.596396 - -0.811962, -0.000000, 0.000000, 0.583710 - -0.821034, -0.000000, 0.000000, 0.570880 - -0.829902, -0.000000, 0.000000, 0.557909 - -0.838566, -0.000000, 0.000000, 0.544800 - -0.847023, -0.000000, 0.000000, 0.531557 - -0.855270, -0.000000, 0.000000, 0.518182 - -0.863307, -0.000000, 0.000000, 0.504680 - -0.871130, -0.000000, 0.000000, 0.491053 - -0.878738, -0.000000, 0.000000, 0.477305 - -0.886129, -0.000000, 0.000000, 0.463438 - -0.893302, -0.000000, 0.000000, 0.449458 - -0.900253, -0.000000, 0.000000, 0.435366 - -0.906983, -0.000000, 0.000000, 0.421167 - -0.913489, -0.000000, 0.000000, 0.406864 - -0.919769, -0.000000, 0.000000, 0.392461 - -0.925822, -0.000000, 0.000000, 0.377960 - -0.931646, -0.000000, 0.000000, 0.363367 - -0.937241, -0.000000, 0.000000, 0.348683 - -0.942604, -0.000000, 0.000000, 0.333914 - -0.947734, -0.000000, 0.000000, 0.319062 - -0.952630, -0.000000, 0.000000, 0.304131 - -0.957291, -0.000000, 0.000000, 0.289125 - -0.961716, -0.000000, 0.000000, 0.274048 - -0.965903, -0.000000, 0.000000, 0.258903 - -0.969852, -0.000000, 0.000000, 0.243695 - -0.973561, -0.000000, 0.000000, 0.228426 - -0.977030, -0.000000, 0.000000, 0.213100 - -0.980258, -0.000000, 0.000000, 0.197722 - -0.983244, -0.000000, 0.000000, 0.182296 - -0.985987, -0.000000, 0.000000, 0.166824 - -0.988486, -0.000000, 0.000000, 0.151311 - -0.990742, -0.000000, 0.000000, 0.135761 - -0.992753, -0.000000, 0.000000, 0.120177 - -0.994518, -0.000000, 0.000000, 0.104563 - -0.996038, -0.000000, 0.000000, 0.088924 - -0.997313, -0.000000, 0.000000, 0.073263 - -0.998341, -0.000000, 0.000000, 0.057583 - -0.999122, -0.000000, 0.000000, 0.041890 - -0.999657, -0.000000, 0.000000, 0.026186 - -0.999945, -0.000000, 0.000000, 0.010475 - -0.999986, 0.000000, -0.000000, -0.005238 - -0.999781, 0.000000, -0.000000, -0.020949 - -0.999328, 0.000000, -0.000000, -0.036656 - -0.998629, 0.000000, -0.000000, -0.052353 - -0.997683, 0.000000, -0.000000, -0.068038 - -0.996491, 0.000000, -0.000000, -0.083706 - -0.995052, 0.000000, -0.000000, -0.099353 - -0.993368, 0.000000, -0.000000, -0.114975 - -0.991439, 0.000000, -0.000000, -0.130569 - -0.989265, 0.000000, -0.000000, -0.146131 - -0.986847, 0.000000, -0.000000, -0.161657 - -0.984185, 0.000000, -0.000000, -0.177143 - -0.981280, 0.000000, -0.000000, -0.192585 - -0.978133, 0.000000, -0.000000, -0.207980 - -0.974744, 0.000000, -0.000000, -0.223323 - -0.971115, 0.000000, -0.000000, -0.238611 - -0.967246, 0.000000, -0.000000, -0.253841 - -0.963138, 0.000000, -0.000000, -0.269007 - -0.958792, 0.000000, -0.000000, -0.284107 - -0.954210, 0.000000, -0.000000, -0.299137 - -0.949392, 0.000000, -0.000000, -0.314094 - -0.944340, 0.000000, -0.000000, -0.328972 - -0.939054, 0.000000, -0.000000, -0.343770 - -0.933537, 0.000000, -0.000000, -0.358482 - -0.927789, 0.000000, -0.000000, -0.373106 - -0.921812, 0.000000, -0.000000, -0.387638 - -0.915607, 0.000000, -0.000000, -0.402074 - -0.909177, 0.000000, -0.000000, -0.416411 - -0.902521, 0.000000, -0.000000, -0.430645 - -0.895643, 0.000000, -0.000000, -0.444773 - -0.888544, 0.000000, -0.000000, -0.458791 - -0.881226, 0.000000, -0.000000, -0.472695 - -0.873690, 0.000000, -0.000000, -0.486483 - -0.865938, 0.000000, -0.000000, -0.500151 - -0.857973, 0.000000, -0.000000, -0.513696 - -0.849795, 0.000000, -0.000000, -0.527113 - -0.841408, 0.000000, -0.000000, -0.540400 - -0.832813, 0.000000, -0.000000, -0.553554 - -0.824012, 0.000000, -0.000000, -0.566572 - -0.815008, 0.000000, -0.000000, -0.579449 - -0.805803, 0.000000, -0.000000, -0.592183 - -0.796399, 0.000000, -0.000000, -0.604772 - -0.786798, 0.000000, -0.000000, -0.617210 - -0.777003, 0.000000, -0.000000, -0.629497 - -0.767016, 0.000000, -0.000000, -0.641628 - -0.756840, 0.000000, -0.000000, -0.653600 - -0.746477, 0.000000, -0.000000, -0.665412 - -0.735929, 0.000000, -0.000000, -0.677058 - -0.725200, 0.000000, -0.000000, -0.688538 - -0.714292, 0.000000, -0.000000, -0.699848 - -0.703207, 0.000000, -0.000000, -0.710985 - -0.691949, 0.000000, -0.000000, -0.721946 - -0.680520, 0.000000, -0.000000, -0.732729 - -0.668923, 0.000000, -0.000000, -0.743332 - -0.657161, 0.000000, -0.000000, -0.753750 - -0.645236, 0.000000, -0.000000, -0.763983 - -0.633153, 0.000000, -0.000000, -0.774027 - -0.620912, 0.000000, -0.000000, -0.783880 - -0.608519, 0.000000, -0.000000, -0.793539 - -0.595975, 0.000000, -0.000000, -0.803003 - -0.583285, 0.000000, -0.000000, -0.812268 - -0.570450, 0.000000, -0.000000, -0.821333 - -0.557474, 0.000000, -0.000000, -0.830194 - -0.544361, 0.000000, -0.000000, -0.838851 - -0.531113, 0.000000, -0.000000, -0.847301 - -0.517734, 0.000000, -0.000000, -0.855541 - -0.504228, 0.000000, -0.000000, -0.863571 - -0.490596, 0.000000, -0.000000, -0.871387 - -0.476844, 0.000000, -0.000000, -0.878988 - -0.462974, 0.000000, -0.000000, -0.886372 - -0.448990, 0.000000, -0.000000, -0.893537 - -0.434895, 0.000000, -0.000000, -0.900481 - -0.420692, 0.000000, -0.000000, -0.907203 - -0.406386, 0.000000, -0.000000, -0.913702 - -0.391979, 0.000000, -0.000000, -0.919974 - -0.377475, 0.000000, -0.000000, -0.926020 - -0.362879, 0.000000, -0.000000, -0.931836 - -0.348192, 0.000000, -0.000000, -0.937423 - -0.333420, 0.000000, -0.000000, -0.942778 - -0.318565, 0.000000, -0.000000, -0.947901 - -0.303632, 0.000000, -0.000000, -0.952789 - -0.288624, 0.000000, -0.000000, -0.957443 - -0.273544, 0.000000, -0.000000, -0.961859 - -0.258397, 0.000000, -0.000000, -0.966039 - -0.243187, 0.000000, -0.000000, -0.969980 - -0.227916, 0.000000, -0.000000, -0.973681 - -0.212589, 0.000000, -0.000000, -0.977142 - -0.197209, 0.000000, -0.000000, -0.980361 - -0.181781, 0.000000, -0.000000, -0.983339 - -0.166307, 0.000000, -0.000000, -0.986074 - -0.150793, 0.000000, -0.000000, -0.988565 - -0.135242, 0.000000, -0.000000, -0.990813 - -0.119657, 0.000000, -0.000000, -0.992815 - -0.104042, 0.000000, -0.000000, -0.994573 - -0.088402, 0.000000, -0.000000, -0.996085 - -0.072740, 0.000000, -0.000000, -0.997351 - -0.057060, 0.000000, -0.000000, -0.998371 - -0.041366, 0.000000, -0.000000, -0.999144 - -0.025662, 0.000000, -0.000000, -0.999671 - -0.009952, 0.000000, -0.000000, -0.999950 - 0.005761, 0.000000, 0.000000, -0.999983 - 0.021473, 0.000000, 0.000000, -0.999769 - 0.037179, 0.000000, 0.000000, -0.999309 - 0.052876, 0.000000, 0.000000, -0.998601 - 0.068560, 0.000000, 0.000000, -0.997647 - 0.084228, 0.000000, 0.000000, -0.996447 - 0.099874, 0.000000, 0.000000, -0.995000 - 0.115496, 0.000000, 0.000000, -0.993308 - 0.131089, 0.000000, 0.000000, -0.991371 - 0.146650, 0.000000, 0.000000, -0.989189 - 0.162174, 0.000000, 0.000000, -0.986762 - 0.177659, 0.000000, 0.000000, -0.984092 - 0.193099, 0.000000, 0.000000, -0.981179 - 0.208492, 0.000000, 0.000000, -0.978024 - 0.223834, 0.000000, 0.000000, -0.974627 - 0.239120, 0.000000, 0.000000, -0.970990 - 0.254347, 0.000000, 0.000000, -0.967113 - 0.269512, 0.000000, 0.000000, -0.962997 - 0.284610, 0.000000, 0.000000, -0.958644 - 0.299637, 0.000000, 0.000000, -0.954053 - 0.314591, 0.000000, 0.000000, -0.949227 - 0.329467, 0.000000, 0.000000, -0.944167 - 0.344261, 0.000000, 0.000000, -0.938874 - 0.358971, 0.000000, 0.000000, -0.933349 - 0.373592, 0.000000, 0.000000, -0.927593 - 0.388121, 0.000000, 0.000000, -0.921609 - 0.402554, 0.000000, 0.000000, -0.915396 - 0.416887, 0.000000, 0.000000, -0.908958 - 0.431118, 0.000000, 0.000000, -0.902296 - 0.445242, 0.000000, 0.000000, -0.895410 - 0.459256, 0.000000, 0.000000, -0.888304 - 0.473157, 0.000000, 0.000000, -0.880978 - 0.486941, 0.000000, 0.000000, -0.873435 - 0.500605, 0.000000, 0.000000, -0.865676 - 0.514145, 0.000000, 0.000000, -0.857703 - 0.527558, 0.000000, 0.000000, -0.849519 - 0.540841, 0.000000, 0.000000, -0.841125 - 0.553991, 0.000000, 0.000000, -0.832523 - 0.567003, 0.000000, 0.000000, -0.823716 - 0.579876, 0.000000, 0.000000, -0.814705 - 0.592605, 0.000000, 0.000000, -0.805493 - 0.605189, 0.000000, 0.000000, -0.796082 - 0.617622, 0.000000, 0.000000, -0.786475 - 0.629904, 0.000000, 0.000000, -0.776673 - 0.642029, 0.000000, 0.000000, -0.766680 - 0.653997, 0.000000, 0.000000, -0.756497 - 0.665802, 0.000000, 0.000000, -0.746128 - 0.677444, 0.000000, 0.000000, -0.735575 - 0.688918, 0.000000, 0.000000, -0.724839 - 0.700222, 0.000000, 0.000000, -0.713925 - 0.711353, 0.000000, 0.000000, -0.702835 - 0.722309, 0.000000, 0.000000, -0.691571 - 0.733086, 0.000000, 0.000000, -0.680136 - 0.743682, 0.000000, 0.000000, -0.668534 - 0.754095, 0.000000, 0.000000, -0.656766 - 0.764321, 0.000000, 0.000000, -0.644836 - 0.774359, 0.000000, 0.000000, -0.632747 - 0.784205, 0.000000, 0.000000, -0.620502 - 0.793858, 0.000000, 0.000000, -0.608103 - 0.803315, 0.000000, 0.000000, -0.595555 - 0.812573, 0.000000, 0.000000, -0.582859 - 0.821631, 0.000000, 0.000000, -0.570019 - 0.830486, 0.000000, 0.000000, -0.557039 - 0.839136, 0.000000, 0.000000, -0.543921 - 0.847579, 0.000000, 0.000000, -0.530669 - 0.855813, 0.000000, 0.000000, -0.517286 - 0.863835, 0.000000, 0.000000, -0.503775 - 0.871644, 0.000000, 0.000000, -0.490140 - 0.879237, 0.000000, 0.000000, -0.476384 - 0.886614, 0.000000, 0.000000, -0.462510 - 0.893772, 0.000000, 0.000000, -0.448522 - 0.900709, 0.000000, 0.000000, -0.434423 - 0.907424, 0.000000, 0.000000, -0.420217 - 0.913914, 0.000000, 0.000000, -0.405907 - 0.920179, 0.000000, 0.000000, -0.391497 - 0.926217, 0.000000, 0.000000, -0.376990 - 0.932026, 0.000000, 0.000000, -0.362391 - 0.937605, 0.000000, 0.000000, -0.347701 - 0.942953, 0.000000, 0.000000, -0.332926 - 0.948068, 0.000000, 0.000000, -0.318069 - 0.952948, 0.000000, 0.000000, -0.303133 - 0.957594, 0.000000, 0.000000, -0.288122 - 0.962003, 0.000000, 0.000000, -0.273041 - 0.966174, 0.000000, 0.000000, -0.257891 - 0.970107, 0.000000, 0.000000, -0.242678 - 0.973800, 0.000000, 0.000000, -0.227406 - 0.977253, 0.000000, 0.000000, -0.212077 - 0.980465, 0.000000, 0.000000, -0.196695 - 0.983434, 0.000000, 0.000000, -0.181266 - 0.986161, 0.000000, 0.000000, -0.165791 - 0.988644, 0.000000, 0.000000, -0.150275 - 0.990883, 0.000000, 0.000000, -0.134723 - 0.992878, 0.000000, 0.000000, -0.119137 - 0.994627, 0.000000, 0.000000, -0.103521 - 0.996131, 0.000000, 0.000000, -0.087880 - 0.997389, 0.000000, 0.000000, -0.072218 - 0.998400, 0.000000, 0.000000, -0.056537 - 0.999166, 0.000000, 0.000000, -0.040843 - 0.999684, 0.000000, 0.000000, -0.025138 - 0.999956, 0.000000, 0.000000, -0.009428 - 0.999980, 0.000000, 0.000000, 0.006285 - 0.999758, 0.000000, 0.000000, 0.021997 - 0.999289, 0.000000, 0.000000, 0.037703 - 0.998573, 0.000000, 0.000000, 0.053399 - 0.997611, 0.000000, 0.000000, 0.069083 - 0.996402, 0.000000, 0.000000, 0.084750 - 0.994948, 0.000000, 0.000000, 0.100395 - 0.993247, 0.000000, 0.000000, 0.116016 - 0.991302, 0.000000, 0.000000, 0.131608 - 0.989112, 0.000000, 0.000000, 0.147168 - 0.986677, 0.000000, 0.000000, 0.162691 - 0.983999, 0.000000, 0.000000, 0.178174 - 0.981078, 0.000000, 0.000000, 0.193613 - 0.977915, 0.000000, 0.000000, 0.209005 - 0.974510, 0.000000, 0.000000, 0.224344 - 0.970865, 0.000000, 0.000000, 0.239629 - 0.966980, 0.000000, 0.000000, 0.254854 - 0.962856, 0.000000, 0.000000, 0.270016 - 0.958494, 0.000000, 0.000000, 0.285112 - 0.953896, 0.000000, 0.000000, 0.300137 - 0.949062, 0.000000, 0.000000, 0.315088 - 0.943994, 0.000000, 0.000000, 0.329961 - 0.938693, 0.000000, 0.000000, 0.344753 - 0.933161, 0.000000, 0.000000, 0.359460 - 0.927397, 0.000000, 0.000000, 0.374078 - 0.921405, 0.000000, 0.000000, 0.388603 - 0.915185, 0.000000, 0.000000, 0.403033 - 0.908740, 0.000000, 0.000000, 0.417363 - 0.902070, 0.000000, 0.000000, 0.431590 - 0.895177, 0.000000, 0.000000, 0.445711 - 0.888063, 0.000000, 0.000000, 0.459721 - 0.880730, 0.000000, 0.000000, 0.473618 - 0.873180, 0.000000, 0.000000, 0.487398 - 0.865414, 0.000000, 0.000000, 0.501058 - 0.857434, 0.000000, 0.000000, 0.514594 - 0.849243, 0.000000, 0.000000, 0.528003 - 0.840841, 0.000000, 0.000000, 0.541282 - 0.832233, 0.000000, 0.000000, 0.554427 - 0.823418, 0.000000, 0.000000, 0.567435 - 0.814401, 0.000000, 0.000000, 0.580303 - 0.805182, 0.000000, 0.000000, 0.593027 - 0.795765, 0.000000, 0.000000, 0.605605 - 0.786151, 0.000000, 0.000000, 0.618034 - 0.776343, 0.000000, 0.000000, 0.630310 - 0.766344, 0.000000, 0.000000, 0.642431 - 0.756155, 0.000000, 0.000000, 0.654393 - 0.745779, 0.000000, 0.000000, 0.666193 - 0.735220, 0.000000, 0.000000, 0.677829 - 0.724478, 0.000000, 0.000000, 0.689297 - 0.713558, 0.000000, 0.000000, 0.700596 - 0.702462, 0.000000, 0.000000, 0.711721 - 0.691192, 0.000000, 0.000000, 0.722671 - 0.679752, 0.000000, 0.000000, 0.733442 - 0.668144, 0.000000, 0.000000, 0.744032 - 0.656371, 0.000000, 0.000000, 0.754438 - 0.644436, 0.000000, 0.000000, 0.764659 - 0.632341, 0.000000, 0.000000, 0.774690 - 0.620091, 0.000000, 0.000000, 0.784530 - 0.607687, 0.000000, 0.000000, 0.794176 - 0.595134, 0.000000, 0.000000, 0.803627 - 0.582433, 0.000000, 0.000000, 0.812878 - 0.569589, 0.000000, 0.000000, 0.821930 - 0.556604, 0.000000, 0.000000, 0.830778 - 0.543482, 0.000000, 0.000000, 0.839421 - 0.530225, 0.000000, 0.000000, 0.847857 - 0.516838, 0.000000, 0.000000, 0.856083 - 0.503323, 0.000000, 0.000000, 0.864099 - 0.489683, 0.000000, 0.000000, 0.871900 - 0.475923, 0.000000, 0.000000, 0.879487 - 0.462045, 0.000000, 0.000000, 0.886856 - 0.448054, 0.000000, 0.000000, 0.894007 - 0.433951, 0.000000, 0.000000, 0.900936 - 0.419742, 0.000000, 0.000000, 0.907644 - 0.405428, 0.000000, 0.000000, 0.914127 - 0.391015, 0.000000, 0.000000, 0.920384 - 0.376505, 0.000000, 0.000000, 0.926415 - 0.361902, 0.000000, 0.000000, 0.932216 - 0.347210, 0.000000, 0.000000, 0.937787 - 0.332432, 0.000000, 0.000000, 0.943127 - 0.317572, 0.000000, 0.000000, 0.948234 - 0.302634, 0.000000, 0.000000, 0.953107 - 0.287621, 0.000000, 0.000000, 0.957744 - 0.272537, 0.000000, 0.000000, 0.962145 - 0.257385, 0.000000, 0.000000, 0.966309 - 0.242170, 0.000000, 0.000000, 0.970234 - 0.226896, 0.000000, 0.000000, 0.973919 - 0.211565, 0.000000, 0.000000, 0.977364 - 0.196182, 0.000000, 0.000000, 0.980568 - 0.180750, 0.000000, 0.000000, 0.983529 - 0.165274, 0.000000, 0.000000, 0.986248 - 0.149757, 0.000000, 0.000000, 0.988723 - 0.134204, 0.000000, 0.000000, 0.990954 - 0.118617, 0.000000, 0.000000, 0.992940 - 0.103000, 0.000000, 0.000000, 0.994681 - 0.087359, 0.000000, 0.000000, 0.996177 - 0.071695, 0.000000, 0.000000, 0.997427 - 0.056014, 0.000000, 0.000000, 0.998430 - 0.040320, 0.000000, 0.000000, 0.999187 - 0.024615, 0.000000, 0.000000, 0.999697 - 0.008904, 0.000000, 0.000000, 0.999960 - -0.006809, -0.000000, 0.000000, 0.999977 - -0.022520, -0.000000, 0.000000, 0.999746 - -0.038226, -0.000000, 0.000000, 0.999269 - -0.053922, -0.000000, 0.000000, 0.998545 - -0.069606, -0.000000, 0.000000, 0.997575 - -0.085271, -0.000000, 0.000000, 0.996358 - -0.100916, -0.000000, 0.000000, 0.994895 - -0.116536, -0.000000, 0.000000, 0.993186 - -0.132127, -0.000000, 0.000000, 0.991233 - -0.147686, -0.000000, 0.000000, 0.989034 - -0.163208, -0.000000, 0.000000, 0.986592 - -0.178689, -0.000000, 0.000000, 0.983906 - -0.194127, -0.000000, 0.000000, 0.980976 - -0.209517, -0.000000, 0.000000, 0.977805 - -0.224855, -0.000000, 0.000000, 0.974392 - -0.240137, -0.000000, 0.000000, 0.970739 - -0.255360, -0.000000, 0.000000, 0.966846 - -0.270520, -0.000000, 0.000000, 0.962714 - -0.285614, -0.000000, 0.000000, 0.958345 - -0.300636, -0.000000, 0.000000, 0.953739 - -0.315585, -0.000000, 0.000000, 0.948897 - -0.330456, -0.000000, 0.000000, 0.943822 - -0.345245, -0.000000, 0.000000, 0.938513 - -0.359948, -0.000000, 0.000000, 0.932972 - -0.374563, -0.000000, 0.000000, 0.927201 - -0.389086, -0.000000, 0.000000, 0.921201 - -0.403512, -0.000000, 0.000000, 0.914974 - -0.417839, -0.000000, 0.000000, 0.908521 - -0.432063, -0.000000, 0.000000, 0.901844 - -0.446180, -0.000000, 0.000000, 0.894943 - -0.460186, -0.000000, 0.000000, 0.887822 - -0.474079, -0.000000, 0.000000, 0.880482 - -0.487856, -0.000000, 0.000000, 0.872924 - -0.501511, -0.000000, 0.000000, 0.865151 - -0.515043, -0.000000, 0.000000, 0.857164 - -0.528448, -0.000000, 0.000000, 0.848966 - -0.541722, -0.000000, 0.000000, 0.840558 - -0.554862, -0.000000, 0.000000, 0.831942 - -0.567866, -0.000000, 0.000000, 0.823121 - -0.580729, -0.000000, 0.000000, 0.814097 - -0.593449, -0.000000, 0.000000, 0.804872 - -0.606022, -0.000000, 0.000000, 0.795448 - -0.618446, -0.000000, 0.000000, 0.785827 - -0.630717, -0.000000, 0.000000, 0.776013 - -0.642832, -0.000000, 0.000000, 0.766007 - -0.654789, -0.000000, 0.000000, 0.755812 - -0.666584, -0.000000, 0.000000, 0.745430 - -0.678214, -0.000000, 0.000000, 0.734864 - -0.689677, -0.000000, 0.000000, 0.724117 - -0.700969, -0.000000, 0.000000, 0.713191 - -0.712089, -0.000000, 0.000000, 0.702089 - -0.723033, -0.000000, 0.000000, 0.690814 - -0.733798, -0.000000, 0.000000, 0.679368 - -0.744382, -0.000000, 0.000000, 0.667754 - -0.754782, -0.000000, 0.000000, 0.655976 - -0.764996, -0.000000, 0.000000, 0.644035 - -0.775021, -0.000000, 0.000000, 0.631935 - -0.784855, -0.000000, 0.000000, 0.619680 - -0.794494, -0.000000, 0.000000, 0.607271 - -0.803938, -0.000000, 0.000000, 0.594713 - -0.813183, -0.000000, 0.000000, 0.582008 - -0.822228, -0.000000, 0.000000, 0.569158 - -0.831069, -0.000000, 0.000000, 0.556169 - -0.839706, -0.000000, 0.000000, 0.543042 - -0.848134, -0.000000, 0.000000, 0.529781 - -0.856354, -0.000000, 0.000000, 0.516389 - -0.864362, -0.000000, 0.000000, 0.502870 - -0.872157, -0.000000, 0.000000, 0.489227 - -0.879736, -0.000000, 0.000000, 0.475462 - -0.887098, -0.000000, 0.000000, 0.461581 - -0.894241, -0.000000, 0.000000, 0.447585 - -0.901164, -0.000000, 0.000000, 0.433479 - -0.907863, -0.000000, 0.000000, 0.419266 - -0.914339, -0.000000, 0.000000, 0.404950 - -0.920589, -0.000000, 0.000000, 0.390533 - -0.926612, -0.000000, 0.000000, 0.376020 - -0.932405, -0.000000, 0.000000, 0.361414 - -0.937969, -0.000000, 0.000000, 0.346719 - -0.943301, -0.000000, 0.000000, 0.331938 - -0.948400, -0.000000, 0.000000, 0.317076 - -0.953265, -0.000000, 0.000000, 0.302135 - -0.957895, -0.000000, 0.000000, 0.287119 - -0.962288, -0.000000, 0.000000, 0.272033 - -0.966444, -0.000000, 0.000000, 0.256879 - -0.970360, -0.000000, 0.000000, 0.241662 - -0.974038, -0.000000, 0.000000, 0.226385 - -0.977475, -0.000000, 0.000000, 0.211053 - -0.980670, -0.000000, 0.000000, 0.195668 - -0.983624, -0.000000, 0.000000, 0.180235 - -0.986334, -0.000000, 0.000000, 0.164758 - -0.988801, -0.000000, 0.000000, 0.149240 - -0.991024, -0.000000, 0.000000, 0.133685 - -0.993002, -0.000000, 0.000000, 0.118097 - -0.994735, -0.000000, 0.000000, 0.102479 - -0.996223, -0.000000, 0.000000, 0.086837 - -0.997464, -0.000000, 0.000000, 0.071173 - -0.998459, -0.000000, 0.000000, 0.055491 - -0.999208, -0.000000, 0.000000, 0.039796 - -0.999710, -0.000000, 0.000000, 0.024091 - -0.999965, -0.000000, 0.000000, 0.008380 - -0.999973, 0.000000, -0.000000, -0.007333 - -0.999734, 0.000000, -0.000000, -0.023044 - -0.999249, 0.000000, -0.000000, -0.038750 - -0.998517, 0.000000, -0.000000, -0.054445 - -0.997538, 0.000000, -0.000000, -0.070128 - -0.996313, 0.000000, -0.000000, -0.085793 - -0.994842, 0.000000, -0.000000, -0.101437 - -0.993125, 0.000000, -0.000000, -0.117056 - -0.991163, 0.000000, -0.000000, -0.132646 - -0.988957, 0.000000, -0.000000, -0.148204 - -0.986506, 0.000000, -0.000000, -0.163724 - -0.983812, 0.000000, -0.000000, -0.179205 - -0.980875, 0.000000, -0.000000, -0.194641 - -0.977695, 0.000000, -0.000000, -0.210029 - -0.974274, 0.000000, -0.000000, -0.225365 - -0.970613, 0.000000, -0.000000, -0.240646 - -0.966712, 0.000000, -0.000000, -0.255867 - -0.962572, 0.000000, -0.000000, -0.271025 - -0.958195, 0.000000, -0.000000, -0.286116 - -0.953581, 0.000000, -0.000000, -0.301136 - -0.948732, 0.000000, -0.000000, -0.316082 - -0.943648, 0.000000, -0.000000, -0.330950 - -0.938332, 0.000000, -0.000000, -0.345736 - -0.932784, 0.000000, -0.000000, -0.360437 - -0.927005, 0.000000, -0.000000, -0.375049 - -0.920998, 0.000000, -0.000000, -0.389568 - -0.914763, 0.000000, -0.000000, -0.403991 - -0.908302, 0.000000, -0.000000, -0.418315 - -0.901617, 0.000000, -0.000000, -0.432535 - -0.894710, 0.000000, -0.000000, -0.446648 - -0.887581, 0.000000, -0.000000, -0.460651 - -0.880234, 0.000000, -0.000000, -0.474541 - -0.872669, 0.000000, -0.000000, -0.488313 - -0.864888, 0.000000, -0.000000, -0.501964 - -0.856894, 0.000000, -0.000000, -0.515492 - -0.848689, 0.000000, -0.000000, -0.528892 - -0.840274, 0.000000, -0.000000, -0.542162 - -0.831651, 0.000000, -0.000000, -0.555298 - -0.822824, 0.000000, -0.000000, -0.568297 - -0.813793, 0.000000, -0.000000, -0.581155 - -0.804561, 0.000000, -0.000000, -0.593870 - -0.795130, 0.000000, -0.000000, -0.606439 - -0.785503, 0.000000, -0.000000, -0.618857 - -0.775683, 0.000000, -0.000000, -0.631123 - -0.765670, 0.000000, -0.000000, -0.643233 - -0.755469, 0.000000, -0.000000, -0.655185 - -0.745081, 0.000000, -0.000000, -0.666974 - -0.734509, 0.000000, -0.000000, -0.678599 - -0.723756, 0.000000, -0.000000, -0.690056 - -0.712824, 0.000000, -0.000000, -0.701343 - -0.701716, 0.000000, -0.000000, -0.712457 - -0.690435, 0.000000, -0.000000, -0.723394 - -0.678983, 0.000000, -0.000000, -0.734154 - -0.667364, 0.000000, -0.000000, -0.744732 - -0.655580, 0.000000, -0.000000, -0.755126 - -0.643634, 0.000000, -0.000000, -0.765333 - -0.631529, 0.000000, -0.000000, -0.775352 - -0.619269, 0.000000, -0.000000, -0.785179 - -0.606855, 0.000000, -0.000000, -0.794812 - -0.594292, 0.000000, -0.000000, -0.804250 - -0.581581, 0.000000, -0.000000, -0.813488 - -0.568728, 0.000000, -0.000000, -0.822526 - -0.555734, 0.000000, -0.000000, -0.831360 - -0.542602, 0.000000, -0.000000, -0.839990 - -0.529337, 0.000000, -0.000000, -0.848412 - -0.515941, 0.000000, -0.000000, -0.856624 - -0.502417, 0.000000, -0.000000, -0.864625 - -0.488770, 0.000000, -0.000000, -0.872413 - -0.475002, 0.000000, -0.000000, -0.879985 - -0.461116, 0.000000, -0.000000, -0.887340 - -0.447117, 0.000000, -0.000000, -0.894476 - -0.433007, 0.000000, -0.000000, -0.901390 - -0.418791, 0.000000, -0.000000, -0.908083 - -0.404471, 0.000000, -0.000000, -0.914551 - -0.390051, 0.000000, -0.000000, -0.920793 - -0.375535, 0.000000, -0.000000, -0.926808 - -0.360926, 0.000000, -0.000000, -0.932595 - -0.346228, 0.000000, -0.000000, -0.938151 - -0.331444, 0.000000, -0.000000, -0.943475 - -0.316579, 0.000000, -0.000000, -0.948566 - -0.301635, 0.000000, -0.000000, -0.953423 - -0.286617, 0.000000, -0.000000, -0.958045 - -0.271529, 0.000000, -0.000000, -0.962430 - -0.256373, 0.000000, -0.000000, -0.966578 - -0.241154, 0.000000, -0.000000, -0.970487 - -0.225875, 0.000000, -0.000000, -0.974156 - -0.210541, 0.000000, -0.000000, -0.977585 - -0.195155, 0.000000, -0.000000, -0.980773 - -0.179720, 0.000000, -0.000000, -0.983718 - -0.164241, 0.000000, -0.000000, -0.986420 - -0.148722, 0.000000, -0.000000, -0.988879 - -0.133165, 0.000000, -0.000000, -0.991094 - -0.117576, 0.000000, -0.000000, -0.993064 - -0.101958, 0.000000, -0.000000, -0.994789 - -0.086315, 0.000000, -0.000000, -0.996268 - -0.070650, 0.000000, -0.000000, -0.997501 - -0.054968, 0.000000, -0.000000, -0.998488 - -0.039273, 0.000000, -0.000000, -0.999229 - -0.023568, 0.000000, -0.000000, -0.999722 - -0.007857, 0.000000, -0.000000, -0.999969 - 0.007857, 0.000000, 0.000000, -0.999969 - 0.023568, 0.000000, 0.000000, -0.999722 - 0.039273, 0.000000, 0.000000, -0.999229 - 0.054968, 0.000000, 0.000000, -0.998488 - 0.070650, 0.000000, 0.000000, -0.997501 - 0.086315, 0.000000, 0.000000, -0.996268 - 0.101958, 0.000000, 0.000000, -0.994789 - 0.117576, 0.000000, 0.000000, -0.993064 - 0.133165, 0.000000, 0.000000, -0.991094 - 0.148722, 0.000000, 0.000000, -0.988879 - 0.164241, 0.000000, 0.000000, -0.986420 - 0.179720, 0.000000, 0.000000, -0.983718 - 0.195155, 0.000000, 0.000000, -0.980773 - 0.210541, 0.000000, 0.000000, -0.977585 - 0.225875, 0.000000, 0.000000, -0.974156 - 0.241154, 0.000000, 0.000000, -0.970487 - 0.256373, 0.000000, 0.000000, -0.966578 - 0.271529, 0.000000, 0.000000, -0.962430 - 0.286617, 0.000000, 0.000000, -0.958045 - 0.301635, 0.000000, 0.000000, -0.953423 - 0.316579, 0.000000, 0.000000, -0.948566 - 0.331444, 0.000000, 0.000000, -0.943475 - 0.346228, 0.000000, 0.000000, -0.938151 - 0.360926, 0.000000, 0.000000, -0.932595 - 0.375535, 0.000000, 0.000000, -0.926808 - 0.390051, 0.000000, 0.000000, -0.920793 - 0.404471, 0.000000, 0.000000, -0.914551 - 0.418791, 0.000000, 0.000000, -0.908083 - 0.433007, 0.000000, 0.000000, -0.901390 - 0.447117, 0.000000, 0.000000, -0.894476 - 0.461116, 0.000000, 0.000000, -0.887340 - 0.475002, 0.000000, 0.000000, -0.879985 - 0.488770, 0.000000, 0.000000, -0.872413 - 0.502417, 0.000000, 0.000000, -0.864625 - 0.515941, 0.000000, 0.000000, -0.856624 - 0.529337, 0.000000, 0.000000, -0.848412 - 0.542602, 0.000000, 0.000000, -0.839990 - 0.555734, 0.000000, 0.000000, -0.831360 - 0.568728, 0.000000, 0.000000, -0.822526 - 0.581581, 0.000000, 0.000000, -0.813488 - 0.594292, 0.000000, 0.000000, -0.804250 - 0.606855, 0.000000, 0.000000, -0.794812 - 0.619269, 0.000000, 0.000000, -0.785179 - 0.631529, 0.000000, 0.000000, -0.775352 - 0.643634, 0.000000, 0.000000, -0.765333 - 0.655580, 0.000000, 0.000000, -0.755126 - 0.667364, 0.000000, 0.000000, -0.744732 - 0.678983, 0.000000, 0.000000, -0.734154 - 0.690435, 0.000000, 0.000000, -0.723394 - 0.701716, 0.000000, 0.000000, -0.712457 - 0.712824, 0.000000, 0.000000, -0.701343 - 0.723756, 0.000000, 0.000000, -0.690056 - 0.734509, 0.000000, 0.000000, -0.678599 - 0.745081, 0.000000, 0.000000, -0.666974 - 0.755469, 0.000000, 0.000000, -0.655185 - 0.765670, 0.000000, 0.000000, -0.643233 - 0.775683, 0.000000, 0.000000, -0.631123 - 0.785503, 0.000000, 0.000000, -0.618857 - 0.795130, 0.000000, 0.000000, -0.606439 - 0.804561, 0.000000, 0.000000, -0.593870 - 0.813793, 0.000000, 0.000000, -0.581155 - 0.822824, 0.000000, 0.000000, -0.568297 - 0.831651, 0.000000, 0.000000, -0.555298 - 0.840274, 0.000000, 0.000000, -0.542162 - 0.848689, 0.000000, 0.000000, -0.528892 - 0.856894, 0.000000, 0.000000, -0.515492 - 0.864888, 0.000000, 0.000000, -0.501964 - 0.872669, 0.000000, 0.000000, -0.488313 - 0.880234, 0.000000, 0.000000, -0.474541 - 0.887581, 0.000000, 0.000000, -0.460651 - 0.894710, 0.000000, 0.000000, -0.446648 - 0.901617, 0.000000, 0.000000, -0.432535 - 0.908302, 0.000000, 0.000000, -0.418315 - 0.914763, 0.000000, 0.000000, -0.403991 - 0.920998, 0.000000, 0.000000, -0.389568 - 0.927005, 0.000000, 0.000000, -0.375049 - 0.932784, 0.000000, 0.000000, -0.360437 - 0.938332, 0.000000, 0.000000, -0.345736 - 0.943648, 0.000000, 0.000000, -0.330950 - 0.948732, 0.000000, 0.000000, -0.316082 - 0.953581, 0.000000, 0.000000, -0.301136 - 0.958195, 0.000000, 0.000000, -0.286116 - 0.962572, 0.000000, 0.000000, -0.271025 - 0.966712, 0.000000, 0.000000, -0.255867 - 0.970613, 0.000000, 0.000000, -0.240646 - 0.974274, 0.000000, 0.000000, -0.225365 - 0.977695, 0.000000, 0.000000, -0.210029 - 0.980875, 0.000000, 0.000000, -0.194641 - 0.983812, 0.000000, 0.000000, -0.179205 - 0.986506, 0.000000, 0.000000, -0.163724 - 0.988957, 0.000000, 0.000000, -0.148204 - 0.991163, 0.000000, 0.000000, -0.132646 - 0.993125, 0.000000, 0.000000, -0.117056 - 0.994842, 0.000000, 0.000000, -0.101437 - 0.996313, 0.000000, 0.000000, -0.085793 - 0.997538, 0.000000, 0.000000, -0.070128 - 0.998517, 0.000000, 0.000000, -0.054445 - 0.999249, 0.000000, 0.000000, -0.038750 - 0.999734, 0.000000, 0.000000, -0.023044 - 0.999973, 0.000000, 0.000000, -0.007333 - 0.999965, 0.000000, 0.000000, 0.008380 - 0.999710, 0.000000, 0.000000, 0.024091 - 0.999208, 0.000000, 0.000000, 0.039796 - 0.998459, 0.000000, 0.000000, 0.055491 - 0.997464, 0.000000, 0.000000, 0.071173 - 0.996223, 0.000000, 0.000000, 0.086837 - 0.994735, 0.000000, 0.000000, 0.102479 - 0.993002, 0.000000, 0.000000, 0.118097 - 0.991024, 0.000000, 0.000000, 0.133685 - 0.988801, 0.000000, 0.000000, 0.149240 - 0.986334, 0.000000, 0.000000, 0.164758 - 0.983624, 0.000000, 0.000000, 0.180235 - 0.980670, 0.000000, 0.000000, 0.195668 - 0.977475, 0.000000, 0.000000, 0.211053 - 0.974038, 0.000000, 0.000000, 0.226385 - 0.970360, 0.000000, 0.000000, 0.241662 - 0.966444, 0.000000, 0.000000, 0.256879 - 0.962288, 0.000000, 0.000000, 0.272033 - 0.957895, 0.000000, 0.000000, 0.287119 - 0.953265, 0.000000, 0.000000, 0.302135 - 0.948400, 0.000000, 0.000000, 0.317076 - 0.943301, 0.000000, 0.000000, 0.331938 - 0.937969, 0.000000, 0.000000, 0.346719 - 0.932405, 0.000000, 0.000000, 0.361414 - 0.926612, 0.000000, 0.000000, 0.376020 - 0.920589, 0.000000, 0.000000, 0.390533 - 0.914339, 0.000000, 0.000000, 0.404950 - 0.907863, 0.000000, 0.000000, 0.419266 - 0.901164, 0.000000, 0.000000, 0.433479 - 0.894241, 0.000000, 0.000000, 0.447585 - 0.887098, 0.000000, 0.000000, 0.461581 - 0.879736, 0.000000, 0.000000, 0.475462 - 0.872157, 0.000000, 0.000000, 0.489227 - 0.864362, 0.000000, 0.000000, 0.502870 - 0.856354, 0.000000, 0.000000, 0.516389 - 0.848134, 0.000000, 0.000000, 0.529781 - 0.839706, 0.000000, 0.000000, 0.543042 - 0.831069, 0.000000, 0.000000, 0.556169 - 0.822228, 0.000000, 0.000000, 0.569158 - 0.813183, 0.000000, 0.000000, 0.582008 - 0.803938, 0.000000, 0.000000, 0.594713 - 0.794494, 0.000000, 0.000000, 0.607271 - 0.784855, 0.000000, 0.000000, 0.619680 - 0.775021, 0.000000, 0.000000, 0.631935 - 0.764996, 0.000000, 0.000000, 0.644035 - 0.754782, 0.000000, 0.000000, 0.655976 - 0.744382, 0.000000, 0.000000, 0.667754 - 0.733798, 0.000000, 0.000000, 0.679368 - 0.723033, 0.000000, 0.000000, 0.690814 - 0.712089, 0.000000, 0.000000, 0.702089 - 0.700969, 0.000000, 0.000000, 0.713191 - 0.689677, 0.000000, 0.000000, 0.724117 - 0.678214, 0.000000, 0.000000, 0.734864 - 0.666584, 0.000000, 0.000000, 0.745430 - 0.654789, 0.000000, 0.000000, 0.755812 - 0.642832, 0.000000, 0.000000, 0.766007 - 0.630717, 0.000000, 0.000000, 0.776013 - 0.618446, 0.000000, 0.000000, 0.785827 - 0.606022, 0.000000, 0.000000, 0.795448 - 0.593449, 0.000000, 0.000000, 0.804872 - 0.580729, 0.000000, 0.000000, 0.814097 - 0.567866, 0.000000, 0.000000, 0.823121 - 0.554862, 0.000000, 0.000000, 0.831942 - 0.541722, 0.000000, 0.000000, 0.840558 - 0.528448, 0.000000, 0.000000, 0.848966 - 0.515043, 0.000000, 0.000000, 0.857164 - 0.501511, 0.000000, 0.000000, 0.865151 - 0.487856, 0.000000, 0.000000, 0.872924 - 0.474079, 0.000000, 0.000000, 0.880482 - 0.460186, 0.000000, 0.000000, 0.887822 - 0.446180, 0.000000, 0.000000, 0.894943 - 0.432063, 0.000000, 0.000000, 0.901844 - 0.417839, 0.000000, 0.000000, 0.908521 - 0.403512, 0.000000, 0.000000, 0.914974 - 0.389086, 0.000000, 0.000000, 0.921201 - 0.374563, 0.000000, 0.000000, 0.927201 - 0.359948, 0.000000, 0.000000, 0.932972 - 0.345245, 0.000000, 0.000000, 0.938513 - 0.330456, 0.000000, 0.000000, 0.943822 - 0.315585, 0.000000, 0.000000, 0.948897 - 0.300636, 0.000000, 0.000000, 0.953739 - 0.285614, 0.000000, 0.000000, 0.958345 - 0.270520, 0.000000, 0.000000, 0.962714 - 0.255360, 0.000000, 0.000000, 0.966846 - 0.240137, 0.000000, 0.000000, 0.970739 - 0.224855, 0.000000, 0.000000, 0.974392 - 0.209517, 0.000000, 0.000000, 0.977805 - 0.194127, 0.000000, 0.000000, 0.980976 - 0.178689, 0.000000, 0.000000, 0.983906 - 0.163208, 0.000000, 0.000000, 0.986592 - 0.147686, 0.000000, 0.000000, 0.989034 - 0.132127, 0.000000, 0.000000, 0.991233 - 0.116536, 0.000000, 0.000000, 0.993186 - 0.100916, 0.000000, 0.000000, 0.994895 - 0.085271, 0.000000, 0.000000, 0.996358 - 0.069606, 0.000000, 0.000000, 0.997575 - 0.053922, 0.000000, 0.000000, 0.998545 - 0.038226, 0.000000, 0.000000, 0.999269 - 0.022520, 0.000000, 0.000000, 0.999746 - 0.006809, 0.000000, 0.000000, 0.999977 - -0.008904, -0.000000, 0.000000, 0.999960 - -0.024615, -0.000000, 0.000000, 0.999697 - -0.040320, -0.000000, 0.000000, 0.999187 - -0.056014, -0.000000, 0.000000, 0.998430 - -0.071695, -0.000000, 0.000000, 0.997427 - -0.087359, -0.000000, 0.000000, 0.996177 - -0.103000, -0.000000, 0.000000, 0.994681 - -0.118617, -0.000000, 0.000000, 0.992940 - -0.134204, -0.000000, 0.000000, 0.990954 - -0.149757, -0.000000, 0.000000, 0.988723 - -0.165274, -0.000000, 0.000000, 0.986248 - -0.180750, -0.000000, 0.000000, 0.983529 - -0.196182, -0.000000, 0.000000, 0.980568 - -0.211565, -0.000000, 0.000000, 0.977364 - -0.226896, -0.000000, 0.000000, 0.973919 - -0.242170, -0.000000, 0.000000, 0.970234 - -0.257385, -0.000000, 0.000000, 0.966309 - -0.272537, -0.000000, 0.000000, 0.962145 - -0.287621, -0.000000, 0.000000, 0.957744 - -0.302634, -0.000000, 0.000000, 0.953107 - -0.317572, -0.000000, 0.000000, 0.948234 - -0.332432, -0.000000, 0.000000, 0.943127 - -0.347210, -0.000000, 0.000000, 0.937787 - -0.361902, -0.000000, 0.000000, 0.932216 - -0.376505, -0.000000, 0.000000, 0.926415 - -0.391015, -0.000000, 0.000000, 0.920384 - -0.405428, -0.000000, 0.000000, 0.914127 - -0.419742, -0.000000, 0.000000, 0.907644 - -0.433951, -0.000000, 0.000000, 0.900936 - -0.448054, -0.000000, 0.000000, 0.894007 - -0.462045, -0.000000, 0.000000, 0.886856 - -0.475923, -0.000000, 0.000000, 0.879487 - -0.489683, -0.000000, 0.000000, 0.871900 - -0.503323, -0.000000, 0.000000, 0.864099 - -0.516838, -0.000000, 0.000000, 0.856083 - -0.530225, -0.000000, 0.000000, 0.847857 - -0.543482, -0.000000, 0.000000, 0.839421 - -0.556604, -0.000000, 0.000000, 0.830778 - -0.569589, -0.000000, 0.000000, 0.821930 - -0.582433, -0.000000, 0.000000, 0.812878 - -0.595134, -0.000000, 0.000000, 0.803627 - -0.607687, -0.000000, 0.000000, 0.794176 - -0.620091, -0.000000, 0.000000, 0.784530 - -0.632341, -0.000000, 0.000000, 0.774690 - -0.644436, -0.000000, 0.000000, 0.764659 - -0.656371, -0.000000, 0.000000, 0.754438 - -0.668144, -0.000000, 0.000000, 0.744032 - -0.679752, -0.000000, 0.000000, 0.733442 - -0.691192, -0.000000, 0.000000, 0.722671 - -0.702462, -0.000000, 0.000000, 0.711721 - -0.713558, -0.000000, 0.000000, 0.700596 - -0.724478, -0.000000, 0.000000, 0.689297 - -0.735220, -0.000000, 0.000000, 0.677829 - -0.745779, -0.000000, 0.000000, 0.666193 - -0.756155, -0.000000, 0.000000, 0.654393 - -0.766344, -0.000000, 0.000000, 0.642431 - -0.776343, -0.000000, 0.000000, 0.630310 - -0.786151, -0.000000, 0.000000, 0.618034 - -0.795765, -0.000000, 0.000000, 0.605605 - -0.805182, -0.000000, 0.000000, 0.593027 - -0.814401, -0.000000, 0.000000, 0.580303 - -0.823418, -0.000000, 0.000000, 0.567435 - -0.832233, -0.000000, 0.000000, 0.554427 - -0.840841, -0.000000, 0.000000, 0.541282 - -0.849243, -0.000000, 0.000000, 0.528003 - -0.857434, -0.000000, 0.000000, 0.514594 - -0.865414, -0.000000, 0.000000, 0.501058 - -0.873180, -0.000000, 0.000000, 0.487398 - -0.880730, -0.000000, 0.000000, 0.473618 - -0.888063, -0.000000, 0.000000, 0.459721 - -0.895177, -0.000000, 0.000000, 0.445711 - -0.902070, -0.000000, 0.000000, 0.431590 - -0.908740, -0.000000, 0.000000, 0.417363 - -0.915185, -0.000000, 0.000000, 0.403033 - -0.921405, -0.000000, 0.000000, 0.388603 - -0.927397, -0.000000, 0.000000, 0.374078 - -0.933161, -0.000000, 0.000000, 0.359460 - -0.938693, -0.000000, 0.000000, 0.344753 - -0.943994, -0.000000, 0.000000, 0.329961 - -0.949062, -0.000000, 0.000000, 0.315088 - -0.953896, -0.000000, 0.000000, 0.300137 - -0.958494, -0.000000, 0.000000, 0.285112 - -0.962856, -0.000000, 0.000000, 0.270016 - -0.966980, -0.000000, 0.000000, 0.254854 - -0.970865, -0.000000, 0.000000, 0.239629 - -0.974510, -0.000000, 0.000000, 0.224344 - -0.977915, -0.000000, 0.000000, 0.209005 - -0.981078, -0.000000, 0.000000, 0.193613 - -0.983999, -0.000000, 0.000000, 0.178174 - -0.986677, -0.000000, 0.000000, 0.162691 - -0.989112, -0.000000, 0.000000, 0.147168 - -0.991302, -0.000000, 0.000000, 0.131608 - -0.993247, -0.000000, 0.000000, 0.116016 - -0.994948, -0.000000, 0.000000, 0.100395 - -0.996402, -0.000000, 0.000000, 0.084750 - -0.997611, -0.000000, 0.000000, 0.069083 - -0.998573, -0.000000, 0.000000, 0.053399 - -0.999289, -0.000000, 0.000000, 0.037703 - -0.999758, -0.000000, 0.000000, 0.021997 - -0.999980, -0.000000, 0.000000, 0.006285 - -0.999956, 0.000000, -0.000000, -0.009428 - -0.999684, 0.000000, -0.000000, -0.025138 - -0.999166, 0.000000, -0.000000, -0.040843 - -0.998400, 0.000000, -0.000000, -0.056537 - -0.997389, 0.000000, -0.000000, -0.072218 - -0.996131, 0.000000, -0.000000, -0.087880 - -0.994627, 0.000000, -0.000000, -0.103521 - -0.992878, 0.000000, -0.000000, -0.119137 - -0.990883, 0.000000, -0.000000, -0.134723 - -0.988644, 0.000000, -0.000000, -0.150275 - -0.986161, 0.000000, -0.000000, -0.165791 - -0.983434, 0.000000, -0.000000, -0.181266 - -0.980465, 0.000000, -0.000000, -0.196695 - -0.977253, 0.000000, -0.000000, -0.212077 - -0.973800, 0.000000, -0.000000, -0.227406 - -0.970107, 0.000000, -0.000000, -0.242678 - -0.966174, 0.000000, -0.000000, -0.257891 - -0.962003, 0.000000, -0.000000, -0.273041 - -0.957594, 0.000000, -0.000000, -0.288122 - -0.952948, 0.000000, -0.000000, -0.303133 - -0.948068, 0.000000, -0.000000, -0.318069 - -0.942953, 0.000000, -0.000000, -0.332926 - -0.937605, 0.000000, -0.000000, -0.347701 - -0.932026, 0.000000, -0.000000, -0.362391 - -0.926217, 0.000000, -0.000000, -0.376990 - -0.920179, 0.000000, -0.000000, -0.391497 - -0.913914, 0.000000, -0.000000, -0.405907 - -0.907424, 0.000000, -0.000000, -0.420217 - -0.900709, 0.000000, -0.000000, -0.434423 - -0.893772, 0.000000, -0.000000, -0.448522 - -0.886614, 0.000000, -0.000000, -0.462510 - -0.879237, 0.000000, -0.000000, -0.476384 - -0.871644, 0.000000, -0.000000, -0.490140 - -0.863835, 0.000000, -0.000000, -0.503775 - -0.855813, 0.000000, -0.000000, -0.517286 - -0.847579, 0.000000, -0.000000, -0.530669 - -0.839136, 0.000000, -0.000000, -0.543921 - -0.830486, 0.000000, -0.000000, -0.557039 - -0.821631, 0.000000, -0.000000, -0.570019 - -0.812573, 0.000000, -0.000000, -0.582859 - -0.803315, 0.000000, -0.000000, -0.595555 - -0.793858, 0.000000, -0.000000, -0.608103 - -0.784205, 0.000000, -0.000000, -0.620502 - -0.774359, 0.000000, -0.000000, -0.632747 - -0.764321, 0.000000, -0.000000, -0.644836 - -0.754095, 0.000000, -0.000000, -0.656766 - -0.743682, 0.000000, -0.000000, -0.668534 - -0.733086, 0.000000, -0.000000, -0.680136 - -0.722309, 0.000000, -0.000000, -0.691571 - -0.711353, 0.000000, -0.000000, -0.702835 - -0.700222, 0.000000, -0.000000, -0.713925 - -0.688918, 0.000000, -0.000000, -0.724839 - -0.677444, 0.000000, -0.000000, -0.735575 - -0.665802, 0.000000, -0.000000, -0.746128 - -0.653997, 0.000000, -0.000000, -0.756497 - -0.642029, 0.000000, -0.000000, -0.766680 - -0.629904, 0.000000, -0.000000, -0.776673 - -0.617622, 0.000000, -0.000000, -0.786475 - -0.605189, 0.000000, -0.000000, -0.796082 - -0.592605, 0.000000, -0.000000, -0.805493 - -0.579876, 0.000000, -0.000000, -0.814705 - -0.567003, 0.000000, -0.000000, -0.823716 - -0.553991, 0.000000, -0.000000, -0.832523 - -0.540841, 0.000000, -0.000000, -0.841125 - -0.527558, 0.000000, -0.000000, -0.849519 - -0.514145, 0.000000, -0.000000, -0.857703 - -0.500605, 0.000000, -0.000000, -0.865676 - -0.486941, 0.000000, -0.000000, -0.873435 - -0.473157, 0.000000, -0.000000, -0.880978 - -0.459256, 0.000000, -0.000000, -0.888304 - -0.445242, 0.000000, -0.000000, -0.895410 - -0.431118, 0.000000, -0.000000, -0.902296 - -0.416887, 0.000000, -0.000000, -0.908958 - -0.402554, 0.000000, -0.000000, -0.915396 - -0.388121, 0.000000, -0.000000, -0.921609 - -0.373592, 0.000000, -0.000000, -0.927593 - -0.358971, 0.000000, -0.000000, -0.933349 - -0.344261, 0.000000, -0.000000, -0.938874 - -0.329467, 0.000000, -0.000000, -0.944167 - -0.314591, 0.000000, -0.000000, -0.949227 - -0.299637, 0.000000, -0.000000, -0.954053 - -0.284610, 0.000000, -0.000000, -0.958644 - -0.269512, 0.000000, -0.000000, -0.962997 - -0.254347, 0.000000, -0.000000, -0.967113 - -0.239120, 0.000000, -0.000000, -0.970990 - -0.223834, 0.000000, -0.000000, -0.974627 - -0.208492, 0.000000, -0.000000, -0.978024 - -0.193099, 0.000000, -0.000000, -0.981179 - -0.177659, 0.000000, -0.000000, -0.984092 - -0.162174, 0.000000, -0.000000, -0.986762 - -0.146650, 0.000000, -0.000000, -0.989189 - -0.131089, 0.000000, -0.000000, -0.991371 - -0.115496, 0.000000, -0.000000, -0.993308 - -0.099874, 0.000000, -0.000000, -0.995000 - -0.084228, 0.000000, -0.000000, -0.996447 - -0.068560, 0.000000, -0.000000, -0.997647 - -0.052876, 0.000000, -0.000000, -0.998601 - -0.037179, 0.000000, -0.000000, -0.999309 - -0.021473, 0.000000, -0.000000, -0.999769 - -0.005761, 0.000000, -0.000000, -0.999983 - 0.009952, 0.000000, 0.000000, -0.999950 - 0.025662, 0.000000, 0.000000, -0.999671 - 0.041366, 0.000000, 0.000000, -0.999144 - 0.057060, 0.000000, 0.000000, -0.998371 - 0.072740, 0.000000, 0.000000, -0.997351 - 0.088402, 0.000000, 0.000000, -0.996085 - 0.104042, 0.000000, 0.000000, -0.994573 - 0.119657, 0.000000, 0.000000, -0.992815 - 0.135242, 0.000000, 0.000000, -0.990813 - 0.150793, 0.000000, 0.000000, -0.988565 - 0.166307, 0.000000, 0.000000, -0.986074 - 0.181781, 0.000000, 0.000000, -0.983339 - 0.197209, 0.000000, 0.000000, -0.980361 - 0.212589, 0.000000, 0.000000, -0.977142 - 0.227916, 0.000000, 0.000000, -0.973681 - 0.243187, 0.000000, 0.000000, -0.969980 - 0.258397, 0.000000, 0.000000, -0.966039 - 0.273544, 0.000000, 0.000000, -0.961859 - 0.288624, 0.000000, 0.000000, -0.957443 - 0.303632, 0.000000, 0.000000, -0.952789 - 0.318565, 0.000000, 0.000000, -0.947901 - 0.333420, 0.000000, 0.000000, -0.942778 - 0.348192, 0.000000, 0.000000, -0.937423 - 0.362879, 0.000000, 0.000000, -0.931836 - 0.377475, 0.000000, 0.000000, -0.926020 - 0.391979, 0.000000, 0.000000, -0.919974 - 0.406386, 0.000000, 0.000000, -0.913702 - 0.420692, 0.000000, 0.000000, -0.907203 - 0.434895, 0.000000, 0.000000, -0.900481 - 0.448990, 0.000000, 0.000000, -0.893537 - 0.462974, 0.000000, 0.000000, -0.886372 - 0.476844, 0.000000, 0.000000, -0.878988 - 0.490596, 0.000000, 0.000000, -0.871387 - 0.504228, 0.000000, 0.000000, -0.863571 - 0.517734, 0.000000, 0.000000, -0.855541 - 0.531113, 0.000000, 0.000000, -0.847301 - 0.544361, 0.000000, 0.000000, -0.838851 - 0.557474, 0.000000, 0.000000, -0.830194 - 0.570450, 0.000000, 0.000000, -0.821333 - 0.583285, 0.000000, 0.000000, -0.812268 - 0.595975, 0.000000, 0.000000, -0.803003 - 0.608519, 0.000000, 0.000000, -0.793539 - 0.620912, 0.000000, 0.000000, -0.783880 - 0.633153, 0.000000, 0.000000, -0.774027 - 0.645236, 0.000000, 0.000000, -0.763983 - 0.657161, 0.000000, 0.000000, -0.753750 - 0.668923, 0.000000, 0.000000, -0.743332 - 0.680520, 0.000000, 0.000000, -0.732729 - 0.691949, 0.000000, 0.000000, -0.721946 - 0.703207, 0.000000, 0.000000, -0.710985 - 0.714292, 0.000000, 0.000000, -0.699848 - 0.725200, 0.000000, 0.000000, -0.688538 - 0.735929, 0.000000, 0.000000, -0.677058 - 0.746477, 0.000000, 0.000000, -0.665412 - 0.756840, 0.000000, 0.000000, -0.653600 - 0.767016, 0.000000, 0.000000, -0.641628 - 0.777003, 0.000000, 0.000000, -0.629497 - 0.786798, 0.000000, 0.000000, -0.617210 - 0.796399, 0.000000, 0.000000, -0.604772 - 0.805803, 0.000000, 0.000000, -0.592183 - 0.815008, 0.000000, 0.000000, -0.579449 - 0.824012, 0.000000, 0.000000, -0.566572 - 0.832813, 0.000000, 0.000000, -0.553554 - 0.841408, 0.000000, 0.000000, -0.540400 - 0.849795, 0.000000, 0.000000, -0.527113 - 0.857973, 0.000000, 0.000000, -0.513696 - 0.865938, 0.000000, 0.000000, -0.500151 - 0.873690, 0.000000, 0.000000, -0.486483 - 0.881226, 0.000000, 0.000000, -0.472695 - 0.888544, 0.000000, 0.000000, -0.458791 - 0.895643, 0.000000, 0.000000, -0.444773 - 0.902521, 0.000000, 0.000000, -0.430645 - 0.909177, 0.000000, 0.000000, -0.416411 - 0.915607, 0.000000, 0.000000, -0.402074 - 0.921812, 0.000000, 0.000000, -0.387638 - 0.927789, 0.000000, 0.000000, -0.373106 - 0.933537, 0.000000, 0.000000, -0.358482 - 0.939054, 0.000000, 0.000000, -0.343770 - 0.944340, 0.000000, 0.000000, -0.328972 - 0.949392, 0.000000, 0.000000, -0.314094 - 0.954210, 0.000000, 0.000000, -0.299137 - 0.958792, 0.000000, 0.000000, -0.284107 - 0.963138, 0.000000, 0.000000, -0.269007 - 0.967246, 0.000000, 0.000000, -0.253841 - 0.971115, 0.000000, 0.000000, -0.238611 - 0.974744, 0.000000, 0.000000, -0.223323 - 0.978133, 0.000000, 0.000000, -0.207980 - 0.981280, 0.000000, 0.000000, -0.192585 - 0.984185, 0.000000, 0.000000, -0.177143 - 0.986847, 0.000000, 0.000000, -0.161657 - 0.989265, 0.000000, 0.000000, -0.146131 - 0.991439, 0.000000, 0.000000, -0.130569 - 0.993368, 0.000000, 0.000000, -0.114975 - 0.995052, 0.000000, 0.000000, -0.099353 - 0.996491, 0.000000, 0.000000, -0.083706 - 0.997683, 0.000000, 0.000000, -0.068038 - 0.998629, 0.000000, 0.000000, -0.052353 - 0.999328, 0.000000, 0.000000, -0.036656 - 0.999781, 0.000000, 0.000000, -0.020949 - 0.999986, 0.000000, 0.000000, -0.005238 - 0.999945, 0.000000, 0.000000, 0.010475 - 0.999657, 0.000000, 0.000000, 0.026186 - 0.999122, 0.000000, 0.000000, 0.041890 - 0.998341, 0.000000, 0.000000, 0.057583 - 0.997313, 0.000000, 0.000000, 0.073263 - 0.996038, 0.000000, 0.000000, 0.088924 - 0.994518, 0.000000, 0.000000, 0.104563 - 0.992753, 0.000000, 0.000000, 0.120177 - 0.990742, 0.000000, 0.000000, 0.135761 - 0.988486, 0.000000, 0.000000, 0.151311 - 0.985987, 0.000000, 0.000000, 0.166824 - 0.983244, 0.000000, 0.000000, 0.182296 - 0.980258, 0.000000, 0.000000, 0.197722 - 0.977030, 0.000000, 0.000000, 0.213100 - 0.973561, 0.000000, 0.000000, 0.228426 - 0.969852, 0.000000, 0.000000, 0.243695 - 0.965903, 0.000000, 0.000000, 0.258903 - 0.961716, 0.000000, 0.000000, 0.274048 - 0.957291, 0.000000, 0.000000, 0.289125 - 0.952630, 0.000000, 0.000000, 0.304131 - 0.947734, 0.000000, 0.000000, 0.319062 - 0.942604, 0.000000, 0.000000, 0.333914 - 0.937241, 0.000000, 0.000000, 0.348683 - 0.931646, 0.000000, 0.000000, 0.363367 - 0.925822, 0.000000, 0.000000, 0.377960 - 0.919769, 0.000000, 0.000000, 0.392461 - 0.913489, 0.000000, 0.000000, 0.406864 - 0.906983, 0.000000, 0.000000, 0.421167 - 0.900253, 0.000000, 0.000000, 0.435366 - 0.893302, 0.000000, 0.000000, 0.449458 - 0.886129, 0.000000, 0.000000, 0.463438 - 0.878738, 0.000000, 0.000000, 0.477305 - 0.871130, 0.000000, 0.000000, 0.491053 - 0.863307, 0.000000, 0.000000, 0.504680 - 0.855270, 0.000000, 0.000000, 0.518182 - 0.847023, 0.000000, 0.000000, 0.531557 - 0.838566, 0.000000, 0.000000, 0.544800 - 0.829902, 0.000000, 0.000000, 0.557909 - 0.821034, 0.000000, 0.000000, 0.570880 - 0.811962, 0.000000, 0.000000, 0.583710 - 0.802690, 0.000000, 0.000000, 0.596396 - 0.793220, 0.000000, 0.000000, 0.608935 - 0.783555, 0.000000, 0.000000, 0.621323 - 0.773695, 0.000000, 0.000000, 0.633558 - 0.763645, 0.000000, 0.000000, 0.645636 - 0.753406, 0.000000, 0.000000, 0.657555 - 0.742981, 0.000000, 0.000000, 0.669312 - 0.732373, 0.000000, 0.000000, 0.680904 - 0.721584, 0.000000, 0.000000, 0.692327 - 0.710616, 0.000000, 0.000000, 0.703580 - 0.699474, 0.000000, 0.000000, 0.714658 - 0.688158, 0.000000, 0.000000, 0.725561 - 0.676673, 0.000000, 0.000000, 0.736284 - 0.665020, 0.000000, 0.000000, 0.746825 - 0.653204, 0.000000, 0.000000, 0.757182 - 0.641226, 0.000000, 0.000000, 0.767352 - 0.629090, 0.000000, 0.000000, 0.777333 - 0.616798, 0.000000, 0.000000, 0.787121 - 0.604354, 0.000000, 0.000000, 0.796716 - 0.591761, 0.000000, 0.000000, 0.806113 - 0.579022, 0.000000, 0.000000, 0.815312 - 0.566140, 0.000000, 0.000000, 0.824309 - 0.553118, 0.000000, 0.000000, 0.833103 - 0.539960, 0.000000, 0.000000, 0.841691 - 0.526668, 0.000000, 0.000000, 0.850071 - 0.513246, 0.000000, 0.000000, 0.858241 - 0.499698, 0.000000, 0.000000, 0.866200 - 0.486026, 0.000000, 0.000000, 0.873945 - 0.472234, 0.000000, 0.000000, 0.881473 - 0.458325, 0.000000, 0.000000, 0.888785 - 0.444304, 0.000000, 0.000000, 0.895876 - 0.430172, 0.000000, 0.000000, 0.902747 - 0.415935, 0.000000, 0.000000, 0.909394 - 0.401594, 0.000000, 0.000000, 0.915818 - 0.387155, 0.000000, 0.000000, 0.922015 - 0.372620, 0.000000, 0.000000, 0.927984 - 0.357993, 0.000000, 0.000000, 0.933724 - 0.343278, 0.000000, 0.000000, 0.939234 - 0.328478, 0.000000, 0.000000, 0.944512 - 0.313596, 0.000000, 0.000000, 0.949556 - 0.298638, 0.000000, 0.000000, 0.954367 - 0.283605, 0.000000, 0.000000, 0.958941 - 0.268503, 0.000000, 0.000000, 0.963279 - 0.253334, 0.000000, 0.000000, 0.967379 - 0.238103, 0.000000, 0.000000, 0.971240 - 0.222813, 0.000000, 0.000000, 0.974861 - 0.207468, 0.000000, 0.000000, 0.978242 - 0.192071, 0.000000, 0.000000, 0.981381 - 0.176628, 0.000000, 0.000000, 0.984278 - 0.161140, 0.000000, 0.000000, 0.986932 - 0.145613, 0.000000, 0.000000, 0.989342 - 0.130050, 0.000000, 0.000000, 0.991507 - 0.114455, 0.000000, 0.000000, 0.993428 - 0.098832, 0.000000, 0.000000, 0.995104 - 0.083184, 0.000000, 0.000000, 0.996534 - 0.067515, 0.000000, 0.000000, 0.997718 - 0.051830, 0.000000, 0.000000, 0.998656 - 0.036132, 0.000000, 0.000000, 0.999347 - 0.020426, 0.000000, 0.000000, 0.999791 - 0.004714, 0.000000, 0.000000, 0.999989 - -0.010999, -0.000000, 0.000000, 0.999940 - -0.026709, -0.000000, 0.000000, 0.999643 - -0.042413, -0.000000, 0.000000, 0.999100 - -0.058106, -0.000000, 0.000000, 0.998310 - -0.073785, -0.000000, 0.000000, 0.997274 - -0.089446, -0.000000, 0.000000, 0.995992 - -0.105084, -0.000000, 0.000000, 0.994463 - -0.120697, -0.000000, 0.000000, 0.992689 - -0.136279, -0.000000, 0.000000, 0.990670 - -0.151829, -0.000000, 0.000000, 0.988407 - -0.167340, -0.000000, 0.000000, 0.985899 - -0.182811, -0.000000, 0.000000, 0.983148 - -0.198236, -0.000000, 0.000000, 0.980154 - -0.213612, -0.000000, 0.000000, 0.976919 - -0.228936, -0.000000, 0.000000, 0.973442 - -0.244203, -0.000000, 0.000000, 0.969724 - -0.259409, -0.000000, 0.000000, 0.965767 - -0.274552, -0.000000, 0.000000, 0.961572 - -0.289627, -0.000000, 0.000000, 0.957140 - -0.304630, -0.000000, 0.000000, 0.952471 - -0.319558, -0.000000, 0.000000, 0.947567 - -0.334407, -0.000000, 0.000000, 0.942429 - -0.349174, -0.000000, 0.000000, 0.937058 - -0.363855, -0.000000, 0.000000, 0.931456 - -0.378445, -0.000000, 0.000000, 0.925624 - -0.392942, -0.000000, 0.000000, 0.919563 - -0.407343, -0.000000, 0.000000, 0.913275 - -0.421642, -0.000000, 0.000000, 0.906762 - -0.435838, -0.000000, 0.000000, 0.900025 - -0.449926, -0.000000, 0.000000, 0.893066 - -0.463902, -0.000000, 0.000000, 0.885886 - -0.477765, -0.000000, 0.000000, 0.878488 - -0.491509, -0.000000, 0.000000, 0.870872 - -0.505132, -0.000000, 0.000000, 0.863042 - -0.518630, -0.000000, 0.000000, 0.854999 - -0.532000, -0.000000, 0.000000, 0.846744 - -0.545239, -0.000000, 0.000000, 0.838280 - -0.558343, -0.000000, 0.000000, 0.829610 - -0.571310, -0.000000, 0.000000, 0.820734 - -0.584135, -0.000000, 0.000000, 0.811656 - -0.596816, -0.000000, 0.000000, 0.802378 - -0.609350, -0.000000, 0.000000, 0.792901 - -0.621733, -0.000000, 0.000000, 0.783229 - -0.633963, -0.000000, 0.000000, 0.773363 - -0.646036, -0.000000, 0.000000, 0.763307 - -0.657950, -0.000000, 0.000000, 0.753062 - -0.669701, -0.000000, 0.000000, 0.742631 - -0.681287, -0.000000, 0.000000, 0.732016 - -0.692705, -0.000000, 0.000000, 0.721221 - -0.703952, -0.000000, 0.000000, 0.710248 - -0.715025, -0.000000, 0.000000, 0.699099 - -0.725921, -0.000000, 0.000000, 0.687778 - -0.736638, -0.000000, 0.000000, 0.676287 - -0.747173, -0.000000, 0.000000, 0.664629 - -0.757524, -0.000000, 0.000000, 0.652807 - -0.767688, -0.000000, 0.000000, 0.640824 - -0.777662, -0.000000, 0.000000, 0.628682 - -0.787444, -0.000000, 0.000000, 0.616386 - -0.797032, -0.000000, 0.000000, 0.603937 - -0.806423, -0.000000, 0.000000, 0.591339 - -0.815615, -0.000000, 0.000000, 0.578595 - -0.824606, -0.000000, 0.000000, 0.565708 - -0.833392, -0.000000, 0.000000, 0.552682 - -0.841974, -0.000000, 0.000000, 0.539519 - -0.850347, -0.000000, 0.000000, 0.526223 - -0.858510, -0.000000, 0.000000, 0.512797 - -0.866462, -0.000000, 0.000000, 0.499244 - -0.874199, -0.000000, 0.000000, 0.485568 - -0.881721, -0.000000, 0.000000, 0.471772 - -0.889024, -0.000000, 0.000000, 0.457860 - -0.896109, -0.000000, 0.000000, 0.443834 - -0.902972, -0.000000, 0.000000, 0.429699 - -0.909612, -0.000000, 0.000000, 0.415458 - -0.916028, -0.000000, 0.000000, 0.401115 - -0.922217, -0.000000, 0.000000, 0.386672 - -0.928179, -0.000000, 0.000000, 0.372134 - -0.933912, -0.000000, 0.000000, 0.357504 - -0.939414, -0.000000, 0.000000, 0.342786 - -0.944684, -0.000000, 0.000000, 0.327983 - -0.949721, -0.000000, 0.000000, 0.313099 - -0.954523, -0.000000, 0.000000, 0.298138 - -0.959090, -0.000000, 0.000000, 0.283103 - -0.963419, -0.000000, 0.000000, 0.267998 - -0.967511, -0.000000, 0.000000, 0.252827 - -0.971365, -0.000000, 0.000000, 0.237594 - -0.974978, -0.000000, 0.000000, 0.222302 - -0.978350, -0.000000, 0.000000, 0.206955 - -0.981481, -0.000000, 0.000000, 0.191557 - -0.984370, -0.000000, 0.000000, 0.176112 - -0.987016, -0.000000, 0.000000, 0.160623 - -0.989418, -0.000000, 0.000000, 0.145095 - -0.991575, -0.000000, 0.000000, 0.129531 - -0.993488, -0.000000, 0.000000, 0.113935 - -0.995156, -0.000000, 0.000000, 0.098310 - -0.996578, -0.000000, 0.000000, 0.082662 - -0.997753, -0.000000, 0.000000, 0.066993 - -0.998683, -0.000000, 0.000000, 0.051307 - -0.999366, -0.000000, 0.000000, 0.035609 - -0.999802, -0.000000, 0.000000, 0.019902 - -0.999991, -0.000000, 0.000000, 0.004190 - -0.999934, 0.000000, -0.000000, -0.011523 - -0.999629, 0.000000, -0.000000, -0.027233 - -0.999078, 0.000000, -0.000000, -0.042936 - -0.998280, 0.000000, -0.000000, -0.058629 - -0.997235, 0.000000, -0.000000, -0.074307 - -0.995945, 0.000000, -0.000000, -0.089967 - -0.994408, 0.000000, -0.000000, -0.105605 - -0.992626, 0.000000, -0.000000, -0.121217 - -0.990599, 0.000000, -0.000000, -0.136798 - -0.988327, 0.000000, -0.000000, -0.152346 - -0.985811, 0.000000, -0.000000, -0.167857 - -0.983052, 0.000000, -0.000000, -0.183326 - -0.980050, 0.000000, -0.000000, -0.198749 - -0.976807, 0.000000, -0.000000, -0.214124 - -0.973322, 0.000000, -0.000000, -0.229445 - -0.969596, 0.000000, -0.000000, -0.244710 - -0.965631, 0.000000, -0.000000, -0.259915 - -0.961428, 0.000000, -0.000000, -0.275056 - -0.956988, 0.000000, -0.000000, -0.290128 - -0.952311, 0.000000, -0.000000, -0.305129 - -0.947399, 0.000000, -0.000000, -0.320055 - -0.942253, 0.000000, -0.000000, -0.334901 - -0.936875, 0.000000, -0.000000, -0.349665 - -0.931265, 0.000000, -0.000000, -0.364342 - -0.925425, 0.000000, -0.000000, -0.378930 - -0.919357, 0.000000, -0.000000, -0.393424 - -0.913062, 0.000000, -0.000000, -0.407821 - -0.906541, 0.000000, -0.000000, -0.422117 - -0.899797, 0.000000, -0.000000, -0.436309 - -0.892830, 0.000000, -0.000000, -0.450393 - -0.885643, 0.000000, -0.000000, -0.464366 - -0.878237, 0.000000, -0.000000, -0.478225 - -0.870615, 0.000000, -0.000000, -0.491965 - -0.862777, 0.000000, -0.000000, -0.505584 - -0.854727, 0.000000, -0.000000, -0.519078 - -0.846465, 0.000000, -0.000000, -0.532444 - -0.837995, 0.000000, -0.000000, -0.545678 - -0.829317, 0.000000, -0.000000, -0.558778 - -0.820435, 0.000000, -0.000000, -0.571740 - -0.811350, 0.000000, -0.000000, -0.584560 - -0.802065, 0.000000, -0.000000, -0.597236 - -0.792582, 0.000000, -0.000000, -0.609765 - -0.782903, 0.000000, -0.000000, -0.622143 - -0.773031, 0.000000, -0.000000, -0.634368 - -0.762968, 0.000000, -0.000000, -0.646436 - -0.752717, 0.000000, -0.000000, -0.658344 - -0.742280, 0.000000, -0.000000, -0.670090 - -0.731659, 0.000000, -0.000000, -0.681671 - -0.720858, 0.000000, -0.000000, -0.693083 - -0.709879, 0.000000, -0.000000, -0.704324 - -0.698725, 0.000000, -0.000000, -0.715391 - -0.687398, 0.000000, -0.000000, -0.726281 - -0.675901, 0.000000, -0.000000, -0.736992 - -0.664238, 0.000000, -0.000000, -0.747521 - -0.652410, 0.000000, -0.000000, -0.757866 - -0.640422, 0.000000, -0.000000, -0.768023 - -0.628275, 0.000000, -0.000000, -0.777991 - -0.615973, 0.000000, -0.000000, -0.787767 - -0.603519, 0.000000, -0.000000, -0.797348 - -0.590917, 0.000000, -0.000000, -0.806733 - -0.578168, 0.000000, -0.000000, -0.815918 - -0.565276, 0.000000, -0.000000, -0.824902 - -0.552245, 0.000000, -0.000000, -0.833682 - -0.539078, 0.000000, -0.000000, -0.842256 - -0.525777, 0.000000, -0.000000, -0.850622 - -0.512347, 0.000000, -0.000000, -0.858779 - -0.498790, 0.000000, -0.000000, -0.866723 - -0.485110, 0.000000, -0.000000, -0.874453 - -0.471310, 0.000000, -0.000000, -0.881968 - -0.457394, 0.000000, -0.000000, -0.889264 - -0.443365, 0.000000, -0.000000, -0.896341 - -0.429226, 0.000000, -0.000000, -0.903197 - -0.414982, 0.000000, -0.000000, -0.909830 - -0.400635, 0.000000, -0.000000, -0.916238 - -0.386189, 0.000000, -0.000000, -0.922420 - -0.371648, 0.000000, -0.000000, -0.928374 - -0.357015, 0.000000, -0.000000, -0.934099 - -0.342294, 0.000000, -0.000000, -0.939593 - -0.327488, 0.000000, -0.000000, -0.944855 - -0.312601, 0.000000, -0.000000, -0.949884 - -0.297638, 0.000000, -0.000000, -0.954679 - -0.282600, 0.000000, -0.000000, -0.959238 - -0.267494, 0.000000, -0.000000, -0.963560 - -0.252321, 0.000000, -0.000000, -0.967644 - -0.237085, 0.000000, -0.000000, -0.971489 - -0.221791, 0.000000, -0.000000, -0.975094 - -0.206443, 0.000000, -0.000000, -0.978459 - -0.191043, 0.000000, -0.000000, -0.981582 - -0.175596, 0.000000, -0.000000, -0.984462 - -0.160106, 0.000000, -0.000000, -0.987100 - -0.144577, 0.000000, -0.000000, -0.989494 - -0.129011, 0.000000, -0.000000, -0.991643 - -0.113414, 0.000000, -0.000000, -0.993548 - -0.097789, 0.000000, -0.000000, -0.995207 - -0.082140, 0.000000, -0.000000, -0.996621 - -0.066470, 0.000000, -0.000000, -0.997788 - -0.050784, 0.000000, -0.000000, -0.998710 - -0.035086, 0.000000, -0.000000, -0.999384 - -0.019378, 0.000000, -0.000000, -0.999812 - -0.003666, 0.000000, -0.000000, -0.999993 - 0.012046, 0.000000, 0.000000, -0.999927 - 0.027756, 0.000000, 0.000000, -0.999615 - 0.043459, 0.000000, 0.000000, -0.999055 - 0.059152, 0.000000, 0.000000, -0.998249 - 0.074830, 0.000000, 0.000000, -0.997196 - 0.090489, 0.000000, 0.000000, -0.995897 - 0.106126, 0.000000, 0.000000, -0.994353 - 0.121736, 0.000000, 0.000000, -0.992562 - 0.137317, 0.000000, 0.000000, -0.990527 - 0.152864, 0.000000, 0.000000, -0.988247 - 0.168373, 0.000000, 0.000000, -0.985723 - 0.183840, 0.000000, 0.000000, -0.982956 - 0.199262, 0.000000, 0.000000, -0.979946 - 0.214635, 0.000000, 0.000000, -0.976694 - 0.229955, 0.000000, 0.000000, -0.973201 - 0.245218, 0.000000, 0.000000, -0.969468 - 0.260421, 0.000000, 0.000000, -0.965495 - 0.275559, 0.000000, 0.000000, -0.961284 - 0.290629, 0.000000, 0.000000, -0.956836 - 0.305628, 0.000000, 0.000000, -0.952151 - 0.320551, 0.000000, 0.000000, -0.947231 - 0.335395, 0.000000, 0.000000, -0.942078 - 0.350156, 0.000000, 0.000000, -0.936692 - 0.364830, 0.000000, 0.000000, -0.931074 - 0.379415, 0.000000, 0.000000, -0.925227 - 0.393906, 0.000000, 0.000000, -0.919151 - 0.408299, 0.000000, 0.000000, -0.912848 - 0.422592, 0.000000, 0.000000, -0.906320 - 0.436780, 0.000000, 0.000000, -0.899568 - 0.450861, 0.000000, 0.000000, -0.892594 - 0.464830, 0.000000, 0.000000, -0.885400 - 0.478685, 0.000000, 0.000000, -0.877987 - 0.492421, 0.000000, 0.000000, -0.870357 - 0.506036, 0.000000, 0.000000, -0.862512 - 0.519526, 0.000000, 0.000000, -0.854455 - 0.532887, 0.000000, 0.000000, -0.846186 - 0.546117, 0.000000, 0.000000, -0.837709 - 0.559212, 0.000000, 0.000000, -0.829025 - 0.572169, 0.000000, 0.000000, -0.820136 - 0.584985, 0.000000, 0.000000, -0.811044 - 0.597656, 0.000000, 0.000000, -0.801752 - 0.610180, 0.000000, 0.000000, -0.792263 - 0.622553, 0.000000, 0.000000, -0.782577 - 0.634773, 0.000000, 0.000000, -0.772699 - 0.646835, 0.000000, 0.000000, -0.762630 - 0.658739, 0.000000, 0.000000, -0.752372 - 0.670479, 0.000000, 0.000000, -0.741929 - 0.682054, 0.000000, 0.000000, -0.731302 - 0.693460, 0.000000, 0.000000, -0.720495 - 0.704695, 0.000000, 0.000000, -0.709510 - 0.715757, 0.000000, 0.000000, -0.698350 - 0.726641, 0.000000, 0.000000, -0.687017 - 0.737346, 0.000000, 0.000000, -0.675515 - 0.747869, 0.000000, 0.000000, -0.663846 - 0.758208, 0.000000, 0.000000, -0.652013 - 0.768359, 0.000000, 0.000000, -0.640019 - 0.778320, 0.000000, 0.000000, -0.627867 - 0.788090, 0.000000, 0.000000, -0.615561 - 0.797664, 0.000000, 0.000000, -0.603102 - 0.807042, 0.000000, 0.000000, -0.590494 - 0.816221, 0.000000, 0.000000, -0.577740 - 0.825198, 0.000000, 0.000000, -0.564844 - 0.833971, 0.000000, 0.000000, -0.551808 - 0.842538, 0.000000, 0.000000, -0.538636 - 0.850898, 0.000000, 0.000000, -0.525332 - 0.859047, 0.000000, 0.000000, -0.511897 - 0.866984, 0.000000, 0.000000, -0.498336 - 0.874707, 0.000000, 0.000000, -0.484652 - 0.882214, 0.000000, 0.000000, -0.470848 - 0.889504, 0.000000, 0.000000, -0.456928 - 0.896573, 0.000000, 0.000000, -0.442895 - 0.903422, 0.000000, 0.000000, -0.428753 - 0.910047, 0.000000, 0.000000, -0.414505 - 0.916448, 0.000000, 0.000000, -0.400155 - 0.922622, 0.000000, 0.000000, -0.385706 - 0.928568, 0.000000, 0.000000, -0.371161 - 0.934286, 0.000000, 0.000000, -0.356525 - 0.939772, 0.000000, 0.000000, -0.341801 - 0.945027, 0.000000, 0.000000, -0.326993 - 0.950048, 0.000000, 0.000000, -0.312104 - 0.954835, 0.000000, 0.000000, -0.297138 - 0.959386, 0.000000, 0.000000, -0.282098 - 0.963700, 0.000000, 0.000000, -0.266989 - 0.967776, 0.000000, 0.000000, -0.251814 - 0.971613, 0.000000, 0.000000, -0.236576 - 0.975210, 0.000000, 0.000000, -0.221281 - 0.978567, 0.000000, 0.000000, -0.205930 - 0.981682, 0.000000, 0.000000, -0.190529 - 0.984554, 0.000000, 0.000000, -0.175081 - 0.987183, 0.000000, 0.000000, -0.159589 - 0.989569, 0.000000, 0.000000, -0.144058 - 0.991711, 0.000000, 0.000000, -0.128492 - 0.993607, 0.000000, 0.000000, -0.112894 - 0.995258, 0.000000, 0.000000, -0.097268 - 0.996664, 0.000000, 0.000000, -0.081618 - 0.997823, 0.000000, 0.000000, -0.065948 - 0.998736, 0.000000, 0.000000, -0.050261 - 0.999403, 0.000000, 0.000000, -0.034562 - 0.999822, 0.000000, 0.000000, -0.018855 - 0.999995, 0.000000, 0.000000, -0.003143 - 0.999921, 0.000000, 0.000000, 0.012570 - 0.999600, 0.000000, 0.000000, 0.028280 - 0.999032, 0.000000, 0.000000, 0.043983 - 0.998218, 0.000000, 0.000000, 0.059675 - 0.997157, 0.000000, 0.000000, 0.075352 - 0.995850, 0.000000, 0.000000, 0.091010 - 0.994297, 0.000000, 0.000000, 0.106647 - 0.992499, 0.000000, 0.000000, 0.122256 - 0.990455, 0.000000, 0.000000, 0.137836 - 0.988167, 0.000000, 0.000000, 0.153382 - 0.985635, 0.000000, 0.000000, 0.168889 - 0.982860, 0.000000, 0.000000, 0.184355 - 0.979842, 0.000000, 0.000000, 0.199776 - 0.976582, 0.000000, 0.000000, 0.215147 - 0.973081, 0.000000, 0.000000, 0.230465 - 0.969339, 0.000000, 0.000000, 0.245726 - 0.965359, 0.000000, 0.000000, 0.260926 - 0.961140, 0.000000, 0.000000, 0.276062 - 0.956683, 0.000000, 0.000000, 0.291130 - 0.951991, 0.000000, 0.000000, 0.306126 - 0.947063, 0.000000, 0.000000, 0.321047 - 0.941902, 0.000000, 0.000000, 0.335888 - 0.936508, 0.000000, 0.000000, 0.350646 - 0.930883, 0.000000, 0.000000, 0.365318 - 0.925028, 0.000000, 0.000000, 0.379899 - 0.918944, 0.000000, 0.000000, 0.394387 - 0.912634, 0.000000, 0.000000, 0.408777 - 0.906099, 0.000000, 0.000000, 0.423067 - 0.899339, 0.000000, 0.000000, 0.437251 - 0.892358, 0.000000, 0.000000, 0.451328 - 0.885156, 0.000000, 0.000000, 0.465294 - 0.877736, 0.000000, 0.000000, 0.479145 - 0.870099, 0.000000, 0.000000, 0.492877 - 0.862247, 0.000000, 0.000000, 0.506487 - 0.854183, 0.000000, 0.000000, 0.519973 - 0.845907, 0.000000, 0.000000, 0.533330 - 0.837423, 0.000000, 0.000000, 0.546556 - 0.828732, 0.000000, 0.000000, 0.559646 - 0.819836, 0.000000, 0.000000, 0.572599 - 0.810738, 0.000000, 0.000000, 0.585410 - 0.801439, 0.000000, 0.000000, 0.598076 - 0.791943, 0.000000, 0.000000, 0.610595 - 0.782251, 0.000000, 0.000000, 0.622963 - 0.772366, 0.000000, 0.000000, 0.635177 - 0.762291, 0.000000, 0.000000, 0.647235 - 0.752027, 0.000000, 0.000000, 0.659132 - 0.741577, 0.000000, 0.000000, 0.670867 - 0.730945, 0.000000, 0.000000, 0.682437 - 0.720132, 0.000000, 0.000000, 0.693837 - 0.709141, 0.000000, 0.000000, 0.705067 - 0.697975, 0.000000, 0.000000, 0.716122 - 0.686637, 0.000000, 0.000000, 0.727001 - 0.675129, 0.000000, 0.000000, 0.737700 - 0.663454, 0.000000, 0.000000, 0.748217 - 0.651616, 0.000000, 0.000000, 0.758549 - 0.639617, 0.000000, 0.000000, 0.768694 - 0.627460, 0.000000, 0.000000, 0.778649 - 0.615148, 0.000000, 0.000000, 0.788412 - 0.602684, 0.000000, 0.000000, 0.797980 - 0.590071, 0.000000, 0.000000, 0.807351 - 0.577313, 0.000000, 0.000000, 0.816523 - 0.564412, 0.000000, 0.000000, 0.825493 - 0.551371, 0.000000, 0.000000, 0.834260 - 0.538195, 0.000000, 0.000000, 0.842820 - 0.524886, 0.000000, 0.000000, 0.851173 - 0.511447, 0.000000, 0.000000, 0.859315 - 0.497882, 0.000000, 0.000000, 0.867245 - 0.484194, 0.000000, 0.000000, 0.874961 - 0.470386, 0.000000, 0.000000, 0.882461 - 0.456462, 0.000000, 0.000000, 0.889743 - 0.442426, 0.000000, 0.000000, 0.896805 - 0.428280, 0.000000, 0.000000, 0.903646 - 0.414029, 0.000000, 0.000000, 0.910264 - 0.399675, 0.000000, 0.000000, 0.916657 - 0.385222, 0.000000, 0.000000, 0.922824 - 0.370675, 0.000000, 0.000000, 0.928763 - 0.356036, 0.000000, 0.000000, 0.934472 - 0.341309, 0.000000, 0.000000, 0.939951 - 0.326498, 0.000000, 0.000000, 0.945198 - 0.311606, 0.000000, 0.000000, 0.950211 - 0.296637, 0.000000, 0.000000, 0.954990 - 0.281595, 0.000000, 0.000000, 0.959533 - 0.266484, 0.000000, 0.000000, 0.963839 - 0.251307, 0.000000, 0.000000, 0.967907 - 0.236067, 0.000000, 0.000000, 0.971737 - 0.220770, 0.000000, 0.000000, 0.975326 - 0.205418, 0.000000, 0.000000, 0.978674 - 0.190015, 0.000000, 0.000000, 0.981781 - 0.174565, 0.000000, 0.000000, 0.984646 - 0.159072, 0.000000, 0.000000, 0.987267 - 0.143540, 0.000000, 0.000000, 0.989644 - 0.127973, 0.000000, 0.000000, 0.991778 - 0.112373, 0.000000, 0.000000, 0.993666 - 0.096747, 0.000000, 0.000000, 0.995309 - 0.081096, 0.000000, 0.000000, 0.996706 - 0.065425, 0.000000, 0.000000, 0.997857 - 0.049738, 0.000000, 0.000000, 0.998762 - 0.034039, 0.000000, 0.000000, 0.999421 - 0.018331, 0.000000, 0.000000, 0.999832 - 0.002619, 0.000000, 0.000000, 0.999997 - -0.013094, -0.000000, 0.000000, 0.999914 - -0.028804, -0.000000, 0.000000, 0.999585 - -0.044506, -0.000000, 0.000000, 0.999009 - -0.060198, -0.000000, 0.000000, 0.998186 - -0.075874, -0.000000, 0.000000, 0.997117 - -0.091532, -0.000000, 0.000000, 0.995802 - -0.107167, -0.000000, 0.000000, 0.994241 - -0.122776, -0.000000, 0.000000, 0.992434 - -0.138355, -0.000000, 0.000000, 0.990383 - -0.153899, -0.000000, 0.000000, 0.988087 - -0.169405, -0.000000, 0.000000, 0.985546 - -0.184870, -0.000000, 0.000000, 0.982763 - -0.200289, -0.000000, 0.000000, 0.979737 - -0.215658, -0.000000, 0.000000, 0.976469 - -0.230975, -0.000000, 0.000000, 0.972960 - -0.246234, -0.000000, 0.000000, 0.969210 - -0.261432, -0.000000, 0.000000, 0.965222 - -0.276566, -0.000000, 0.000000, 0.960995 - -0.291631, -0.000000, 0.000000, 0.956531 - -0.306625, -0.000000, 0.000000, 0.951830 - -0.321543, -0.000000, 0.000000, 0.946895 - -0.336381, -0.000000, 0.000000, 0.941726 - -0.351137, -0.000000, 0.000000, 0.936324 - -0.365805, -0.000000, 0.000000, 0.930691 - -0.380384, -0.000000, 0.000000, 0.924829 - -0.394868, -0.000000, 0.000000, 0.918738 - -0.409255, -0.000000, 0.000000, 0.912420 - -0.423541, -0.000000, 0.000000, 0.905877 - -0.437722, -0.000000, 0.000000, 0.899110 - -0.451796, -0.000000, 0.000000, 0.892121 - -0.465757, -0.000000, 0.000000, 0.884912 - -0.479604, -0.000000, 0.000000, 0.877485 - -0.493332, -0.000000, 0.000000, 0.869841 - -0.506939, -0.000000, 0.000000, 0.861982 - -0.520420, -0.000000, 0.000000, 0.853910 - -0.533773, -0.000000, 0.000000, 0.845628 - -0.546994, -0.000000, 0.000000, 0.837136 - -0.560080, -0.000000, 0.000000, 0.828438 - -0.573028, -0.000000, 0.000000, 0.819536 - -0.585834, -0.000000, 0.000000, 0.810431 - -0.598496, -0.000000, 0.000000, 0.801126 - -0.611010, -0.000000, 0.000000, 0.791623 - -0.623373, -0.000000, 0.000000, 0.781925 - -0.635582, -0.000000, 0.000000, 0.772033 - -0.647634, -0.000000, 0.000000, 0.761952 - -0.659526, -0.000000, 0.000000, 0.751682 - -0.671256, -0.000000, 0.000000, 0.741226 - -0.682819, -0.000000, 0.000000, 0.730587 - -0.694214, -0.000000, 0.000000, 0.719768 - -0.705438, -0.000000, 0.000000, 0.708771 - -0.716488, -0.000000, 0.000000, 0.697600 - -0.727360, -0.000000, 0.000000, 0.686256 - -0.738053, -0.000000, 0.000000, 0.674742 - -0.748564, -0.000000, 0.000000, 0.663062 - -0.758890, -0.000000, 0.000000, 0.651219 - -0.769029, -0.000000, 0.000000, 0.639214 - -0.778978, -0.000000, 0.000000, 0.627052 - -0.788734, -0.000000, 0.000000, 0.614735 - -0.798296, -0.000000, 0.000000, 0.602266 - -0.807660, -0.000000, 0.000000, 0.589648 - -0.816825, -0.000000, 0.000000, 0.576885 - -0.825789, -0.000000, 0.000000, 0.563979 - -0.834549, -0.000000, 0.000000, 0.550934 - -0.843102, -0.000000, 0.000000, 0.537754 - -0.851447, -0.000000, 0.000000, 0.524440 - -0.859583, -0.000000, 0.000000, 0.510997 - -0.867506, -0.000000, 0.000000, 0.497427 - -0.875214, -0.000000, 0.000000, 0.483735 - -0.882707, -0.000000, 0.000000, 0.469924 - -0.889982, -0.000000, 0.000000, 0.455996 - -0.897037, -0.000000, 0.000000, 0.441956 - -0.903870, -0.000000, 0.000000, 0.427807 - -0.910481, -0.000000, 0.000000, 0.413552 - -0.916866, -0.000000, 0.000000, 0.399195 - -0.923025, -0.000000, 0.000000, 0.384739 - -0.928957, -0.000000, 0.000000, 0.370188 - -0.934659, -0.000000, 0.000000, 0.355547 - -0.940130, -0.000000, 0.000000, 0.340817 - -0.945369, -0.000000, 0.000000, 0.326003 - -0.950374, -0.000000, 0.000000, 0.311108 - -0.955145, -0.000000, 0.000000, 0.296137 - -0.959681, -0.000000, 0.000000, 0.281093 - -0.963979, -0.000000, 0.000000, 0.265979 - -0.968039, -0.000000, 0.000000, 0.250800 - -0.971860, -0.000000, 0.000000, 0.235558 - -0.975441, -0.000000, 0.000000, 0.220259 - -0.978782, -0.000000, 0.000000, 0.204905 - -0.981881, -0.000000, 0.000000, 0.189501 - -0.984737, -0.000000, 0.000000, 0.174049 - -0.987350, -0.000000, 0.000000, 0.158555 - -0.989720, -0.000000, 0.000000, 0.143022 - -0.991845, -0.000000, 0.000000, 0.127453 - -0.993725, -0.000000, 0.000000, 0.111853 - -0.995360, -0.000000, 0.000000, 0.096225 - -0.996749, -0.000000, 0.000000, 0.080574 - -0.997892, -0.000000, 0.000000, 0.064902 - -0.998788, -0.000000, 0.000000, 0.049215 - -0.999438, -0.000000, 0.000000, 0.033515 - -0.999841, -0.000000, 0.000000, 0.017807 - -0.999998, -0.000000, 0.000000, 0.002095 - -0.999907, 0.000000, -0.000000, -0.013618 - -0.999570, 0.000000, -0.000000, -0.029327 - -0.998986, 0.000000, -0.000000, -0.045029 - -0.998155, 0.000000, -0.000000, -0.060720 - -0.997078, 0.000000, -0.000000, -0.076396 - -0.995754, 0.000000, -0.000000, -0.092054 - -0.994185, 0.000000, -0.000000, -0.107688 - -0.992370, 0.000000, -0.000000, -0.123296 - -0.990310, 0.000000, -0.000000, -0.138873 - -0.988006, 0.000000, -0.000000, -0.154417 - -0.985458, 0.000000, -0.000000, -0.169922 - -0.982666, 0.000000, -0.000000, -0.185385 - -0.979632, 0.000000, -0.000000, -0.200802 - -0.976356, 0.000000, -0.000000, -0.216170 - -0.972839, 0.000000, -0.000000, -0.231484 - -0.969081, 0.000000, -0.000000, -0.246741 - -0.965085, 0.000000, -0.000000, -0.261938 - -0.960850, 0.000000, -0.000000, -0.277069 - -0.956378, 0.000000, -0.000000, -0.292132 - -0.951670, 0.000000, -0.000000, -0.307123 - -0.946727, 0.000000, -0.000000, -0.322039 - -0.941550, 0.000000, -0.000000, -0.336874 - -0.936140, 0.000000, -0.000000, -0.351627 - -0.930500, 0.000000, -0.000000, -0.366293 - -0.924629, 0.000000, -0.000000, -0.380868 - -0.918531, 0.000000, -0.000000, -0.395349 - -0.912206, 0.000000, -0.000000, -0.409733 - -0.905655, 0.000000, -0.000000, -0.424015 - -0.898881, 0.000000, -0.000000, -0.438193 - -0.891885, 0.000000, -0.000000, -0.452263 - -0.884668, 0.000000, -0.000000, -0.466221 - -0.877234, 0.000000, -0.000000, -0.480064 - -0.869582, 0.000000, -0.000000, -0.493788 - -0.861716, 0.000000, -0.000000, -0.507390 - -0.853638, 0.000000, -0.000000, -0.520868 - -0.845348, 0.000000, -0.000000, -0.534216 - -0.836850, 0.000000, -0.000000, -0.547433 - -0.828145, 0.000000, -0.000000, -0.560514 - -0.819235, 0.000000, -0.000000, -0.573457 - -0.810124, 0.000000, -0.000000, -0.586259 - -0.800812, 0.000000, -0.000000, -0.598915 - -0.791303, 0.000000, -0.000000, -0.611424 - -0.781598, 0.000000, -0.000000, -0.623782 - -0.771700, 0.000000, -0.000000, -0.635986 - -0.761612, 0.000000, -0.000000, -0.648033 - -0.751336, 0.000000, -0.000000, -0.659920 - -0.740874, 0.000000, -0.000000, -0.671644 - -0.730229, 0.000000, -0.000000, -0.683202 - -0.719404, 0.000000, -0.000000, -0.694591 - -0.708402, 0.000000, -0.000000, -0.705809 - -0.697224, 0.000000, -0.000000, -0.716853 - -0.685875, 0.000000, -0.000000, -0.727720 - -0.674356, 0.000000, -0.000000, -0.738407 - -0.662670, 0.000000, -0.000000, -0.748911 - -0.650821, 0.000000, -0.000000, -0.759231 - -0.638811, 0.000000, -0.000000, -0.769363 - -0.626644, 0.000000, -0.000000, -0.779306 - -0.614321, 0.000000, -0.000000, -0.789056 - -0.601848, 0.000000, -0.000000, -0.798611 - -0.589225, 0.000000, -0.000000, -0.807969 - -0.576457, 0.000000, -0.000000, -0.817127 - -0.563547, 0.000000, -0.000000, -0.826084 - -0.550497, 0.000000, -0.000000, -0.834837 - -0.537312, 0.000000, -0.000000, -0.843384 - -0.523994, 0.000000, -0.000000, -0.851722 - -0.510546, 0.000000, -0.000000, -0.859850 - -0.496973, 0.000000, -0.000000, -0.867766 - -0.483277, 0.000000, -0.000000, -0.875468 - -0.469461, 0.000000, -0.000000, -0.882953 - -0.455530, 0.000000, -0.000000, -0.890220 - -0.441486, 0.000000, -0.000000, -0.897268 - -0.427333, 0.000000, -0.000000, -0.904094 - -0.413075, 0.000000, -0.000000, -0.910697 - -0.398714, 0.000000, -0.000000, -0.917075 - -0.384256, 0.000000, -0.000000, -0.923227 - -0.369702, 0.000000, -0.000000, -0.929150 - -0.355057, 0.000000, -0.000000, -0.934845 - -0.340324, 0.000000, -0.000000, -0.940308 - -0.325508, 0.000000, -0.000000, -0.945539 - -0.310611, 0.000000, -0.000000, -0.950537 - -0.295637, 0.000000, -0.000000, -0.955300 - -0.280590, 0.000000, -0.000000, -0.959828 - -0.265474, 0.000000, -0.000000, -0.964118 - -0.250293, 0.000000, -0.000000, -0.968170 - -0.235049, 0.000000, -0.000000, -0.971983 - -0.219748, 0.000000, -0.000000, -0.975557 - -0.204392, 0.000000, -0.000000, -0.978889 - -0.188986, 0.000000, -0.000000, -0.981980 - -0.173534, 0.000000, -0.000000, -0.984828 - -0.158038, 0.000000, -0.000000, -0.987433 - -0.142503, 0.000000, -0.000000, -0.989794 - -0.126934, 0.000000, -0.000000, -0.991911 - -0.111332, 0.000000, -0.000000, -0.993783 - -0.095704, 0.000000, -0.000000, -0.995410 - -0.080052, 0.000000, -0.000000, -0.996791 - -0.064380, 0.000000, -0.000000, -0.997925 - -0.048692, 0.000000, -0.000000, -0.998814 - -0.032992, 0.000000, -0.000000, -0.999456 - -0.017284, 0.000000, -0.000000, -0.999851 - -0.001571, 0.000000, -0.000000, -0.999999 - 0.014141, 0.000000, 0.000000, -0.999900 - 0.029851, 0.000000, 0.000000, -0.999554 - 0.045553, 0.000000, 0.000000, -0.998962 - 0.061243, 0.000000, 0.000000, -0.998123 - 0.076919, 0.000000, 0.000000, -0.997037 - 0.092575, 0.000000, 0.000000, -0.995706 - 0.108209, 0.000000, 0.000000, -0.994128 - 0.123816, 0.000000, 0.000000, -0.992305 - 0.139392, 0.000000, 0.000000, -0.990237 - 0.154934, 0.000000, 0.000000, -0.987925 - 0.170438, 0.000000, 0.000000, -0.985368 - 0.185899, 0.000000, 0.000000, -0.982569 - 0.201315, 0.000000, 0.000000, -0.979527 - 0.216681, 0.000000, 0.000000, -0.976242 - 0.231994, 0.000000, 0.000000, -0.972717 - 0.247249, 0.000000, 0.000000, -0.968952 - 0.262443, 0.000000, 0.000000, -0.964947 - 0.277572, 0.000000, 0.000000, -0.960705 - 0.292633, 0.000000, 0.000000, -0.956225 - 0.307622, 0.000000, 0.000000, -0.951509 - 0.322535, 0.000000, 0.000000, -0.946558 - 0.337368, 0.000000, 0.000000, -0.941373 - 0.352117, 0.000000, 0.000000, -0.935956 - 0.366780, 0.000000, 0.000000, -0.930308 - 0.381352, 0.000000, 0.000000, -0.924430 - 0.395830, 0.000000, 0.000000, -0.918324 - 0.410211, 0.000000, 0.000000, -0.911991 - 0.424490, 0.000000, 0.000000, -0.905433 - 0.438664, 0.000000, 0.000000, -0.898651 - 0.452730, 0.000000, 0.000000, -0.891648 - 0.466684, 0.000000, 0.000000, -0.884424 - 0.480523, 0.000000, 0.000000, -0.876982 - 0.494243, 0.000000, 0.000000, -0.869324 - 0.507842, 0.000000, 0.000000, -0.861450 - 0.521315, 0.000000, 0.000000, -0.853365 - 0.534659, 0.000000, 0.000000, -0.845068 - 0.547871, 0.000000, 0.000000, -0.836563 - 0.560948, 0.000000, 0.000000, -0.827851 - 0.573886, 0.000000, 0.000000, -0.818935 - 0.586683, 0.000000, 0.000000, -0.809817 - 0.599335, 0.000000, 0.000000, -0.800498 - 0.611839, 0.000000, 0.000000, -0.790983 - 0.624192, 0.000000, 0.000000, -0.781271 - 0.636390, 0.000000, 0.000000, -0.771367 - 0.648432, 0.000000, 0.000000, -0.761273 - 0.660313, 0.000000, 0.000000, -0.750990 - 0.672032, 0.000000, 0.000000, -0.740522 - 0.683584, 0.000000, 0.000000, -0.729872 - 0.694968, 0.000000, 0.000000, -0.719041 - 0.706180, 0.000000, 0.000000, -0.708032 - 0.717218, 0.000000, 0.000000, -0.696849 - 0.728079, 0.000000, 0.000000, -0.685493 - 0.738760, 0.000000, 0.000000, -0.673969 - 0.749258, 0.000000, 0.000000, -0.662278 - 0.759572, 0.000000, 0.000000, -0.650423 - 0.769698, 0.000000, 0.000000, -0.638408 - 0.779634, 0.000000, 0.000000, -0.626235 - 0.789377, 0.000000, 0.000000, -0.613908 - 0.798926, 0.000000, 0.000000, -0.601429 - 0.808277, 0.000000, 0.000000, -0.588802 - 0.817429, 0.000000, 0.000000, -0.576029 - 0.826379, 0.000000, 0.000000, -0.563114 - 0.835125, 0.000000, 0.000000, -0.550060 - 0.843665, 0.000000, 0.000000, -0.536870 - 0.851996, 0.000000, 0.000000, -0.523548 - 0.860117, 0.000000, 0.000000, -0.510096 - 0.868026, 0.000000, 0.000000, -0.496518 - 0.875721, 0.000000, 0.000000, -0.482818 - 0.883199, 0.000000, 0.000000, -0.468999 - 0.890459, 0.000000, 0.000000, -0.455064 - 0.897499, 0.000000, 0.000000, -0.441016 - 0.904318, 0.000000, 0.000000, -0.426860 - 0.910913, 0.000000, 0.000000, -0.412598 - 0.917284, 0.000000, 0.000000, -0.398234 - 0.923428, 0.000000, 0.000000, -0.383772 - 0.929344, 0.000000, 0.000000, -0.369215 - 0.935031, 0.000000, 0.000000, -0.354567 - 0.940486, 0.000000, 0.000000, -0.339832 - 0.945710, 0.000000, 0.000000, -0.325012 - 0.950700, 0.000000, 0.000000, -0.310113 - 0.955455, 0.000000, 0.000000, -0.295136 - 0.959975, 0.000000, 0.000000, -0.280087 - 0.964257, 0.000000, 0.000000, -0.264969 - 0.968301, 0.000000, 0.000000, -0.249786 - 0.972106, 0.000000, 0.000000, -0.234540 - 0.975672, 0.000000, 0.000000, -0.219237 - 0.978996, 0.000000, 0.000000, -0.203880 - 0.982079, 0.000000, 0.000000, -0.188472 - 0.984919, 0.000000, 0.000000, -0.173018 - 0.987516, 0.000000, 0.000000, -0.157521 - 0.989869, 0.000000, 0.000000, -0.141985 - 0.991978, 0.000000, 0.000000, -0.126414 - 0.993841, 0.000000, 0.000000, -0.110812 - 0.995460, 0.000000, 0.000000, -0.095182 - 0.996833, 0.000000, 0.000000, -0.079529 - 0.997959, 0.000000, 0.000000, -0.063857 - 0.998839, 0.000000, 0.000000, -0.048169 - 0.999473, 0.000000, 0.000000, -0.032468 - 0.999860, 0.000000, 0.000000, -0.016760 - 0.999999, 0.000000, 0.000000, -0.001048 - 0.999892, 0.000000, 0.000000, 0.014665 - 0.999539, 0.000000, 0.000000, 0.030374 - 0.998938, 0.000000, 0.000000, 0.046076 - 0.998091, 0.000000, 0.000000, 0.061766 - 0.996997, 0.000000, 0.000000, 0.077441 - 0.995657, 0.000000, 0.000000, 0.093097 - 0.994071, 0.000000, 0.000000, 0.108729 - 0.992240, 0.000000, 0.000000, 0.124335 - 0.990164, 0.000000, 0.000000, 0.139911 - 0.987844, 0.000000, 0.000000, 0.155451 - 0.985279, 0.000000, 0.000000, 0.170954 - 0.982471, 0.000000, 0.000000, 0.186414 - 0.979421, 0.000000, 0.000000, 0.201828 - 0.976129, 0.000000, 0.000000, 0.217192 - 0.972596, 0.000000, 0.000000, 0.232503 - 0.968822, 0.000000, 0.000000, 0.247756 - 0.964810, 0.000000, 0.000000, 0.262948 - 0.960559, 0.000000, 0.000000, 0.278076 - 0.956071, 0.000000, 0.000000, 0.293134 - 0.951347, 0.000000, 0.000000, 0.308120 - 0.946389, 0.000000, 0.000000, 0.323030 - 0.941196, 0.000000, 0.000000, 0.337861 - 0.935771, 0.000000, 0.000000, 0.352607 - 0.930115, 0.000000, 0.000000, 0.367267 - 0.924230, 0.000000, 0.000000, 0.381836 - 0.918116, 0.000000, 0.000000, 0.396311 - 0.911776, 0.000000, 0.000000, 0.410688 - 0.905210, 0.000000, 0.000000, 0.424964 - 0.898421, 0.000000, 0.000000, 0.439135 - 0.891410, 0.000000, 0.000000, 0.453197 - 0.884179, 0.000000, 0.000000, 0.467147 - 0.876730, 0.000000, 0.000000, 0.480982 - 0.869065, 0.000000, 0.000000, 0.494699 - 0.861184, 0.000000, 0.000000, 0.508293 - 0.853091, 0.000000, 0.000000, 0.521761 - 0.844788, 0.000000, 0.000000, 0.535101 - 0.836276, 0.000000, 0.000000, 0.548309 - 0.827557, 0.000000, 0.000000, 0.561381 - 0.818634, 0.000000, 0.000000, 0.574315 - 0.809509, 0.000000, 0.000000, 0.587107 - 0.800184, 0.000000, 0.000000, 0.599754 - 0.790662, 0.000000, 0.000000, 0.612253 - 0.780944, 0.000000, 0.000000, 0.624601 - 0.771034, 0.000000, 0.000000, 0.636794 - 0.760933, 0.000000, 0.000000, 0.648830 - 0.750644, 0.000000, 0.000000, 0.660707 - 0.740170, 0.000000, 0.000000, 0.672420 - 0.729513, 0.000000, 0.000000, 0.683967 - 0.718676, 0.000000, 0.000000, 0.695345 - 0.707662, 0.000000, 0.000000, 0.706551 - 0.696473, 0.000000, 0.000000, 0.717583 - 0.685112, 0.000000, 0.000000, 0.728438 - 0.673582, 0.000000, 0.000000, 0.739113 - 0.661885, 0.000000, 0.000000, 0.749605 - 0.650025, 0.000000, 0.000000, 0.759913 - 0.638005, 0.000000, 0.000000, 0.770032 - 0.625827, 0.000000, 0.000000, 0.779962 - 0.613495, 0.000000, 0.000000, 0.789699 - 0.601011, 0.000000, 0.000000, 0.799241 - 0.588378, 0.000000, 0.000000, 0.808586 - 0.575601, 0.000000, 0.000000, 0.817731 - 0.562681, 0.000000, 0.000000, 0.826674 - 0.549622, 0.000000, 0.000000, 0.835413 - 0.536428, 0.000000, 0.000000, 0.843946 - 0.523101, 0.000000, 0.000000, 0.852270 - 0.509645, 0.000000, 0.000000, 0.860385 - 0.496064, 0.000000, 0.000000, 0.868286 - 0.482359, 0.000000, 0.000000, 0.875973 - 0.468536, 0.000000, 0.000000, 0.883444 - 0.454597, 0.000000, 0.000000, 0.890697 - 0.440546, 0.000000, 0.000000, 0.897730 - 0.426386, 0.000000, 0.000000, 0.904541 - 0.412121, 0.000000, 0.000000, 0.911129 - 0.397753, 0.000000, 0.000000, 0.917492 - 0.383288, 0.000000, 0.000000, 0.923629 - 0.368728, 0.000000, 0.000000, 0.929537 - 0.354077, 0.000000, 0.000000, 0.935216 - 0.339339, 0.000000, 0.000000, 0.940664 - 0.324517, 0.000000, 0.000000, 0.945880 - 0.309615, 0.000000, 0.000000, 0.950862 - 0.294636, 0.000000, 0.000000, 0.955610 - 0.279585, 0.000000, 0.000000, 0.960121 - 0.264464, 0.000000, 0.000000, 0.964396 - 0.249278, 0.000000, 0.000000, 0.968432 - 0.234031, 0.000000, 0.000000, 0.972229 - 0.218726, 0.000000, 0.000000, 0.975786 - 0.203367, 0.000000, 0.000000, 0.979103 - 0.187958, 0.000000, 0.000000, 0.982177 - 0.172502, 0.000000, 0.000000, 0.985009 - 0.157003, 0.000000, 0.000000, 0.987598 - 0.141466, 0.000000, 0.000000, 0.989943 - 0.125894, 0.000000, 0.000000, 0.992044 - 0.110291, 0.000000, 0.000000, 0.993899 - 0.094661, 0.000000, 0.000000, 0.995510 - 0.079007, 0.000000, 0.000000, 0.996874 - 0.063334, 0.000000, 0.000000, 0.997992 - 0.047645, 0.000000, 0.000000, 0.998864 - 0.031945, 0.000000, 0.000000, 0.999490 - 0.016236, 0.000000, 0.000000, 0.999868 - 0.000524, 0.000000, 0.000000, 1.000000 - -0.015189, -0.000000, 0.000000, 0.999885 - -0.030898, -0.000000, 0.000000, 0.999523 - -0.046599, -0.000000, 0.000000, 0.998914 - -0.062289, -0.000000, 0.000000, 0.998058 - -0.077963, -0.000000, 0.000000, 0.996956 - -0.093618, -0.000000, 0.000000, 0.995608 - -0.109250, -0.000000, 0.000000, 0.994014 - -0.124855, -0.000000, 0.000000, 0.992175 - -0.140429, -0.000000, 0.000000, 0.990091 - -0.155969, -0.000000, 0.000000, 0.987762 - -0.171470, -0.000000, 0.000000, 0.985189 - -0.186929, -0.000000, 0.000000, 0.982374 - -0.202341, -0.000000, 0.000000, 0.979315 - -0.217704, -0.000000, 0.000000, 0.976015 - -0.233012, -0.000000, 0.000000, 0.972474 - -0.248264, -0.000000, 0.000000, 0.968692 - -0.263454, -0.000000, 0.000000, 0.964672 - -0.278579, -0.000000, 0.000000, 0.960413 - -0.293635, -0.000000, 0.000000, 0.955918 - -0.308618, -0.000000, 0.000000, 0.951186 - -0.323526, -0.000000, 0.000000, 0.946219 - -0.338354, -0.000000, 0.000000, 0.941019 - -0.353098, -0.000000, 0.000000, 0.935587 - -0.367754, -0.000000, 0.000000, 0.929923 - -0.382320, -0.000000, 0.000000, 0.924030 - -0.396792, -0.000000, 0.000000, 0.917908 - -0.411166, -0.000000, 0.000000, 0.911561 - -0.425438, -0.000000, 0.000000, 0.904988 - -0.439605, -0.000000, 0.000000, 0.898191 - -0.453664, -0.000000, 0.000000, 0.891173 - -0.467610, -0.000000, 0.000000, 0.883935 - -0.481442, -0.000000, 0.000000, 0.876478 - -0.495154, -0.000000, 0.000000, 0.868805 - -0.508744, -0.000000, 0.000000, 0.860918 - -0.522208, -0.000000, 0.000000, 0.852818 - -0.535544, -0.000000, 0.000000, 0.844507 - -0.548747, -0.000000, 0.000000, 0.835988 - -0.561815, -0.000000, 0.000000, 0.827263 - -0.574744, -0.000000, 0.000000, 0.818333 - -0.587531, -0.000000, 0.000000, 0.809202 - -0.600173, -0.000000, 0.000000, 0.799870 - -0.612667, -0.000000, 0.000000, 0.790341 - -0.625010, -0.000000, 0.000000, 0.780617 - -0.637198, -0.000000, 0.000000, 0.770700 - -0.649229, -0.000000, 0.000000, 0.760593 - -0.661100, -0.000000, 0.000000, 0.750298 - -0.672807, -0.000000, 0.000000, 0.739818 - -0.684349, -0.000000, 0.000000, 0.729155 - -0.695721, -0.000000, 0.000000, 0.718312 - -0.706922, -0.000000, 0.000000, 0.707292 - -0.717948, -0.000000, 0.000000, 0.696097 - -0.728797, -0.000000, 0.000000, 0.684730 - -0.739465, -0.000000, 0.000000, 0.673195 - -0.749952, -0.000000, 0.000000, 0.661493 - -0.760253, -0.000000, 0.000000, 0.649627 - -0.770366, -0.000000, 0.000000, 0.637602 - -0.780290, -0.000000, 0.000000, 0.625418 - -0.790020, -0.000000, 0.000000, 0.613081 - -0.799556, -0.000000, 0.000000, 0.600592 - -0.808894, -0.000000, 0.000000, 0.587955 - -0.818032, -0.000000, 0.000000, 0.575172 - -0.826969, -0.000000, 0.000000, 0.562248 - -0.835701, -0.000000, 0.000000, 0.549185 - -0.844227, -0.000000, 0.000000, 0.535986 - -0.852544, -0.000000, 0.000000, 0.522655 - -0.860651, -0.000000, 0.000000, 0.509195 - -0.868546, -0.000000, 0.000000, 0.495609 - -0.876226, -0.000000, 0.000000, 0.481901 - -0.883690, -0.000000, 0.000000, 0.468073 - -0.890935, -0.000000, 0.000000, 0.454130 - -0.897961, -0.000000, 0.000000, 0.440076 - -0.904765, -0.000000, 0.000000, 0.425912 - -0.911345, -0.000000, 0.000000, 0.411643 - -0.917701, -0.000000, 0.000000, 0.397273 - -0.923829, -0.000000, 0.000000, 0.382804 - -0.929730, -0.000000, 0.000000, 0.368241 - -0.935401, -0.000000, 0.000000, 0.353588 - -0.940842, -0.000000, 0.000000, 0.338846 - -0.946050, -0.000000, 0.000000, 0.324021 - -0.951024, -0.000000, 0.000000, 0.309117 - -0.955764, -0.000000, 0.000000, 0.294135 - -0.960267, -0.000000, 0.000000, 0.279082 - -0.964534, -0.000000, 0.000000, 0.263959 - -0.968562, -0.000000, 0.000000, 0.248771 - -0.972352, -0.000000, 0.000000, 0.233522 - -0.975901, -0.000000, 0.000000, 0.218215 - -0.979209, -0.000000, 0.000000, 0.202854 - -0.982275, -0.000000, 0.000000, 0.187443 - -0.985099, -0.000000, 0.000000, 0.171986 - -0.987680, -0.000000, 0.000000, 0.156486 - -0.990017, -0.000000, 0.000000, 0.140948 - -0.992109, -0.000000, 0.000000, 0.125375 - -0.993957, -0.000000, 0.000000, 0.109771 - -0.995559, -0.000000, 0.000000, 0.094140 - -0.996915, -0.000000, 0.000000, 0.078485 - -0.998025, -0.000000, 0.000000, 0.062811 - -0.998889, -0.000000, 0.000000, 0.047122 - -0.999506, -0.000000, 0.000000, 0.031421 - -0.999877, -0.000000, 0.000000, 0.015713 - -1.000000, 0.000000, -0.000000, -0.000000 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv deleted file mode 100644 index 8fe2d2fe05d8e71170104a79cf3d50315ea722c8..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv +++ /dev/null @@ -1,200 +0,0 @@ -0.0000,0.0000,0.0000,0.7012,-0.0220,-0.7126 -0.0000,0.0000,0.0000,0.7057,-0.0444,-0.7071 -0.0000,0.0000,0.0000,0.7095,-0.0671,-0.7015 -0.0000,0.0000,0.0000,0.7125,-0.0900,-0.6959 -0.0000,0.0000,0.0000,0.7147,-0.1132,-0.6903 -0.0000,0.0000,0.0000,0.7161,-0.1366,-0.6845 -0.0000,0.0000,0.0000,0.7166,-0.1602,-0.6788 -0.0000,0.0000,0.0000,0.7164,-0.1839,-0.6730 -0.0000,0.0000,0.0000,0.7153,-0.2078,-0.6672 -0.0000,0.0000,0.0000,0.7134,-0.2318,-0.6613 -0.0000,0.0000,0.0000,0.7106,-0.2558,-0.6554 -0.0000,0.0000,0.0000,0.7070,-0.2799,-0.6494 -0.0000,0.0000,0.0000,0.7025,-0.3040,-0.6435 -0.0000,0.0000,0.0000,0.6972,-0.3281,-0.6374 -0.0000,0.0000,0.0000,0.6910,-0.3521,-0.6314 -0.0000,0.0000,0.0000,0.6839,-0.3760,-0.6252 -0.0000,0.0000,0.0000,0.6760,-0.3998,-0.6191 -0.0000,0.0000,0.0000,0.6671,-0.4234,-0.6129 -0.0000,0.0000,0.0000,0.6575,-0.4468,-0.6067 -0.0000,0.0000,0.0000,0.6470,-0.4700,-0.6004 -0.0000,0.0000,0.0000,0.6356,-0.4930,-0.5941 -0.0000,0.0000,0.0000,0.6234,-0.5157,-0.5878 -0.0000,0.0000,0.0000,0.6103,-0.5380,-0.5814 -0.0000,0.0000,0.0000,0.5964,-0.5601,-0.5750 -0.0000,0.0000,0.0000,0.5817,-0.5817,-0.5686 -0.0000,0.0000,0.0000,0.5662,-0.6029,-0.5621 -0.0000,0.0000,0.0000,0.5499,-0.6237,-0.5556 -0.0000,0.0000,0.0000,0.5328,-0.6440,-0.5490 -0.0000,0.0000,0.0000,0.5149,-0.6638,-0.5424 -0.0000,0.0000,0.0000,0.4963,-0.6831,-0.5358 -0.0000,0.0000,0.0000,0.4769,-0.7018,-0.5292 -0.0000,0.0000,0.0000,0.4569,-0.7199,-0.5225 -0.0000,0.0000,0.0000,0.4361,-0.7374,-0.5158 -0.0000,0.0000,0.0000,0.4147,-0.7543,-0.5090 -0.0000,0.0000,0.0000,0.3926,-0.7705,-0.5023 -0.0000,0.0000,0.0000,0.3698,-0.7860,-0.4955 -0.0000,0.0000,0.0000,0.3465,-0.8007,-0.4886 -0.0000,0.0000,0.0000,0.3226,-0.8148,-0.4818 -0.0000,0.0000,0.0000,0.2981,-0.8280,-0.4749 -0.0000,0.0000,0.0000,0.2731,-0.8405,-0.4679 -0.0000,0.0000,0.0000,0.2476,-0.8522,-0.4610 -0.0000,0.0000,0.0000,0.2216,-0.8630,-0.4540 -0.0000,0.0000,0.0000,0.1951,-0.8730,-0.4470 -0.0000,0.0000,0.0000,0.1683,-0.8821,-0.4399 -0.0000,0.0000,0.0000,0.1410,-0.8904,-0.4329 -0.0000,0.0000,0.0000,0.1134,-0.8977,-0.4258 -0.0000,0.0000,0.0000,0.0855,-0.9041,-0.4187 -0.0000,0.0000,0.0000,0.0572,-0.9096,-0.4115 -0.0000,0.0000,0.0000,0.0287,-0.9142,-0.4043 -0.0000,0.0000,0.0000,-0.0000,-0.9178,-0.3971 -0.0000,0.0000,0.0000,-0.0289,-0.9204,-0.3899 -0.0000,0.0000,0.0000,-0.0580,-0.9221,-0.3827 -0.0000,0.0000,0.0000,-0.0872,-0.9227,-0.3754 -0.0000,0.0000,0.0000,-0.1165,-0.9224,-0.3681 -0.0000,0.0000,0.0000,-0.1459,-0.9212,-0.3608 -0.0000,0.0000,0.0000,-0.1753,-0.9189,-0.3535 -0.0000,0.0000,0.0000,-0.2047,-0.9156,-0.3461 -0.0000,0.0000,0.0000,-0.2340,-0.9113,-0.3387 -0.0000,0.0000,0.0000,-0.2632,-0.9060,-0.3313 -0.0000,0.0000,0.0000,-0.2924,-0.8998,-0.3239 -0.0000,0.0000,0.0000,-0.3213,-0.8925,-0.3165 -0.0000,0.0000,0.0000,-0.3501,-0.8843,-0.3090 -0.0000,0.0000,0.0000,-0.3787,-0.8750,-0.3015 -0.0000,0.0000,0.0000,-0.4070,-0.8648,-0.2940 -0.0000,0.0000,0.0000,-0.4350,-0.8536,-0.2865 -0.0000,0.0000,0.0000,-0.4626,-0.8415,-0.2790 -0.0000,0.0000,0.0000,-0.4899,-0.8284,-0.2714 -0.0000,0.0000,0.0000,-0.5168,-0.8144,-0.2639 -0.0000,0.0000,0.0000,-0.5433,-0.7995,-0.2563 -0.0000,0.0000,0.0000,-0.5693,-0.7836,-0.2487 -0.0000,0.0000,0.0000,-0.5948,-0.7669,-0.2411 -0.0000,0.0000,0.0000,-0.6198,-0.7492,-0.2334 -0.0000,0.0000,0.0000,-0.6442,-0.7307,-0.2258 -0.0000,0.0000,0.0000,-0.6681,-0.7114,-0.2181 -0.0000,0.0000,0.0000,-0.6913,-0.6913,-0.2105 -0.0000,0.0000,0.0000,-0.7138,-0.6703,-0.2028 -0.0000,0.0000,0.0000,-0.7357,-0.6486,-0.1951 -0.0000,0.0000,0.0000,-0.7569,-0.6261,-0.1874 -0.0000,0.0000,0.0000,-0.7773,-0.6029,-0.1797 -0.0000,0.0000,0.0000,-0.7970,-0.5790,-0.1719 -0.0000,0.0000,0.0000,-0.8159,-0.5545,-0.1642 -0.0000,0.0000,0.0000,-0.8339,-0.5292,-0.1564 -0.0000,0.0000,0.0000,-0.8512,-0.5034,-0.1487 -0.0000,0.0000,0.0000,-0.8676,-0.4769,-0.1409 -0.0000,0.0000,0.0000,-0.8831,-0.4499,-0.1331 -0.0000,0.0000,0.0000,-0.8977,-0.4224,-0.1253 -0.0000,0.0000,0.0000,-0.9114,-0.3944,-0.1175 -0.0000,0.0000,0.0000,-0.9242,-0.3659,-0.1097 -0.0000,0.0000,0.0000,-0.9360,-0.3370,-0.1019 -0.0000,0.0000,0.0000,-0.9468,-0.3076,-0.0941 -0.0000,0.0000,0.0000,-0.9567,-0.2779,-0.0863 -0.0000,0.0000,0.0000,-0.9656,-0.2479,-0.0785 -0.0000,0.0000,0.0000,-0.9735,-0.2176,-0.0706 -0.0000,0.0000,0.0000,-0.9803,-0.1870,-0.0628 -0.0000,0.0000,0.0000,-0.9862,-0.1562,-0.0549 -0.0000,0.0000,0.0000,-0.9910,-0.1252,-0.0471 -0.0000,0.0000,0.0000,-0.9948,-0.0940,-0.0393 -0.0000,0.0000,0.0000,-0.9975,-0.0628,-0.0314 -0.0000,0.0000,0.0000,-0.9992,-0.0314,-0.0236 -0.0000,0.0000,0.0000,-0.9999,0.0000,-0.0157 -0.0000,0.0000,0.0000,-0.9995,0.0314,-0.0079 -0.0000,0.0000,0.0000,-0.9980,0.0628,0.0000 -0.0000,0.0000,0.0000,-0.9955,0.0941,0.0079 -0.0000,0.0000,0.0000,-0.9920,0.1253,0.0157 -0.0000,0.0000,0.0000,-0.9874,0.1564,0.0236 -0.0000,0.0000,0.0000,-0.9818,0.1873,0.0314 -0.0000,0.0000,0.0000,-0.9752,0.2180,0.0393 -0.0000,0.0000,0.0000,-0.9675,0.2484,0.0471 -0.0000,0.0000,0.0000,-0.9588,0.2786,0.0550 -0.0000,0.0000,0.0000,-0.9492,0.3084,0.0628 -0.0000,0.0000,0.0000,-0.9385,0.3379,0.0706 -0.0000,0.0000,0.0000,-0.9269,0.3670,0.0785 -0.0000,0.0000,0.0000,-0.9143,0.3957,0.0863 -0.0000,0.0000,0.0000,-0.9008,0.4239,0.0941 -0.0000,0.0000,0.0000,-0.8864,0.4516,0.1019 -0.0000,0.0000,0.0000,-0.8710,0.4788,0.1097 -0.0000,0.0000,0.0000,-0.8548,0.5055,0.1175 -0.0000,0.0000,0.0000,-0.8377,0.5316,0.1253 -0.0000,0.0000,0.0000,-0.8197,0.5571,0.1331 -0.0000,0.0000,0.0000,-0.8009,0.5819,0.1409 -0.0000,0.0000,0.0000,-0.7814,0.6061,0.1487 -0.0000,0.0000,0.0000,-0.7610,0.6296,0.1564 -0.0000,0.0000,0.0000,-0.7399,0.6523,0.1642 -0.0000,0.0000,0.0000,-0.7181,0.6744,0.1719 -0.0000,0.0000,0.0000,-0.6956,0.6956,0.1797 -0.0000,0.0000,0.0000,-0.6724,0.7161,0.1874 -0.0000,0.0000,0.0000,-0.6486,0.7357,0.1951 -0.0000,0.0000,0.0000,-0.6242,0.7545,0.2028 -0.0000,0.0000,0.0000,-0.5992,0.7725,0.2105 -0.0000,0.0000,0.0000,-0.5736,0.7895,0.2181 -0.0000,0.0000,0.0000,-0.5476,0.8057,0.2258 -0.0000,0.0000,0.0000,-0.5210,0.8210,0.2334 -0.0000,0.0000,0.0000,-0.4940,0.8354,0.2411 -0.0000,0.0000,0.0000,-0.4666,0.8488,0.2487 -0.0000,0.0000,0.0000,-0.4388,0.8612,0.2563 -0.0000,0.0000,0.0000,-0.4107,0.8728,0.2639 -0.0000,0.0000,0.0000,-0.3822,0.8833,0.2714 -0.0000,0.0000,0.0000,-0.3535,0.8929,0.2790 -0.0000,0.0000,0.0000,-0.3245,0.9014,0.2865 -0.0000,0.0000,0.0000,-0.2954,0.9090,0.2940 -0.0000,0.0000,0.0000,-0.2660,0.9156,0.3015 -0.0000,0.0000,0.0000,-0.2365,0.9212,0.3090 -0.0000,0.0000,0.0000,-0.2069,0.9258,0.3165 -0.0000,0.0000,0.0000,-0.1773,0.9293,0.3239 -0.0000,0.0000,0.0000,-0.1476,0.9319,0.3313 -0.0000,0.0000,0.0000,-0.1179,0.9335,0.3387 -0.0000,0.0000,0.0000,-0.0883,0.9340,0.3461 -0.0000,0.0000,0.0000,-0.0587,0.9336,0.3535 -0.0000,0.0000,0.0000,-0.0293,0.9322,0.3608 -0.0000,0.0000,0.0000,0.0000,0.9298,0.3681 -0.0000,0.0000,0.0000,0.0291,0.9264,0.3754 -0.0000,0.0000,0.0000,0.0580,0.9221,0.3827 -0.0000,0.0000,0.0000,0.0867,0.9168,0.3899 -0.0000,0.0000,0.0000,0.1150,0.9105,0.3971 -0.0000,0.0000,0.0000,0.1431,0.9033,0.4043 -0.0000,0.0000,0.0000,0.1708,0.8953,0.4115 -0.0000,0.0000,0.0000,0.1981,0.8863,0.4187 -0.0000,0.0000,0.0000,0.2250,0.8764,0.4258 -0.0000,0.0000,0.0000,0.2515,0.8657,0.4329 -0.0000,0.0000,0.0000,0.2775,0.8541,0.4399 -0.0000,0.0000,0.0000,0.3030,0.8417,0.4470 -0.0000,0.0000,0.0000,0.3280,0.8284,0.4540 -0.0000,0.0000,0.0000,0.3524,0.8144,0.4610 -0.0000,0.0000,0.0000,0.3763,0.7997,0.4679 -0.0000,0.0000,0.0000,0.3995,0.7841,0.4749 -0.0000,0.0000,0.0000,0.4222,0.7679,0.4818 -0.0000,0.0000,0.0000,0.4441,0.7510,0.4886 -0.0000,0.0000,0.0000,0.4654,0.7334,0.4955 -0.0000,0.0000,0.0000,0.4860,0.7152,0.5023 -0.0000,0.0000,0.0000,0.5059,0.6964,0.5090 -0.0000,0.0000,0.0000,0.5251,0.6769,0.5158 -0.0000,0.0000,0.0000,0.5435,0.6570,0.5225 -0.0000,0.0000,0.0000,0.5611,0.6365,0.5292 -0.0000,0.0000,0.0000,0.5780,0.6155,0.5358 -0.0000,0.0000,0.0000,0.5940,0.5940,0.5424 -0.0000,0.0000,0.0000,0.6093,0.5721,0.5490 -0.0000,0.0000,0.0000,0.6237,0.5499,0.5556 -0.0000,0.0000,0.0000,0.6373,0.5272,0.5621 -0.0000,0.0000,0.0000,0.6500,0.5042,0.5686 -0.0000,0.0000,0.0000,0.6619,0.4809,0.5750 -0.0000,0.0000,0.0000,0.6729,0.4573,0.5814 -0.0000,0.0000,0.0000,0.6831,0.4335,0.5878 -0.0000,0.0000,0.0000,0.6924,0.4095,0.5941 -0.0000,0.0000,0.0000,0.7008,0.3852,0.6004 -0.0000,0.0000,0.0000,0.7083,0.3609,0.6067 -0.0000,0.0000,0.0000,0.7150,0.3364,0.6129 -0.0000,0.0000,0.0000,0.7207,0.3119,0.6191 -0.0000,0.0000,0.0000,0.7256,0.2873,0.6252 -0.0000,0.0000,0.0000,0.7296,0.2627,0.6314 -0.0000,0.0000,0.0000,0.7328,0.2381,0.6374 -0.0000,0.0000,0.0000,0.7351,0.2136,0.6435 -0.0000,0.0000,0.0000,0.7365,0.1891,0.6494 -0.0000,0.0000,0.0000,0.7371,0.1648,0.6554 -0.0000,0.0000,0.0000,0.7368,0.1406,0.6613 -0.0000,0.0000,0.0000,0.7357,0.1165,0.6672 -0.0000,0.0000,0.0000,0.7338,0.0927,0.6730 -0.0000,0.0000,0.0000,0.7311,0.0691,0.6788 -0.0000,0.0000,0.0000,0.7275,0.0458,0.6845 -0.0000,0.0000,0.0000,0.7232,0.0227,0.6903 -0.0000,0.0000,0.0000,0.7181,-0.0000,0.6959 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv deleted file mode 100644 index 63108890206963dbde169465283d8eb28796fc68..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv +++ /dev/null @@ -1,200 +0,0 @@ -0.0000,0.0000,0.0000,0.7012,0.0220,0.7126 -0.0000,0.0000,0.0000,0.7057,0.0444,0.7071 -0.0000,0.0000,0.0000,0.7095,0.0671,0.7015 -0.0000,0.0000,0.0000,0.7125,0.0900,0.6959 -0.0000,0.0000,0.0000,0.7147,0.1132,0.6903 -0.0000,0.0000,0.0000,0.7161,0.1366,0.6845 -0.0000,0.0000,0.0000,0.7166,0.1602,0.6788 -0.0000,0.0000,0.0000,0.7164,0.1839,0.6730 -0.0000,0.0000,0.0000,0.7153,0.2078,0.6672 -0.0000,0.0000,0.0000,0.7134,0.2318,0.6613 -0.0000,0.0000,0.0000,0.7106,0.2558,0.6554 -0.0000,0.0000,0.0000,0.7070,0.2799,0.6494 -0.0000,0.0000,0.0000,0.7025,0.3040,0.6435 -0.0000,0.0000,0.0000,0.6972,0.3281,0.6374 -0.0000,0.0000,0.0000,0.6910,0.3521,0.6314 -0.0000,0.0000,0.0000,0.6839,0.3760,0.6252 -0.0000,0.0000,0.0000,0.6760,0.3998,0.6191 -0.0000,0.0000,0.0000,0.6671,0.4234,0.6129 -0.0000,0.0000,0.0000,0.6575,0.4468,0.6067 -0.0000,0.0000,0.0000,0.6470,0.4700,0.6004 -0.0000,0.0000,0.0000,0.6356,0.4930,0.5941 -0.0000,0.0000,0.0000,0.6234,0.5157,0.5878 -0.0000,0.0000,0.0000,0.6103,0.5380,0.5814 -0.0000,0.0000,0.0000,0.5964,0.5601,0.5750 -0.0000,0.0000,0.0000,0.5817,0.5817,0.5686 -0.0000,0.0000,0.0000,0.5662,0.6029,0.5621 -0.0000,0.0000,0.0000,0.5499,0.6237,0.5556 -0.0000,0.0000,0.0000,0.5328,0.6440,0.5490 -0.0000,0.0000,0.0000,0.5149,0.6638,0.5424 -0.0000,0.0000,0.0000,0.4963,0.6831,0.5358 -0.0000,0.0000,0.0000,0.4769,0.7018,0.5292 -0.0000,0.0000,0.0000,0.4569,0.7199,0.5225 -0.0000,0.0000,0.0000,0.4361,0.7374,0.5158 -0.0000,0.0000,0.0000,0.4147,0.7543,0.5090 -0.0000,0.0000,0.0000,0.3926,0.7705,0.5023 -0.0000,0.0000,0.0000,0.3698,0.7860,0.4955 -0.0000,0.0000,0.0000,0.3465,0.8007,0.4886 -0.0000,0.0000,0.0000,0.3226,0.8148,0.4818 -0.0000,0.0000,0.0000,0.2981,0.8280,0.4749 -0.0000,0.0000,0.0000,0.2731,0.8405,0.4679 -0.0000,0.0000,0.0000,0.2476,0.8522,0.4610 -0.0000,0.0000,0.0000,0.2216,0.8630,0.4540 -0.0000,0.0000,0.0000,0.1951,0.8730,0.4470 -0.0000,0.0000,0.0000,0.1683,0.8821,0.4399 -0.0000,0.0000,0.0000,0.1410,0.8904,0.4329 -0.0000,0.0000,0.0000,0.1134,0.8977,0.4258 -0.0000,0.0000,0.0000,0.0855,0.9041,0.4187 -0.0000,0.0000,0.0000,0.0572,0.9096,0.4115 -0.0000,0.0000,0.0000,0.0287,0.9142,0.4043 -0.0000,0.0000,0.0000,-0.0000,0.9178,0.3971 -0.0000,0.0000,0.0000,-0.0289,0.9204,0.3899 -0.0000,0.0000,0.0000,-0.0580,0.9221,0.3827 -0.0000,0.0000,0.0000,-0.0872,0.9227,0.3754 -0.0000,0.0000,0.0000,-0.1165,0.9224,0.3681 -0.0000,0.0000,0.0000,-0.1459,0.9212,0.3608 -0.0000,0.0000,0.0000,-0.1753,0.9189,0.3535 -0.0000,0.0000,0.0000,-0.2047,0.9156,0.3461 -0.0000,0.0000,0.0000,-0.2340,0.9113,0.3387 -0.0000,0.0000,0.0000,-0.2632,0.9060,0.3313 -0.0000,0.0000,0.0000,-0.2924,0.8998,0.3239 -0.0000,0.0000,0.0000,-0.3213,0.8925,0.3165 -0.0000,0.0000,0.0000,-0.3501,0.8843,0.3090 -0.0000,0.0000,0.0000,-0.3787,0.8750,0.3015 -0.0000,0.0000,0.0000,-0.4070,0.8648,0.2940 -0.0000,0.0000,0.0000,-0.4350,0.8536,0.2865 -0.0000,0.0000,0.0000,-0.4626,0.8415,0.2790 -0.0000,0.0000,0.0000,-0.4899,0.8284,0.2714 -0.0000,0.0000,0.0000,-0.5168,0.8144,0.2639 -0.0000,0.0000,0.0000,-0.5433,0.7995,0.2563 -0.0000,0.0000,0.0000,-0.5693,0.7836,0.2487 -0.0000,0.0000,0.0000,-0.5948,0.7669,0.2411 -0.0000,0.0000,0.0000,-0.6198,0.7492,0.2334 -0.0000,0.0000,0.0000,-0.6442,0.7307,0.2258 -0.0000,0.0000,0.0000,-0.6681,0.7114,0.2181 -0.0000,0.0000,0.0000,-0.6913,0.6913,0.2105 -0.0000,0.0000,0.0000,-0.7138,0.6703,0.2028 -0.0000,0.0000,0.0000,-0.7357,0.6486,0.1951 -0.0000,0.0000,0.0000,-0.7569,0.6261,0.1874 -0.0000,0.0000,0.0000,-0.7773,0.6029,0.1797 -0.0000,0.0000,0.0000,-0.7970,0.5790,0.1719 -0.0000,0.0000,0.0000,-0.8159,0.5545,0.1642 -0.0000,0.0000,0.0000,-0.8339,0.5292,0.1564 -0.0000,0.0000,0.0000,-0.8512,0.5034,0.1487 -0.0000,0.0000,0.0000,-0.8676,0.4769,0.1409 -0.0000,0.0000,0.0000,-0.8831,0.4499,0.1331 -0.0000,0.0000,0.0000,-0.8977,0.4224,0.1253 -0.0000,0.0000,0.0000,-0.9114,0.3944,0.1175 -0.0000,0.0000,0.0000,-0.9242,0.3659,0.1097 -0.0000,0.0000,0.0000,-0.9360,0.3370,0.1019 -0.0000,0.0000,0.0000,-0.9468,0.3076,0.0941 -0.0000,0.0000,0.0000,-0.9567,0.2779,0.0863 -0.0000,0.0000,0.0000,-0.9656,0.2479,0.0785 -0.0000,0.0000,0.0000,-0.9735,0.2176,0.0706 -0.0000,0.0000,0.0000,-0.9803,0.1870,0.0628 -0.0000,0.0000,0.0000,-0.9862,0.1562,0.0549 -0.0000,0.0000,0.0000,-0.9910,0.1252,0.0471 -0.0000,0.0000,0.0000,-0.9948,0.0940,0.0393 -0.0000,0.0000,0.0000,-0.9975,0.0628,0.0314 -0.0000,0.0000,0.0000,-0.9992,0.0314,0.0236 -0.0000,0.0000,0.0000,-0.9999,-0.0000,0.0157 -0.0000,0.0000,0.0000,-0.9995,-0.0314,0.0079 -0.0000,0.0000,0.0000,-0.9980,-0.0628,-0.0000 -0.0000,0.0000,0.0000,-0.9955,-0.0941,-0.0079 -0.0000,0.0000,0.0000,-0.9920,-0.1253,-0.0157 -0.0000,0.0000,0.0000,-0.9874,-0.1564,-0.0236 -0.0000,0.0000,0.0000,-0.9818,-0.1873,-0.0314 -0.0000,0.0000,0.0000,-0.9752,-0.2180,-0.0393 -0.0000,0.0000,0.0000,-0.9675,-0.2484,-0.0471 -0.0000,0.0000,0.0000,-0.9588,-0.2786,-0.0550 -0.0000,0.0000,0.0000,-0.9492,-0.3084,-0.0628 -0.0000,0.0000,0.0000,-0.9385,-0.3379,-0.0706 -0.0000,0.0000,0.0000,-0.9269,-0.3670,-0.0785 -0.0000,0.0000,0.0000,-0.9143,-0.3957,-0.0863 -0.0000,0.0000,0.0000,-0.9008,-0.4239,-0.0941 -0.0000,0.0000,0.0000,-0.8864,-0.4516,-0.1019 -0.0000,0.0000,0.0000,-0.8710,-0.4788,-0.1097 -0.0000,0.0000,0.0000,-0.8548,-0.5055,-0.1175 -0.0000,0.0000,0.0000,-0.8377,-0.5316,-0.1253 -0.0000,0.0000,0.0000,-0.8197,-0.5571,-0.1331 -0.0000,0.0000,0.0000,-0.8009,-0.5819,-0.1409 -0.0000,0.0000,0.0000,-0.7814,-0.6061,-0.1487 -0.0000,0.0000,0.0000,-0.7610,-0.6296,-0.1564 -0.0000,0.0000,0.0000,-0.7399,-0.6523,-0.1642 -0.0000,0.0000,0.0000,-0.7181,-0.6744,-0.1719 -0.0000,0.0000,0.0000,-0.6956,-0.6956,-0.1797 -0.0000,0.0000,0.0000,-0.6724,-0.7161,-0.1874 -0.0000,0.0000,0.0000,-0.6486,-0.7357,-0.1951 -0.0000,0.0000,0.0000,-0.6242,-0.7545,-0.2028 -0.0000,0.0000,0.0000,-0.5992,-0.7725,-0.2105 -0.0000,0.0000,0.0000,-0.5736,-0.7895,-0.2181 -0.0000,0.0000,0.0000,-0.5476,-0.8057,-0.2258 -0.0000,0.0000,0.0000,-0.5210,-0.8210,-0.2334 -0.0000,0.0000,0.0000,-0.4940,-0.8354,-0.2411 -0.0000,0.0000,0.0000,-0.4666,-0.8488,-0.2487 -0.0000,0.0000,0.0000,-0.4388,-0.8612,-0.2563 -0.0000,0.0000,0.0000,-0.4107,-0.8728,-0.2639 -0.0000,0.0000,0.0000,-0.3822,-0.8833,-0.2714 -0.0000,0.0000,0.0000,-0.3535,-0.8929,-0.2790 -0.0000,0.0000,0.0000,-0.3245,-0.9014,-0.2865 -0.0000,0.0000,0.0000,-0.2954,-0.9090,-0.2940 -0.0000,0.0000,0.0000,-0.2660,-0.9156,-0.3015 -0.0000,0.0000,0.0000,-0.2365,-0.9212,-0.3090 -0.0000,0.0000,0.0000,-0.2069,-0.9258,-0.3165 -0.0000,0.0000,0.0000,-0.1773,-0.9293,-0.3239 -0.0000,0.0000,0.0000,-0.1476,-0.9319,-0.3313 -0.0000,0.0000,0.0000,-0.1179,-0.9335,-0.3387 -0.0000,0.0000,0.0000,-0.0883,-0.9340,-0.3461 -0.0000,0.0000,0.0000,-0.0587,-0.9336,-0.3535 -0.0000,0.0000,0.0000,-0.0293,-0.9322,-0.3608 -0.0000,0.0000,0.0000,0.0000,-0.9298,-0.3681 -0.0000,0.0000,0.0000,0.0291,-0.9264,-0.3754 -0.0000,0.0000,0.0000,0.0580,-0.9221,-0.3827 -0.0000,0.0000,0.0000,0.0867,-0.9168,-0.3899 -0.0000,0.0000,0.0000,0.1150,-0.9105,-0.3971 -0.0000,0.0000,0.0000,0.1431,-0.9033,-0.4043 -0.0000,0.0000,0.0000,0.1708,-0.8953,-0.4115 -0.0000,0.0000,0.0000,0.1981,-0.8863,-0.4187 -0.0000,0.0000,0.0000,0.2250,-0.8764,-0.4258 -0.0000,0.0000,0.0000,0.2515,-0.8657,-0.4329 -0.0000,0.0000,0.0000,0.2775,-0.8541,-0.4399 -0.0000,0.0000,0.0000,0.3030,-0.8417,-0.4470 -0.0000,0.0000,0.0000,0.3280,-0.8284,-0.4540 -0.0000,0.0000,0.0000,0.3524,-0.8144,-0.4610 -0.0000,0.0000,0.0000,0.3763,-0.7997,-0.4679 -0.0000,0.0000,0.0000,0.3995,-0.7841,-0.4749 -0.0000,0.0000,0.0000,0.4222,-0.7679,-0.4818 -0.0000,0.0000,0.0000,0.4441,-0.7510,-0.4886 -0.0000,0.0000,0.0000,0.4654,-0.7334,-0.4955 -0.0000,0.0000,0.0000,0.4860,-0.7152,-0.5023 -0.0000,0.0000,0.0000,0.5059,-0.6964,-0.5090 -0.0000,0.0000,0.0000,0.5251,-0.6769,-0.5158 -0.0000,0.0000,0.0000,0.5435,-0.6570,-0.5225 -0.0000,0.0000,0.0000,0.5611,-0.6365,-0.5292 -0.0000,0.0000,0.0000,0.5780,-0.6155,-0.5358 -0.0000,0.0000,0.0000,0.5940,-0.5940,-0.5424 -0.0000,0.0000,0.0000,0.6093,-0.5721,-0.5490 -0.0000,0.0000,0.0000,0.6237,-0.5499,-0.5556 -0.0000,0.0000,0.0000,0.6373,-0.5272,-0.5621 -0.0000,0.0000,0.0000,0.6500,-0.5042,-0.5686 -0.0000,0.0000,0.0000,0.6619,-0.4809,-0.5750 -0.0000,0.0000,0.0000,0.6729,-0.4573,-0.5814 -0.0000,0.0000,0.0000,0.6831,-0.4335,-0.5878 -0.0000,0.0000,0.0000,0.6924,-0.4095,-0.5941 -0.0000,0.0000,0.0000,0.7008,-0.3852,-0.6004 -0.0000,0.0000,0.0000,0.7083,-0.3609,-0.6067 -0.0000,0.0000,0.0000,0.7150,-0.3364,-0.6129 -0.0000,0.0000,0.0000,0.7207,-0.3119,-0.6191 -0.0000,0.0000,0.0000,0.7256,-0.2873,-0.6252 -0.0000,0.0000,0.0000,0.7296,-0.2627,-0.6314 -0.0000,0.0000,0.0000,0.7328,-0.2381,-0.6374 -0.0000,0.0000,0.0000,0.7351,-0.2136,-0.6435 -0.0000,0.0000,0.0000,0.7365,-0.1891,-0.6494 -0.0000,0.0000,0.0000,0.7371,-0.1648,-0.6554 -0.0000,0.0000,0.0000,0.7368,-0.1406,-0.6613 -0.0000,0.0000,0.0000,0.7357,-0.1165,-0.6672 -0.0000,0.0000,0.0000,0.7338,-0.0927,-0.6730 -0.0000,0.0000,0.0000,0.7311,-0.0691,-0.6788 -0.0000,0.0000,0.0000,0.7275,-0.0458,-0.6845 -0.0000,0.0000,0.0000,0.7232,-0.0227,-0.6903 -0.0000,0.0000,0.0000,0.7181,0.0000,-0.6959 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv deleted file mode 100644 index 1e4a316720c584ee96394a65340d0e6726332552..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv +++ /dev/null @@ -1,800 +0,0 @@ -0.9223,-0.0000,-0.3863,0.0119 -0.9223,-0.0000,-0.3863,0.0119 -0.9223,-0.0000,-0.3863,0.0119 -0.9223,-0.0000,-0.3863,0.0119 -0.9235,-0.0000,-0.3828,0.0240 -0.9235,-0.0000,-0.3828,0.0240 -0.9235,-0.0000,-0.3828,0.0240 -0.9235,-0.0000,-0.3828,0.0240 -0.9245,-0.0000,-0.3794,0.0363 -0.9245,-0.0000,-0.3794,0.0363 -0.9245,-0.0000,-0.3794,0.0363 -0.9245,-0.0000,-0.3794,0.0363 -0.9253,-0.0000,-0.3760,0.0486 -0.9253,-0.0000,-0.3760,0.0486 -0.9253,-0.0000,-0.3760,0.0486 -0.9253,-0.0000,-0.3760,0.0486 -0.9259,-0.0000,-0.3727,0.0611 -0.9259,-0.0000,-0.3727,0.0611 -0.9259,-0.0000,-0.3727,0.0611 -0.9259,-0.0000,-0.3727,0.0611 -0.9263,-0.0000,-0.3695,0.0737 -0.9263,-0.0000,-0.3695,0.0737 -0.9263,-0.0000,-0.3695,0.0737 -0.9263,-0.0000,-0.3695,0.0737 -0.9265,-0.0000,-0.3663,0.0865 -0.9265,-0.0000,-0.3663,0.0865 -0.9265,-0.0000,-0.3663,0.0865 -0.9265,-0.0000,-0.3663,0.0865 -0.9264,-0.0000,-0.3632,0.0993 -0.9264,-0.0000,-0.3632,0.0993 -0.9264,-0.0000,-0.3632,0.0993 -0.9264,-0.0000,-0.3632,0.0993 -0.9261,-0.0000,-0.3602,0.1122 -0.9261,-0.0000,-0.3602,0.1122 -0.9261,-0.0000,-0.3602,0.1122 -0.9261,-0.0000,-0.3602,0.1122 -0.9256,-0.0000,-0.3572,0.1252 -0.9256,-0.0000,-0.3572,0.1252 -0.9256,-0.0000,-0.3572,0.1252 -0.9256,-0.0000,-0.3572,0.1252 -0.9248,-0.0000,-0.3543,0.1383 -0.9248,-0.0000,-0.3543,0.1383 -0.9248,-0.0000,-0.3543,0.1383 -0.9248,-0.0000,-0.3543,0.1383 -0.9239,-0.0000,-0.3515,0.1515 -0.9239,-0.0000,-0.3515,0.1515 -0.9239,-0.0000,-0.3515,0.1515 -0.9239,-0.0000,-0.3515,0.1515 -0.9226,-0.0000,-0.3487,0.1648 -0.9226,-0.0000,-0.3487,0.1648 -0.9226,-0.0000,-0.3487,0.1648 -0.9226,-0.0000,-0.3487,0.1648 -0.9212,-0.0000,-0.3460,0.1781 -0.9212,-0.0000,-0.3460,0.1781 -0.9212,-0.0000,-0.3460,0.1781 -0.9212,-0.0000,-0.3460,0.1781 -0.9195,-0.0000,-0.3433,0.1914 -0.9195,-0.0000,-0.3433,0.1914 -0.9195,-0.0000,-0.3433,0.1914 -0.9195,-0.0000,-0.3433,0.1914 -0.9176,-0.0000,-0.3407,0.2049 -0.9176,-0.0000,-0.3407,0.2049 -0.9176,-0.0000,-0.3407,0.2049 -0.9176,-0.0000,-0.3407,0.2049 -0.9154,-0.0000,-0.3382,0.2183 -0.9154,-0.0000,-0.3382,0.2183 -0.9154,-0.0000,-0.3382,0.2183 -0.9154,-0.0000,-0.3382,0.2183 -0.9130,-0.0000,-0.3357,0.2319 -0.9130,-0.0000,-0.3357,0.2319 -0.9130,-0.0000,-0.3357,0.2319 -0.9130,-0.0000,-0.3357,0.2319 -0.9104,-0.0000,-0.3332,0.2454 -0.9104,-0.0000,-0.3332,0.2454 -0.9104,-0.0000,-0.3332,0.2454 -0.9104,-0.0000,-0.3332,0.2454 -0.9075,-0.0000,-0.3308,0.2590 -0.9075,-0.0000,-0.3308,0.2590 -0.9075,-0.0000,-0.3308,0.2590 -0.9075,-0.0000,-0.3308,0.2590 -0.9043,-0.0000,-0.3285,0.2726 -0.9043,-0.0000,-0.3285,0.2726 -0.9043,-0.0000,-0.3285,0.2726 -0.9043,-0.0000,-0.3285,0.2726 -0.9009,-0.0000,-0.3262,0.2862 -0.9009,-0.0000,-0.3262,0.2862 -0.9009,-0.0000,-0.3262,0.2862 -0.9009,-0.0000,-0.3262,0.2862 -0.8973,-0.0000,-0.3240,0.2998 -0.8973,-0.0000,-0.3240,0.2998 -0.8973,-0.0000,-0.3240,0.2998 -0.8973,-0.0000,-0.3240,0.2998 -0.8934,-0.0000,-0.3218,0.3134 -0.8934,-0.0000,-0.3218,0.3134 -0.8934,-0.0000,-0.3218,0.3134 -0.8934,-0.0000,-0.3218,0.3134 -0.8893,-0.0000,-0.3197,0.3271 -0.8893,-0.0000,-0.3197,0.3271 -0.8893,-0.0000,-0.3197,0.3271 -0.8893,-0.0000,-0.3197,0.3271 -0.8849,-0.0000,-0.3176,0.3407 -0.8849,-0.0000,-0.3176,0.3407 -0.8849,-0.0000,-0.3176,0.3407 -0.8849,-0.0000,-0.3176,0.3407 -0.8803,-0.0000,-0.3156,0.3543 -0.8803,-0.0000,-0.3156,0.3543 -0.8803,-0.0000,-0.3156,0.3543 -0.8803,-0.0000,-0.3156,0.3543 -0.8754,-0.0000,-0.3136,0.3678 -0.8754,-0.0000,-0.3136,0.3678 -0.8754,-0.0000,-0.3136,0.3678 -0.8754,-0.0000,-0.3136,0.3678 -0.8703,-0.0000,-0.3116,0.3814 -0.8703,-0.0000,-0.3116,0.3814 -0.8703,-0.0000,-0.3116,0.3814 -0.8703,-0.0000,-0.3116,0.3814 -0.8650,-0.0000,-0.3097,0.3949 -0.8650,-0.0000,-0.3097,0.3949 -0.8650,-0.0000,-0.3097,0.3949 -0.8650,-0.0000,-0.3097,0.3949 -0.8593,-0.0000,-0.3079,0.4083 -0.8593,-0.0000,-0.3079,0.4083 -0.8593,-0.0000,-0.3079,0.4083 -0.8593,-0.0000,-0.3079,0.4083 -0.8535,-0.0000,-0.3061,0.4217 -0.8535,-0.0000,-0.3061,0.4217 -0.8535,-0.0000,-0.3061,0.4217 -0.8535,-0.0000,-0.3061,0.4217 -0.8474,-0.0000,-0.3043,0.4351 -0.8474,-0.0000,-0.3043,0.4351 -0.8474,-0.0000,-0.3043,0.4351 -0.8474,-0.0000,-0.3043,0.4351 -0.8410,-0.0000,-0.3026,0.4484 -0.8410,-0.0000,-0.3026,0.4484 -0.8410,-0.0000,-0.3026,0.4484 -0.8410,-0.0000,-0.3026,0.4484 -0.8344,-0.0000,-0.3010,0.4617 -0.8344,-0.0000,-0.3010,0.4617 -0.8344,-0.0000,-0.3010,0.4617 -0.8344,-0.0000,-0.3010,0.4617 -0.8276,-0.0000,-0.2993,0.4748 -0.8276,-0.0000,-0.2993,0.4748 -0.8276,-0.0000,-0.2993,0.4748 -0.8276,-0.0000,-0.2993,0.4748 -0.8205,-0.0000,-0.2978,0.4879 -0.8205,-0.0000,-0.2978,0.4879 -0.8205,-0.0000,-0.2978,0.4879 -0.8205,-0.0000,-0.2978,0.4879 -0.8132,-0.0000,-0.2962,0.5010 -0.8132,-0.0000,-0.2962,0.5010 -0.8132,-0.0000,-0.2962,0.5010 -0.8132,-0.0000,-0.2962,0.5010 -0.8056,-0.0000,-0.2947,0.5139 -0.8056,-0.0000,-0.2947,0.5139 -0.8056,-0.0000,-0.2947,0.5139 -0.8056,-0.0000,-0.2947,0.5139 -0.7978,-0.0000,-0.2932,0.5267 -0.7978,-0.0000,-0.2932,0.5267 -0.7978,-0.0000,-0.2932,0.5267 -0.7978,-0.0000,-0.2932,0.5267 -0.7898,-0.0000,-0.2918,0.5395 -0.7898,-0.0000,-0.2918,0.5395 -0.7898,-0.0000,-0.2918,0.5395 -0.7898,-0.0000,-0.2918,0.5395 -0.7815,-0.0000,-0.2904,0.5521 -0.7815,-0.0000,-0.2904,0.5521 -0.7815,-0.0000,-0.2904,0.5521 -0.7815,-0.0000,-0.2904,0.5521 -0.7730,-0.0000,-0.2891,0.5647 -0.7730,-0.0000,-0.2891,0.5647 -0.7730,-0.0000,-0.2891,0.5647 -0.7730,-0.0000,-0.2891,0.5647 -0.7643,-0.0000,-0.2878,0.5771 -0.7643,-0.0000,-0.2878,0.5771 -0.7643,-0.0000,-0.2878,0.5771 -0.7643,-0.0000,-0.2878,0.5771 -0.7553,-0.0000,-0.2865,0.5894 -0.7553,-0.0000,-0.2865,0.5894 -0.7553,-0.0000,-0.2865,0.5894 -0.7553,-0.0000,-0.2865,0.5894 -0.7461,-0.0000,-0.2853,0.6016 -0.7461,-0.0000,-0.2853,0.6016 -0.7461,-0.0000,-0.2853,0.6016 -0.7461,-0.0000,-0.2853,0.6016 -0.7367,-0.0000,-0.2841,0.6136 -0.7367,-0.0000,-0.2841,0.6136 -0.7367,-0.0000,-0.2841,0.6136 -0.7367,-0.0000,-0.2841,0.6136 -0.7271,-0.0000,-0.2830,0.6255 -0.7271,-0.0000,-0.2830,0.6255 -0.7271,-0.0000,-0.2830,0.6255 -0.7271,-0.0000,-0.2830,0.6255 -0.7172,-0.0000,-0.2819,0.6373 -0.7172,-0.0000,-0.2819,0.6373 -0.7172,-0.0000,-0.2819,0.6373 -0.7172,-0.0000,-0.2819,0.6373 -0.7071,-0.0000,-0.2808,0.6490 -0.7071,-0.0000,-0.2808,0.6490 -0.7071,-0.0000,-0.2808,0.6490 -0.7071,-0.0000,-0.2808,0.6490 -0.6968,-0.0000,-0.2798,0.6604 -0.6968,-0.0000,-0.2798,0.6604 -0.6968,-0.0000,-0.2798,0.6604 -0.6968,-0.0000,-0.2798,0.6604 -0.6863,-0.0000,-0.2788,0.6718 -0.6863,-0.0000,-0.2788,0.6718 -0.6863,-0.0000,-0.2788,0.6718 -0.6863,-0.0000,-0.2788,0.6718 -0.6756,-0.0000,-0.2779,0.6829 -0.6756,-0.0000,-0.2779,0.6829 -0.6756,-0.0000,-0.2779,0.6829 -0.6756,-0.0000,-0.2779,0.6829 -0.6646,-0.0000,-0.2769,0.6940 -0.6646,-0.0000,-0.2769,0.6940 -0.6646,-0.0000,-0.2769,0.6940 -0.6646,-0.0000,-0.2769,0.6940 -0.6535,-0.0000,-0.2761,0.7048 -0.6535,-0.0000,-0.2761,0.7048 -0.6535,-0.0000,-0.2761,0.7048 -0.6535,-0.0000,-0.2761,0.7048 -0.6422,-0.0000,-0.2752,0.7155 -0.6422,-0.0000,-0.2752,0.7155 -0.6422,-0.0000,-0.2752,0.7155 -0.6422,-0.0000,-0.2752,0.7155 -0.6306,-0.0000,-0.2744,0.7260 -0.6306,-0.0000,-0.2744,0.7260 -0.6306,-0.0000,-0.2744,0.7260 -0.6306,-0.0000,-0.2744,0.7260 -0.6189,-0.0000,-0.2737,0.7363 -0.6189,-0.0000,-0.2737,0.7363 -0.6189,-0.0000,-0.2737,0.7363 -0.6189,-0.0000,-0.2737,0.7363 -0.6069,-0.0000,-0.2730,0.7464 -0.6069,-0.0000,-0.2730,0.7464 -0.6069,-0.0000,-0.2730,0.7464 -0.6069,-0.0000,-0.2730,0.7464 -0.5948,-0.0000,-0.2723,0.7563 -0.5948,-0.0000,-0.2723,0.7563 -0.5948,-0.0000,-0.2723,0.7563 -0.5948,-0.0000,-0.2723,0.7563 -0.5825,-0.0000,-0.2716,0.7661 -0.5825,-0.0000,-0.2716,0.7661 -0.5825,-0.0000,-0.2716,0.7661 -0.5825,-0.0000,-0.2716,0.7661 -0.5700,-0.0000,-0.2710,0.7756 -0.5700,-0.0000,-0.2710,0.7756 -0.5700,-0.0000,-0.2710,0.7756 -0.5700,-0.0000,-0.2710,0.7756 -0.5574,-0.0000,-0.2705,0.7850 -0.5574,-0.0000,-0.2705,0.7850 -0.5574,-0.0000,-0.2705,0.7850 -0.5574,-0.0000,-0.2705,0.7850 -0.5445,-0.0000,-0.2700,0.7941 -0.5445,-0.0000,-0.2700,0.7941 -0.5445,-0.0000,-0.2700,0.7941 -0.5445,-0.0000,-0.2700,0.7941 -0.5315,-0.0000,-0.2695,0.8030 -0.5315,-0.0000,-0.2695,0.8030 -0.5315,-0.0000,-0.2695,0.8030 -0.5315,-0.0000,-0.2695,0.8030 -0.5184,-0.0000,-0.2691,0.8117 -0.5184,-0.0000,-0.2691,0.8117 -0.5184,-0.0000,-0.2691,0.8117 -0.5184,-0.0000,-0.2691,0.8117 -0.5050,-0.0000,-0.2687,0.8202 -0.5050,-0.0000,-0.2687,0.8202 -0.5050,-0.0000,-0.2687,0.8202 -0.5050,-0.0000,-0.2687,0.8202 -0.4915,-0.0000,-0.2684,0.8285 -0.4915,-0.0000,-0.2684,0.8285 -0.4915,-0.0000,-0.2684,0.8285 -0.4915,-0.0000,-0.2684,0.8285 -0.4779,-0.0000,-0.2682,0.8365 -0.4779,-0.0000,-0.2682,0.8365 -0.4779,-0.0000,-0.2682,0.8365 -0.4779,-0.0000,-0.2682,0.8365 -0.4640,-0.0000,-0.2680,0.8443 -0.4640,-0.0000,-0.2680,0.8443 -0.4640,-0.0000,-0.2680,0.8443 -0.4640,-0.0000,-0.2680,0.8443 -0.4501,-0.0000,-0.2678,0.8519 -0.4501,-0.0000,-0.2678,0.8519 -0.4501,-0.0000,-0.2678,0.8519 -0.4501,-0.0000,-0.2678,0.8519 -0.4360,-0.0000,-0.2677,0.8592 -0.4360,-0.0000,-0.2677,0.8592 -0.4360,-0.0000,-0.2677,0.8592 -0.4360,-0.0000,-0.2677,0.8592 -0.4218,-0.0000,-0.2677,0.8663 -0.4218,-0.0000,-0.2677,0.8663 -0.4218,-0.0000,-0.2677,0.8663 -0.4218,-0.0000,-0.2677,0.8663 -0.4074,-0.0000,-0.2677,0.8731 -0.4074,-0.0000,-0.2677,0.8731 -0.4074,-0.0000,-0.2677,0.8731 -0.4074,-0.0000,-0.2677,0.8731 -0.3929,-0.0000,-0.2678,0.8797 -0.3929,-0.0000,-0.2678,0.8797 -0.3929,-0.0000,-0.2678,0.8797 -0.3929,-0.0000,-0.2678,0.8797 -0.3783,-0.0000,-0.2680,0.8860 -0.3783,-0.0000,-0.2680,0.8860 -0.3783,-0.0000,-0.2680,0.8860 -0.3783,-0.0000,-0.2680,0.8860 -0.3635,-0.0000,-0.2683,0.8921 -0.3635,-0.0000,-0.2683,0.8921 -0.3635,-0.0000,-0.2683,0.8921 -0.3635,-0.0000,-0.2683,0.8921 -0.3487,-0.0000,-0.2687,0.8979 -0.3487,-0.0000,-0.2687,0.8979 -0.3487,-0.0000,-0.2687,0.8979 -0.3487,-0.0000,-0.2687,0.8979 -0.3337,-0.0000,-0.2692,0.9034 -0.3337,-0.0000,-0.2692,0.9034 -0.3337,-0.0000,-0.2692,0.9034 -0.3337,-0.0000,-0.2692,0.9034 -0.3186,-0.0000,-0.2698,0.9087 -0.3186,-0.0000,-0.2698,0.9087 -0.3186,-0.0000,-0.2698,0.9087 -0.3186,-0.0000,-0.2698,0.9087 -0.3034,-0.0000,-0.2705,0.9136 -0.3034,-0.0000,-0.2705,0.9136 -0.3034,-0.0000,-0.2705,0.9136 -0.3034,-0.0000,-0.2705,0.9136 -0.2882,-0.0000,-0.2714,0.9183 -0.2882,-0.0000,-0.2714,0.9183 -0.2882,-0.0000,-0.2714,0.9183 -0.2882,-0.0000,-0.2714,0.9183 -0.2728,-0.0000,-0.2725,0.9227 -0.2728,-0.0000,-0.2725,0.9227 -0.2728,-0.0000,-0.2725,0.9227 -0.2728,-0.0000,-0.2725,0.9227 -0.2573,-0.0000,-0.2738,0.9267 -0.2573,-0.0000,-0.2738,0.9267 -0.2573,-0.0000,-0.2738,0.9267 -0.2573,-0.0000,-0.2738,0.9267 -0.2418,-0.0000,-0.2753,0.9305 -0.2418,-0.0000,-0.2753,0.9305 -0.2418,-0.0000,-0.2753,0.9305 -0.2418,-0.0000,-0.2753,0.9305 -0.2262,-0.0000,-0.2771,0.9339 -0.2262,-0.0000,-0.2771,0.9339 -0.2262,-0.0000,-0.2771,0.9339 -0.2262,-0.0000,-0.2771,0.9339 -0.2105,-0.0000,-0.2792,0.9369 -0.2105,-0.0000,-0.2792,0.9369 -0.2105,-0.0000,-0.2792,0.9369 -0.2105,-0.0000,-0.2792,0.9369 -0.1947,-0.0000,-0.2818,0.9395 -0.1947,-0.0000,-0.2818,0.9395 -0.1947,-0.0000,-0.2818,0.9395 -0.1947,-0.0000,-0.2818,0.9395 -0.1789,-0.0000,-0.2848,0.9417 -0.1789,-0.0000,-0.2848,0.9417 -0.1789,-0.0000,-0.2848,0.9417 -0.1789,-0.0000,-0.2848,0.9417 -0.1630,-0.0000,-0.2886,0.9435 -0.1630,-0.0000,-0.2886,0.9435 -0.1630,-0.0000,-0.2886,0.9435 -0.1630,-0.0000,-0.2886,0.9435 -0.1471,-0.0000,-0.2933,0.9446 -0.1471,-0.0000,-0.2933,0.9446 -0.1471,-0.0000,-0.2933,0.9446 -0.1471,-0.0000,-0.2933,0.9446 -0.1312,-0.0000,-0.2991,0.9452 -0.1312,-0.0000,-0.2991,0.9452 -0.1312,-0.0000,-0.2991,0.9452 -0.1312,-0.0000,-0.2991,0.9452 -0.1152,-0.0000,-0.3067,0.9448 -0.1152,-0.0000,-0.3067,0.9448 -0.1152,-0.0000,-0.3067,0.9448 -0.1152,-0.0000,-0.3067,0.9448 -0.0991,-0.0000,-0.3167,0.9433 -0.0991,-0.0000,-0.3167,0.9433 -0.0991,-0.0000,-0.3167,0.9433 -0.0991,-0.0000,-0.3167,0.9433 -0.0831,-0.0000,-0.3307,0.9401 -0.0831,-0.0000,-0.3307,0.9401 -0.0831,-0.0000,-0.3307,0.9401 -0.0831,-0.0000,-0.3307,0.9401 -0.0670,-0.0000,-0.3514,0.9338 -0.0670,-0.0000,-0.3514,0.9338 -0.0670,-0.0000,-0.3514,0.9338 -0.0670,-0.0000,-0.3514,0.9338 -0.0510,-0.0000,-0.3848,0.9216 -0.0510,-0.0000,-0.3848,0.9216 -0.0510,-0.0000,-0.3848,0.9216 -0.0510,-0.0000,-0.3848,0.9216 -0.0351,-0.0000,-0.4473,0.8937 -0.0351,-0.0000,-0.4473,0.8937 -0.0351,-0.0000,-0.4473,0.8937 -0.0351,-0.0000,-0.4473,0.8937 -0.0196,-0.0000,-0.6000,0.7997 -0.0196,-0.0000,-0.6000,0.7997 -0.0196,-0.0000,-0.6000,0.7997 -0.0196,-0.0000,-0.6000,0.7997 -0.0079,-0.0000,-1.0000,-0.0001 -0.0079,-0.0000,-1.0000,-0.0001 -0.0079,-0.0000,-1.0000,-0.0001 -0.0079,-0.0000,-1.0000,-0.0001 -0.0162,-0.0000,-0.2425,-0.9700 -0.0162,-0.0000,-0.2425,-0.9700 -0.0162,-0.0000,-0.2425,-0.9700 -0.0162,-0.0000,-0.2425,-0.9700 -0.0314,-0.0000,0.0000,-0.9995 -0.0314,-0.0000,0.0000,-0.9995 -0.0314,-0.0000,0.0000,-0.9995 -0.0314,-0.0000,0.0000,-0.9995 -0.0473,-0.0000,0.0831,-0.9954 -0.0473,-0.0000,0.0831,-0.9954 -0.0473,-0.0000,0.0831,-0.9954 -0.0473,-0.0000,0.0831,-0.9954 -0.0633,-0.0000,0.1241,-0.9902 -0.0633,-0.0000,0.1241,-0.9902 -0.0633,-0.0000,0.1241,-0.9902 -0.0633,-0.0000,0.1241,-0.9902 -0.0793,-0.0000,0.1485,-0.9857 -0.0793,-0.0000,0.1485,-0.9857 -0.0793,-0.0000,0.1485,-0.9857 -0.0793,-0.0000,0.1485,-0.9857 -0.0954,-0.0000,0.1646,-0.9817 -0.0954,-0.0000,0.1646,-0.9817 -0.0954,-0.0000,0.1646,-0.9817 -0.0954,-0.0000,0.1646,-0.9817 -0.1114,-0.0000,0.1762,-0.9780 -0.1114,-0.0000,0.1762,-0.9780 -0.1114,-0.0000,0.1762,-0.9780 -0.1114,-0.0000,0.1762,-0.9780 -0.1275,-0.0000,0.1848,-0.9745 -0.1275,-0.0000,0.1848,-0.9745 -0.1275,-0.0000,0.1848,-0.9745 -0.1275,-0.0000,0.1848,-0.9745 -0.1435,-0.0000,0.1915,-0.9709 -0.1435,-0.0000,0.1915,-0.9709 -0.1435,-0.0000,0.1915,-0.9709 -0.1435,-0.0000,0.1915,-0.9709 -0.1594,-0.0000,0.1970,-0.9674 -0.1594,-0.0000,0.1970,-0.9674 -0.1594,-0.0000,0.1970,-0.9674 -0.1594,-0.0000,0.1970,-0.9674 -0.1753,-0.0000,0.2014,-0.9637 -0.1753,-0.0000,0.2014,-0.9637 -0.1753,-0.0000,0.2014,-0.9637 -0.1753,-0.0000,0.2014,-0.9637 -0.1912,-0.0000,0.2052,-0.9599 -0.1912,-0.0000,0.2052,-0.9599 -0.1912,-0.0000,0.2052,-0.9599 -0.1912,-0.0000,0.2052,-0.9599 -0.2070,-0.0000,0.2085,-0.9559 -0.2070,-0.0000,0.2085,-0.9559 -0.2070,-0.0000,0.2085,-0.9559 -0.2070,-0.0000,0.2085,-0.9559 -0.2227,-0.0000,0.2113,-0.9517 -0.2227,-0.0000,0.2113,-0.9517 -0.2227,-0.0000,0.2113,-0.9517 -0.2227,-0.0000,0.2113,-0.9517 -0.2384,-0.0000,0.2138,-0.9473 -0.2384,-0.0000,0.2138,-0.9473 -0.2384,-0.0000,0.2138,-0.9473 -0.2384,-0.0000,0.2138,-0.9473 -0.2540,-0.0000,0.2161,-0.9428 -0.2540,-0.0000,0.2161,-0.9428 -0.2540,-0.0000,0.2161,-0.9428 -0.2540,-0.0000,0.2161,-0.9428 -0.2695,-0.0000,0.2181,-0.9380 -0.2695,-0.0000,0.2181,-0.9380 -0.2695,-0.0000,0.2181,-0.9380 -0.2695,-0.0000,0.2181,-0.9380 -0.2849,-0.0000,0.2200,-0.9330 -0.2849,-0.0000,0.2200,-0.9330 -0.2849,-0.0000,0.2200,-0.9330 -0.2849,-0.0000,0.2200,-0.9330 -0.3002,-0.0000,0.2217,-0.9277 -0.3002,-0.0000,0.2217,-0.9277 -0.3002,-0.0000,0.2217,-0.9277 -0.3002,-0.0000,0.2217,-0.9277 -0.3155,-0.0000,0.2233,-0.9223 -0.3155,-0.0000,0.2233,-0.9223 -0.3155,-0.0000,0.2233,-0.9223 -0.3155,-0.0000,0.2233,-0.9223 -0.3306,-0.0000,0.2248,-0.9166 -0.3306,-0.0000,0.2248,-0.9166 -0.3306,-0.0000,0.2248,-0.9166 -0.3306,-0.0000,0.2248,-0.9166 -0.3457,-0.0000,0.2263,-0.9107 -0.3457,-0.0000,0.2263,-0.9107 -0.3457,-0.0000,0.2263,-0.9107 -0.3457,-0.0000,0.2263,-0.9107 -0.3606,-0.0000,0.2277,-0.9045 -0.3606,-0.0000,0.2277,-0.9045 -0.3606,-0.0000,0.2277,-0.9045 -0.3606,-0.0000,0.2277,-0.9045 -0.3754,-0.0000,0.2290,-0.8981 -0.3754,-0.0000,0.2290,-0.8981 -0.3754,-0.0000,0.2290,-0.8981 -0.3754,-0.0000,0.2290,-0.8981 -0.3901,-0.0000,0.2303,-0.8915 -0.3901,-0.0000,0.2303,-0.8915 -0.3901,-0.0000,0.2303,-0.8915 -0.3901,-0.0000,0.2303,-0.8915 -0.4047,-0.0000,0.2315,-0.8847 -0.4047,-0.0000,0.2315,-0.8847 -0.4047,-0.0000,0.2315,-0.8847 -0.4047,-0.0000,0.2315,-0.8847 -0.4192,-0.0000,0.2327,-0.8776 -0.4192,-0.0000,0.2327,-0.8776 -0.4192,-0.0000,0.2327,-0.8776 -0.4192,-0.0000,0.2327,-0.8776 -0.4335,-0.0000,0.2339,-0.8703 -0.4335,-0.0000,0.2339,-0.8703 -0.4335,-0.0000,0.2339,-0.8703 -0.4335,-0.0000,0.2339,-0.8703 -0.4477,-0.0000,0.2351,-0.8627 -0.4477,-0.0000,0.2351,-0.8627 -0.4477,-0.0000,0.2351,-0.8627 -0.4477,-0.0000,0.2351,-0.8627 -0.4617,-0.0000,0.2362,-0.8550 -0.4617,-0.0000,0.2362,-0.8550 -0.4617,-0.0000,0.2362,-0.8550 -0.4617,-0.0000,0.2362,-0.8550 -0.4756,-0.0000,0.2374,-0.8470 -0.4756,-0.0000,0.2374,-0.8470 -0.4756,-0.0000,0.2374,-0.8470 -0.4756,-0.0000,0.2374,-0.8470 -0.4894,-0.0000,0.2385,-0.8388 -0.4894,-0.0000,0.2385,-0.8388 -0.4894,-0.0000,0.2385,-0.8388 -0.4894,-0.0000,0.2385,-0.8388 -0.5030,-0.0000,0.2396,-0.8304 -0.5030,-0.0000,0.2396,-0.8304 -0.5030,-0.0000,0.2396,-0.8304 -0.5030,-0.0000,0.2396,-0.8304 -0.5164,-0.0000,0.2408,-0.8218 -0.5164,-0.0000,0.2408,-0.8218 -0.5164,-0.0000,0.2408,-0.8218 -0.5164,-0.0000,0.2408,-0.8218 -0.5297,-0.0000,0.2419,-0.8130 -0.5297,-0.0000,0.2419,-0.8130 -0.5297,-0.0000,0.2419,-0.8130 -0.5297,-0.0000,0.2419,-0.8130 -0.5428,-0.0000,0.2431,-0.8039 -0.5428,-0.0000,0.2431,-0.8039 -0.5428,-0.0000,0.2431,-0.8039 -0.5428,-0.0000,0.2431,-0.8039 -0.5558,-0.0000,0.2442,-0.7947 -0.5558,-0.0000,0.2442,-0.7947 -0.5558,-0.0000,0.2442,-0.7947 -0.5558,-0.0000,0.2442,-0.7947 -0.5685,-0.0000,0.2454,-0.7852 -0.5685,-0.0000,0.2454,-0.7852 -0.5685,-0.0000,0.2454,-0.7852 -0.5685,-0.0000,0.2454,-0.7852 -0.5811,-0.0000,0.2465,-0.7756 -0.5811,-0.0000,0.2465,-0.7756 -0.5811,-0.0000,0.2465,-0.7756 -0.5811,-0.0000,0.2465,-0.7756 -0.5936,-0.0000,0.2477,-0.7657 -0.5936,-0.0000,0.2477,-0.7657 -0.5936,-0.0000,0.2477,-0.7657 -0.5936,-0.0000,0.2477,-0.7657 -0.6058,-0.0000,0.2489,-0.7557 -0.6058,-0.0000,0.2489,-0.7557 -0.6058,-0.0000,0.2489,-0.7557 -0.6058,-0.0000,0.2489,-0.7557 -0.6179,-0.0000,0.2501,-0.7455 -0.6179,-0.0000,0.2501,-0.7455 -0.6179,-0.0000,0.2501,-0.7455 -0.6179,-0.0000,0.2501,-0.7455 -0.6297,-0.0000,0.2513,-0.7351 -0.6297,-0.0000,0.2513,-0.7351 -0.6297,-0.0000,0.2513,-0.7351 -0.6297,-0.0000,0.2513,-0.7351 -0.6414,-0.0000,0.2525,-0.7245 -0.6414,-0.0000,0.2525,-0.7245 -0.6414,-0.0000,0.2525,-0.7245 -0.6414,-0.0000,0.2525,-0.7245 -0.6528,-0.0000,0.2538,-0.7137 -0.6528,-0.0000,0.2538,-0.7137 -0.6528,-0.0000,0.2538,-0.7137 -0.6528,-0.0000,0.2538,-0.7137 -0.6641,-0.0000,0.2550,-0.7028 -0.6641,-0.0000,0.2550,-0.7028 -0.6641,-0.0000,0.2550,-0.7028 -0.6641,-0.0000,0.2550,-0.7028 -0.6752,-0.0000,0.2563,-0.6917 -0.6752,-0.0000,0.2563,-0.6917 -0.6752,-0.0000,0.2563,-0.6917 -0.6752,-0.0000,0.2563,-0.6917 -0.6860,-0.0000,0.2576,-0.6804 -0.6860,-0.0000,0.2576,-0.6804 -0.6860,-0.0000,0.2576,-0.6804 -0.6860,-0.0000,0.2576,-0.6804 -0.6967,-0.0000,0.2590,-0.6690 -0.6967,-0.0000,0.2590,-0.6690 -0.6967,-0.0000,0.2590,-0.6690 -0.6967,-0.0000,0.2590,-0.6690 -0.7071,-0.0000,0.2603,-0.6575 -0.7071,-0.0000,0.2603,-0.6575 -0.7071,-0.0000,0.2603,-0.6575 -0.7071,-0.0000,0.2603,-0.6575 -0.7173,-0.0000,0.2617,-0.6457 -0.7173,-0.0000,0.2617,-0.6457 -0.7173,-0.0000,0.2617,-0.6457 -0.7173,-0.0000,0.2617,-0.6457 -0.7273,-0.0000,0.2631,-0.6339 -0.7273,-0.0000,0.2631,-0.6339 -0.7273,-0.0000,0.2631,-0.6339 -0.7273,-0.0000,0.2631,-0.6339 -0.7371,-0.0000,0.2645,-0.6219 -0.7371,-0.0000,0.2645,-0.6219 -0.7371,-0.0000,0.2645,-0.6219 -0.7371,-0.0000,0.2645,-0.6219 -0.7467,-0.0000,0.2659,-0.6097 -0.7467,-0.0000,0.2659,-0.6097 -0.7467,-0.0000,0.2659,-0.6097 -0.7467,-0.0000,0.2659,-0.6097 -0.7560,-0.0000,0.2674,-0.5974 -0.7560,-0.0000,0.2674,-0.5974 -0.7560,-0.0000,0.2674,-0.5974 -0.7560,-0.0000,0.2674,-0.5974 -0.7651,-0.0000,0.2689,-0.5851 -0.7651,-0.0000,0.2689,-0.5851 -0.7651,-0.0000,0.2689,-0.5851 -0.7651,-0.0000,0.2689,-0.5851 -0.7740,-0.0000,0.2705,-0.5725 -0.7740,-0.0000,0.2705,-0.5725 -0.7740,-0.0000,0.2705,-0.5725 -0.7740,-0.0000,0.2705,-0.5725 -0.7826,-0.0000,0.2720,-0.5599 -0.7826,-0.0000,0.2720,-0.5599 -0.7826,-0.0000,0.2720,-0.5599 -0.7826,-0.0000,0.2720,-0.5599 -0.7910,-0.0000,0.2736,-0.5472 -0.7910,-0.0000,0.2736,-0.5472 -0.7910,-0.0000,0.2736,-0.5472 -0.7910,-0.0000,0.2736,-0.5472 -0.7992,-0.0000,0.2752,-0.5343 -0.7992,-0.0000,0.2752,-0.5343 -0.7992,-0.0000,0.2752,-0.5343 -0.7992,-0.0000,0.2752,-0.5343 -0.8072,-0.0000,0.2769,-0.5214 -0.8072,-0.0000,0.2769,-0.5214 -0.8072,-0.0000,0.2769,-0.5214 -0.8072,-0.0000,0.2769,-0.5214 -0.8149,-0.0000,0.2786,-0.5083 -0.8149,-0.0000,0.2786,-0.5083 -0.8149,-0.0000,0.2786,-0.5083 -0.8149,-0.0000,0.2786,-0.5083 -0.8223,-0.0000,0.2803,-0.4952 -0.8223,-0.0000,0.2803,-0.4952 -0.8223,-0.0000,0.2803,-0.4952 -0.8223,-0.0000,0.2803,-0.4952 -0.8295,-0.0000,0.2820,-0.4820 -0.8295,-0.0000,0.2820,-0.4820 -0.8295,-0.0000,0.2820,-0.4820 -0.8295,-0.0000,0.2820,-0.4820 -0.8365,-0.0000,0.2838,-0.4687 -0.8365,-0.0000,0.2838,-0.4687 -0.8365,-0.0000,0.2838,-0.4687 -0.8365,-0.0000,0.2838,-0.4687 -0.8433,-0.0000,0.2857,-0.4553 -0.8433,-0.0000,0.2857,-0.4553 -0.8433,-0.0000,0.2857,-0.4553 -0.8433,-0.0000,0.2857,-0.4553 -0.8497,-0.0000,0.2875,-0.4419 -0.8497,-0.0000,0.2875,-0.4419 -0.8497,-0.0000,0.2875,-0.4419 -0.8497,-0.0000,0.2875,-0.4419 -0.8560,-0.0000,0.2894,-0.4284 -0.8560,-0.0000,0.2894,-0.4284 -0.8560,-0.0000,0.2894,-0.4284 -0.8560,-0.0000,0.2894,-0.4284 -0.8620,-0.0000,0.2913,-0.4148 -0.8620,-0.0000,0.2913,-0.4148 -0.8620,-0.0000,0.2913,-0.4148 -0.8620,-0.0000,0.2913,-0.4148 -0.8677,-0.0000,0.2933,-0.4012 -0.8677,-0.0000,0.2933,-0.4012 -0.8677,-0.0000,0.2933,-0.4012 -0.8677,-0.0000,0.2933,-0.4012 -0.8732,-0.0000,0.2953,-0.3876 -0.8732,-0.0000,0.2953,-0.3876 -0.8732,-0.0000,0.2953,-0.3876 -0.8732,-0.0000,0.2953,-0.3876 -0.8785,-0.0000,0.2974,-0.3739 -0.8785,-0.0000,0.2974,-0.3739 -0.8785,-0.0000,0.2974,-0.3739 -0.8785,-0.0000,0.2974,-0.3739 -0.8835,-0.0000,0.2995,-0.3602 -0.8835,-0.0000,0.2995,-0.3602 -0.8835,-0.0000,0.2995,-0.3602 -0.8835,-0.0000,0.2995,-0.3602 -0.8883,-0.0000,0.3016,-0.3465 -0.8883,-0.0000,0.3016,-0.3465 -0.8883,-0.0000,0.3016,-0.3465 -0.8883,-0.0000,0.3016,-0.3465 -0.8928,-0.0000,0.3038,-0.3327 -0.8928,-0.0000,0.3038,-0.3327 -0.8928,-0.0000,0.3038,-0.3327 -0.8928,-0.0000,0.3038,-0.3327 -0.8970,-0.0000,0.3060,-0.3189 -0.8970,-0.0000,0.3060,-0.3189 -0.8970,-0.0000,0.3060,-0.3189 -0.8970,-0.0000,0.3060,-0.3189 -0.9010,-0.0000,0.3083,-0.3051 -0.9010,-0.0000,0.3083,-0.3051 -0.9010,-0.0000,0.3083,-0.3051 -0.9010,-0.0000,0.3083,-0.3051 -0.9048,-0.0000,0.3106,-0.2913 -0.9048,-0.0000,0.3106,-0.2913 -0.9048,-0.0000,0.3106,-0.2913 -0.9048,-0.0000,0.3106,-0.2913 -0.9083,-0.0000,0.3130,-0.2776 -0.9083,-0.0000,0.3130,-0.2776 -0.9083,-0.0000,0.3130,-0.2776 -0.9083,-0.0000,0.3130,-0.2776 -0.9116,-0.0000,0.3154,-0.2638 -0.9116,-0.0000,0.3154,-0.2638 -0.9116,-0.0000,0.3154,-0.2638 -0.9116,-0.0000,0.3154,-0.2638 -0.9146,-0.0000,0.3179,-0.2500 -0.9146,-0.0000,0.3179,-0.2500 -0.9146,-0.0000,0.3179,-0.2500 -0.9146,-0.0000,0.3179,-0.2500 -0.9174,-0.0000,0.3204,-0.2363 -0.9174,-0.0000,0.3204,-0.2363 -0.9174,-0.0000,0.3204,-0.2363 -0.9174,-0.0000,0.3204,-0.2363 -0.9199,-0.0000,0.3229,-0.2226 -0.9199,-0.0000,0.3229,-0.2226 -0.9199,-0.0000,0.3229,-0.2226 -0.9199,-0.0000,0.3229,-0.2226 -0.9222,-0.0000,0.3256,-0.2089 -0.9222,-0.0000,0.3256,-0.2089 -0.9222,-0.0000,0.3256,-0.2089 -0.9222,-0.0000,0.3256,-0.2089 -0.9242,-0.0000,0.3282,-0.1952 -0.9242,-0.0000,0.3282,-0.1952 -0.9242,-0.0000,0.3282,-0.1952 -0.9242,-0.0000,0.3282,-0.1952 -0.9260,-0.0000,0.3309,-0.1817 -0.9260,-0.0000,0.3309,-0.1817 -0.9260,-0.0000,0.3309,-0.1817 -0.9260,-0.0000,0.3309,-0.1817 -0.9276,-0.0000,0.3337,-0.1681 -0.9276,-0.0000,0.3337,-0.1681 -0.9276,-0.0000,0.3337,-0.1681 -0.9276,-0.0000,0.3337,-0.1681 -0.9289,-0.0000,0.3366,-0.1546 -0.9289,-0.0000,0.3366,-0.1546 -0.9289,-0.0000,0.3366,-0.1546 -0.9289,-0.0000,0.3366,-0.1546 -0.9300,-0.0000,0.3395,-0.1412 -0.9300,-0.0000,0.3395,-0.1412 -0.9300,-0.0000,0.3395,-0.1412 -0.9300,-0.0000,0.3395,-0.1412 -0.9308,-0.0000,0.3424,-0.1279 -0.9308,-0.0000,0.3424,-0.1279 -0.9308,-0.0000,0.3424,-0.1279 -0.9308,-0.0000,0.3424,-0.1279 -0.9314,-0.0000,0.3454,-0.1146 -0.9314,-0.0000,0.3454,-0.1146 -0.9314,-0.0000,0.3454,-0.1146 -0.9314,-0.0000,0.3454,-0.1146 -0.9318,-0.0000,0.3485,-0.1015 -0.9318,-0.0000,0.3485,-0.1015 -0.9318,-0.0000,0.3485,-0.1015 -0.9318,-0.0000,0.3485,-0.1015 -0.9320,-0.0000,0.3516,-0.0884 -0.9320,-0.0000,0.3516,-0.0884 -0.9320,-0.0000,0.3516,-0.0884 -0.9320,-0.0000,0.3516,-0.0884 -0.9319,-0.0000,0.3548,-0.0754 -0.9319,-0.0000,0.3548,-0.0754 -0.9319,-0.0000,0.3548,-0.0754 -0.9319,-0.0000,0.3548,-0.0754 -0.9316,-0.0000,0.3581,-0.0625 -0.9316,-0.0000,0.3581,-0.0625 -0.9316,-0.0000,0.3581,-0.0625 -0.9316,-0.0000,0.3581,-0.0625 -0.9311,-0.0000,0.3614,-0.0498 -0.9311,-0.0000,0.3614,-0.0498 -0.9311,-0.0000,0.3614,-0.0498 -0.9311,-0.0000,0.3614,-0.0498 -0.9303,-0.0000,0.3648,-0.0371 -0.9303,-0.0000,0.3648,-0.0371 -0.9303,-0.0000,0.3648,-0.0371 -0.9303,-0.0000,0.3648,-0.0371 -0.9294,-0.0000,0.3683,-0.0246 -0.9294,-0.0000,0.3683,-0.0246 -0.9294,-0.0000,0.3683,-0.0246 -0.9294,-0.0000,0.3683,-0.0246 -0.9282,-0.0000,0.3718,-0.0122 -0.9282,-0.0000,0.3718,-0.0122 -0.9282,-0.0000,0.3718,-0.0122 -0.9282,-0.0000,0.3718,-0.0122 -0.9269,0.0000,0.3754,0.0000 -0.9269,0.0000,0.3754,0.0000 -0.9269,0.0000,0.3754,0.0000 -0.9269,0.0000,0.3754,0.0000 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv deleted file mode 100644 index c858131d945425a27860315c123758a1544ad922..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv +++ /dev/null @@ -1,200 +0,0 @@ -10.0000,10.0000,10.0000,10.7012,9.9780,9.2874 -10.0000,10.0000,10.0000,10.7057,9.9556,9.2929 -10.0000,10.0000,10.0000,10.7095,9.9329,9.2985 -10.0000,10.0000,10.0000,10.7125,9.9100,9.3041 -10.0000,10.0000,10.0000,10.7147,9.8868,9.3097 -10.0000,10.0000,10.0000,10.7161,9.8634,9.3155 -10.0000,10.0000,10.0000,10.7166,9.8398,9.3212 -10.0000,10.0000,10.0000,10.7164,9.8161,9.3270 -10.0000,10.0000,10.0000,10.7153,9.7922,9.3328 -10.0000,10.0000,10.0000,10.7134,9.7682,9.3387 -10.0000,10.0000,10.0000,10.7106,9.7442,9.3446 -10.0000,10.0000,10.0000,10.7070,9.7201,9.3506 -10.0000,10.0000,10.0000,10.7025,9.6960,9.3565 -10.0000,10.0000,10.0000,10.6972,9.6719,9.3626 -10.0000,10.0000,10.0000,10.6910,9.6479,9.3686 -10.0000,10.0000,10.0000,10.6839,9.6240,9.3748 -10.0000,10.0000,10.0000,10.6760,9.6002,9.3809 -10.0000,10.0000,10.0000,10.6671,9.5766,9.3871 -10.0000,10.0000,10.0000,10.6575,9.5532,9.3933 -10.0000,10.0000,10.0000,10.6470,9.5300,9.3996 -10.0000,10.0000,10.0000,10.6356,9.5070,9.4059 -10.0000,10.0000,10.0000,10.6234,9.4843,9.4122 -10.0000,10.0000,10.0000,10.6103,9.4620,9.4186 -10.0000,10.0000,10.0000,10.5964,9.4399,9.4250 -10.0000,10.0000,10.0000,10.5817,9.4183,9.4314 -10.0000,10.0000,10.0000,10.5662,9.3971,9.4379 -10.0000,10.0000,10.0000,10.5499,9.3763,9.4444 -10.0000,10.0000,10.0000,10.5328,9.3560,9.4510 -10.0000,10.0000,10.0000,10.5149,9.3362,9.4576 -10.0000,10.0000,10.0000,10.4963,9.3169,9.4642 -10.0000,10.0000,10.0000,10.4769,9.2982,9.4708 -10.0000,10.0000,10.0000,10.4569,9.2801,9.4775 -10.0000,10.0000,10.0000,10.4361,9.2626,9.4842 -10.0000,10.0000,10.0000,10.4147,9.2457,9.4910 -10.0000,10.0000,10.0000,10.3926,9.2295,9.4977 -10.0000,10.0000,10.0000,10.3698,9.2140,9.5045 -10.0000,10.0000,10.0000,10.3465,9.1993,9.5114 -10.0000,10.0000,10.0000,10.3226,9.1852,9.5182 -10.0000,10.0000,10.0000,10.2981,9.1720,9.5251 -10.0000,10.0000,10.0000,10.2731,9.1595,9.5321 -10.0000,10.0000,10.0000,10.2476,9.1478,9.5390 -10.0000,10.0000,10.0000,10.2216,9.1370,9.5460 -10.0000,10.0000,10.0000,10.1951,9.1270,9.5530 -10.0000,10.0000,10.0000,10.1683,9.1179,9.5601 -10.0000,10.0000,10.0000,10.1410,9.1096,9.5671 -10.0000,10.0000,10.0000,10.1134,9.1023,9.5742 -10.0000,10.0000,10.0000,10.0855,9.0959,9.5813 -10.0000,10.0000,10.0000,10.0572,9.0904,9.5885 -10.0000,10.0000,10.0000,10.0287,9.0858,9.5957 -10.0000,10.0000,10.0000,10.0000,9.0822,9.6029 -10.0000,10.0000,10.0000,9.9711,9.0796,9.6101 -10.0000,10.0000,10.0000,9.9420,9.0779,9.6173 -10.0000,10.0000,10.0000,9.9128,9.0773,9.6246 -10.0000,10.0000,10.0000,9.8835,9.0776,9.6319 -10.0000,10.0000,10.0000,9.8541,9.0788,9.6392 -10.0000,10.0000,10.0000,9.8247,9.0811,9.6465 -10.0000,10.0000,10.0000,9.7953,9.0844,9.6539 -10.0000,10.0000,10.0000,9.7660,9.0887,9.6613 -10.0000,10.0000,10.0000,9.7368,9.0940,9.6687 -10.0000,10.0000,10.0000,9.7076,9.1002,9.6761 -10.0000,10.0000,10.0000,9.6787,9.1075,9.6835 -10.0000,10.0000,10.0000,9.6499,9.1157,9.6910 -10.0000,10.0000,10.0000,9.6213,9.1250,9.6985 -10.0000,10.0000,10.0000,9.5930,9.1352,9.7060 -10.0000,10.0000,10.0000,9.5650,9.1464,9.7135 -10.0000,10.0000,10.0000,9.5374,9.1585,9.7210 -10.0000,10.0000,10.0000,9.5101,9.1716,9.7286 -10.0000,10.0000,10.0000,9.4832,9.1856,9.7361 -10.0000,10.0000,10.0000,9.4567,9.2005,9.7437 -10.0000,10.0000,10.0000,9.4307,9.2164,9.7513 -10.0000,10.0000,10.0000,9.4052,9.2331,9.7589 -10.0000,10.0000,10.0000,9.3802,9.2508,9.7666 -10.0000,10.0000,10.0000,9.3558,9.2693,9.7742 -10.0000,10.0000,10.0000,9.3319,9.2886,9.7819 -10.0000,10.0000,10.0000,9.3087,9.3087,9.7895 -10.0000,10.0000,10.0000,9.2862,9.3297,9.7972 -10.0000,10.0000,10.0000,9.2643,9.3514,9.8049 -10.0000,10.0000,10.0000,9.2431,9.3739,9.8126 -10.0000,10.0000,10.0000,9.2227,9.3971,9.8203 -10.0000,10.0000,10.0000,9.2030,9.4210,9.8281 -10.0000,10.0000,10.0000,9.1841,9.4455,9.8358 -10.0000,10.0000,10.0000,9.1661,9.4708,9.8436 -10.0000,10.0000,10.0000,9.1488,9.4966,9.8513 -10.0000,10.0000,10.0000,9.1324,9.5231,9.8591 -10.0000,10.0000,10.0000,9.1169,9.5501,9.8669 -10.0000,10.0000,10.0000,9.1023,9.5776,9.8747 -10.0000,10.0000,10.0000,9.0886,9.6056,9.8825 -10.0000,10.0000,10.0000,9.0758,9.6341,9.8903 -10.0000,10.0000,10.0000,9.0640,9.6630,9.8981 -10.0000,10.0000,10.0000,9.0532,9.6924,9.9059 -10.0000,10.0000,10.0000,9.0433,9.7221,9.9137 -10.0000,10.0000,10.0000,9.0344,9.7521,9.9215 -10.0000,10.0000,10.0000,9.0265,9.7824,9.9294 -10.0000,10.0000,10.0000,9.0197,9.8130,9.9372 -10.0000,10.0000,10.0000,9.0138,9.8438,9.9451 -10.0000,10.0000,10.0000,9.0090,9.8748,9.9529 -10.0000,10.0000,10.0000,9.0052,9.9060,9.9607 -10.0000,10.0000,10.0000,9.0025,9.9372,9.9686 -10.0000,10.0000,10.0000,9.0008,9.9686,9.9764 -10.0000,10.0000,10.0000,9.0001,10.0000,9.9843 -10.0000,10.0000,10.0000,9.0005,10.0314,9.9921 -10.0000,10.0000,10.0000,9.0020,10.0628,10.0000 -10.0000,10.0000,10.0000,9.0045,10.0941,10.0079 -10.0000,10.0000,10.0000,9.0080,10.1253,10.0157 -10.0000,10.0000,10.0000,9.0126,10.1564,10.0236 -10.0000,10.0000,10.0000,9.0182,10.1873,10.0314 -10.0000,10.0000,10.0000,9.0248,10.2180,10.0393 -10.0000,10.0000,10.0000,9.0325,10.2484,10.0471 -10.0000,10.0000,10.0000,9.0412,10.2786,10.0550 -10.0000,10.0000,10.0000,9.0508,10.3084,10.0628 -10.0000,10.0000,10.0000,9.0615,10.3379,10.0706 -10.0000,10.0000,10.0000,9.0731,10.3670,10.0785 -10.0000,10.0000,10.0000,9.0857,10.3957,10.0863 -10.0000,10.0000,10.0000,9.0992,10.4239,10.0941 -10.0000,10.0000,10.0000,9.1136,10.4516,10.1019 -10.0000,10.0000,10.0000,9.1290,10.4788,10.1097 -10.0000,10.0000,10.0000,9.1452,10.5055,10.1175 -10.0000,10.0000,10.0000,9.1623,10.5316,10.1253 -10.0000,10.0000,10.0000,9.1803,10.5571,10.1331 -10.0000,10.0000,10.0000,9.1991,10.5819,10.1409 -10.0000,10.0000,10.0000,9.2186,10.6061,10.1487 -10.0000,10.0000,10.0000,9.2390,10.6296,10.1564 -10.0000,10.0000,10.0000,9.2601,10.6523,10.1642 -10.0000,10.0000,10.0000,9.2819,10.6744,10.1719 -10.0000,10.0000,10.0000,9.3044,10.6956,10.1797 -10.0000,10.0000,10.0000,9.3276,10.7161,10.1874 -10.0000,10.0000,10.0000,9.3514,10.7357,10.1951 -10.0000,10.0000,10.0000,9.3758,10.7545,10.2028 -10.0000,10.0000,10.0000,9.4008,10.7725,10.2105 -10.0000,10.0000,10.0000,9.4264,10.7895,10.2181 -10.0000,10.0000,10.0000,9.4524,10.8057,10.2258 -10.0000,10.0000,10.0000,9.4790,10.8210,10.2334 -10.0000,10.0000,10.0000,9.5060,10.8354,10.2411 -10.0000,10.0000,10.0000,9.5334,10.8488,10.2487 -10.0000,10.0000,10.0000,9.5612,10.8612,10.2563 -10.0000,10.0000,10.0000,9.5893,10.8728,10.2639 -10.0000,10.0000,10.0000,9.6178,10.8833,10.2714 -10.0000,10.0000,10.0000,9.6465,10.8929,10.2790 -10.0000,10.0000,10.0000,9.6755,10.9014,10.2865 -10.0000,10.0000,10.0000,9.7046,10.9090,10.2940 -10.0000,10.0000,10.0000,9.7340,10.9156,10.3015 -10.0000,10.0000,10.0000,9.7635,10.9212,10.3090 -10.0000,10.0000,10.0000,9.7931,10.9258,10.3165 -10.0000,10.0000,10.0000,9.8227,10.9293,10.3239 -10.0000,10.0000,10.0000,9.8524,10.9319,10.3313 -10.0000,10.0000,10.0000,9.8821,10.9335,10.3387 -10.0000,10.0000,10.0000,9.9117,10.9340,10.3461 -10.0000,10.0000,10.0000,9.9413,10.9336,10.3535 -10.0000,10.0000,10.0000,9.9707,10.9322,10.3608 -10.0000,10.0000,10.0000,10.0000,10.9298,10.3681 -10.0000,10.0000,10.0000,10.0291,10.9264,10.3754 -10.0000,10.0000,10.0000,10.0580,10.9221,10.3827 -10.0000,10.0000,10.0000,10.0867,10.9168,10.3899 -10.0000,10.0000,10.0000,10.1150,10.9105,10.3971 -10.0000,10.0000,10.0000,10.1431,10.9033,10.4043 -10.0000,10.0000,10.0000,10.1708,10.8953,10.4115 -10.0000,10.0000,10.0000,10.1981,10.8863,10.4187 -10.0000,10.0000,10.0000,10.2250,10.8764,10.4258 -10.0000,10.0000,10.0000,10.2515,10.8657,10.4329 -10.0000,10.0000,10.0000,10.2775,10.8541,10.4399 -10.0000,10.0000,10.0000,10.3030,10.8417,10.4470 -10.0000,10.0000,10.0000,10.3280,10.8284,10.4540 -10.0000,10.0000,10.0000,10.3524,10.8144,10.4610 -10.0000,10.0000,10.0000,10.3763,10.7997,10.4679 -10.0000,10.0000,10.0000,10.3995,10.7841,10.4749 -10.0000,10.0000,10.0000,10.4222,10.7679,10.4818 -10.0000,10.0000,10.0000,10.4441,10.7510,10.4886 -10.0000,10.0000,10.0000,10.4654,10.7334,10.4955 -10.0000,10.0000,10.0000,10.4860,10.7152,10.5023 -10.0000,10.0000,10.0000,10.5059,10.6964,10.5090 -10.0000,10.0000,10.0000,10.5251,10.6769,10.5158 -10.0000,10.0000,10.0000,10.5435,10.6570,10.5225 -10.0000,10.0000,10.0000,10.5611,10.6365,10.5292 -10.0000,10.0000,10.0000,10.5780,10.6155,10.5358 -10.0000,10.0000,10.0000,10.5940,10.5940,10.5424 -10.0000,10.0000,10.0000,10.6093,10.5721,10.5490 -10.0000,10.0000,10.0000,10.6237,10.5499,10.5556 -10.0000,10.0000,10.0000,10.6373,10.5272,10.5621 -10.0000,10.0000,10.0000,10.6500,10.5042,10.5686 -10.0000,10.0000,10.0000,10.6619,10.4809,10.5750 -10.0000,10.0000,10.0000,10.6729,10.4573,10.5814 -10.0000,10.0000,10.0000,10.6831,10.4335,10.5878 -10.0000,10.0000,10.0000,10.6924,10.4095,10.5941 -10.0000,10.0000,10.0000,10.7008,10.3852,10.6004 -10.0000,10.0000,10.0000,10.7083,10.3609,10.6067 -10.0000,10.0000,10.0000,10.7150,10.3364,10.6129 -10.0000,10.0000,10.0000,10.7207,10.3119,10.6191 -10.0000,10.0000,10.0000,10.7256,10.2873,10.6252 -10.0000,10.0000,10.0000,10.7296,10.2627,10.6314 -10.0000,10.0000,10.0000,10.7328,10.2381,10.6374 -10.0000,10.0000,10.0000,10.7351,10.2136,10.6435 -10.0000,10.0000,10.0000,10.7365,10.1891,10.6494 -10.0000,10.0000,10.0000,10.7371,10.1648,10.6554 -10.0000,10.0000,10.0000,10.7368,10.1406,10.6613 -10.0000,10.0000,10.0000,10.7357,10.1165,10.6672 -10.0000,10.0000,10.0000,10.7338,10.0927,10.6730 -10.0000,10.0000,10.0000,10.7311,10.0691,10.6788 -10.0000,10.0000,10.0000,10.7275,10.0458,10.6845 -10.0000,10.0000,10.0000,10.7232,10.0227,10.6903 -10.0000,10.0000,10.0000,10.7181,10.0000,10.6959 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s.csv b/scripts/trajectories/full-circle-with-up-and-down-4s.csv deleted file mode 100644 index 31692f46736eacc50237c02ec4a532cee6c67927..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full-circle-with-up-and-down-4s.csv +++ /dev/null @@ -1,800 +0,0 @@ -0.9223,-0.0000,0.3863,-0.0119 -0.9223,-0.0000,0.3863,-0.0119 -0.9223,-0.0000,0.3863,-0.0119 -0.9223,-0.0000,0.3863,-0.0119 -0.9235,-0.0000,0.3828,-0.0240 -0.9235,-0.0000,0.3828,-0.0240 -0.9235,-0.0000,0.3828,-0.0240 -0.9235,-0.0000,0.3828,-0.0240 -0.9245,-0.0000,0.3794,-0.0363 -0.9245,-0.0000,0.3794,-0.0363 -0.9245,-0.0000,0.3794,-0.0363 -0.9245,-0.0000,0.3794,-0.0363 -0.9253,-0.0000,0.3760,-0.0486 -0.9253,-0.0000,0.3760,-0.0486 -0.9253,-0.0000,0.3760,-0.0486 -0.9253,-0.0000,0.3760,-0.0486 -0.9259,-0.0000,0.3727,-0.0611 -0.9259,-0.0000,0.3727,-0.0611 -0.9259,-0.0000,0.3727,-0.0611 -0.9259,-0.0000,0.3727,-0.0611 -0.9263,-0.0000,0.3695,-0.0737 -0.9263,-0.0000,0.3695,-0.0737 -0.9263,-0.0000,0.3695,-0.0737 -0.9263,-0.0000,0.3695,-0.0737 -0.9265,-0.0000,0.3663,-0.0865 -0.9265,-0.0000,0.3663,-0.0865 -0.9265,-0.0000,0.3663,-0.0865 -0.9265,-0.0000,0.3663,-0.0865 -0.9264,-0.0000,0.3632,-0.0993 -0.9264,-0.0000,0.3632,-0.0993 -0.9264,-0.0000,0.3632,-0.0993 -0.9264,-0.0000,0.3632,-0.0993 -0.9261,-0.0000,0.3602,-0.1122 -0.9261,-0.0000,0.3602,-0.1122 -0.9261,-0.0000,0.3602,-0.1122 -0.9261,-0.0000,0.3602,-0.1122 -0.9256,-0.0000,0.3572,-0.1252 -0.9256,-0.0000,0.3572,-0.1252 -0.9256,-0.0000,0.3572,-0.1252 -0.9256,-0.0000,0.3572,-0.1252 -0.9248,-0.0000,0.3543,-0.1383 -0.9248,-0.0000,0.3543,-0.1383 -0.9248,-0.0000,0.3543,-0.1383 -0.9248,-0.0000,0.3543,-0.1383 -0.9239,-0.0000,0.3515,-0.1515 -0.9239,-0.0000,0.3515,-0.1515 -0.9239,-0.0000,0.3515,-0.1515 -0.9239,-0.0000,0.3515,-0.1515 -0.9226,-0.0000,0.3487,-0.1648 -0.9226,-0.0000,0.3487,-0.1648 -0.9226,-0.0000,0.3487,-0.1648 -0.9226,-0.0000,0.3487,-0.1648 -0.9212,-0.0000,0.3460,-0.1781 -0.9212,-0.0000,0.3460,-0.1781 -0.9212,-0.0000,0.3460,-0.1781 -0.9212,-0.0000,0.3460,-0.1781 -0.9195,-0.0000,0.3433,-0.1914 -0.9195,-0.0000,0.3433,-0.1914 -0.9195,-0.0000,0.3433,-0.1914 -0.9195,-0.0000,0.3433,-0.1914 -0.9176,-0.0000,0.3407,-0.2049 -0.9176,-0.0000,0.3407,-0.2049 -0.9176,-0.0000,0.3407,-0.2049 -0.9176,-0.0000,0.3407,-0.2049 -0.9154,-0.0000,0.3382,-0.2183 -0.9154,-0.0000,0.3382,-0.2183 -0.9154,-0.0000,0.3382,-0.2183 -0.9154,-0.0000,0.3382,-0.2183 -0.9130,-0.0000,0.3357,-0.2319 -0.9130,-0.0000,0.3357,-0.2319 -0.9130,-0.0000,0.3357,-0.2319 -0.9130,-0.0000,0.3357,-0.2319 -0.9104,-0.0000,0.3332,-0.2454 -0.9104,-0.0000,0.3332,-0.2454 -0.9104,-0.0000,0.3332,-0.2454 -0.9104,-0.0000,0.3332,-0.2454 -0.9075,-0.0000,0.3308,-0.2590 -0.9075,-0.0000,0.3308,-0.2590 -0.9075,-0.0000,0.3308,-0.2590 -0.9075,-0.0000,0.3308,-0.2590 -0.9043,-0.0000,0.3285,-0.2726 -0.9043,-0.0000,0.3285,-0.2726 -0.9043,-0.0000,0.3285,-0.2726 -0.9043,-0.0000,0.3285,-0.2726 -0.9009,-0.0000,0.3262,-0.2862 -0.9009,-0.0000,0.3262,-0.2862 -0.9009,-0.0000,0.3262,-0.2862 -0.9009,-0.0000,0.3262,-0.2862 -0.8973,-0.0000,0.3240,-0.2998 -0.8973,-0.0000,0.3240,-0.2998 -0.8973,-0.0000,0.3240,-0.2998 -0.8973,-0.0000,0.3240,-0.2998 -0.8934,-0.0000,0.3218,-0.3134 -0.8934,-0.0000,0.3218,-0.3134 -0.8934,-0.0000,0.3218,-0.3134 -0.8934,-0.0000,0.3218,-0.3134 -0.8893,-0.0000,0.3197,-0.3271 -0.8893,-0.0000,0.3197,-0.3271 -0.8893,-0.0000,0.3197,-0.3271 -0.8893,-0.0000,0.3197,-0.3271 -0.8849,-0.0000,0.3176,-0.3407 -0.8849,-0.0000,0.3176,-0.3407 -0.8849,-0.0000,0.3176,-0.3407 -0.8849,-0.0000,0.3176,-0.3407 -0.8803,-0.0000,0.3156,-0.3543 -0.8803,-0.0000,0.3156,-0.3543 -0.8803,-0.0000,0.3156,-0.3543 -0.8803,-0.0000,0.3156,-0.3543 -0.8754,-0.0000,0.3136,-0.3678 -0.8754,-0.0000,0.3136,-0.3678 -0.8754,-0.0000,0.3136,-0.3678 -0.8754,-0.0000,0.3136,-0.3678 -0.8703,-0.0000,0.3116,-0.3814 -0.8703,-0.0000,0.3116,-0.3814 -0.8703,-0.0000,0.3116,-0.3814 -0.8703,-0.0000,0.3116,-0.3814 -0.8650,-0.0000,0.3097,-0.3949 -0.8650,-0.0000,0.3097,-0.3949 -0.8650,-0.0000,0.3097,-0.3949 -0.8650,-0.0000,0.3097,-0.3949 -0.8593,-0.0000,0.3079,-0.4083 -0.8593,-0.0000,0.3079,-0.4083 -0.8593,-0.0000,0.3079,-0.4083 -0.8593,-0.0000,0.3079,-0.4083 -0.8535,-0.0000,0.3061,-0.4217 -0.8535,-0.0000,0.3061,-0.4217 -0.8535,-0.0000,0.3061,-0.4217 -0.8535,-0.0000,0.3061,-0.4217 -0.8474,-0.0000,0.3043,-0.4351 -0.8474,-0.0000,0.3043,-0.4351 -0.8474,-0.0000,0.3043,-0.4351 -0.8474,-0.0000,0.3043,-0.4351 -0.8410,-0.0000,0.3026,-0.4484 -0.8410,-0.0000,0.3026,-0.4484 -0.8410,-0.0000,0.3026,-0.4484 -0.8410,-0.0000,0.3026,-0.4484 -0.8344,-0.0000,0.3010,-0.4617 -0.8344,-0.0000,0.3010,-0.4617 -0.8344,-0.0000,0.3010,-0.4617 -0.8344,-0.0000,0.3010,-0.4617 -0.8276,-0.0000,0.2993,-0.4748 -0.8276,-0.0000,0.2993,-0.4748 -0.8276,-0.0000,0.2993,-0.4748 -0.8276,-0.0000,0.2993,-0.4748 -0.8205,-0.0000,0.2978,-0.4879 -0.8205,-0.0000,0.2978,-0.4879 -0.8205,-0.0000,0.2978,-0.4879 -0.8205,-0.0000,0.2978,-0.4879 -0.8132,-0.0000,0.2962,-0.5010 -0.8132,-0.0000,0.2962,-0.5010 -0.8132,-0.0000,0.2962,-0.5010 -0.8132,-0.0000,0.2962,-0.5010 -0.8056,-0.0000,0.2947,-0.5139 -0.8056,-0.0000,0.2947,-0.5139 -0.8056,-0.0000,0.2947,-0.5139 -0.8056,-0.0000,0.2947,-0.5139 -0.7978,-0.0000,0.2932,-0.5267 -0.7978,-0.0000,0.2932,-0.5267 -0.7978,-0.0000,0.2932,-0.5267 -0.7978,-0.0000,0.2932,-0.5267 -0.7898,-0.0000,0.2918,-0.5395 -0.7898,-0.0000,0.2918,-0.5395 -0.7898,-0.0000,0.2918,-0.5395 -0.7898,-0.0000,0.2918,-0.5395 -0.7815,-0.0000,0.2904,-0.5521 -0.7815,-0.0000,0.2904,-0.5521 -0.7815,-0.0000,0.2904,-0.5521 -0.7815,-0.0000,0.2904,-0.5521 -0.7730,-0.0000,0.2891,-0.5647 -0.7730,-0.0000,0.2891,-0.5647 -0.7730,-0.0000,0.2891,-0.5647 -0.7730,-0.0000,0.2891,-0.5647 -0.7643,-0.0000,0.2878,-0.5771 -0.7643,-0.0000,0.2878,-0.5771 -0.7643,-0.0000,0.2878,-0.5771 -0.7643,-0.0000,0.2878,-0.5771 -0.7553,-0.0000,0.2865,-0.5894 -0.7553,-0.0000,0.2865,-0.5894 -0.7553,-0.0000,0.2865,-0.5894 -0.7553,-0.0000,0.2865,-0.5894 -0.7461,-0.0000,0.2853,-0.6016 -0.7461,-0.0000,0.2853,-0.6016 -0.7461,-0.0000,0.2853,-0.6016 -0.7461,-0.0000,0.2853,-0.6016 -0.7367,-0.0000,0.2841,-0.6136 -0.7367,-0.0000,0.2841,-0.6136 -0.7367,-0.0000,0.2841,-0.6136 -0.7367,-0.0000,0.2841,-0.6136 -0.7271,-0.0000,0.2830,-0.6255 -0.7271,-0.0000,0.2830,-0.6255 -0.7271,-0.0000,0.2830,-0.6255 -0.7271,-0.0000,0.2830,-0.6255 -0.7172,-0.0000,0.2819,-0.6373 -0.7172,-0.0000,0.2819,-0.6373 -0.7172,-0.0000,0.2819,-0.6373 -0.7172,-0.0000,0.2819,-0.6373 -0.7071,-0.0000,0.2808,-0.6490 -0.7071,-0.0000,0.2808,-0.6490 -0.7071,-0.0000,0.2808,-0.6490 -0.7071,-0.0000,0.2808,-0.6490 -0.6968,-0.0000,0.2798,-0.6604 -0.6968,-0.0000,0.2798,-0.6604 -0.6968,-0.0000,0.2798,-0.6604 -0.6968,-0.0000,0.2798,-0.6604 -0.6863,-0.0000,0.2788,-0.6718 -0.6863,-0.0000,0.2788,-0.6718 -0.6863,-0.0000,0.2788,-0.6718 -0.6863,-0.0000,0.2788,-0.6718 -0.6756,-0.0000,0.2779,-0.6829 -0.6756,-0.0000,0.2779,-0.6829 -0.6756,-0.0000,0.2779,-0.6829 -0.6756,-0.0000,0.2779,-0.6829 -0.6646,-0.0000,0.2769,-0.6940 -0.6646,-0.0000,0.2769,-0.6940 -0.6646,-0.0000,0.2769,-0.6940 -0.6646,-0.0000,0.2769,-0.6940 -0.6535,-0.0000,0.2761,-0.7048 -0.6535,-0.0000,0.2761,-0.7048 -0.6535,-0.0000,0.2761,-0.7048 -0.6535,-0.0000,0.2761,-0.7048 -0.6422,-0.0000,0.2752,-0.7155 -0.6422,-0.0000,0.2752,-0.7155 -0.6422,-0.0000,0.2752,-0.7155 -0.6422,-0.0000,0.2752,-0.7155 -0.6306,-0.0000,0.2744,-0.7260 -0.6306,-0.0000,0.2744,-0.7260 -0.6306,-0.0000,0.2744,-0.7260 -0.6306,-0.0000,0.2744,-0.7260 -0.6189,-0.0000,0.2737,-0.7363 -0.6189,-0.0000,0.2737,-0.7363 -0.6189,-0.0000,0.2737,-0.7363 -0.6189,-0.0000,0.2737,-0.7363 -0.6069,-0.0000,0.2730,-0.7464 -0.6069,-0.0000,0.2730,-0.7464 -0.6069,-0.0000,0.2730,-0.7464 -0.6069,-0.0000,0.2730,-0.7464 -0.5948,-0.0000,0.2723,-0.7563 -0.5948,-0.0000,0.2723,-0.7563 -0.5948,-0.0000,0.2723,-0.7563 -0.5948,-0.0000,0.2723,-0.7563 -0.5825,-0.0000,0.2716,-0.7661 -0.5825,-0.0000,0.2716,-0.7661 -0.5825,-0.0000,0.2716,-0.7661 -0.5825,-0.0000,0.2716,-0.7661 -0.5700,-0.0000,0.2710,-0.7756 -0.5700,-0.0000,0.2710,-0.7756 -0.5700,-0.0000,0.2710,-0.7756 -0.5700,-0.0000,0.2710,-0.7756 -0.5574,-0.0000,0.2705,-0.7850 -0.5574,-0.0000,0.2705,-0.7850 -0.5574,-0.0000,0.2705,-0.7850 -0.5574,-0.0000,0.2705,-0.7850 -0.5445,-0.0000,0.2700,-0.7941 -0.5445,-0.0000,0.2700,-0.7941 -0.5445,-0.0000,0.2700,-0.7941 -0.5445,-0.0000,0.2700,-0.7941 -0.5315,-0.0000,0.2695,-0.8030 -0.5315,-0.0000,0.2695,-0.8030 -0.5315,-0.0000,0.2695,-0.8030 -0.5315,-0.0000,0.2695,-0.8030 -0.5184,-0.0000,0.2691,-0.8117 -0.5184,-0.0000,0.2691,-0.8117 -0.5184,-0.0000,0.2691,-0.8117 -0.5184,-0.0000,0.2691,-0.8117 -0.5050,-0.0000,0.2687,-0.8202 -0.5050,-0.0000,0.2687,-0.8202 -0.5050,-0.0000,0.2687,-0.8202 -0.5050,-0.0000,0.2687,-0.8202 -0.4915,-0.0000,0.2684,-0.8285 -0.4915,-0.0000,0.2684,-0.8285 -0.4915,-0.0000,0.2684,-0.8285 -0.4915,-0.0000,0.2684,-0.8285 -0.4779,-0.0000,0.2682,-0.8365 -0.4779,-0.0000,0.2682,-0.8365 -0.4779,-0.0000,0.2682,-0.8365 -0.4779,-0.0000,0.2682,-0.8365 -0.4640,-0.0000,0.2680,-0.8443 -0.4640,-0.0000,0.2680,-0.8443 -0.4640,-0.0000,0.2680,-0.8443 -0.4640,-0.0000,0.2680,-0.8443 -0.4501,-0.0000,0.2678,-0.8519 -0.4501,-0.0000,0.2678,-0.8519 -0.4501,-0.0000,0.2678,-0.8519 -0.4501,-0.0000,0.2678,-0.8519 -0.4360,-0.0000,0.2677,-0.8592 -0.4360,-0.0000,0.2677,-0.8592 -0.4360,-0.0000,0.2677,-0.8592 -0.4360,-0.0000,0.2677,-0.8592 -0.4218,-0.0000,0.2677,-0.8663 -0.4218,-0.0000,0.2677,-0.8663 -0.4218,-0.0000,0.2677,-0.8663 -0.4218,-0.0000,0.2677,-0.8663 -0.4074,-0.0000,0.2677,-0.8731 -0.4074,-0.0000,0.2677,-0.8731 -0.4074,-0.0000,0.2677,-0.8731 -0.4074,-0.0000,0.2677,-0.8731 -0.3929,-0.0000,0.2678,-0.8797 -0.3929,-0.0000,0.2678,-0.8797 -0.3929,-0.0000,0.2678,-0.8797 -0.3929,-0.0000,0.2678,-0.8797 -0.3783,-0.0000,0.2680,-0.8860 -0.3783,-0.0000,0.2680,-0.8860 -0.3783,-0.0000,0.2680,-0.8860 -0.3783,-0.0000,0.2680,-0.8860 -0.3635,-0.0000,0.2683,-0.8921 -0.3635,-0.0000,0.2683,-0.8921 -0.3635,-0.0000,0.2683,-0.8921 -0.3635,-0.0000,0.2683,-0.8921 -0.3487,-0.0000,0.2687,-0.8979 -0.3487,-0.0000,0.2687,-0.8979 -0.3487,-0.0000,0.2687,-0.8979 -0.3487,-0.0000,0.2687,-0.8979 -0.3337,-0.0000,0.2692,-0.9034 -0.3337,-0.0000,0.2692,-0.9034 -0.3337,-0.0000,0.2692,-0.9034 -0.3337,-0.0000,0.2692,-0.9034 -0.3186,-0.0000,0.2698,-0.9087 -0.3186,-0.0000,0.2698,-0.9087 -0.3186,-0.0000,0.2698,-0.9087 -0.3186,-0.0000,0.2698,-0.9087 -0.3034,-0.0000,0.2705,-0.9136 -0.3034,-0.0000,0.2705,-0.9136 -0.3034,-0.0000,0.2705,-0.9136 -0.3034,-0.0000,0.2705,-0.9136 -0.2882,-0.0000,0.2714,-0.9183 -0.2882,-0.0000,0.2714,-0.9183 -0.2882,-0.0000,0.2714,-0.9183 -0.2882,-0.0000,0.2714,-0.9183 -0.2728,-0.0000,0.2725,-0.9227 -0.2728,-0.0000,0.2725,-0.9227 -0.2728,-0.0000,0.2725,-0.9227 -0.2728,-0.0000,0.2725,-0.9227 -0.2573,-0.0000,0.2738,-0.9267 -0.2573,-0.0000,0.2738,-0.9267 -0.2573,-0.0000,0.2738,-0.9267 -0.2573,-0.0000,0.2738,-0.9267 -0.2418,-0.0000,0.2753,-0.9305 -0.2418,-0.0000,0.2753,-0.9305 -0.2418,-0.0000,0.2753,-0.9305 -0.2418,-0.0000,0.2753,-0.9305 -0.2262,-0.0000,0.2771,-0.9339 -0.2262,-0.0000,0.2771,-0.9339 -0.2262,-0.0000,0.2771,-0.9339 -0.2262,-0.0000,0.2771,-0.9339 -0.2105,-0.0000,0.2792,-0.9369 -0.2105,-0.0000,0.2792,-0.9369 -0.2105,-0.0000,0.2792,-0.9369 -0.2105,-0.0000,0.2792,-0.9369 -0.1947,-0.0000,0.2818,-0.9395 -0.1947,-0.0000,0.2818,-0.9395 -0.1947,-0.0000,0.2818,-0.9395 -0.1947,-0.0000,0.2818,-0.9395 -0.1789,-0.0000,0.2848,-0.9417 -0.1789,-0.0000,0.2848,-0.9417 -0.1789,-0.0000,0.2848,-0.9417 -0.1789,-0.0000,0.2848,-0.9417 -0.1630,-0.0000,0.2886,-0.9435 -0.1630,-0.0000,0.2886,-0.9435 -0.1630,-0.0000,0.2886,-0.9435 -0.1630,-0.0000,0.2886,-0.9435 -0.1471,-0.0000,0.2933,-0.9446 -0.1471,-0.0000,0.2933,-0.9446 -0.1471,-0.0000,0.2933,-0.9446 -0.1471,-0.0000,0.2933,-0.9446 -0.1312,-0.0000,0.2991,-0.9452 -0.1312,-0.0000,0.2991,-0.9452 -0.1312,-0.0000,0.2991,-0.9452 -0.1312,-0.0000,0.2991,-0.9452 -0.1152,-0.0000,0.3067,-0.9448 -0.1152,-0.0000,0.3067,-0.9448 -0.1152,-0.0000,0.3067,-0.9448 -0.1152,-0.0000,0.3067,-0.9448 -0.0991,-0.0000,0.3167,-0.9433 -0.0991,-0.0000,0.3167,-0.9433 -0.0991,-0.0000,0.3167,-0.9433 -0.0991,-0.0000,0.3167,-0.9433 -0.0831,-0.0000,0.3307,-0.9401 -0.0831,-0.0000,0.3307,-0.9401 -0.0831,-0.0000,0.3307,-0.9401 -0.0831,-0.0000,0.3307,-0.9401 -0.0670,-0.0000,0.3514,-0.9338 -0.0670,-0.0000,0.3514,-0.9338 -0.0670,-0.0000,0.3514,-0.9338 -0.0670,-0.0000,0.3514,-0.9338 -0.0510,-0.0000,0.3848,-0.9216 -0.0510,-0.0000,0.3848,-0.9216 -0.0510,-0.0000,0.3848,-0.9216 -0.0510,-0.0000,0.3848,-0.9216 -0.0351,-0.0000,0.4473,-0.8937 -0.0351,-0.0000,0.4473,-0.8937 -0.0351,-0.0000,0.4473,-0.8937 -0.0351,-0.0000,0.4473,-0.8937 -0.0196,-0.0000,0.6000,-0.7997 -0.0196,-0.0000,0.6000,-0.7997 -0.0196,-0.0000,0.6000,-0.7997 -0.0196,-0.0000,0.6000,-0.7997 -0.0079,0.0000,1.0000,0.0001 -0.0079,0.0000,1.0000,0.0001 -0.0079,0.0000,1.0000,0.0001 -0.0079,0.0000,1.0000,0.0001 -0.0162,0.0000,0.2425,0.9700 -0.0162,0.0000,0.2425,0.9700 -0.0162,0.0000,0.2425,0.9700 -0.0162,0.0000,0.2425,0.9700 -0.0314,-0.0000,-0.0000,0.9995 -0.0314,-0.0000,-0.0000,0.9995 -0.0314,-0.0000,-0.0000,0.9995 -0.0314,-0.0000,-0.0000,0.9995 -0.0473,-0.0000,-0.0831,0.9954 -0.0473,-0.0000,-0.0831,0.9954 -0.0473,-0.0000,-0.0831,0.9954 -0.0473,-0.0000,-0.0831,0.9954 -0.0633,-0.0000,-0.1241,0.9902 -0.0633,-0.0000,-0.1241,0.9902 -0.0633,-0.0000,-0.1241,0.9902 -0.0633,-0.0000,-0.1241,0.9902 -0.0793,-0.0000,-0.1485,0.9857 -0.0793,-0.0000,-0.1485,0.9857 -0.0793,-0.0000,-0.1485,0.9857 -0.0793,-0.0000,-0.1485,0.9857 -0.0954,-0.0000,-0.1646,0.9817 -0.0954,-0.0000,-0.1646,0.9817 -0.0954,-0.0000,-0.1646,0.9817 -0.0954,-0.0000,-0.1646,0.9817 -0.1114,-0.0000,-0.1762,0.9780 -0.1114,-0.0000,-0.1762,0.9780 -0.1114,-0.0000,-0.1762,0.9780 -0.1114,-0.0000,-0.1762,0.9780 -0.1275,-0.0000,-0.1848,0.9745 -0.1275,-0.0000,-0.1848,0.9745 -0.1275,-0.0000,-0.1848,0.9745 -0.1275,-0.0000,-0.1848,0.9745 -0.1435,-0.0000,-0.1915,0.9709 -0.1435,-0.0000,-0.1915,0.9709 -0.1435,-0.0000,-0.1915,0.9709 -0.1435,-0.0000,-0.1915,0.9709 -0.1594,-0.0000,-0.1970,0.9674 -0.1594,-0.0000,-0.1970,0.9674 -0.1594,-0.0000,-0.1970,0.9674 -0.1594,-0.0000,-0.1970,0.9674 -0.1753,-0.0000,-0.2014,0.9637 -0.1753,-0.0000,-0.2014,0.9637 -0.1753,-0.0000,-0.2014,0.9637 -0.1753,-0.0000,-0.2014,0.9637 -0.1912,-0.0000,-0.2052,0.9599 -0.1912,-0.0000,-0.2052,0.9599 -0.1912,-0.0000,-0.2052,0.9599 -0.1912,-0.0000,-0.2052,0.9599 -0.2070,-0.0000,-0.2085,0.9559 -0.2070,-0.0000,-0.2085,0.9559 -0.2070,-0.0000,-0.2085,0.9559 -0.2070,-0.0000,-0.2085,0.9559 -0.2227,-0.0000,-0.2113,0.9517 -0.2227,-0.0000,-0.2113,0.9517 -0.2227,-0.0000,-0.2113,0.9517 -0.2227,-0.0000,-0.2113,0.9517 -0.2384,-0.0000,-0.2138,0.9473 -0.2384,-0.0000,-0.2138,0.9473 -0.2384,-0.0000,-0.2138,0.9473 -0.2384,-0.0000,-0.2138,0.9473 -0.2540,-0.0000,-0.2161,0.9428 -0.2540,-0.0000,-0.2161,0.9428 -0.2540,-0.0000,-0.2161,0.9428 -0.2540,-0.0000,-0.2161,0.9428 -0.2695,-0.0000,-0.2181,0.9380 -0.2695,-0.0000,-0.2181,0.9380 -0.2695,-0.0000,-0.2181,0.9380 -0.2695,-0.0000,-0.2181,0.9380 -0.2849,-0.0000,-0.2200,0.9330 -0.2849,-0.0000,-0.2200,0.9330 -0.2849,-0.0000,-0.2200,0.9330 -0.2849,-0.0000,-0.2200,0.9330 -0.3002,-0.0000,-0.2217,0.9277 -0.3002,-0.0000,-0.2217,0.9277 -0.3002,-0.0000,-0.2217,0.9277 -0.3002,-0.0000,-0.2217,0.9277 -0.3155,-0.0000,-0.2233,0.9223 -0.3155,-0.0000,-0.2233,0.9223 -0.3155,-0.0000,-0.2233,0.9223 -0.3155,-0.0000,-0.2233,0.9223 -0.3306,-0.0000,-0.2248,0.9166 -0.3306,-0.0000,-0.2248,0.9166 -0.3306,-0.0000,-0.2248,0.9166 -0.3306,-0.0000,-0.2248,0.9166 -0.3457,-0.0000,-0.2263,0.9107 -0.3457,-0.0000,-0.2263,0.9107 -0.3457,-0.0000,-0.2263,0.9107 -0.3457,-0.0000,-0.2263,0.9107 -0.3606,-0.0000,-0.2277,0.9045 -0.3606,-0.0000,-0.2277,0.9045 -0.3606,-0.0000,-0.2277,0.9045 -0.3606,-0.0000,-0.2277,0.9045 -0.3754,-0.0000,-0.2290,0.8981 -0.3754,-0.0000,-0.2290,0.8981 -0.3754,-0.0000,-0.2290,0.8981 -0.3754,-0.0000,-0.2290,0.8981 -0.3901,-0.0000,-0.2303,0.8915 -0.3901,-0.0000,-0.2303,0.8915 -0.3901,-0.0000,-0.2303,0.8915 -0.3901,-0.0000,-0.2303,0.8915 -0.4047,-0.0000,-0.2315,0.8847 -0.4047,-0.0000,-0.2315,0.8847 -0.4047,-0.0000,-0.2315,0.8847 -0.4047,-0.0000,-0.2315,0.8847 -0.4192,-0.0000,-0.2327,0.8776 -0.4192,-0.0000,-0.2327,0.8776 -0.4192,-0.0000,-0.2327,0.8776 -0.4192,-0.0000,-0.2327,0.8776 -0.4335,-0.0000,-0.2339,0.8703 -0.4335,-0.0000,-0.2339,0.8703 -0.4335,-0.0000,-0.2339,0.8703 -0.4335,-0.0000,-0.2339,0.8703 -0.4477,-0.0000,-0.2351,0.8627 -0.4477,-0.0000,-0.2351,0.8627 -0.4477,-0.0000,-0.2351,0.8627 -0.4477,-0.0000,-0.2351,0.8627 -0.4617,-0.0000,-0.2362,0.8550 -0.4617,-0.0000,-0.2362,0.8550 -0.4617,-0.0000,-0.2362,0.8550 -0.4617,-0.0000,-0.2362,0.8550 -0.4756,-0.0000,-0.2374,0.8470 -0.4756,-0.0000,-0.2374,0.8470 -0.4756,-0.0000,-0.2374,0.8470 -0.4756,-0.0000,-0.2374,0.8470 -0.4894,-0.0000,-0.2385,0.8388 -0.4894,-0.0000,-0.2385,0.8388 -0.4894,-0.0000,-0.2385,0.8388 -0.4894,-0.0000,-0.2385,0.8388 -0.5030,-0.0000,-0.2396,0.8304 -0.5030,-0.0000,-0.2396,0.8304 -0.5030,-0.0000,-0.2396,0.8304 -0.5030,-0.0000,-0.2396,0.8304 -0.5164,-0.0000,-0.2408,0.8218 -0.5164,-0.0000,-0.2408,0.8218 -0.5164,-0.0000,-0.2408,0.8218 -0.5164,-0.0000,-0.2408,0.8218 -0.5297,-0.0000,-0.2419,0.8130 -0.5297,-0.0000,-0.2419,0.8130 -0.5297,-0.0000,-0.2419,0.8130 -0.5297,-0.0000,-0.2419,0.8130 -0.5428,-0.0000,-0.2431,0.8039 -0.5428,-0.0000,-0.2431,0.8039 -0.5428,-0.0000,-0.2431,0.8039 -0.5428,-0.0000,-0.2431,0.8039 -0.5558,-0.0000,-0.2442,0.7947 -0.5558,-0.0000,-0.2442,0.7947 -0.5558,-0.0000,-0.2442,0.7947 -0.5558,-0.0000,-0.2442,0.7947 -0.5685,-0.0000,-0.2454,0.7852 -0.5685,-0.0000,-0.2454,0.7852 -0.5685,-0.0000,-0.2454,0.7852 -0.5685,-0.0000,-0.2454,0.7852 -0.5811,-0.0000,-0.2465,0.7756 -0.5811,-0.0000,-0.2465,0.7756 -0.5811,-0.0000,-0.2465,0.7756 -0.5811,-0.0000,-0.2465,0.7756 -0.5936,-0.0000,-0.2477,0.7657 -0.5936,-0.0000,-0.2477,0.7657 -0.5936,-0.0000,-0.2477,0.7657 -0.5936,-0.0000,-0.2477,0.7657 -0.6058,-0.0000,-0.2489,0.7557 -0.6058,-0.0000,-0.2489,0.7557 -0.6058,-0.0000,-0.2489,0.7557 -0.6058,-0.0000,-0.2489,0.7557 -0.6179,-0.0000,-0.2501,0.7455 -0.6179,-0.0000,-0.2501,0.7455 -0.6179,-0.0000,-0.2501,0.7455 -0.6179,-0.0000,-0.2501,0.7455 -0.6297,-0.0000,-0.2513,0.7351 -0.6297,-0.0000,-0.2513,0.7351 -0.6297,-0.0000,-0.2513,0.7351 -0.6297,-0.0000,-0.2513,0.7351 -0.6414,-0.0000,-0.2525,0.7245 -0.6414,-0.0000,-0.2525,0.7245 -0.6414,-0.0000,-0.2525,0.7245 -0.6414,-0.0000,-0.2525,0.7245 -0.6528,-0.0000,-0.2538,0.7137 -0.6528,-0.0000,-0.2538,0.7137 -0.6528,-0.0000,-0.2538,0.7137 -0.6528,-0.0000,-0.2538,0.7137 -0.6641,-0.0000,-0.2550,0.7028 -0.6641,-0.0000,-0.2550,0.7028 -0.6641,-0.0000,-0.2550,0.7028 -0.6641,-0.0000,-0.2550,0.7028 -0.6752,-0.0000,-0.2563,0.6917 -0.6752,-0.0000,-0.2563,0.6917 -0.6752,-0.0000,-0.2563,0.6917 -0.6752,-0.0000,-0.2563,0.6917 -0.6860,-0.0000,-0.2576,0.6804 -0.6860,-0.0000,-0.2576,0.6804 -0.6860,-0.0000,-0.2576,0.6804 -0.6860,-0.0000,-0.2576,0.6804 -0.6967,-0.0000,-0.2590,0.6690 -0.6967,-0.0000,-0.2590,0.6690 -0.6967,-0.0000,-0.2590,0.6690 -0.6967,-0.0000,-0.2590,0.6690 -0.7071,-0.0000,-0.2603,0.6575 -0.7071,-0.0000,-0.2603,0.6575 -0.7071,-0.0000,-0.2603,0.6575 -0.7071,-0.0000,-0.2603,0.6575 -0.7173,-0.0000,-0.2617,0.6457 -0.7173,-0.0000,-0.2617,0.6457 -0.7173,-0.0000,-0.2617,0.6457 -0.7173,-0.0000,-0.2617,0.6457 -0.7273,-0.0000,-0.2631,0.6339 -0.7273,-0.0000,-0.2631,0.6339 -0.7273,-0.0000,-0.2631,0.6339 -0.7273,-0.0000,-0.2631,0.6339 -0.7371,-0.0000,-0.2645,0.6219 -0.7371,-0.0000,-0.2645,0.6219 -0.7371,-0.0000,-0.2645,0.6219 -0.7371,-0.0000,-0.2645,0.6219 -0.7467,-0.0000,-0.2659,0.6097 -0.7467,-0.0000,-0.2659,0.6097 -0.7467,-0.0000,-0.2659,0.6097 -0.7467,-0.0000,-0.2659,0.6097 -0.7560,-0.0000,-0.2674,0.5974 -0.7560,-0.0000,-0.2674,0.5974 -0.7560,-0.0000,-0.2674,0.5974 -0.7560,-0.0000,-0.2674,0.5974 -0.7651,-0.0000,-0.2689,0.5851 -0.7651,-0.0000,-0.2689,0.5851 -0.7651,-0.0000,-0.2689,0.5851 -0.7651,-0.0000,-0.2689,0.5851 -0.7740,-0.0000,-0.2705,0.5725 -0.7740,-0.0000,-0.2705,0.5725 -0.7740,-0.0000,-0.2705,0.5725 -0.7740,-0.0000,-0.2705,0.5725 -0.7826,-0.0000,-0.2720,0.5599 -0.7826,-0.0000,-0.2720,0.5599 -0.7826,-0.0000,-0.2720,0.5599 -0.7826,-0.0000,-0.2720,0.5599 -0.7910,-0.0000,-0.2736,0.5472 -0.7910,-0.0000,-0.2736,0.5472 -0.7910,-0.0000,-0.2736,0.5472 -0.7910,-0.0000,-0.2736,0.5472 -0.7992,-0.0000,-0.2752,0.5343 -0.7992,-0.0000,-0.2752,0.5343 -0.7992,-0.0000,-0.2752,0.5343 -0.7992,-0.0000,-0.2752,0.5343 -0.8072,-0.0000,-0.2769,0.5214 -0.8072,-0.0000,-0.2769,0.5214 -0.8072,-0.0000,-0.2769,0.5214 -0.8072,-0.0000,-0.2769,0.5214 -0.8149,-0.0000,-0.2786,0.5083 -0.8149,-0.0000,-0.2786,0.5083 -0.8149,-0.0000,-0.2786,0.5083 -0.8149,-0.0000,-0.2786,0.5083 -0.8223,-0.0000,-0.2803,0.4952 -0.8223,-0.0000,-0.2803,0.4952 -0.8223,-0.0000,-0.2803,0.4952 -0.8223,-0.0000,-0.2803,0.4952 -0.8295,-0.0000,-0.2820,0.4820 -0.8295,-0.0000,-0.2820,0.4820 -0.8295,-0.0000,-0.2820,0.4820 -0.8295,-0.0000,-0.2820,0.4820 -0.8365,-0.0000,-0.2838,0.4687 -0.8365,-0.0000,-0.2838,0.4687 -0.8365,-0.0000,-0.2838,0.4687 -0.8365,-0.0000,-0.2838,0.4687 -0.8433,-0.0000,-0.2857,0.4553 -0.8433,-0.0000,-0.2857,0.4553 -0.8433,-0.0000,-0.2857,0.4553 -0.8433,-0.0000,-0.2857,0.4553 -0.8497,-0.0000,-0.2875,0.4419 -0.8497,-0.0000,-0.2875,0.4419 -0.8497,-0.0000,-0.2875,0.4419 -0.8497,-0.0000,-0.2875,0.4419 -0.8560,-0.0000,-0.2894,0.4284 -0.8560,-0.0000,-0.2894,0.4284 -0.8560,-0.0000,-0.2894,0.4284 -0.8560,-0.0000,-0.2894,0.4284 -0.8620,-0.0000,-0.2913,0.4148 -0.8620,-0.0000,-0.2913,0.4148 -0.8620,-0.0000,-0.2913,0.4148 -0.8620,-0.0000,-0.2913,0.4148 -0.8677,-0.0000,-0.2933,0.4012 -0.8677,-0.0000,-0.2933,0.4012 -0.8677,-0.0000,-0.2933,0.4012 -0.8677,-0.0000,-0.2933,0.4012 -0.8732,-0.0000,-0.2953,0.3876 -0.8732,-0.0000,-0.2953,0.3876 -0.8732,-0.0000,-0.2953,0.3876 -0.8732,-0.0000,-0.2953,0.3876 -0.8785,-0.0000,-0.2974,0.3739 -0.8785,-0.0000,-0.2974,0.3739 -0.8785,-0.0000,-0.2974,0.3739 -0.8785,-0.0000,-0.2974,0.3739 -0.8835,-0.0000,-0.2995,0.3602 -0.8835,-0.0000,-0.2995,0.3602 -0.8835,-0.0000,-0.2995,0.3602 -0.8835,-0.0000,-0.2995,0.3602 -0.8883,-0.0000,-0.3016,0.3465 -0.8883,-0.0000,-0.3016,0.3465 -0.8883,-0.0000,-0.3016,0.3465 -0.8883,-0.0000,-0.3016,0.3465 -0.8928,-0.0000,-0.3038,0.3327 -0.8928,-0.0000,-0.3038,0.3327 -0.8928,-0.0000,-0.3038,0.3327 -0.8928,-0.0000,-0.3038,0.3327 -0.8970,-0.0000,-0.3060,0.3189 -0.8970,-0.0000,-0.3060,0.3189 -0.8970,-0.0000,-0.3060,0.3189 -0.8970,-0.0000,-0.3060,0.3189 -0.9010,-0.0000,-0.3083,0.3051 -0.9010,-0.0000,-0.3083,0.3051 -0.9010,-0.0000,-0.3083,0.3051 -0.9010,-0.0000,-0.3083,0.3051 -0.9048,-0.0000,-0.3106,0.2913 -0.9048,-0.0000,-0.3106,0.2913 -0.9048,-0.0000,-0.3106,0.2913 -0.9048,-0.0000,-0.3106,0.2913 -0.9083,-0.0000,-0.3130,0.2776 -0.9083,-0.0000,-0.3130,0.2776 -0.9083,-0.0000,-0.3130,0.2776 -0.9083,-0.0000,-0.3130,0.2776 -0.9116,-0.0000,-0.3154,0.2638 -0.9116,-0.0000,-0.3154,0.2638 -0.9116,-0.0000,-0.3154,0.2638 -0.9116,-0.0000,-0.3154,0.2638 -0.9146,-0.0000,-0.3179,0.2500 -0.9146,-0.0000,-0.3179,0.2500 -0.9146,-0.0000,-0.3179,0.2500 -0.9146,-0.0000,-0.3179,0.2500 -0.9174,-0.0000,-0.3204,0.2363 -0.9174,-0.0000,-0.3204,0.2363 -0.9174,-0.0000,-0.3204,0.2363 -0.9174,-0.0000,-0.3204,0.2363 -0.9199,-0.0000,-0.3229,0.2226 -0.9199,-0.0000,-0.3229,0.2226 -0.9199,-0.0000,-0.3229,0.2226 -0.9199,-0.0000,-0.3229,0.2226 -0.9222,-0.0000,-0.3256,0.2089 -0.9222,-0.0000,-0.3256,0.2089 -0.9222,-0.0000,-0.3256,0.2089 -0.9222,-0.0000,-0.3256,0.2089 -0.9242,-0.0000,-0.3282,0.1952 -0.9242,-0.0000,-0.3282,0.1952 -0.9242,-0.0000,-0.3282,0.1952 -0.9242,-0.0000,-0.3282,0.1952 -0.9260,-0.0000,-0.3309,0.1817 -0.9260,-0.0000,-0.3309,0.1817 -0.9260,-0.0000,-0.3309,0.1817 -0.9260,-0.0000,-0.3309,0.1817 -0.9276,-0.0000,-0.3337,0.1681 -0.9276,-0.0000,-0.3337,0.1681 -0.9276,-0.0000,-0.3337,0.1681 -0.9276,-0.0000,-0.3337,0.1681 -0.9289,-0.0000,-0.3366,0.1546 -0.9289,-0.0000,-0.3366,0.1546 -0.9289,-0.0000,-0.3366,0.1546 -0.9289,-0.0000,-0.3366,0.1546 -0.9300,-0.0000,-0.3395,0.1412 -0.9300,-0.0000,-0.3395,0.1412 -0.9300,-0.0000,-0.3395,0.1412 -0.9300,-0.0000,-0.3395,0.1412 -0.9308,-0.0000,-0.3424,0.1279 -0.9308,-0.0000,-0.3424,0.1279 -0.9308,-0.0000,-0.3424,0.1279 -0.9308,-0.0000,-0.3424,0.1279 -0.9314,-0.0000,-0.3454,0.1146 -0.9314,-0.0000,-0.3454,0.1146 -0.9314,-0.0000,-0.3454,0.1146 -0.9314,-0.0000,-0.3454,0.1146 -0.9318,-0.0000,-0.3485,0.1015 -0.9318,-0.0000,-0.3485,0.1015 -0.9318,-0.0000,-0.3485,0.1015 -0.9318,-0.0000,-0.3485,0.1015 -0.9320,-0.0000,-0.3516,0.0884 -0.9320,-0.0000,-0.3516,0.0884 -0.9320,-0.0000,-0.3516,0.0884 -0.9320,-0.0000,-0.3516,0.0884 -0.9319,-0.0000,-0.3548,0.0754 -0.9319,-0.0000,-0.3548,0.0754 -0.9319,-0.0000,-0.3548,0.0754 -0.9319,-0.0000,-0.3548,0.0754 -0.9316,-0.0000,-0.3581,0.0625 -0.9316,-0.0000,-0.3581,0.0625 -0.9316,-0.0000,-0.3581,0.0625 -0.9316,-0.0000,-0.3581,0.0625 -0.9311,-0.0000,-0.3614,0.0498 -0.9311,-0.0000,-0.3614,0.0498 -0.9311,-0.0000,-0.3614,0.0498 -0.9311,-0.0000,-0.3614,0.0498 -0.9303,-0.0000,-0.3648,0.0371 -0.9303,-0.0000,-0.3648,0.0371 -0.9303,-0.0000,-0.3648,0.0371 -0.9303,-0.0000,-0.3648,0.0371 -0.9294,-0.0000,-0.3683,0.0246 -0.9294,-0.0000,-0.3683,0.0246 -0.9294,-0.0000,-0.3683,0.0246 -0.9294,-0.0000,-0.3683,0.0246 -0.9282,-0.0000,-0.3718,0.0122 -0.9282,-0.0000,-0.3718,0.0122 -0.9282,-0.0000,-0.3718,0.0122 -0.9282,-0.0000,-0.3718,0.0122 -0.9269,-0.0000,-0.3754,-0.0000 -0.9269,-0.0000,-0.3754,-0.0000 -0.9269,-0.0000,-0.3754,-0.0000 -0.9269,-0.0000,-0.3754,-0.0000 diff --git a/scripts/trajectories/full_circle_in_15s-Euler.csv b/scripts/trajectories/full_circle_in_15s-Euler.csv deleted file mode 100644 index 68db6eaf300350a6b5bd327f5f52454974d65133..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full_circle_in_15s-Euler.csv +++ /dev/null @@ -1,3000 +0,0 @@ --3.0,0.000000,0.000000,0.000000 --3.0,0.120000,0.000000,0.000000 --3.0,0.240000,0.000000,0.000000 --3.0,0.360000,0.000000,0.000000 --3.0,0.480000,0.000000,0.000000 --3.0,0.600000,0.000000,0.000000 --3.0,0.720000,0.000000,0.000000 --3.0,0.840000,0.000000,0.000000 --3.0,0.960000,0.000000,0.000000 --3.0,1.080000,0.000000,0.000000 --3.0,1.200000,0.000000,0.000000 --3.0,1.320000,0.000000,0.000000 --3.0,1.440000,0.000000,0.000000 --3.0,1.560000,0.000000,0.000000 --3.0,1.680000,0.000000,0.000000 --3.0,1.800000,0.000000,0.000000 --3.0,1.920000,0.000000,0.000000 --3.0,2.040000,0.000000,0.000000 --3.0,2.160000,0.000000,0.000000 --3.0,2.280000,0.000000,0.000000 --3.0,2.400000,0.000000,0.000000 --3.0,2.520000,0.000000,0.000000 --3.0,2.640000,0.000000,0.000000 --3.0,2.760000,0.000000,0.000000 --3.0,2.880000,0.000000,0.000000 --3.0,3.000000,0.000000,0.000000 --3.0,3.120000,0.000000,0.000000 --3.0,3.240000,0.000000,0.000000 --3.0,3.360000,0.000000,0.000000 --3.0,3.480000,0.000000,0.000000 --3.0,3.600000,0.000000,0.000000 --3.0,3.720000,0.000000,0.000000 --3.0,3.840000,0.000000,0.000000 --3.0,3.960000,0.000000,0.000000 --3.0,4.080000,0.000000,0.000000 --3.0,4.200000,0.000000,0.000000 --3.0,4.320000,0.000000,0.000000 --3.0,4.440000,0.000000,0.000000 --3.0,4.560000,0.000000,0.000000 --3.0,4.680000,0.000000,0.000000 --3.0,4.800000,0.000000,0.000000 --3.0,4.920000,0.000000,0.000000 --3.0,5.040000,0.000000,0.000000 --3.0,5.160000,0.000000,0.000000 --3.0,5.280000,0.000000,0.000000 --3.0,5.400000,0.000000,0.000000 --3.0,5.520000,0.000000,0.000000 --3.0,5.640000,0.000000,0.000000 --3.0,5.760000,0.000000,0.000000 --3.0,5.880000,0.000000,0.000000 --3.0,6.000000,0.000000,0.000000 --3.0,6.120000,0.000000,0.000000 --3.0,6.240000,0.000000,0.000000 --3.0,6.360000,0.000000,0.000000 --3.0,6.480000,0.000000,0.000000 --3.0,6.600000,0.000000,0.000000 --3.0,6.720000,0.000000,0.000000 --3.0,6.840000,0.000000,0.000000 --3.0,6.960000,0.000000,0.000000 --3.0,7.080000,0.000000,0.000000 --3.0,7.200000,0.000000,0.000000 --3.0,7.320000,0.000000,0.000000 --3.0,7.440000,0.000000,0.000000 --3.0,7.560000,0.000000,0.000000 --3.0,7.680000,0.000000,0.000000 --3.0,7.800000,0.000000,0.000000 --3.0,7.920000,0.000000,0.000000 --3.0,8.040000,0.000000,0.000000 --3.0,8.160000,0.000000,0.000000 --3.0,8.280000,0.000000,0.000000 --3.0,8.400000,0.000000,0.000000 --3.0,8.520000,0.000000,0.000000 --3.0,8.640000,0.000000,0.000000 --3.0,8.760000,0.000000,0.000000 --3.0,8.880000,0.000000,0.000000 --3.0,9.000000,0.000000,0.000000 --3.0,9.120000,0.000000,0.000000 --3.0,9.240000,0.000000,0.000000 --3.0,9.360000,0.000000,0.000000 --3.0,9.480000,0.000000,0.000000 --3.0,9.600000,0.000000,0.000000 --3.0,9.720000,0.000000,0.000000 --3.0,9.840000,0.000000,0.000000 --3.0,9.960000,0.000000,0.000000 --3.0,10.080000,0.000000,0.000000 --3.0,10.200000,0.000000,0.000000 --3.0,10.320000,0.000000,0.000000 --3.0,10.440000,0.000000,0.000000 --3.0,10.560000,0.000000,0.000000 --3.0,10.680000,0.000000,0.000000 --3.0,10.800000,0.000000,0.000000 --3.0,10.920000,0.000000,0.000000 --3.0,11.040000,0.000000,0.000000 --3.0,11.160000,0.000000,0.000000 --3.0,11.280000,0.000000,0.000000 --3.0,11.400000,0.000000,0.000000 --3.0,11.520000,0.000000,0.000000 --3.0,11.640000,0.000000,0.000000 --3.0,11.760000,0.000000,0.000000 --3.0,11.880000,0.000000,0.000000 --3.0,12.000000,0.000000,0.000000 --3.0,12.120000,0.000000,0.000000 --3.0,12.240000,0.000000,0.000000 --3.0,12.360000,0.000000,0.000000 --3.0,12.480000,0.000000,0.000000 --3.0,12.600000,0.000000,0.000000 --3.0,12.720000,0.000000,0.000000 --3.0,12.840000,0.000000,0.000000 --3.0,12.960000,0.000000,0.000000 --3.0,13.080000,0.000000,0.000000 --3.0,13.200000,0.000000,0.000000 --3.0,13.320000,0.000000,0.000000 --3.0,13.440000,0.000000,0.000000 --3.0,13.560000,0.000000,0.000000 --3.0,13.680000,0.000000,0.000000 --3.0,13.800000,0.000000,0.000000 --3.0,13.920000,0.000000,0.000000 --3.0,14.040000,0.000000,0.000000 --3.0,14.160000,0.000000,0.000000 --3.0,14.280000,0.000000,0.000000 --3.0,14.400000,0.000000,0.000000 --3.0,14.520000,0.000000,0.000000 --3.0,14.640000,0.000000,0.000000 --3.0,14.760000,0.000000,0.000000 --3.0,14.880000,0.000000,0.000000 --3.0,15.000000,0.000000,0.000000 --3.0,15.120000,0.000000,0.000000 --3.0,15.240000,0.000000,0.000000 --3.0,15.360000,0.000000,0.000000 --3.0,15.480000,0.000000,0.000000 --3.0,15.600000,0.000000,0.000000 --3.0,15.720000,0.000000,0.000000 --3.0,15.840000,0.000000,0.000000 --3.0,15.960000,0.000000,0.000000 --3.0,16.080000,0.000000,0.000000 --3.0,16.200000,0.000000,0.000000 --3.0,16.320000,0.000000,0.000000 --3.0,16.440000,0.000000,0.000000 --3.0,16.560000,0.000000,0.000000 --3.0,16.680000,0.000000,0.000000 --3.0,16.800000,0.000000,0.000000 --3.0,16.920000,0.000000,0.000000 --3.0,17.040000,0.000000,0.000000 --3.0,17.160000,0.000000,0.000000 --3.0,17.280000,0.000000,0.000000 --3.0,17.400000,0.000000,0.000000 --3.0,17.520000,0.000000,0.000000 --3.0,17.640000,0.000000,0.000000 --3.0,17.760000,0.000000,0.000000 --3.0,17.880000,0.000000,0.000000 --3.0,18.000000,0.000000,0.000000 --3.0,18.120000,0.000000,0.000000 --3.0,18.240000,0.000000,0.000000 --3.0,18.360000,0.000000,0.000000 --3.0,18.480000,0.000000,0.000000 --3.0,18.600000,0.000000,0.000000 --3.0,18.720000,0.000000,0.000000 --3.0,18.840000,0.000000,0.000000 --3.0,18.960000,0.000000,0.000000 --3.0,19.080000,0.000000,0.000000 --3.0,19.200000,0.000000,0.000000 --3.0,19.320000,0.000000,0.000000 --3.0,19.440000,0.000000,0.000000 --3.0,19.560000,0.000000,0.000000 --3.0,19.680000,0.000000,0.000000 --3.0,19.800000,0.000000,0.000000 --3.0,19.920000,0.000000,0.000000 --3.0,20.040000,0.000000,0.000000 --3.0,20.160000,0.000000,0.000000 --3.0,20.280000,0.000000,0.000000 --3.0,20.400000,0.000000,0.000000 --3.0,20.520000,0.000000,0.000000 --3.0,20.640000,0.000000,0.000000 --3.0,20.760000,0.000000,0.000000 --3.0,20.880000,0.000000,0.000000 --3.0,21.000000,0.000000,0.000000 --3.0,21.120000,0.000000,0.000000 --3.0,21.240000,0.000000,0.000000 --3.0,21.360000,0.000000,0.000000 --3.0,21.480000,0.000000,0.000000 --3.0,21.600000,0.000000,0.000000 --3.0,21.720000,0.000000,0.000000 --3.0,21.840000,0.000000,0.000000 --3.0,21.960000,0.000000,0.000000 --3.0,22.080000,0.000000,0.000000 --3.0,22.200000,0.000000,0.000000 --3.0,22.320000,0.000000,0.000000 --3.0,22.440000,0.000000,0.000000 --3.0,22.560000,0.000000,0.000000 --3.0,22.680000,0.000000,0.000000 --3.0,22.800000,0.000000,0.000000 --3.0,22.920000,0.000000,0.000000 --3.0,23.040000,0.000000,0.000000 --3.0,23.160000,0.000000,0.000000 --3.0,23.280000,0.000000,0.000000 --3.0,23.400000,0.000000,0.000000 --3.0,23.520000,0.000000,0.000000 --3.0,23.640000,0.000000,0.000000 --3.0,23.760000,0.000000,0.000000 --3.0,23.880000,0.000000,0.000000 --3.0,24.000000,0.000000,0.000000 --3.0,24.120000,0.000000,0.000000 --3.0,24.240000,0.000000,0.000000 --3.0,24.360000,0.000000,0.000000 --3.0,24.480000,0.000000,0.000000 --3.0,24.600000,0.000000,0.000000 --3.0,24.720000,0.000000,0.000000 --3.0,24.840000,0.000000,0.000000 --3.0,24.960000,0.000000,0.000000 --3.0,25.080000,0.000000,0.000000 --3.0,25.200000,0.000000,0.000000 --3.0,25.320000,0.000000,0.000000 --3.0,25.440000,0.000000,0.000000 --3.0,25.560000,0.000000,0.000000 --3.0,25.680000,0.000000,0.000000 --3.0,25.800000,0.000000,0.000000 --3.0,25.920000,0.000000,0.000000 --3.0,26.040000,0.000000,0.000000 --3.0,26.160000,0.000000,0.000000 --3.0,26.280000,0.000000,0.000000 --3.0,26.400000,0.000000,0.000000 --3.0,26.520000,0.000000,0.000000 --3.0,26.640000,0.000000,0.000000 --3.0,26.760000,0.000000,0.000000 --3.0,26.880000,0.000000,0.000000 --3.0,27.000000,0.000000,0.000000 --3.0,27.120000,0.000000,0.000000 --3.0,27.240000,0.000000,0.000000 --3.0,27.360000,0.000000,0.000000 --3.0,27.480000,0.000000,0.000000 --3.0,27.600000,0.000000,0.000000 --3.0,27.720000,0.000000,0.000000 --3.0,27.840000,0.000000,0.000000 --3.0,27.960000,0.000000,0.000000 --3.0,28.080000,0.000000,0.000000 --3.0,28.200000,0.000000,0.000000 --3.0,28.320000,0.000000,0.000000 --3.0,28.440000,0.000000,0.000000 --3.0,28.560000,0.000000,0.000000 --3.0,28.680000,0.000000,0.000000 --3.0,28.800000,0.000000,0.000000 --3.0,28.920000,0.000000,0.000000 --3.0,29.040000,0.000000,0.000000 --3.0,29.160000,0.000000,0.000000 --3.0,29.280000,0.000000,0.000000 --3.0,29.400000,0.000000,0.000000 --3.0,29.520000,0.000000,0.000000 --3.0,29.640000,0.000000,0.000000 --3.0,29.760000,0.000000,0.000000 --3.0,29.880000,0.000000,0.000000 --3.0,30.000000,0.000000,0.000000 --3.0,30.120000,0.000000,0.000000 --3.0,30.240000,0.000000,0.000000 --3.0,30.360000,0.000000,0.000000 --3.0,30.480000,0.000000,0.000000 --3.0,30.600000,0.000000,0.000000 --3.0,30.720000,0.000000,0.000000 --3.0,30.840000,0.000000,0.000000 --3.0,30.960000,0.000000,0.000000 --3.0,31.080000,0.000000,0.000000 --3.0,31.200000,0.000000,0.000000 --3.0,31.320000,0.000000,0.000000 --3.0,31.440000,0.000000,0.000000 --3.0,31.560000,0.000000,0.000000 --3.0,31.680000,0.000000,0.000000 --3.0,31.800000,0.000000,0.000000 --3.0,31.920000,0.000000,0.000000 --3.0,32.040000,0.000000,0.000000 --3.0,32.160000,0.000000,0.000000 --3.0,32.280000,0.000000,0.000000 --3.0,32.400000,0.000000,0.000000 --3.0,32.520000,0.000000,0.000000 --3.0,32.640000,0.000000,0.000000 --3.0,32.760000,0.000000,0.000000 --3.0,32.880000,0.000000,0.000000 --3.0,33.000000,0.000000,0.000000 --3.0,33.120000,0.000000,0.000000 --3.0,33.240000,0.000000,0.000000 --3.0,33.360000,0.000000,0.000000 --3.0,33.480000,0.000000,0.000000 --3.0,33.600000,0.000000,0.000000 --3.0,33.720000,0.000000,0.000000 --3.0,33.840000,0.000000,0.000000 --3.0,33.960000,0.000000,0.000000 --3.0,34.080000,0.000000,0.000000 --3.0,34.200000,0.000000,0.000000 --3.0,34.320000,0.000000,0.000000 --3.0,34.440000,0.000000,0.000000 --3.0,34.560000,0.000000,0.000000 --3.0,34.680000,0.000000,0.000000 --3.0,34.800000,0.000000,0.000000 --3.0,34.920000,0.000000,0.000000 --3.0,35.040000,0.000000,0.000000 --3.0,35.160000,0.000000,0.000000 --3.0,35.280000,0.000000,0.000000 --3.0,35.400000,0.000000,0.000000 --3.0,35.520000,0.000000,0.000000 --3.0,35.640000,0.000000,0.000000 --3.0,35.760000,0.000000,0.000000 --3.0,35.880000,0.000000,0.000000 --3.0,36.000000,0.000000,0.000000 --3.0,36.120000,0.000000,0.000000 --3.0,36.240000,0.000000,0.000000 --3.0,36.360000,0.000000,0.000000 --3.0,36.480000,0.000000,0.000000 --3.0,36.600000,0.000000,0.000000 --3.0,36.720000,0.000000,0.000000 --3.0,36.840000,0.000000,0.000000 --3.0,36.960000,0.000000,0.000000 --3.0,37.080000,0.000000,0.000000 --3.0,37.200000,0.000000,0.000000 --3.0,37.320000,0.000000,0.000000 --3.0,37.440000,0.000000,0.000000 --3.0,37.560000,0.000000,0.000000 --3.0,37.680000,0.000000,0.000000 --3.0,37.800000,0.000000,0.000000 --3.0,37.920000,0.000000,0.000000 --3.0,38.040000,0.000000,0.000000 --3.0,38.160000,0.000000,0.000000 --3.0,38.280000,0.000000,0.000000 --3.0,38.400000,0.000000,0.000000 --3.0,38.520000,0.000000,0.000000 --3.0,38.640000,0.000000,0.000000 --3.0,38.760000,0.000000,0.000000 --3.0,38.880000,0.000000,0.000000 --3.0,39.000000,0.000000,0.000000 --3.0,39.120000,0.000000,0.000000 --3.0,39.240000,0.000000,0.000000 --3.0,39.360000,0.000000,0.000000 --3.0,39.480000,0.000000,0.000000 --3.0,39.600000,0.000000,0.000000 --3.0,39.720000,0.000000,0.000000 --3.0,39.840000,0.000000,0.000000 --3.0,39.960000,0.000000,0.000000 --3.0,40.080000,0.000000,0.000000 --3.0,40.200000,0.000000,0.000000 --3.0,40.320000,0.000000,0.000000 --3.0,40.440000,0.000000,0.000000 --3.0,40.560000,0.000000,0.000000 --3.0,40.680000,0.000000,0.000000 --3.0,40.800000,0.000000,0.000000 --3.0,40.920000,0.000000,0.000000 --3.0,41.040000,0.000000,0.000000 --3.0,41.160000,0.000000,0.000000 --3.0,41.280000,0.000000,0.000000 --3.0,41.400000,0.000000,0.000000 --3.0,41.520000,0.000000,0.000000 --3.0,41.640000,0.000000,0.000000 --3.0,41.760000,0.000000,0.000000 --3.0,41.880000,0.000000,0.000000 --3.0,42.000000,0.000000,0.000000 --3.0,42.120000,0.000000,0.000000 --3.0,42.240000,0.000000,0.000000 --3.0,42.360000,0.000000,0.000000 --3.0,42.480000,0.000000,0.000000 --3.0,42.600000,0.000000,0.000000 --3.0,42.720000,0.000000,0.000000 --3.0,42.840000,0.000000,0.000000 --3.0,42.960000,0.000000,0.000000 --3.0,43.080000,0.000000,0.000000 --3.0,43.200000,0.000000,0.000000 --3.0,43.320000,0.000000,0.000000 --3.0,43.440000,0.000000,0.000000 --3.0,43.560000,0.000000,0.000000 --3.0,43.680000,0.000000,0.000000 --3.0,43.800000,0.000000,0.000000 --3.0,43.920000,0.000000,0.000000 --3.0,44.040000,0.000000,0.000000 --3.0,44.160000,0.000000,0.000000 --3.0,44.280000,0.000000,0.000000 --3.0,44.400000,0.000000,0.000000 --3.0,44.520000,0.000000,0.000000 --3.0,44.640000,0.000000,0.000000 --3.0,44.760000,0.000000,0.000000 --3.0,44.880000,0.000000,0.000000 --3.0,45.000000,0.000000,0.000000 --3.0,45.120000,0.000000,0.000000 --3.0,45.240000,0.000000,0.000000 --3.0,45.360000,0.000000,0.000000 --3.0,45.480000,0.000000,0.000000 --3.0,45.600000,0.000000,0.000000 --3.0,45.720000,0.000000,0.000000 --3.0,45.840000,0.000000,0.000000 --3.0,45.960000,0.000000,0.000000 --3.0,46.080000,0.000000,0.000000 --3.0,46.200000,0.000000,0.000000 --3.0,46.320000,0.000000,0.000000 --3.0,46.440000,0.000000,0.000000 --3.0,46.560000,0.000000,0.000000 --3.0,46.680000,0.000000,0.000000 --3.0,46.800000,0.000000,0.000000 --3.0,46.920000,0.000000,0.000000 --3.0,47.040000,0.000000,0.000000 --3.0,47.160000,0.000000,0.000000 --3.0,47.280000,0.000000,0.000000 --3.0,47.400000,0.000000,0.000000 --3.0,47.520000,0.000000,0.000000 --3.0,47.640000,0.000000,0.000000 --3.0,47.760000,0.000000,0.000000 --3.0,47.880000,0.000000,0.000000 --3.0,48.000000,0.000000,0.000000 --3.0,48.120000,0.000000,0.000000 --3.0,48.240000,0.000000,0.000000 --3.0,48.360000,0.000000,0.000000 --3.0,48.480000,0.000000,0.000000 --3.0,48.600000,0.000000,0.000000 --3.0,48.720000,0.000000,0.000000 --3.0,48.840000,0.000000,0.000000 --3.0,48.960000,0.000000,0.000000 --3.0,49.080000,0.000000,0.000000 --3.0,49.200000,0.000000,0.000000 --3.0,49.320000,0.000000,0.000000 --3.0,49.440000,0.000000,0.000000 --3.0,49.560000,0.000000,0.000000 --3.0,49.680000,0.000000,0.000000 --3.0,49.800000,0.000000,0.000000 --3.0,49.920000,0.000000,0.000000 --3.0,50.040000,0.000000,0.000000 --3.0,50.160000,0.000000,0.000000 --3.0,50.280000,0.000000,0.000000 --3.0,50.400000,0.000000,0.000000 --3.0,50.520000,0.000000,0.000000 --3.0,50.640000,0.000000,0.000000 --3.0,50.760000,0.000000,0.000000 --3.0,50.880000,0.000000,0.000000 --3.0,51.000000,0.000000,0.000000 --3.0,51.120000,0.000000,0.000000 --3.0,51.240000,0.000000,0.000000 --3.0,51.360000,0.000000,0.000000 --3.0,51.480000,0.000000,0.000000 --3.0,51.600000,0.000000,0.000000 --3.0,51.720000,0.000000,0.000000 --3.0,51.840000,0.000000,0.000000 --3.0,51.960000,0.000000,0.000000 --3.0,52.080000,0.000000,0.000000 --3.0,52.200000,0.000000,0.000000 --3.0,52.320000,0.000000,0.000000 --3.0,52.440000,0.000000,0.000000 --3.0,52.560000,0.000000,0.000000 --3.0,52.680000,0.000000,0.000000 --3.0,52.800000,0.000000,0.000000 --3.0,52.920000,0.000000,0.000000 --3.0,53.040000,0.000000,0.000000 --3.0,53.160000,0.000000,0.000000 --3.0,53.280000,0.000000,0.000000 --3.0,53.400000,0.000000,0.000000 --3.0,53.520000,0.000000,0.000000 --3.0,53.640000,0.000000,0.000000 --3.0,53.760000,0.000000,0.000000 --3.0,53.880000,0.000000,0.000000 --3.0,54.000000,0.000000,0.000000 --3.0,54.120000,0.000000,0.000000 --3.0,54.240000,0.000000,0.000000 --3.0,54.360000,0.000000,0.000000 --3.0,54.480000,0.000000,0.000000 --3.0,54.600000,0.000000,0.000000 --3.0,54.720000,0.000000,0.000000 --3.0,54.840000,0.000000,0.000000 --3.0,54.960000,0.000000,0.000000 --3.0,55.080000,0.000000,0.000000 --3.0,55.200000,0.000000,0.000000 --3.0,55.320000,0.000000,0.000000 --3.0,55.440000,0.000000,0.000000 --3.0,55.560000,0.000000,0.000000 --3.0,55.680000,0.000000,0.000000 --3.0,55.800000,0.000000,0.000000 --3.0,55.920000,0.000000,0.000000 --3.0,56.040000,0.000000,0.000000 --3.0,56.160000,0.000000,0.000000 --3.0,56.280000,0.000000,0.000000 --3.0,56.400000,0.000000,0.000000 --3.0,56.520000,0.000000,0.000000 --3.0,56.640000,0.000000,0.000000 --3.0,56.760000,0.000000,0.000000 --3.0,56.880000,0.000000,0.000000 --3.0,57.000000,0.000000,0.000000 --3.0,57.120000,0.000000,0.000000 --3.0,57.240000,0.000000,0.000000 --3.0,57.360000,0.000000,0.000000 --3.0,57.480000,0.000000,0.000000 --3.0,57.600000,0.000000,0.000000 --3.0,57.720000,0.000000,0.000000 --3.0,57.840000,0.000000,0.000000 --3.0,57.960000,0.000000,0.000000 --3.0,58.080000,0.000000,0.000000 --3.0,58.200000,0.000000,0.000000 --3.0,58.320000,0.000000,0.000000 --3.0,58.440000,0.000000,0.000000 --3.0,58.560000,0.000000,0.000000 --3.0,58.680000,0.000000,0.000000 --3.0,58.800000,0.000000,0.000000 --3.0,58.920000,0.000000,0.000000 --3.0,59.040000,0.000000,0.000000 --3.0,59.160000,0.000000,0.000000 --3.0,59.280000,0.000000,0.000000 --3.0,59.400000,0.000000,0.000000 --3.0,59.520000,0.000000,0.000000 --3.0,59.640000,0.000000,0.000000 --3.0,59.760000,0.000000,0.000000 --3.0,59.880000,0.000000,0.000000 --3.0,60.000000,0.000000,0.000000 --3.0,60.120000,0.000000,0.000000 --3.0,60.240000,0.000000,0.000000 --3.0,60.360000,0.000000,0.000000 --3.0,60.480000,0.000000,0.000000 --3.0,60.600000,0.000000,0.000000 --3.0,60.720000,0.000000,0.000000 --3.0,60.840000,0.000000,0.000000 --3.0,60.960000,0.000000,0.000000 --3.0,61.080000,0.000000,0.000000 --3.0,61.200000,0.000000,0.000000 --3.0,61.320000,0.000000,0.000000 --3.0,61.440000,0.000000,0.000000 --3.0,61.560000,0.000000,0.000000 --3.0,61.680000,0.000000,0.000000 --3.0,61.800000,0.000000,0.000000 --3.0,61.920000,0.000000,0.000000 --3.0,62.040000,0.000000,0.000000 --3.0,62.160000,0.000000,0.000000 --3.0,62.280000,0.000000,0.000000 --3.0,62.400000,0.000000,0.000000 --3.0,62.520000,0.000000,0.000000 --3.0,62.640000,0.000000,0.000000 --3.0,62.760000,0.000000,0.000000 --3.0,62.880000,0.000000,0.000000 --3.0,63.000000,0.000000,0.000000 --3.0,63.120000,0.000000,0.000000 --3.0,63.240000,0.000000,0.000000 --3.0,63.360000,0.000000,0.000000 --3.0,63.480000,0.000000,0.000000 --3.0,63.600000,0.000000,0.000000 --3.0,63.720000,0.000000,0.000000 --3.0,63.840000,0.000000,0.000000 --3.0,63.960000,0.000000,0.000000 --3.0,64.080000,0.000000,0.000000 --3.0,64.200000,0.000000,0.000000 --3.0,64.320000,0.000000,0.000000 --3.0,64.440000,0.000000,0.000000 --3.0,64.560000,0.000000,0.000000 --3.0,64.680000,0.000000,0.000000 --3.0,64.800000,0.000000,0.000000 --3.0,64.920000,0.000000,0.000000 --3.0,65.040000,0.000000,0.000000 --3.0,65.160000,0.000000,0.000000 --3.0,65.280000,0.000000,0.000000 --3.0,65.400000,0.000000,0.000000 --3.0,65.520000,0.000000,0.000000 --3.0,65.640000,0.000000,0.000000 --3.0,65.760000,0.000000,0.000000 --3.0,65.880000,0.000000,0.000000 --3.0,66.000000,0.000000,0.000000 --3.0,66.120000,0.000000,0.000000 --3.0,66.240000,0.000000,0.000000 --3.0,66.360000,0.000000,0.000000 --3.0,66.480000,0.000000,0.000000 --3.0,66.600000,0.000000,0.000000 --3.0,66.720000,0.000000,0.000000 --3.0,66.840000,0.000000,0.000000 --3.0,66.960000,0.000000,0.000000 --3.0,67.080000,0.000000,0.000000 --3.0,67.200000,0.000000,0.000000 --3.0,67.320000,0.000000,0.000000 --3.0,67.440000,0.000000,0.000000 --3.0,67.560000,0.000000,0.000000 --3.0,67.680000,0.000000,0.000000 --3.0,67.800000,0.000000,0.000000 --3.0,67.920000,0.000000,0.000000 --3.0,68.040000,0.000000,0.000000 --3.0,68.160000,0.000000,0.000000 --3.0,68.280000,0.000000,0.000000 --3.0,68.400000,0.000000,0.000000 --3.0,68.520000,0.000000,0.000000 --3.0,68.640000,0.000000,0.000000 --3.0,68.760000,0.000000,0.000000 --3.0,68.880000,0.000000,0.000000 --3.0,69.000000,0.000000,0.000000 --3.0,69.120000,0.000000,0.000000 --3.0,69.240000,0.000000,0.000000 --3.0,69.360000,0.000000,0.000000 --3.0,69.480000,0.000000,0.000000 --3.0,69.600000,0.000000,0.000000 --3.0,69.720000,0.000000,0.000000 --3.0,69.840000,0.000000,0.000000 --3.0,69.960000,0.000000,0.000000 --3.0,70.080000,0.000000,0.000000 --3.0,70.200000,0.000000,0.000000 --3.0,70.320000,0.000000,0.000000 --3.0,70.440000,0.000000,0.000000 --3.0,70.560000,0.000000,0.000000 --3.0,70.680000,0.000000,0.000000 --3.0,70.800000,0.000000,0.000000 --3.0,70.920000,0.000000,0.000000 --3.0,71.040000,0.000000,0.000000 --3.0,71.160000,0.000000,0.000000 --3.0,71.280000,0.000000,0.000000 --3.0,71.400000,0.000000,0.000000 --3.0,71.520000,0.000000,0.000000 --3.0,71.640000,0.000000,0.000000 --3.0,71.760000,0.000000,0.000000 --3.0,71.880000,0.000000,0.000000 --3.0,72.000000,0.000000,0.000000 --3.0,72.120000,0.000000,0.000000 --3.0,72.240000,0.000000,0.000000 --3.0,72.360000,0.000000,0.000000 --3.0,72.480000,0.000000,0.000000 --3.0,72.600000,0.000000,0.000000 --3.0,72.720000,0.000000,0.000000 --3.0,72.840000,0.000000,0.000000 --3.0,72.960000,0.000000,0.000000 --3.0,73.080000,0.000000,0.000000 --3.0,73.200000,0.000000,0.000000 --3.0,73.320000,0.000000,0.000000 --3.0,73.440000,0.000000,0.000000 --3.0,73.560000,0.000000,0.000000 --3.0,73.680000,0.000000,0.000000 --3.0,73.800000,0.000000,0.000000 --3.0,73.920000,0.000000,0.000000 --3.0,74.040000,0.000000,0.000000 --3.0,74.160000,0.000000,0.000000 --3.0,74.280000,0.000000,0.000000 --3.0,74.400000,0.000000,0.000000 --3.0,74.520000,0.000000,0.000000 --3.0,74.640000,0.000000,0.000000 --3.0,74.760000,0.000000,0.000000 --3.0,74.880000,0.000000,0.000000 --3.0,75.000000,0.000000,0.000000 --3.0,75.120000,0.000000,0.000000 --3.0,75.240000,0.000000,0.000000 --3.0,75.360000,0.000000,0.000000 --3.0,75.480000,0.000000,0.000000 --3.0,75.600000,0.000000,0.000000 --3.0,75.720000,0.000000,0.000000 --3.0,75.840000,0.000000,0.000000 --3.0,75.960000,0.000000,0.000000 --3.0,76.080000,0.000000,0.000000 --3.0,76.200000,0.000000,0.000000 --3.0,76.320000,0.000000,0.000000 --3.0,76.440000,0.000000,0.000000 --3.0,76.560000,0.000000,0.000000 --3.0,76.680000,0.000000,0.000000 --3.0,76.800000,0.000000,0.000000 --3.0,76.920000,0.000000,0.000000 --3.0,77.040000,0.000000,0.000000 --3.0,77.160000,0.000000,0.000000 --3.0,77.280000,0.000000,0.000000 --3.0,77.400000,0.000000,0.000000 --3.0,77.520000,0.000000,0.000000 --3.0,77.640000,0.000000,0.000000 --3.0,77.760000,0.000000,0.000000 --3.0,77.880000,0.000000,0.000000 --3.0,78.000000,0.000000,0.000000 --3.0,78.120000,0.000000,0.000000 --3.0,78.240000,0.000000,0.000000 --3.0,78.360000,0.000000,0.000000 --3.0,78.480000,0.000000,0.000000 --3.0,78.600000,0.000000,0.000000 --3.0,78.720000,0.000000,0.000000 --3.0,78.840000,0.000000,0.000000 --3.0,78.960000,0.000000,0.000000 --3.0,79.080000,0.000000,0.000000 --3.0,79.200000,0.000000,0.000000 --3.0,79.320000,0.000000,0.000000 --3.0,79.440000,0.000000,0.000000 --3.0,79.560000,0.000000,0.000000 --3.0,79.680000,0.000000,0.000000 --3.0,79.800000,0.000000,0.000000 --3.0,79.920000,0.000000,0.000000 --3.0,80.040000,0.000000,0.000000 --3.0,80.160000,0.000000,0.000000 --3.0,80.280000,0.000000,0.000000 --3.0,80.400000,0.000000,0.000000 --3.0,80.520000,0.000000,0.000000 --3.0,80.640000,0.000000,0.000000 --3.0,80.760000,0.000000,0.000000 --3.0,80.880000,0.000000,0.000000 --3.0,81.000000,0.000000,0.000000 --3.0,81.120000,0.000000,0.000000 --3.0,81.240000,0.000000,0.000000 --3.0,81.360000,0.000000,0.000000 --3.0,81.480000,0.000000,0.000000 --3.0,81.600000,0.000000,0.000000 --3.0,81.720000,0.000000,0.000000 --3.0,81.840000,0.000000,0.000000 --3.0,81.960000,0.000000,0.000000 --3.0,82.080000,0.000000,0.000000 --3.0,82.200000,0.000000,0.000000 --3.0,82.320000,0.000000,0.000000 --3.0,82.440000,0.000000,0.000000 --3.0,82.560000,0.000000,0.000000 --3.0,82.680000,0.000000,0.000000 --3.0,82.800000,0.000000,0.000000 --3.0,82.920000,0.000000,0.000000 --3.0,83.040000,0.000000,0.000000 --3.0,83.160000,0.000000,0.000000 --3.0,83.280000,0.000000,0.000000 --3.0,83.400000,0.000000,0.000000 --3.0,83.520000,0.000000,0.000000 --3.0,83.640000,0.000000,0.000000 --3.0,83.760000,0.000000,0.000000 --3.0,83.880000,0.000000,0.000000 --3.0,84.000000,0.000000,0.000000 --3.0,84.120000,0.000000,0.000000 --3.0,84.240000,0.000000,0.000000 --3.0,84.360000,0.000000,0.000000 --3.0,84.480000,0.000000,0.000000 --3.0,84.600000,0.000000,0.000000 --3.0,84.720000,0.000000,0.000000 --3.0,84.840000,0.000000,0.000000 --3.0,84.960000,0.000000,0.000000 --3.0,85.080000,0.000000,0.000000 --3.0,85.200000,0.000000,0.000000 --3.0,85.320000,0.000000,0.000000 --3.0,85.440000,0.000000,0.000000 --3.0,85.560000,0.000000,0.000000 --3.0,85.680000,0.000000,0.000000 --3.0,85.800000,0.000000,0.000000 --3.0,85.920000,0.000000,0.000000 --3.0,86.040000,0.000000,0.000000 --3.0,86.160000,0.000000,0.000000 --3.0,86.280000,0.000000,0.000000 --3.0,86.400000,0.000000,0.000000 --3.0,86.520000,0.000000,0.000000 --3.0,86.640000,0.000000,0.000000 --3.0,86.760000,0.000000,0.000000 --3.0,86.880000,0.000000,0.000000 --3.0,87.000000,0.000000,0.000000 --3.0,87.120000,0.000000,0.000000 --3.0,87.240000,0.000000,0.000000 --3.0,87.360000,0.000000,0.000000 --3.0,87.480000,0.000000,0.000000 --3.0,87.600000,0.000000,0.000000 --3.0,87.720000,0.000000,0.000000 --3.0,87.840000,0.000000,0.000000 --3.0,87.960000,0.000000,0.000000 --3.0,88.080000,0.000000,0.000000 --3.0,88.200000,0.000000,0.000000 --3.0,88.320000,0.000000,0.000000 --3.0,88.440000,0.000000,0.000000 --3.0,88.560000,0.000000,0.000000 --3.0,88.680000,0.000000,0.000000 --3.0,88.800000,0.000000,0.000000 --3.0,88.920000,0.000000,0.000000 --3.0,89.040000,0.000000,0.000000 --3.0,89.160000,0.000000,0.000000 --3.0,89.280000,0.000000,0.000000 --3.0,89.400000,0.000000,0.000000 --3.0,89.520000,0.000000,0.000000 --3.0,89.640000,0.000000,0.000000 --3.0,89.760000,0.000000,0.000000 --3.0,89.880000,0.000000,0.000000 --3.0,90.000000,0.000000,0.000000 --3.0,90.120000,0.000000,0.000000 --3.0,90.240000,0.000000,0.000000 --3.0,90.360000,0.000000,0.000000 --3.0,90.480000,0.000000,0.000000 --3.0,90.600000,0.000000,0.000000 --3.0,90.720000,0.000000,0.000000 --3.0,90.840000,0.000000,0.000000 --3.0,90.960000,0.000000,0.000000 --3.0,91.080000,0.000000,0.000000 --3.0,91.200000,0.000000,0.000000 --3.0,91.320000,0.000000,0.000000 --3.0,91.440000,0.000000,0.000000 --3.0,91.560000,0.000000,0.000000 --3.0,91.680000,0.000000,0.000000 --3.0,91.800000,0.000000,0.000000 --3.0,91.920000,0.000000,0.000000 --3.0,92.040000,0.000000,0.000000 --3.0,92.160000,0.000000,0.000000 --3.0,92.280000,0.000000,0.000000 --3.0,92.400000,0.000000,0.000000 --3.0,92.520000,0.000000,0.000000 --3.0,92.640000,0.000000,0.000000 --3.0,92.760000,0.000000,0.000000 --3.0,92.880000,0.000000,0.000000 --3.0,93.000000,0.000000,0.000000 --3.0,93.120000,0.000000,0.000000 --3.0,93.240000,0.000000,0.000000 --3.0,93.360000,0.000000,0.000000 --3.0,93.480000,0.000000,0.000000 --3.0,93.600000,0.000000,0.000000 --3.0,93.720000,0.000000,0.000000 --3.0,93.840000,0.000000,0.000000 --3.0,93.960000,0.000000,0.000000 --3.0,94.080000,0.000000,0.000000 --3.0,94.200000,0.000000,0.000000 --3.0,94.320000,0.000000,0.000000 --3.0,94.440000,0.000000,0.000000 --3.0,94.560000,0.000000,0.000000 --3.0,94.680000,0.000000,0.000000 --3.0,94.800000,0.000000,0.000000 --3.0,94.920000,0.000000,0.000000 --3.0,95.040000,0.000000,0.000000 --3.0,95.160000,0.000000,0.000000 --3.0,95.280000,0.000000,0.000000 --3.0,95.400000,0.000000,0.000000 --3.0,95.520000,0.000000,0.000000 --3.0,95.640000,0.000000,0.000000 --3.0,95.760000,0.000000,0.000000 --3.0,95.880000,0.000000,0.000000 --3.0,96.000000,0.000000,0.000000 --3.0,96.120000,0.000000,0.000000 --3.0,96.240000,0.000000,0.000000 --3.0,96.360000,0.000000,0.000000 --3.0,96.480000,0.000000,0.000000 --3.0,96.600000,0.000000,0.000000 --3.0,96.720000,0.000000,0.000000 --3.0,96.840000,0.000000,0.000000 --3.0,96.960000,0.000000,0.000000 --3.0,97.080000,0.000000,0.000000 --3.0,97.200000,0.000000,0.000000 --3.0,97.320000,0.000000,0.000000 --3.0,97.440000,0.000000,0.000000 --3.0,97.560000,0.000000,0.000000 --3.0,97.680000,0.000000,0.000000 --3.0,97.800000,0.000000,0.000000 --3.0,97.920000,0.000000,0.000000 --3.0,98.040000,0.000000,0.000000 --3.0,98.160000,0.000000,0.000000 --3.0,98.280000,0.000000,0.000000 --3.0,98.400000,0.000000,0.000000 --3.0,98.520000,0.000000,0.000000 --3.0,98.640000,0.000000,0.000000 --3.0,98.760000,0.000000,0.000000 --3.0,98.880000,0.000000,0.000000 --3.0,99.000000,0.000000,0.000000 --3.0,99.120000,0.000000,0.000000 --3.0,99.240000,0.000000,0.000000 --3.0,99.360000,0.000000,0.000000 --3.0,99.480000,0.000000,0.000000 --3.0,99.600000,0.000000,0.000000 --3.0,99.720000,0.000000,0.000000 --3.0,99.840000,0.000000,0.000000 --3.0,99.960000,0.000000,0.000000 --3.0,100.080000,0.000000,0.000000 --3.0,100.200000,0.000000,0.000000 --3.0,100.320000,0.000000,0.000000 --3.0,100.440000,0.000000,0.000000 --3.0,100.560000,0.000000,0.000000 --3.0,100.680000,0.000000,0.000000 --3.0,100.800000,0.000000,0.000000 --3.0,100.920000,0.000000,0.000000 --3.0,101.040000,0.000000,0.000000 --3.0,101.160000,0.000000,0.000000 --3.0,101.280000,0.000000,0.000000 --3.0,101.400000,0.000000,0.000000 --3.0,101.520000,0.000000,0.000000 --3.0,101.640000,0.000000,0.000000 --3.0,101.760000,0.000000,0.000000 --3.0,101.880000,0.000000,0.000000 --3.0,102.000000,0.000000,0.000000 --3.0,102.120000,0.000000,0.000000 --3.0,102.240000,0.000000,0.000000 --3.0,102.360000,0.000000,0.000000 --3.0,102.480000,0.000000,0.000000 --3.0,102.600000,0.000000,0.000000 --3.0,102.720000,0.000000,0.000000 --3.0,102.840000,0.000000,0.000000 --3.0,102.960000,0.000000,0.000000 --3.0,103.080000,0.000000,0.000000 --3.0,103.200000,0.000000,0.000000 --3.0,103.320000,0.000000,0.000000 --3.0,103.440000,0.000000,0.000000 --3.0,103.560000,0.000000,0.000000 --3.0,103.680000,0.000000,0.000000 --3.0,103.800000,0.000000,0.000000 --3.0,103.920000,0.000000,0.000000 --3.0,104.040000,0.000000,0.000000 --3.0,104.160000,0.000000,0.000000 --3.0,104.280000,0.000000,0.000000 --3.0,104.400000,0.000000,0.000000 --3.0,104.520000,0.000000,0.000000 --3.0,104.640000,0.000000,0.000000 --3.0,104.760000,0.000000,0.000000 --3.0,104.880000,0.000000,0.000000 --3.0,105.000000,0.000000,0.000000 --3.0,105.120000,0.000000,0.000000 --3.0,105.240000,0.000000,0.000000 --3.0,105.360000,0.000000,0.000000 --3.0,105.480000,0.000000,0.000000 --3.0,105.600000,0.000000,0.000000 --3.0,105.720000,0.000000,0.000000 --3.0,105.840000,0.000000,0.000000 --3.0,105.960000,0.000000,0.000000 --3.0,106.080000,0.000000,0.000000 --3.0,106.200000,0.000000,0.000000 --3.0,106.320000,0.000000,0.000000 --3.0,106.440000,0.000000,0.000000 --3.0,106.560000,0.000000,0.000000 --3.0,106.680000,0.000000,0.000000 --3.0,106.800000,0.000000,0.000000 --3.0,106.920000,0.000000,0.000000 --3.0,107.040000,0.000000,0.000000 --3.0,107.160000,0.000000,0.000000 --3.0,107.280000,0.000000,0.000000 --3.0,107.400000,0.000000,0.000000 --3.0,107.520000,0.000000,0.000000 --3.0,107.640000,0.000000,0.000000 --3.0,107.760000,0.000000,0.000000 --3.0,107.880000,0.000000,0.000000 --3.0,108.000000,0.000000,0.000000 --3.0,108.120000,0.000000,0.000000 --3.0,108.240000,0.000000,0.000000 --3.0,108.360000,0.000000,0.000000 --3.0,108.480000,0.000000,0.000000 --3.0,108.600000,0.000000,0.000000 --3.0,108.720000,0.000000,0.000000 --3.0,108.840000,0.000000,0.000000 --3.0,108.960000,0.000000,0.000000 --3.0,109.080000,0.000000,0.000000 --3.0,109.200000,0.000000,0.000000 --3.0,109.320000,0.000000,0.000000 --3.0,109.440000,0.000000,0.000000 --3.0,109.560000,0.000000,0.000000 --3.0,109.680000,0.000000,0.000000 --3.0,109.800000,0.000000,0.000000 --3.0,109.920000,0.000000,0.000000 --3.0,110.040000,0.000000,0.000000 --3.0,110.160000,0.000000,0.000000 --3.0,110.280000,0.000000,0.000000 --3.0,110.400000,0.000000,0.000000 --3.0,110.520000,0.000000,0.000000 --3.0,110.640000,0.000000,0.000000 --3.0,110.760000,0.000000,0.000000 --3.0,110.880000,0.000000,0.000000 --3.0,111.000000,0.000000,0.000000 --3.0,111.120000,0.000000,0.000000 --3.0,111.240000,0.000000,0.000000 --3.0,111.360000,0.000000,0.000000 --3.0,111.480000,0.000000,0.000000 --3.0,111.600000,0.000000,0.000000 --3.0,111.720000,0.000000,0.000000 --3.0,111.840000,0.000000,0.000000 --3.0,111.960000,0.000000,0.000000 --3.0,112.080000,0.000000,0.000000 --3.0,112.200000,0.000000,0.000000 --3.0,112.320000,0.000000,0.000000 --3.0,112.440000,0.000000,0.000000 --3.0,112.560000,0.000000,0.000000 --3.0,112.680000,0.000000,0.000000 --3.0,112.800000,0.000000,0.000000 --3.0,112.920000,0.000000,0.000000 --3.0,113.040000,0.000000,0.000000 --3.0,113.160000,0.000000,0.000000 --3.0,113.280000,0.000000,0.000000 --3.0,113.400000,0.000000,0.000000 --3.0,113.520000,0.000000,0.000000 --3.0,113.640000,0.000000,0.000000 --3.0,113.760000,0.000000,0.000000 --3.0,113.880000,0.000000,0.000000 --3.0,114.000000,0.000000,0.000000 --3.0,114.120000,0.000000,0.000000 --3.0,114.240000,0.000000,0.000000 --3.0,114.360000,0.000000,0.000000 --3.0,114.480000,0.000000,0.000000 --3.0,114.600000,0.000000,0.000000 --3.0,114.720000,0.000000,0.000000 --3.0,114.840000,0.000000,0.000000 --3.0,114.960000,0.000000,0.000000 --3.0,115.080000,0.000000,0.000000 --3.0,115.200000,0.000000,0.000000 --3.0,115.320000,0.000000,0.000000 --3.0,115.440000,0.000000,0.000000 --3.0,115.560000,0.000000,0.000000 --3.0,115.680000,0.000000,0.000000 --3.0,115.800000,0.000000,0.000000 --3.0,115.920000,0.000000,0.000000 --3.0,116.040000,0.000000,0.000000 --3.0,116.160000,0.000000,0.000000 --3.0,116.280000,0.000000,0.000000 --3.0,116.400000,0.000000,0.000000 --3.0,116.520000,0.000000,0.000000 --3.0,116.640000,0.000000,0.000000 --3.0,116.760000,0.000000,0.000000 --3.0,116.880000,0.000000,0.000000 --3.0,117.000000,0.000000,0.000000 --3.0,117.120000,0.000000,0.000000 --3.0,117.240000,0.000000,0.000000 --3.0,117.360000,0.000000,0.000000 --3.0,117.480000,0.000000,0.000000 --3.0,117.600000,0.000000,0.000000 --3.0,117.720000,0.000000,0.000000 --3.0,117.840000,0.000000,0.000000 --3.0,117.960000,0.000000,0.000000 --3.0,118.080000,0.000000,0.000000 --3.0,118.200000,0.000000,0.000000 --3.0,118.320000,0.000000,0.000000 --3.0,118.440000,0.000000,0.000000 --3.0,118.560000,0.000000,0.000000 --3.0,118.680000,0.000000,0.000000 --3.0,118.800000,0.000000,0.000000 --3.0,118.920000,0.000000,0.000000 --3.0,119.040000,0.000000,0.000000 --3.0,119.160000,0.000000,0.000000 --3.0,119.280000,0.000000,0.000000 --3.0,119.400000,0.000000,0.000000 --3.0,119.520000,0.000000,0.000000 --3.0,119.640000,0.000000,0.000000 --3.0,119.760000,0.000000,0.000000 --3.0,119.880000,0.000000,0.000000 --3.0,120.000000,0.000000,0.000000 --3.0,120.120000,0.000000,0.000000 --3.0,120.240000,0.000000,0.000000 --3.0,120.360000,0.000000,0.000000 --3.0,120.480000,0.000000,0.000000 --3.0,120.600000,0.000000,0.000000 --3.0,120.720000,0.000000,0.000000 --3.0,120.840000,0.000000,0.000000 --3.0,120.960000,0.000000,0.000000 --3.0,121.080000,0.000000,0.000000 --3.0,121.200000,0.000000,0.000000 --3.0,121.320000,0.000000,0.000000 --3.0,121.440000,0.000000,0.000000 --3.0,121.560000,0.000000,0.000000 --3.0,121.680000,0.000000,0.000000 --3.0,121.800000,0.000000,0.000000 --3.0,121.920000,0.000000,0.000000 --3.0,122.040000,0.000000,0.000000 --3.0,122.160000,0.000000,0.000000 --3.0,122.280000,0.000000,0.000000 --3.0,122.400000,0.000000,0.000000 --3.0,122.520000,0.000000,0.000000 --3.0,122.640000,0.000000,0.000000 --3.0,122.760000,0.000000,0.000000 --3.0,122.880000,0.000000,0.000000 --3.0,123.000000,0.000000,0.000000 --3.0,123.120000,0.000000,0.000000 --3.0,123.240000,0.000000,0.000000 --3.0,123.360000,0.000000,0.000000 --3.0,123.480000,0.000000,0.000000 --3.0,123.600000,0.000000,0.000000 --3.0,123.720000,0.000000,0.000000 --3.0,123.840000,0.000000,0.000000 --3.0,123.960000,0.000000,0.000000 --3.0,124.080000,0.000000,0.000000 --3.0,124.200000,0.000000,0.000000 --3.0,124.320000,0.000000,0.000000 --3.0,124.440000,0.000000,0.000000 --3.0,124.560000,0.000000,0.000000 --3.0,124.680000,0.000000,0.000000 --3.0,124.800000,0.000000,0.000000 --3.0,124.920000,0.000000,0.000000 --3.0,125.040000,0.000000,0.000000 --3.0,125.160000,0.000000,0.000000 --3.0,125.280000,0.000000,0.000000 --3.0,125.400000,0.000000,0.000000 --3.0,125.520000,0.000000,0.000000 --3.0,125.640000,0.000000,0.000000 --3.0,125.760000,0.000000,0.000000 --3.0,125.880000,0.000000,0.000000 --3.0,126.000000,0.000000,0.000000 --3.0,126.120000,0.000000,0.000000 --3.0,126.240000,0.000000,0.000000 --3.0,126.360000,0.000000,0.000000 --3.0,126.480000,0.000000,0.000000 --3.0,126.600000,0.000000,0.000000 --3.0,126.720000,0.000000,0.000000 --3.0,126.840000,0.000000,0.000000 --3.0,126.960000,0.000000,0.000000 --3.0,127.080000,0.000000,0.000000 --3.0,127.200000,0.000000,0.000000 --3.0,127.320000,0.000000,0.000000 --3.0,127.440000,0.000000,0.000000 --3.0,127.560000,0.000000,0.000000 --3.0,127.680000,0.000000,0.000000 --3.0,127.800000,0.000000,0.000000 --3.0,127.920000,0.000000,0.000000 --3.0,128.040000,0.000000,0.000000 --3.0,128.160000,0.000000,0.000000 --3.0,128.280000,0.000000,0.000000 --3.0,128.400000,0.000000,0.000000 --3.0,128.520000,0.000000,0.000000 --3.0,128.640000,0.000000,0.000000 --3.0,128.760000,0.000000,0.000000 --3.0,128.880000,0.000000,0.000000 --3.0,129.000000,0.000000,0.000000 --3.0,129.120000,0.000000,0.000000 --3.0,129.240000,0.000000,0.000000 --3.0,129.360000,0.000000,0.000000 --3.0,129.480000,0.000000,0.000000 --3.0,129.600000,0.000000,0.000000 --3.0,129.720000,0.000000,0.000000 --3.0,129.840000,0.000000,0.000000 --3.0,129.960000,0.000000,0.000000 --3.0,130.080000,0.000000,0.000000 --3.0,130.200000,0.000000,0.000000 --3.0,130.320000,0.000000,0.000000 --3.0,130.440000,0.000000,0.000000 --3.0,130.560000,0.000000,0.000000 --3.0,130.680000,0.000000,0.000000 --3.0,130.800000,0.000000,0.000000 --3.0,130.920000,0.000000,0.000000 --3.0,131.040000,0.000000,0.000000 --3.0,131.160000,0.000000,0.000000 --3.0,131.280000,0.000000,0.000000 --3.0,131.400000,0.000000,0.000000 --3.0,131.520000,0.000000,0.000000 --3.0,131.640000,0.000000,0.000000 --3.0,131.760000,0.000000,0.000000 --3.0,131.880000,0.000000,0.000000 --3.0,132.000000,0.000000,0.000000 --3.0,132.120000,0.000000,0.000000 --3.0,132.240000,0.000000,0.000000 --3.0,132.360000,0.000000,0.000000 --3.0,132.480000,0.000000,0.000000 --3.0,132.600000,0.000000,0.000000 --3.0,132.720000,0.000000,0.000000 --3.0,132.840000,0.000000,0.000000 --3.0,132.960000,0.000000,0.000000 --3.0,133.080000,0.000000,0.000000 --3.0,133.200000,0.000000,0.000000 --3.0,133.320000,0.000000,0.000000 --3.0,133.440000,0.000000,0.000000 --3.0,133.560000,0.000000,0.000000 --3.0,133.680000,0.000000,0.000000 --3.0,133.800000,0.000000,0.000000 --3.0,133.920000,0.000000,0.000000 --3.0,134.040000,0.000000,0.000000 --3.0,134.160000,0.000000,0.000000 --3.0,134.280000,0.000000,0.000000 --3.0,134.400000,0.000000,0.000000 --3.0,134.520000,0.000000,0.000000 --3.0,134.640000,0.000000,0.000000 --3.0,134.760000,0.000000,0.000000 --3.0,134.880000,0.000000,0.000000 --3.0,135.000000,0.000000,0.000000 --3.0,135.120000,0.000000,0.000000 --3.0,135.240000,0.000000,0.000000 --3.0,135.360000,0.000000,0.000000 --3.0,135.480000,0.000000,0.000000 --3.0,135.600000,0.000000,0.000000 --3.0,135.720000,0.000000,0.000000 --3.0,135.840000,0.000000,0.000000 --3.0,135.960000,0.000000,0.000000 --3.0,136.080000,0.000000,0.000000 --3.0,136.200000,0.000000,0.000000 --3.0,136.320000,0.000000,0.000000 --3.0,136.440000,0.000000,0.000000 --3.0,136.560000,0.000000,0.000000 --3.0,136.680000,0.000000,0.000000 --3.0,136.800000,0.000000,0.000000 --3.0,136.920000,0.000000,0.000000 --3.0,137.040000,0.000000,0.000000 --3.0,137.160000,0.000000,0.000000 --3.0,137.280000,0.000000,0.000000 --3.0,137.400000,0.000000,0.000000 --3.0,137.520000,0.000000,0.000000 --3.0,137.640000,0.000000,0.000000 --3.0,137.760000,0.000000,0.000000 --3.0,137.880000,0.000000,0.000000 --3.0,138.000000,0.000000,0.000000 --3.0,138.120000,0.000000,0.000000 --3.0,138.240000,0.000000,0.000000 --3.0,138.360000,0.000000,0.000000 --3.0,138.480000,0.000000,0.000000 --3.0,138.600000,0.000000,0.000000 --3.0,138.720000,0.000000,0.000000 --3.0,138.840000,0.000000,0.000000 --3.0,138.960000,0.000000,0.000000 --3.0,139.080000,0.000000,0.000000 --3.0,139.200000,0.000000,0.000000 --3.0,139.320000,0.000000,0.000000 --3.0,139.440000,0.000000,0.000000 --3.0,139.560000,0.000000,0.000000 --3.0,139.680000,0.000000,0.000000 --3.0,139.800000,0.000000,0.000000 --3.0,139.920000,0.000000,0.000000 --3.0,140.040000,0.000000,0.000000 --3.0,140.160000,0.000000,0.000000 --3.0,140.280000,0.000000,0.000000 --3.0,140.400000,0.000000,0.000000 --3.0,140.520000,0.000000,0.000000 --3.0,140.640000,0.000000,0.000000 --3.0,140.760000,0.000000,0.000000 --3.0,140.880000,0.000000,0.000000 --3.0,141.000000,0.000000,0.000000 --3.0,141.120000,0.000000,0.000000 --3.0,141.240000,0.000000,0.000000 --3.0,141.360000,0.000000,0.000000 --3.0,141.480000,0.000000,0.000000 --3.0,141.600000,0.000000,0.000000 --3.0,141.720000,0.000000,0.000000 --3.0,141.840000,0.000000,0.000000 --3.0,141.960000,0.000000,0.000000 --3.0,142.080000,0.000000,0.000000 --3.0,142.200000,0.000000,0.000000 --3.0,142.320000,0.000000,0.000000 --3.0,142.440000,0.000000,0.000000 --3.0,142.560000,0.000000,0.000000 --3.0,142.680000,0.000000,0.000000 --3.0,142.800000,0.000000,0.000000 --3.0,142.920000,0.000000,0.000000 --3.0,143.040000,0.000000,0.000000 --3.0,143.160000,0.000000,0.000000 --3.0,143.280000,0.000000,0.000000 --3.0,143.400000,0.000000,0.000000 --3.0,143.520000,0.000000,0.000000 --3.0,143.640000,0.000000,0.000000 --3.0,143.760000,0.000000,0.000000 --3.0,143.880000,0.000000,0.000000 --3.0,144.000000,0.000000,0.000000 --3.0,144.120000,0.000000,0.000000 --3.0,144.240000,0.000000,0.000000 --3.0,144.360000,0.000000,0.000000 --3.0,144.480000,0.000000,0.000000 --3.0,144.600000,0.000000,0.000000 --3.0,144.720000,0.000000,0.000000 --3.0,144.840000,0.000000,0.000000 --3.0,144.960000,0.000000,0.000000 --3.0,145.080000,0.000000,0.000000 --3.0,145.200000,0.000000,0.000000 --3.0,145.320000,0.000000,0.000000 --3.0,145.440000,0.000000,0.000000 --3.0,145.560000,0.000000,0.000000 --3.0,145.680000,0.000000,0.000000 --3.0,145.800000,0.000000,0.000000 --3.0,145.920000,0.000000,0.000000 --3.0,146.040000,0.000000,0.000000 --3.0,146.160000,0.000000,0.000000 --3.0,146.280000,0.000000,0.000000 --3.0,146.400000,0.000000,0.000000 --3.0,146.520000,0.000000,0.000000 --3.0,146.640000,0.000000,0.000000 --3.0,146.760000,0.000000,0.000000 --3.0,146.880000,0.000000,0.000000 --3.0,147.000000,0.000000,0.000000 --3.0,147.120000,0.000000,0.000000 --3.0,147.240000,0.000000,0.000000 --3.0,147.360000,0.000000,0.000000 --3.0,147.480000,0.000000,0.000000 --3.0,147.600000,0.000000,0.000000 --3.0,147.720000,0.000000,0.000000 --3.0,147.840000,0.000000,0.000000 --3.0,147.960000,0.000000,0.000000 --3.0,148.080000,0.000000,0.000000 --3.0,148.200000,0.000000,0.000000 --3.0,148.320000,0.000000,0.000000 --3.0,148.440000,0.000000,0.000000 --3.0,148.560000,0.000000,0.000000 --3.0,148.680000,0.000000,0.000000 --3.0,148.800000,0.000000,0.000000 --3.0,148.920000,0.000000,0.000000 --3.0,149.040000,0.000000,0.000000 --3.0,149.160000,0.000000,0.000000 --3.0,149.280000,0.000000,0.000000 --3.0,149.400000,0.000000,0.000000 --3.0,149.520000,0.000000,0.000000 --3.0,149.640000,0.000000,0.000000 --3.0,149.760000,0.000000,0.000000 --3.0,149.880000,0.000000,0.000000 --3.0,150.000000,0.000000,0.000000 --3.0,150.120000,0.000000,0.000000 --3.0,150.240000,0.000000,0.000000 --3.0,150.360000,0.000000,0.000000 --3.0,150.480000,0.000000,0.000000 --3.0,150.600000,0.000000,0.000000 --3.0,150.720000,0.000000,0.000000 --3.0,150.840000,0.000000,0.000000 --3.0,150.960000,0.000000,0.000000 --3.0,151.080000,0.000000,0.000000 --3.0,151.200000,0.000000,0.000000 --3.0,151.320000,0.000000,0.000000 --3.0,151.440000,0.000000,0.000000 --3.0,151.560000,0.000000,0.000000 --3.0,151.680000,0.000000,0.000000 --3.0,151.800000,0.000000,0.000000 --3.0,151.920000,0.000000,0.000000 --3.0,152.040000,0.000000,0.000000 --3.0,152.160000,0.000000,0.000000 --3.0,152.280000,0.000000,0.000000 --3.0,152.400000,0.000000,0.000000 --3.0,152.520000,0.000000,0.000000 --3.0,152.640000,0.000000,0.000000 --3.0,152.760000,0.000000,0.000000 --3.0,152.880000,0.000000,0.000000 --3.0,153.000000,0.000000,0.000000 --3.0,153.120000,0.000000,0.000000 --3.0,153.240000,0.000000,0.000000 --3.0,153.360000,0.000000,0.000000 --3.0,153.480000,0.000000,0.000000 --3.0,153.600000,0.000000,0.000000 --3.0,153.720000,0.000000,0.000000 --3.0,153.840000,0.000000,0.000000 --3.0,153.960000,0.000000,0.000000 --3.0,154.080000,0.000000,0.000000 --3.0,154.200000,0.000000,0.000000 --3.0,154.320000,0.000000,0.000000 --3.0,154.440000,0.000000,0.000000 --3.0,154.560000,0.000000,0.000000 --3.0,154.680000,0.000000,0.000000 --3.0,154.800000,0.000000,0.000000 --3.0,154.920000,0.000000,0.000000 --3.0,155.040000,0.000000,0.000000 --3.0,155.160000,0.000000,0.000000 --3.0,155.280000,0.000000,0.000000 --3.0,155.400000,0.000000,0.000000 --3.0,155.520000,0.000000,0.000000 --3.0,155.640000,0.000000,0.000000 --3.0,155.760000,0.000000,0.000000 --3.0,155.880000,0.000000,0.000000 --3.0,156.000000,0.000000,0.000000 --3.0,156.120000,0.000000,0.000000 --3.0,156.240000,0.000000,0.000000 --3.0,156.360000,0.000000,0.000000 --3.0,156.480000,0.000000,0.000000 --3.0,156.600000,0.000000,0.000000 --3.0,156.720000,0.000000,0.000000 --3.0,156.840000,0.000000,0.000000 --3.0,156.960000,0.000000,0.000000 --3.0,157.080000,0.000000,0.000000 --3.0,157.200000,0.000000,0.000000 --3.0,157.320000,0.000000,0.000000 --3.0,157.440000,0.000000,0.000000 --3.0,157.560000,0.000000,0.000000 --3.0,157.680000,0.000000,0.000000 --3.0,157.800000,0.000000,0.000000 --3.0,157.920000,0.000000,0.000000 --3.0,158.040000,0.000000,0.000000 --3.0,158.160000,0.000000,0.000000 --3.0,158.280000,0.000000,0.000000 --3.0,158.400000,0.000000,0.000000 --3.0,158.520000,0.000000,0.000000 --3.0,158.640000,0.000000,0.000000 --3.0,158.760000,0.000000,0.000000 --3.0,158.880000,0.000000,0.000000 --3.0,159.000000,0.000000,0.000000 --3.0,159.120000,0.000000,0.000000 --3.0,159.240000,0.000000,0.000000 --3.0,159.360000,0.000000,0.000000 --3.0,159.480000,0.000000,0.000000 --3.0,159.600000,0.000000,0.000000 --3.0,159.720000,0.000000,0.000000 --3.0,159.840000,0.000000,0.000000 --3.0,159.960000,0.000000,0.000000 --3.0,160.080000,0.000000,0.000000 --3.0,160.200000,0.000000,0.000000 --3.0,160.320000,0.000000,0.000000 --3.0,160.440000,0.000000,0.000000 --3.0,160.560000,0.000000,0.000000 --3.0,160.680000,0.000000,0.000000 --3.0,160.800000,0.000000,0.000000 --3.0,160.920000,0.000000,0.000000 --3.0,161.040000,0.000000,0.000000 --3.0,161.160000,0.000000,0.000000 --3.0,161.280000,0.000000,0.000000 --3.0,161.400000,0.000000,0.000000 --3.0,161.520000,0.000000,0.000000 --3.0,161.640000,0.000000,0.000000 --3.0,161.760000,0.000000,0.000000 --3.0,161.880000,0.000000,0.000000 --3.0,162.000000,0.000000,0.000000 --3.0,162.120000,0.000000,0.000000 --3.0,162.240000,0.000000,0.000000 --3.0,162.360000,0.000000,0.000000 --3.0,162.480000,0.000000,0.000000 --3.0,162.600000,0.000000,0.000000 --3.0,162.720000,0.000000,0.000000 --3.0,162.840000,0.000000,0.000000 --3.0,162.960000,0.000000,0.000000 --3.0,163.080000,0.000000,0.000000 --3.0,163.200000,0.000000,0.000000 --3.0,163.320000,0.000000,0.000000 --3.0,163.440000,0.000000,0.000000 --3.0,163.560000,0.000000,0.000000 --3.0,163.680000,0.000000,0.000000 --3.0,163.800000,0.000000,0.000000 --3.0,163.920000,0.000000,0.000000 --3.0,164.040000,0.000000,0.000000 --3.0,164.160000,0.000000,0.000000 --3.0,164.280000,0.000000,0.000000 --3.0,164.400000,0.000000,0.000000 --3.0,164.520000,0.000000,0.000000 --3.0,164.640000,0.000000,0.000000 --3.0,164.760000,0.000000,0.000000 --3.0,164.880000,0.000000,0.000000 --3.0,165.000000,0.000000,0.000000 --3.0,165.120000,0.000000,0.000000 --3.0,165.240000,0.000000,0.000000 --3.0,165.360000,0.000000,0.000000 --3.0,165.480000,0.000000,0.000000 --3.0,165.600000,0.000000,0.000000 --3.0,165.720000,0.000000,0.000000 --3.0,165.840000,0.000000,0.000000 --3.0,165.960000,0.000000,0.000000 --3.0,166.080000,0.000000,0.000000 --3.0,166.200000,0.000000,0.000000 --3.0,166.320000,0.000000,0.000000 --3.0,166.440000,0.000000,0.000000 --3.0,166.560000,0.000000,0.000000 --3.0,166.680000,0.000000,0.000000 --3.0,166.800000,0.000000,0.000000 --3.0,166.920000,0.000000,0.000000 --3.0,167.040000,0.000000,0.000000 --3.0,167.160000,0.000000,0.000000 --3.0,167.280000,0.000000,0.000000 --3.0,167.400000,0.000000,0.000000 --3.0,167.520000,0.000000,0.000000 --3.0,167.640000,0.000000,0.000000 --3.0,167.760000,0.000000,0.000000 --3.0,167.880000,0.000000,0.000000 --3.0,168.000000,0.000000,0.000000 --3.0,168.120000,0.000000,0.000000 --3.0,168.240000,0.000000,0.000000 --3.0,168.360000,0.000000,0.000000 --3.0,168.480000,0.000000,0.000000 --3.0,168.600000,0.000000,0.000000 --3.0,168.720000,0.000000,0.000000 --3.0,168.840000,0.000000,0.000000 --3.0,168.960000,0.000000,0.000000 --3.0,169.080000,0.000000,0.000000 --3.0,169.200000,0.000000,0.000000 --3.0,169.320000,0.000000,0.000000 --3.0,169.440000,0.000000,0.000000 --3.0,169.560000,0.000000,0.000000 --3.0,169.680000,0.000000,0.000000 --3.0,169.800000,0.000000,0.000000 --3.0,169.920000,0.000000,0.000000 --3.0,170.040000,0.000000,0.000000 --3.0,170.160000,0.000000,0.000000 --3.0,170.280000,0.000000,0.000000 --3.0,170.400000,0.000000,0.000000 --3.0,170.520000,0.000000,0.000000 --3.0,170.640000,0.000000,0.000000 --3.0,170.760000,0.000000,0.000000 --3.0,170.880000,0.000000,0.000000 --3.0,171.000000,0.000000,0.000000 --3.0,171.120000,0.000000,0.000000 --3.0,171.240000,0.000000,0.000000 --3.0,171.360000,0.000000,0.000000 --3.0,171.480000,0.000000,0.000000 --3.0,171.600000,0.000000,0.000000 --3.0,171.720000,0.000000,0.000000 --3.0,171.840000,0.000000,0.000000 --3.0,171.960000,0.000000,0.000000 --3.0,172.080000,0.000000,0.000000 --3.0,172.200000,0.000000,0.000000 --3.0,172.320000,0.000000,0.000000 --3.0,172.440000,0.000000,0.000000 --3.0,172.560000,0.000000,0.000000 --3.0,172.680000,0.000000,0.000000 --3.0,172.800000,0.000000,0.000000 --3.0,172.920000,0.000000,0.000000 --3.0,173.040000,0.000000,0.000000 --3.0,173.160000,0.000000,0.000000 --3.0,173.280000,0.000000,0.000000 --3.0,173.400000,0.000000,0.000000 --3.0,173.520000,0.000000,0.000000 --3.0,173.640000,0.000000,0.000000 --3.0,173.760000,0.000000,0.000000 --3.0,173.880000,0.000000,0.000000 --3.0,174.000000,0.000000,0.000000 --3.0,174.120000,0.000000,0.000000 --3.0,174.240000,0.000000,0.000000 --3.0,174.360000,0.000000,0.000000 --3.0,174.480000,0.000000,0.000000 --3.0,174.600000,0.000000,0.000000 --3.0,174.720000,0.000000,0.000000 --3.0,174.840000,0.000000,0.000000 --3.0,174.960000,0.000000,0.000000 --3.0,175.080000,0.000000,0.000000 --3.0,175.200000,0.000000,0.000000 --3.0,175.320000,0.000000,0.000000 --3.0,175.440000,0.000000,0.000000 --3.0,175.560000,0.000000,0.000000 --3.0,175.680000,0.000000,0.000000 --3.0,175.800000,0.000000,0.000000 --3.0,175.920000,0.000000,0.000000 --3.0,176.040000,0.000000,0.000000 --3.0,176.160000,0.000000,0.000000 --3.0,176.280000,0.000000,0.000000 --3.0,176.400000,0.000000,0.000000 --3.0,176.520000,0.000000,0.000000 --3.0,176.640000,0.000000,0.000000 --3.0,176.760000,0.000000,0.000000 --3.0,176.880000,0.000000,0.000000 --3.0,177.000000,0.000000,0.000000 --3.0,177.120000,0.000000,0.000000 --3.0,177.240000,0.000000,0.000000 --3.0,177.360000,0.000000,0.000000 --3.0,177.480000,0.000000,0.000000 --3.0,177.600000,0.000000,0.000000 --3.0,177.720000,0.000000,0.000000 --3.0,177.840000,0.000000,0.000000 --3.0,177.960000,0.000000,0.000000 --3.0,178.080000,0.000000,0.000000 --3.0,178.200000,0.000000,0.000000 --3.0,178.320000,0.000000,0.000000 --3.0,178.440000,0.000000,0.000000 --3.0,178.560000,0.000000,0.000000 --3.0,178.680000,0.000000,0.000000 --3.0,178.800000,0.000000,0.000000 --3.0,178.920000,0.000000,0.000000 --3.0,179.040000,0.000000,0.000000 --3.0,179.160000,0.000000,0.000000 --3.0,179.280000,0.000000,0.000000 --3.0,179.400000,0.000000,0.000000 --3.0,179.520000,0.000000,0.000000 --3.0,179.640000,0.000000,0.000000 --3.0,179.760000,0.000000,0.000000 --3.0,179.880000,0.000000,0.000000 --3.0,180.000000,0.000000,0.000000 --3.0,180.120000,0.000000,0.000000 --3.0,180.240000,0.000000,0.000000 --3.0,180.360000,0.000000,0.000000 --3.0,180.480000,0.000000,0.000000 --3.0,180.600000,0.000000,0.000000 --3.0,180.720000,0.000000,0.000000 --3.0,180.840000,0.000000,0.000000 --3.0,180.960000,0.000000,0.000000 --3.0,181.080000,0.000000,0.000000 --3.0,181.200000,0.000000,0.000000 --3.0,181.320000,0.000000,0.000000 --3.0,181.440000,0.000000,0.000000 --3.0,181.560000,0.000000,0.000000 --3.0,181.680000,0.000000,0.000000 --3.0,181.800000,0.000000,0.000000 --3.0,181.920000,0.000000,0.000000 --3.0,182.040000,0.000000,0.000000 --3.0,182.160000,0.000000,0.000000 --3.0,182.280000,0.000000,0.000000 --3.0,182.400000,0.000000,0.000000 --3.0,182.520000,0.000000,0.000000 --3.0,182.640000,0.000000,0.000000 --3.0,182.760000,0.000000,0.000000 --3.0,182.880000,0.000000,0.000000 --3.0,183.000000,0.000000,0.000000 --3.0,183.120000,0.000000,0.000000 --3.0,183.240000,0.000000,0.000000 --3.0,183.360000,0.000000,0.000000 --3.0,183.480000,0.000000,0.000000 --3.0,183.600000,0.000000,0.000000 --3.0,183.720000,0.000000,0.000000 --3.0,183.840000,0.000000,0.000000 --3.0,183.960000,0.000000,0.000000 --3.0,184.080000,0.000000,0.000000 --3.0,184.200000,0.000000,0.000000 --3.0,184.320000,0.000000,0.000000 --3.0,184.440000,0.000000,0.000000 --3.0,184.560000,0.000000,0.000000 --3.0,184.680000,0.000000,0.000000 --3.0,184.800000,0.000000,0.000000 --3.0,184.920000,0.000000,0.000000 --3.0,185.040000,0.000000,0.000000 --3.0,185.160000,0.000000,0.000000 --3.0,185.280000,0.000000,0.000000 --3.0,185.400000,0.000000,0.000000 --3.0,185.520000,0.000000,0.000000 --3.0,185.640000,0.000000,0.000000 --3.0,185.760000,0.000000,0.000000 --3.0,185.880000,0.000000,0.000000 --3.0,186.000000,0.000000,0.000000 --3.0,186.120000,0.000000,0.000000 --3.0,186.240000,0.000000,0.000000 --3.0,186.360000,0.000000,0.000000 --3.0,186.480000,0.000000,0.000000 --3.0,186.600000,0.000000,0.000000 --3.0,186.720000,0.000000,0.000000 --3.0,186.840000,0.000000,0.000000 --3.0,186.960000,0.000000,0.000000 --3.0,187.080000,0.000000,0.000000 --3.0,187.200000,0.000000,0.000000 --3.0,187.320000,0.000000,0.000000 --3.0,187.440000,0.000000,0.000000 --3.0,187.560000,0.000000,0.000000 --3.0,187.680000,0.000000,0.000000 --3.0,187.800000,0.000000,0.000000 --3.0,187.920000,0.000000,0.000000 --3.0,188.040000,0.000000,0.000000 --3.0,188.160000,0.000000,0.000000 --3.0,188.280000,0.000000,0.000000 --3.0,188.400000,0.000000,0.000000 --3.0,188.520000,0.000000,0.000000 --3.0,188.640000,0.000000,0.000000 --3.0,188.760000,0.000000,0.000000 --3.0,188.880000,0.000000,0.000000 --3.0,189.000000,0.000000,0.000000 --3.0,189.120000,0.000000,0.000000 --3.0,189.240000,0.000000,0.000000 --3.0,189.360000,0.000000,0.000000 --3.0,189.480000,0.000000,0.000000 --3.0,189.600000,0.000000,0.000000 --3.0,189.720000,0.000000,0.000000 --3.0,189.840000,0.000000,0.000000 --3.0,189.960000,0.000000,0.000000 --3.0,190.080000,0.000000,0.000000 --3.0,190.200000,0.000000,0.000000 --3.0,190.320000,0.000000,0.000000 --3.0,190.440000,0.000000,0.000000 --3.0,190.560000,0.000000,0.000000 --3.0,190.680000,0.000000,0.000000 --3.0,190.800000,0.000000,0.000000 --3.0,190.920000,0.000000,0.000000 --3.0,191.040000,0.000000,0.000000 --3.0,191.160000,0.000000,0.000000 --3.0,191.280000,0.000000,0.000000 --3.0,191.400000,0.000000,0.000000 --3.0,191.520000,0.000000,0.000000 --3.0,191.640000,0.000000,0.000000 --3.0,191.760000,0.000000,0.000000 --3.0,191.880000,0.000000,0.000000 --3.0,192.000000,0.000000,0.000000 --3.0,192.120000,0.000000,0.000000 --3.0,192.240000,0.000000,0.000000 --3.0,192.360000,0.000000,0.000000 --3.0,192.480000,0.000000,0.000000 --3.0,192.600000,0.000000,0.000000 --3.0,192.720000,0.000000,0.000000 --3.0,192.840000,0.000000,0.000000 --3.0,192.960000,0.000000,0.000000 --3.0,193.080000,0.000000,0.000000 --3.0,193.200000,0.000000,0.000000 --3.0,193.320000,0.000000,0.000000 --3.0,193.440000,0.000000,0.000000 --3.0,193.560000,0.000000,0.000000 --3.0,193.680000,0.000000,0.000000 --3.0,193.800000,0.000000,0.000000 --3.0,193.920000,0.000000,0.000000 --3.0,194.040000,0.000000,0.000000 --3.0,194.160000,0.000000,0.000000 --3.0,194.280000,0.000000,0.000000 --3.0,194.400000,0.000000,0.000000 --3.0,194.520000,0.000000,0.000000 --3.0,194.640000,0.000000,0.000000 --3.0,194.760000,0.000000,0.000000 --3.0,194.880000,0.000000,0.000000 --3.0,195.000000,0.000000,0.000000 --3.0,195.120000,0.000000,0.000000 --3.0,195.240000,0.000000,0.000000 --3.0,195.360000,0.000000,0.000000 --3.0,195.480000,0.000000,0.000000 --3.0,195.600000,0.000000,0.000000 --3.0,195.720000,0.000000,0.000000 --3.0,195.840000,0.000000,0.000000 --3.0,195.960000,0.000000,0.000000 --3.0,196.080000,0.000000,0.000000 --3.0,196.200000,0.000000,0.000000 --3.0,196.320000,0.000000,0.000000 --3.0,196.440000,0.000000,0.000000 --3.0,196.560000,0.000000,0.000000 --3.0,196.680000,0.000000,0.000000 --3.0,196.800000,0.000000,0.000000 --3.0,196.920000,0.000000,0.000000 --3.0,197.040000,0.000000,0.000000 --3.0,197.160000,0.000000,0.000000 --3.0,197.280000,0.000000,0.000000 --3.0,197.400000,0.000000,0.000000 --3.0,197.520000,0.000000,0.000000 --3.0,197.640000,0.000000,0.000000 --3.0,197.760000,0.000000,0.000000 --3.0,197.880000,0.000000,0.000000 --3.0,198.000000,0.000000,0.000000 --3.0,198.120000,0.000000,0.000000 --3.0,198.240000,0.000000,0.000000 --3.0,198.360000,0.000000,0.000000 --3.0,198.480000,0.000000,0.000000 --3.0,198.600000,0.000000,0.000000 --3.0,198.720000,0.000000,0.000000 --3.0,198.840000,0.000000,0.000000 --3.0,198.960000,0.000000,0.000000 --3.0,199.080000,0.000000,0.000000 --3.0,199.200000,0.000000,0.000000 --3.0,199.320000,0.000000,0.000000 --3.0,199.440000,0.000000,0.000000 --3.0,199.560000,0.000000,0.000000 --3.0,199.680000,0.000000,0.000000 --3.0,199.800000,0.000000,0.000000 --3.0,199.920000,0.000000,0.000000 --3.0,200.040000,0.000000,0.000000 --3.0,200.160000,0.000000,0.000000 --3.0,200.280000,0.000000,0.000000 --3.0,200.400000,0.000000,0.000000 --3.0,200.520000,0.000000,0.000000 --3.0,200.640000,0.000000,0.000000 --3.0,200.760000,0.000000,0.000000 --3.0,200.880000,0.000000,0.000000 --3.0,201.000000,0.000000,0.000000 --3.0,201.120000,0.000000,0.000000 --3.0,201.240000,0.000000,0.000000 --3.0,201.360000,0.000000,0.000000 --3.0,201.480000,0.000000,0.000000 --3.0,201.600000,0.000000,0.000000 --3.0,201.720000,0.000000,0.000000 --3.0,201.840000,0.000000,0.000000 --3.0,201.960000,0.000000,0.000000 --3.0,202.080000,0.000000,0.000000 --3.0,202.200000,0.000000,0.000000 --3.0,202.320000,0.000000,0.000000 --3.0,202.440000,0.000000,0.000000 --3.0,202.560000,0.000000,0.000000 --3.0,202.680000,0.000000,0.000000 --3.0,202.800000,0.000000,0.000000 --3.0,202.920000,0.000000,0.000000 --3.0,203.040000,0.000000,0.000000 --3.0,203.160000,0.000000,0.000000 --3.0,203.280000,0.000000,0.000000 --3.0,203.400000,0.000000,0.000000 --3.0,203.520000,0.000000,0.000000 --3.0,203.640000,0.000000,0.000000 --3.0,203.760000,0.000000,0.000000 --3.0,203.880000,0.000000,0.000000 --3.0,204.000000,0.000000,0.000000 --3.0,204.120000,0.000000,0.000000 --3.0,204.240000,0.000000,0.000000 --3.0,204.360000,0.000000,0.000000 --3.0,204.480000,0.000000,0.000000 --3.0,204.600000,0.000000,0.000000 --3.0,204.720000,0.000000,0.000000 --3.0,204.840000,0.000000,0.000000 --3.0,204.960000,0.000000,0.000000 --3.0,205.080000,0.000000,0.000000 --3.0,205.200000,0.000000,0.000000 --3.0,205.320000,0.000000,0.000000 --3.0,205.440000,0.000000,0.000000 --3.0,205.560000,0.000000,0.000000 --3.0,205.680000,0.000000,0.000000 --3.0,205.800000,0.000000,0.000000 --3.0,205.920000,0.000000,0.000000 --3.0,206.040000,0.000000,0.000000 --3.0,206.160000,0.000000,0.000000 --3.0,206.280000,0.000000,0.000000 --3.0,206.400000,0.000000,0.000000 --3.0,206.520000,0.000000,0.000000 --3.0,206.640000,0.000000,0.000000 --3.0,206.760000,0.000000,0.000000 --3.0,206.880000,0.000000,0.000000 --3.0,207.000000,0.000000,0.000000 --3.0,207.120000,0.000000,0.000000 --3.0,207.240000,0.000000,0.000000 --3.0,207.360000,0.000000,0.000000 --3.0,207.480000,0.000000,0.000000 --3.0,207.600000,0.000000,0.000000 --3.0,207.720000,0.000000,0.000000 --3.0,207.840000,0.000000,0.000000 --3.0,207.960000,0.000000,0.000000 --3.0,208.080000,0.000000,0.000000 --3.0,208.200000,0.000000,0.000000 --3.0,208.320000,0.000000,0.000000 --3.0,208.440000,0.000000,0.000000 --3.0,208.560000,0.000000,0.000000 --3.0,208.680000,0.000000,0.000000 --3.0,208.800000,0.000000,0.000000 --3.0,208.920000,0.000000,0.000000 --3.0,209.040000,0.000000,0.000000 --3.0,209.160000,0.000000,0.000000 --3.0,209.280000,0.000000,0.000000 --3.0,209.400000,0.000000,0.000000 --3.0,209.520000,0.000000,0.000000 --3.0,209.640000,0.000000,0.000000 --3.0,209.760000,0.000000,0.000000 --3.0,209.880000,0.000000,0.000000 --3.0,210.000000,0.000000,0.000000 --3.0,210.120000,0.000000,0.000000 --3.0,210.240000,0.000000,0.000000 --3.0,210.360000,0.000000,0.000000 --3.0,210.480000,0.000000,0.000000 --3.0,210.600000,0.000000,0.000000 --3.0,210.720000,0.000000,0.000000 --3.0,210.840000,0.000000,0.000000 --3.0,210.960000,0.000000,0.000000 --3.0,211.080000,0.000000,0.000000 --3.0,211.200000,0.000000,0.000000 --3.0,211.320000,0.000000,0.000000 --3.0,211.440000,0.000000,0.000000 --3.0,211.560000,0.000000,0.000000 --3.0,211.680000,0.000000,0.000000 --3.0,211.800000,0.000000,0.000000 --3.0,211.920000,0.000000,0.000000 --3.0,212.040000,0.000000,0.000000 --3.0,212.160000,0.000000,0.000000 --3.0,212.280000,0.000000,0.000000 --3.0,212.400000,0.000000,0.000000 --3.0,212.520000,0.000000,0.000000 --3.0,212.640000,0.000000,0.000000 --3.0,212.760000,0.000000,0.000000 --3.0,212.880000,0.000000,0.000000 --3.0,213.000000,0.000000,0.000000 --3.0,213.120000,0.000000,0.000000 --3.0,213.240000,0.000000,0.000000 --3.0,213.360000,0.000000,0.000000 --3.0,213.480000,0.000000,0.000000 --3.0,213.600000,0.000000,0.000000 --3.0,213.720000,0.000000,0.000000 --3.0,213.840000,0.000000,0.000000 --3.0,213.960000,0.000000,0.000000 --3.0,214.080000,0.000000,0.000000 --3.0,214.200000,0.000000,0.000000 --3.0,214.320000,0.000000,0.000000 --3.0,214.440000,0.000000,0.000000 --3.0,214.560000,0.000000,0.000000 --3.0,214.680000,0.000000,0.000000 --3.0,214.800000,0.000000,0.000000 --3.0,214.920000,0.000000,0.000000 --3.0,215.040000,0.000000,0.000000 --3.0,215.160000,0.000000,0.000000 --3.0,215.280000,0.000000,0.000000 --3.0,215.400000,0.000000,0.000000 --3.0,215.520000,0.000000,0.000000 --3.0,215.640000,0.000000,0.000000 --3.0,215.760000,0.000000,0.000000 --3.0,215.880000,0.000000,0.000000 --3.0,216.000000,0.000000,0.000000 --3.0,216.120000,0.000000,0.000000 --3.0,216.240000,0.000000,0.000000 --3.0,216.360000,0.000000,0.000000 --3.0,216.480000,0.000000,0.000000 --3.0,216.600000,0.000000,0.000000 --3.0,216.720000,0.000000,0.000000 --3.0,216.840000,0.000000,0.000000 --3.0,216.960000,0.000000,0.000000 --3.0,217.080000,0.000000,0.000000 --3.0,217.200000,0.000000,0.000000 --3.0,217.320000,0.000000,0.000000 --3.0,217.440000,0.000000,0.000000 --3.0,217.560000,0.000000,0.000000 --3.0,217.680000,0.000000,0.000000 --3.0,217.800000,0.000000,0.000000 --3.0,217.920000,0.000000,0.000000 --3.0,218.040000,0.000000,0.000000 --3.0,218.160000,0.000000,0.000000 --3.0,218.280000,0.000000,0.000000 --3.0,218.400000,0.000000,0.000000 --3.0,218.520000,0.000000,0.000000 --3.0,218.640000,0.000000,0.000000 --3.0,218.760000,0.000000,0.000000 --3.0,218.880000,0.000000,0.000000 --3.0,219.000000,0.000000,0.000000 --3.0,219.120000,0.000000,0.000000 --3.0,219.240000,0.000000,0.000000 --3.0,219.360000,0.000000,0.000000 --3.0,219.480000,0.000000,0.000000 --3.0,219.600000,0.000000,0.000000 --3.0,219.720000,0.000000,0.000000 --3.0,219.840000,0.000000,0.000000 --3.0,219.960000,0.000000,0.000000 --3.0,220.080000,0.000000,0.000000 --3.0,220.200000,0.000000,0.000000 --3.0,220.320000,0.000000,0.000000 --3.0,220.440000,0.000000,0.000000 --3.0,220.560000,0.000000,0.000000 --3.0,220.680000,0.000000,0.000000 --3.0,220.800000,0.000000,0.000000 --3.0,220.920000,0.000000,0.000000 --3.0,221.040000,0.000000,0.000000 --3.0,221.160000,0.000000,0.000000 --3.0,221.280000,0.000000,0.000000 --3.0,221.400000,0.000000,0.000000 --3.0,221.520000,0.000000,0.000000 --3.0,221.640000,0.000000,0.000000 --3.0,221.760000,0.000000,0.000000 --3.0,221.880000,0.000000,0.000000 --3.0,222.000000,0.000000,0.000000 --3.0,222.120000,0.000000,0.000000 --3.0,222.240000,0.000000,0.000000 --3.0,222.360000,0.000000,0.000000 --3.0,222.480000,0.000000,0.000000 --3.0,222.600000,0.000000,0.000000 --3.0,222.720000,0.000000,0.000000 --3.0,222.840000,0.000000,0.000000 --3.0,222.960000,0.000000,0.000000 --3.0,223.080000,0.000000,0.000000 --3.0,223.200000,0.000000,0.000000 --3.0,223.320000,0.000000,0.000000 --3.0,223.440000,0.000000,0.000000 --3.0,223.560000,0.000000,0.000000 --3.0,223.680000,0.000000,0.000000 --3.0,223.800000,0.000000,0.000000 --3.0,223.920000,0.000000,0.000000 --3.0,224.040000,0.000000,0.000000 --3.0,224.160000,0.000000,0.000000 --3.0,224.280000,0.000000,0.000000 --3.0,224.400000,0.000000,0.000000 --3.0,224.520000,0.000000,0.000000 --3.0,224.640000,0.000000,0.000000 --3.0,224.760000,0.000000,0.000000 --3.0,224.880000,0.000000,0.000000 --3.0,225.000000,0.000000,0.000000 --3.0,225.120000,0.000000,0.000000 --3.0,225.240000,0.000000,0.000000 --3.0,225.360000,0.000000,0.000000 --3.0,225.480000,0.000000,0.000000 --3.0,225.600000,0.000000,0.000000 --3.0,225.720000,0.000000,0.000000 --3.0,225.840000,0.000000,0.000000 --3.0,225.960000,0.000000,0.000000 --3.0,226.080000,0.000000,0.000000 --3.0,226.200000,0.000000,0.000000 --3.0,226.320000,0.000000,0.000000 --3.0,226.440000,0.000000,0.000000 --3.0,226.560000,0.000000,0.000000 --3.0,226.680000,0.000000,0.000000 --3.0,226.800000,0.000000,0.000000 --3.0,226.920000,0.000000,0.000000 --3.0,227.040000,0.000000,0.000000 --3.0,227.160000,0.000000,0.000000 --3.0,227.280000,0.000000,0.000000 --3.0,227.400000,0.000000,0.000000 --3.0,227.520000,0.000000,0.000000 --3.0,227.640000,0.000000,0.000000 --3.0,227.760000,0.000000,0.000000 --3.0,227.880000,0.000000,0.000000 --3.0,228.000000,0.000000,0.000000 --3.0,228.120000,0.000000,0.000000 --3.0,228.240000,0.000000,0.000000 --3.0,228.360000,0.000000,0.000000 --3.0,228.480000,0.000000,0.000000 --3.0,228.600000,0.000000,0.000000 --3.0,228.720000,0.000000,0.000000 --3.0,228.840000,0.000000,0.000000 --3.0,228.960000,0.000000,0.000000 --3.0,229.080000,0.000000,0.000000 --3.0,229.200000,0.000000,0.000000 --3.0,229.320000,0.000000,0.000000 --3.0,229.440000,0.000000,0.000000 --3.0,229.560000,0.000000,0.000000 --3.0,229.680000,0.000000,0.000000 --3.0,229.800000,0.000000,0.000000 --3.0,229.920000,0.000000,0.000000 --3.0,230.040000,0.000000,0.000000 --3.0,230.160000,0.000000,0.000000 --3.0,230.280000,0.000000,0.000000 --3.0,230.400000,0.000000,0.000000 --3.0,230.520000,0.000000,0.000000 --3.0,230.640000,0.000000,0.000000 --3.0,230.760000,0.000000,0.000000 --3.0,230.880000,0.000000,0.000000 --3.0,231.000000,0.000000,0.000000 --3.0,231.120000,0.000000,0.000000 --3.0,231.240000,0.000000,0.000000 --3.0,231.360000,0.000000,0.000000 --3.0,231.480000,0.000000,0.000000 --3.0,231.600000,0.000000,0.000000 --3.0,231.720000,0.000000,0.000000 --3.0,231.840000,0.000000,0.000000 --3.0,231.960000,0.000000,0.000000 --3.0,232.080000,0.000000,0.000000 --3.0,232.200000,0.000000,0.000000 --3.0,232.320000,0.000000,0.000000 --3.0,232.440000,0.000000,0.000000 --3.0,232.560000,0.000000,0.000000 --3.0,232.680000,0.000000,0.000000 --3.0,232.800000,0.000000,0.000000 --3.0,232.920000,0.000000,0.000000 --3.0,233.040000,0.000000,0.000000 --3.0,233.160000,0.000000,0.000000 --3.0,233.280000,0.000000,0.000000 --3.0,233.400000,0.000000,0.000000 --3.0,233.520000,0.000000,0.000000 --3.0,233.640000,0.000000,0.000000 --3.0,233.760000,0.000000,0.000000 --3.0,233.880000,0.000000,0.000000 --3.0,234.000000,0.000000,0.000000 --3.0,234.120000,0.000000,0.000000 --3.0,234.240000,0.000000,0.000000 --3.0,234.360000,0.000000,0.000000 --3.0,234.480000,0.000000,0.000000 --3.0,234.600000,0.000000,0.000000 --3.0,234.720000,0.000000,0.000000 --3.0,234.840000,0.000000,0.000000 --3.0,234.960000,0.000000,0.000000 --3.0,235.080000,0.000000,0.000000 --3.0,235.200000,0.000000,0.000000 --3.0,235.320000,0.000000,0.000000 --3.0,235.440000,0.000000,0.000000 --3.0,235.560000,0.000000,0.000000 --3.0,235.680000,0.000000,0.000000 --3.0,235.800000,0.000000,0.000000 --3.0,235.920000,0.000000,0.000000 --3.0,236.040000,0.000000,0.000000 --3.0,236.160000,0.000000,0.000000 --3.0,236.280000,0.000000,0.000000 --3.0,236.400000,0.000000,0.000000 --3.0,236.520000,0.000000,0.000000 --3.0,236.640000,0.000000,0.000000 --3.0,236.760000,0.000000,0.000000 --3.0,236.880000,0.000000,0.000000 --3.0,237.000000,0.000000,0.000000 --3.0,237.120000,0.000000,0.000000 --3.0,237.240000,0.000000,0.000000 --3.0,237.360000,0.000000,0.000000 --3.0,237.480000,0.000000,0.000000 --3.0,237.600000,0.000000,0.000000 --3.0,237.720000,0.000000,0.000000 --3.0,237.840000,0.000000,0.000000 --3.0,237.960000,0.000000,0.000000 --3.0,238.080000,0.000000,0.000000 --3.0,238.200000,0.000000,0.000000 --3.0,238.320000,0.000000,0.000000 --3.0,238.440000,0.000000,0.000000 --3.0,238.560000,0.000000,0.000000 --3.0,238.680000,0.000000,0.000000 --3.0,238.800000,0.000000,0.000000 --3.0,238.920000,0.000000,0.000000 --3.0,239.040000,0.000000,0.000000 --3.0,239.160000,0.000000,0.000000 --3.0,239.280000,0.000000,0.000000 --3.0,239.400000,0.000000,0.000000 --3.0,239.520000,0.000000,0.000000 --3.0,239.640000,0.000000,0.000000 --3.0,239.760000,0.000000,0.000000 --3.0,239.880000,0.000000,0.000000 --3.0,240.000000,0.000000,0.000000 --3.0,240.120000,0.000000,0.000000 --3.0,240.240000,0.000000,0.000000 --3.0,240.360000,0.000000,0.000000 --3.0,240.480000,0.000000,0.000000 --3.0,240.600000,0.000000,0.000000 --3.0,240.720000,0.000000,0.000000 --3.0,240.840000,0.000000,0.000000 --3.0,240.960000,0.000000,0.000000 --3.0,241.080000,0.000000,0.000000 --3.0,241.200000,0.000000,0.000000 --3.0,241.320000,0.000000,0.000000 --3.0,241.440000,0.000000,0.000000 --3.0,241.560000,0.000000,0.000000 --3.0,241.680000,0.000000,0.000000 --3.0,241.800000,0.000000,0.000000 --3.0,241.920000,0.000000,0.000000 --3.0,242.040000,0.000000,0.000000 --3.0,242.160000,0.000000,0.000000 --3.0,242.280000,0.000000,0.000000 --3.0,242.400000,0.000000,0.000000 --3.0,242.520000,0.000000,0.000000 --3.0,242.640000,0.000000,0.000000 --3.0,242.760000,0.000000,0.000000 --3.0,242.880000,0.000000,0.000000 --3.0,243.000000,0.000000,0.000000 --3.0,243.120000,0.000000,0.000000 --3.0,243.240000,0.000000,0.000000 --3.0,243.360000,0.000000,0.000000 --3.0,243.480000,0.000000,0.000000 --3.0,243.600000,0.000000,0.000000 --3.0,243.720000,0.000000,0.000000 --3.0,243.840000,0.000000,0.000000 --3.0,243.960000,0.000000,0.000000 --3.0,244.080000,0.000000,0.000000 --3.0,244.200000,0.000000,0.000000 --3.0,244.320000,0.000000,0.000000 --3.0,244.440000,0.000000,0.000000 --3.0,244.560000,0.000000,0.000000 --3.0,244.680000,0.000000,0.000000 --3.0,244.800000,0.000000,0.000000 --3.0,244.920000,0.000000,0.000000 --3.0,245.040000,0.000000,0.000000 --3.0,245.160000,0.000000,0.000000 --3.0,245.280000,0.000000,0.000000 --3.0,245.400000,0.000000,0.000000 --3.0,245.520000,0.000000,0.000000 --3.0,245.640000,0.000000,0.000000 --3.0,245.760000,0.000000,0.000000 --3.0,245.880000,0.000000,0.000000 --3.0,246.000000,0.000000,0.000000 --3.0,246.120000,0.000000,0.000000 --3.0,246.240000,0.000000,0.000000 --3.0,246.360000,0.000000,0.000000 --3.0,246.480000,0.000000,0.000000 --3.0,246.600000,0.000000,0.000000 --3.0,246.720000,0.000000,0.000000 --3.0,246.840000,0.000000,0.000000 --3.0,246.960000,0.000000,0.000000 --3.0,247.080000,0.000000,0.000000 --3.0,247.200000,0.000000,0.000000 --3.0,247.320000,0.000000,0.000000 --3.0,247.440000,0.000000,0.000000 --3.0,247.560000,0.000000,0.000000 --3.0,247.680000,0.000000,0.000000 --3.0,247.800000,0.000000,0.000000 --3.0,247.920000,0.000000,0.000000 --3.0,248.040000,0.000000,0.000000 --3.0,248.160000,0.000000,0.000000 --3.0,248.280000,0.000000,0.000000 --3.0,248.400000,0.000000,0.000000 --3.0,248.520000,0.000000,0.000000 --3.0,248.640000,0.000000,0.000000 --3.0,248.760000,0.000000,0.000000 --3.0,248.880000,0.000000,0.000000 --3.0,249.000000,0.000000,0.000000 --3.0,249.120000,0.000000,0.000000 --3.0,249.240000,0.000000,0.000000 --3.0,249.360000,0.000000,0.000000 --3.0,249.480000,0.000000,0.000000 --3.0,249.600000,0.000000,0.000000 --3.0,249.720000,0.000000,0.000000 --3.0,249.840000,0.000000,0.000000 --3.0,249.960000,0.000000,0.000000 --3.0,250.080000,0.000000,0.000000 --3.0,250.200000,0.000000,0.000000 --3.0,250.320000,0.000000,0.000000 --3.0,250.440000,0.000000,0.000000 --3.0,250.560000,0.000000,0.000000 --3.0,250.680000,0.000000,0.000000 --3.0,250.800000,0.000000,0.000000 --3.0,250.920000,0.000000,0.000000 --3.0,251.040000,0.000000,0.000000 --3.0,251.160000,0.000000,0.000000 --3.0,251.280000,0.000000,0.000000 --3.0,251.400000,0.000000,0.000000 --3.0,251.520000,0.000000,0.000000 --3.0,251.640000,0.000000,0.000000 --3.0,251.760000,0.000000,0.000000 --3.0,251.880000,0.000000,0.000000 --3.0,252.000000,0.000000,0.000000 --3.0,252.120000,0.000000,0.000000 --3.0,252.240000,0.000000,0.000000 --3.0,252.360000,0.000000,0.000000 --3.0,252.480000,0.000000,0.000000 --3.0,252.600000,0.000000,0.000000 --3.0,252.720000,0.000000,0.000000 --3.0,252.840000,0.000000,0.000000 --3.0,252.960000,0.000000,0.000000 --3.0,253.080000,0.000000,0.000000 --3.0,253.200000,0.000000,0.000000 --3.0,253.320000,0.000000,0.000000 --3.0,253.440000,0.000000,0.000000 --3.0,253.560000,0.000000,0.000000 --3.0,253.680000,0.000000,0.000000 --3.0,253.800000,0.000000,0.000000 --3.0,253.920000,0.000000,0.000000 --3.0,254.040000,0.000000,0.000000 --3.0,254.160000,0.000000,0.000000 --3.0,254.280000,0.000000,0.000000 --3.0,254.400000,0.000000,0.000000 --3.0,254.520000,0.000000,0.000000 --3.0,254.640000,0.000000,0.000000 --3.0,254.760000,0.000000,0.000000 --3.0,254.880000,0.000000,0.000000 --3.0,255.000000,0.000000,0.000000 --3.0,255.120000,0.000000,0.000000 --3.0,255.240000,0.000000,0.000000 --3.0,255.360000,0.000000,0.000000 --3.0,255.480000,0.000000,0.000000 --3.0,255.600000,0.000000,0.000000 --3.0,255.720000,0.000000,0.000000 --3.0,255.840000,0.000000,0.000000 --3.0,255.960000,0.000000,0.000000 --3.0,256.080000,0.000000,0.000000 --3.0,256.200000,0.000000,0.000000 --3.0,256.320000,0.000000,0.000000 --3.0,256.440000,0.000000,0.000000 --3.0,256.560000,0.000000,0.000000 --3.0,256.680000,0.000000,0.000000 --3.0,256.800000,0.000000,0.000000 --3.0,256.920000,0.000000,0.000000 --3.0,257.040000,0.000000,0.000000 --3.0,257.160000,0.000000,0.000000 --3.0,257.280000,0.000000,0.000000 --3.0,257.400000,0.000000,0.000000 --3.0,257.520000,0.000000,0.000000 --3.0,257.640000,0.000000,0.000000 --3.0,257.760000,0.000000,0.000000 --3.0,257.880000,0.000000,0.000000 --3.0,258.000000,0.000000,0.000000 --3.0,258.120000,0.000000,0.000000 --3.0,258.240000,0.000000,0.000000 --3.0,258.360000,0.000000,0.000000 --3.0,258.480000,0.000000,0.000000 --3.0,258.600000,0.000000,0.000000 --3.0,258.720000,0.000000,0.000000 --3.0,258.840000,0.000000,0.000000 --3.0,258.960000,0.000000,0.000000 --3.0,259.080000,0.000000,0.000000 --3.0,259.200000,0.000000,0.000000 --3.0,259.320000,0.000000,0.000000 --3.0,259.440000,0.000000,0.000000 --3.0,259.560000,0.000000,0.000000 --3.0,259.680000,0.000000,0.000000 --3.0,259.800000,0.000000,0.000000 --3.0,259.920000,0.000000,0.000000 --3.0,260.040000,0.000000,0.000000 --3.0,260.160000,0.000000,0.000000 --3.0,260.280000,0.000000,0.000000 --3.0,260.400000,0.000000,0.000000 --3.0,260.520000,0.000000,0.000000 --3.0,260.640000,0.000000,0.000000 --3.0,260.760000,0.000000,0.000000 --3.0,260.880000,0.000000,0.000000 --3.0,261.000000,0.000000,0.000000 --3.0,261.120000,0.000000,0.000000 --3.0,261.240000,0.000000,0.000000 --3.0,261.360000,0.000000,0.000000 --3.0,261.480000,0.000000,0.000000 --3.0,261.600000,0.000000,0.000000 --3.0,261.720000,0.000000,0.000000 --3.0,261.840000,0.000000,0.000000 --3.0,261.960000,0.000000,0.000000 --3.0,262.080000,0.000000,0.000000 --3.0,262.200000,0.000000,0.000000 --3.0,262.320000,0.000000,0.000000 --3.0,262.440000,0.000000,0.000000 --3.0,262.560000,0.000000,0.000000 --3.0,262.680000,0.000000,0.000000 --3.0,262.800000,0.000000,0.000000 --3.0,262.920000,0.000000,0.000000 --3.0,263.040000,0.000000,0.000000 --3.0,263.160000,0.000000,0.000000 --3.0,263.280000,0.000000,0.000000 --3.0,263.400000,0.000000,0.000000 --3.0,263.520000,0.000000,0.000000 --3.0,263.640000,0.000000,0.000000 --3.0,263.760000,0.000000,0.000000 --3.0,263.880000,0.000000,0.000000 --3.0,264.000000,0.000000,0.000000 --3.0,264.120000,0.000000,0.000000 --3.0,264.240000,0.000000,0.000000 --3.0,264.360000,0.000000,0.000000 --3.0,264.480000,0.000000,0.000000 --3.0,264.600000,0.000000,0.000000 --3.0,264.720000,0.000000,0.000000 --3.0,264.840000,0.000000,0.000000 --3.0,264.960000,0.000000,0.000000 --3.0,265.080000,0.000000,0.000000 --3.0,265.200000,0.000000,0.000000 --3.0,265.320000,0.000000,0.000000 --3.0,265.440000,0.000000,0.000000 --3.0,265.560000,0.000000,0.000000 --3.0,265.680000,0.000000,0.000000 --3.0,265.800000,0.000000,0.000000 --3.0,265.920000,0.000000,0.000000 --3.0,266.040000,0.000000,0.000000 --3.0,266.160000,0.000000,0.000000 --3.0,266.280000,0.000000,0.000000 --3.0,266.400000,0.000000,0.000000 --3.0,266.520000,0.000000,0.000000 --3.0,266.640000,0.000000,0.000000 --3.0,266.760000,0.000000,0.000000 --3.0,266.880000,0.000000,0.000000 --3.0,267.000000,0.000000,0.000000 --3.0,267.120000,0.000000,0.000000 --3.0,267.240000,0.000000,0.000000 --3.0,267.360000,0.000000,0.000000 --3.0,267.480000,0.000000,0.000000 --3.0,267.600000,0.000000,0.000000 --3.0,267.720000,0.000000,0.000000 --3.0,267.840000,0.000000,0.000000 --3.0,267.960000,0.000000,0.000000 --3.0,268.080000,0.000000,0.000000 --3.0,268.200000,0.000000,0.000000 --3.0,268.320000,0.000000,0.000000 --3.0,268.440000,0.000000,0.000000 --3.0,268.560000,0.000000,0.000000 --3.0,268.680000,0.000000,0.000000 --3.0,268.800000,0.000000,0.000000 --3.0,268.920000,0.000000,0.000000 --3.0,269.040000,0.000000,0.000000 --3.0,269.160000,0.000000,0.000000 --3.0,269.280000,0.000000,0.000000 --3.0,269.400000,0.000000,0.000000 --3.0,269.520000,0.000000,0.000000 --3.0,269.640000,0.000000,0.000000 --3.0,269.760000,0.000000,0.000000 --3.0,269.880000,0.000000,0.000000 --3.0,270.000000,0.000000,0.000000 --3.0,270.120000,0.000000,0.000000 --3.0,270.240000,0.000000,0.000000 --3.0,270.360000,0.000000,0.000000 --3.0,270.480000,0.000000,0.000000 --3.0,270.600000,0.000000,0.000000 --3.0,270.720000,0.000000,0.000000 --3.0,270.840000,0.000000,0.000000 --3.0,270.960000,0.000000,0.000000 --3.0,271.080000,0.000000,0.000000 --3.0,271.200000,0.000000,0.000000 --3.0,271.320000,0.000000,0.000000 --3.0,271.440000,0.000000,0.000000 --3.0,271.560000,0.000000,0.000000 --3.0,271.680000,0.000000,0.000000 --3.0,271.800000,0.000000,0.000000 --3.0,271.920000,0.000000,0.000000 --3.0,272.040000,0.000000,0.000000 --3.0,272.160000,0.000000,0.000000 --3.0,272.280000,0.000000,0.000000 --3.0,272.400000,0.000000,0.000000 --3.0,272.520000,0.000000,0.000000 --3.0,272.640000,0.000000,0.000000 --3.0,272.760000,0.000000,0.000000 --3.0,272.880000,0.000000,0.000000 --3.0,273.000000,0.000000,0.000000 --3.0,273.120000,0.000000,0.000000 --3.0,273.240000,0.000000,0.000000 --3.0,273.360000,0.000000,0.000000 --3.0,273.480000,0.000000,0.000000 --3.0,273.600000,0.000000,0.000000 --3.0,273.720000,0.000000,0.000000 --3.0,273.840000,0.000000,0.000000 --3.0,273.960000,0.000000,0.000000 --3.0,274.080000,0.000000,0.000000 --3.0,274.200000,0.000000,0.000000 --3.0,274.320000,0.000000,0.000000 --3.0,274.440000,0.000000,0.000000 --3.0,274.560000,0.000000,0.000000 --3.0,274.680000,0.000000,0.000000 --3.0,274.800000,0.000000,0.000000 --3.0,274.920000,0.000000,0.000000 --3.0,275.040000,0.000000,0.000000 --3.0,275.160000,0.000000,0.000000 --3.0,275.280000,0.000000,0.000000 --3.0,275.400000,0.000000,0.000000 --3.0,275.520000,0.000000,0.000000 --3.0,275.640000,0.000000,0.000000 --3.0,275.760000,0.000000,0.000000 --3.0,275.880000,0.000000,0.000000 --3.0,276.000000,0.000000,0.000000 --3.0,276.120000,0.000000,0.000000 --3.0,276.240000,0.000000,0.000000 --3.0,276.360000,0.000000,0.000000 --3.0,276.480000,0.000000,0.000000 --3.0,276.600000,0.000000,0.000000 --3.0,276.720000,0.000000,0.000000 --3.0,276.840000,0.000000,0.000000 --3.0,276.960000,0.000000,0.000000 --3.0,277.080000,0.000000,0.000000 --3.0,277.200000,0.000000,0.000000 --3.0,277.320000,0.000000,0.000000 --3.0,277.440000,0.000000,0.000000 --3.0,277.560000,0.000000,0.000000 --3.0,277.680000,0.000000,0.000000 --3.0,277.800000,0.000000,0.000000 --3.0,277.920000,0.000000,0.000000 --3.0,278.040000,0.000000,0.000000 --3.0,278.160000,0.000000,0.000000 --3.0,278.280000,0.000000,0.000000 --3.0,278.400000,0.000000,0.000000 --3.0,278.520000,0.000000,0.000000 --3.0,278.640000,0.000000,0.000000 --3.0,278.760000,0.000000,0.000000 --3.0,278.880000,0.000000,0.000000 --3.0,279.000000,0.000000,0.000000 --3.0,279.120000,0.000000,0.000000 --3.0,279.240000,0.000000,0.000000 --3.0,279.360000,0.000000,0.000000 --3.0,279.480000,0.000000,0.000000 --3.0,279.600000,0.000000,0.000000 --3.0,279.720000,0.000000,0.000000 --3.0,279.840000,0.000000,0.000000 --3.0,279.960000,0.000000,0.000000 --3.0,280.080000,0.000000,0.000000 --3.0,280.200000,0.000000,0.000000 --3.0,280.320000,0.000000,0.000000 --3.0,280.440000,0.000000,0.000000 --3.0,280.560000,0.000000,0.000000 --3.0,280.680000,0.000000,0.000000 --3.0,280.800000,0.000000,0.000000 --3.0,280.920000,0.000000,0.000000 --3.0,281.040000,0.000000,0.000000 --3.0,281.160000,0.000000,0.000000 --3.0,281.280000,0.000000,0.000000 --3.0,281.400000,0.000000,0.000000 --3.0,281.520000,0.000000,0.000000 --3.0,281.640000,0.000000,0.000000 --3.0,281.760000,0.000000,0.000000 --3.0,281.880000,0.000000,0.000000 --3.0,282.000000,0.000000,0.000000 --3.0,282.120000,0.000000,0.000000 --3.0,282.240000,0.000000,0.000000 --3.0,282.360000,0.000000,0.000000 --3.0,282.480000,0.000000,0.000000 --3.0,282.600000,0.000000,0.000000 --3.0,282.720000,0.000000,0.000000 --3.0,282.840000,0.000000,0.000000 --3.0,282.960000,0.000000,0.000000 --3.0,283.080000,0.000000,0.000000 --3.0,283.200000,0.000000,0.000000 --3.0,283.320000,0.000000,0.000000 --3.0,283.440000,0.000000,0.000000 --3.0,283.560000,0.000000,0.000000 --3.0,283.680000,0.000000,0.000000 --3.0,283.800000,0.000000,0.000000 --3.0,283.920000,0.000000,0.000000 --3.0,284.040000,0.000000,0.000000 --3.0,284.160000,0.000000,0.000000 --3.0,284.280000,0.000000,0.000000 --3.0,284.400000,0.000000,0.000000 --3.0,284.520000,0.000000,0.000000 --3.0,284.640000,0.000000,0.000000 --3.0,284.760000,0.000000,0.000000 --3.0,284.880000,0.000000,0.000000 --3.0,285.000000,0.000000,0.000000 --3.0,285.120000,0.000000,0.000000 --3.0,285.240000,0.000000,0.000000 --3.0,285.360000,0.000000,0.000000 --3.0,285.480000,0.000000,0.000000 --3.0,285.600000,0.000000,0.000000 --3.0,285.720000,0.000000,0.000000 --3.0,285.840000,0.000000,0.000000 --3.0,285.960000,0.000000,0.000000 --3.0,286.080000,0.000000,0.000000 --3.0,286.200000,0.000000,0.000000 --3.0,286.320000,0.000000,0.000000 --3.0,286.440000,0.000000,0.000000 --3.0,286.560000,0.000000,0.000000 --3.0,286.680000,0.000000,0.000000 --3.0,286.800000,0.000000,0.000000 --3.0,286.920000,0.000000,0.000000 --3.0,287.040000,0.000000,0.000000 --3.0,287.160000,0.000000,0.000000 --3.0,287.280000,0.000000,0.000000 --3.0,287.400000,0.000000,0.000000 --3.0,287.520000,0.000000,0.000000 --3.0,287.640000,0.000000,0.000000 --3.0,287.760000,0.000000,0.000000 --3.0,287.880000,0.000000,0.000000 --3.0,288.000000,0.000000,0.000000 --3.0,288.120000,0.000000,0.000000 --3.0,288.240000,0.000000,0.000000 --3.0,288.360000,0.000000,0.000000 --3.0,288.480000,0.000000,0.000000 --3.0,288.600000,0.000000,0.000000 --3.0,288.720000,0.000000,0.000000 --3.0,288.840000,0.000000,0.000000 --3.0,288.960000,0.000000,0.000000 --3.0,289.080000,0.000000,0.000000 --3.0,289.200000,0.000000,0.000000 --3.0,289.320000,0.000000,0.000000 --3.0,289.440000,0.000000,0.000000 --3.0,289.560000,0.000000,0.000000 --3.0,289.680000,0.000000,0.000000 --3.0,289.800000,0.000000,0.000000 --3.0,289.920000,0.000000,0.000000 --3.0,290.040000,0.000000,0.000000 --3.0,290.160000,0.000000,0.000000 --3.0,290.280000,0.000000,0.000000 --3.0,290.400000,0.000000,0.000000 --3.0,290.520000,0.000000,0.000000 --3.0,290.640000,0.000000,0.000000 --3.0,290.760000,0.000000,0.000000 --3.0,290.880000,0.000000,0.000000 --3.0,291.000000,0.000000,0.000000 --3.0,291.120000,0.000000,0.000000 --3.0,291.240000,0.000000,0.000000 --3.0,291.360000,0.000000,0.000000 --3.0,291.480000,0.000000,0.000000 --3.0,291.600000,0.000000,0.000000 --3.0,291.720000,0.000000,0.000000 --3.0,291.840000,0.000000,0.000000 --3.0,291.960000,0.000000,0.000000 --3.0,292.080000,0.000000,0.000000 --3.0,292.200000,0.000000,0.000000 --3.0,292.320000,0.000000,0.000000 --3.0,292.440000,0.000000,0.000000 --3.0,292.560000,0.000000,0.000000 --3.0,292.680000,0.000000,0.000000 --3.0,292.800000,0.000000,0.000000 --3.0,292.920000,0.000000,0.000000 --3.0,293.040000,0.000000,0.000000 --3.0,293.160000,0.000000,0.000000 --3.0,293.280000,0.000000,0.000000 --3.0,293.400000,0.000000,0.000000 --3.0,293.520000,0.000000,0.000000 --3.0,293.640000,0.000000,0.000000 --3.0,293.760000,0.000000,0.000000 --3.0,293.880000,0.000000,0.000000 --3.0,294.000000,0.000000,0.000000 --3.0,294.120000,0.000000,0.000000 --3.0,294.240000,0.000000,0.000000 --3.0,294.360000,0.000000,0.000000 --3.0,294.480000,0.000000,0.000000 --3.0,294.600000,0.000000,0.000000 --3.0,294.720000,0.000000,0.000000 --3.0,294.840000,0.000000,0.000000 --3.0,294.960000,0.000000,0.000000 --3.0,295.080000,0.000000,0.000000 --3.0,295.200000,0.000000,0.000000 --3.0,295.320000,0.000000,0.000000 --3.0,295.440000,0.000000,0.000000 --3.0,295.560000,0.000000,0.000000 --3.0,295.680000,0.000000,0.000000 --3.0,295.800000,0.000000,0.000000 --3.0,295.920000,0.000000,0.000000 --3.0,296.040000,0.000000,0.000000 --3.0,296.160000,0.000000,0.000000 --3.0,296.280000,0.000000,0.000000 --3.0,296.400000,0.000000,0.000000 --3.0,296.520000,0.000000,0.000000 --3.0,296.640000,0.000000,0.000000 --3.0,296.760000,0.000000,0.000000 --3.0,296.880000,0.000000,0.000000 --3.0,297.000000,0.000000,0.000000 --3.0,297.120000,0.000000,0.000000 --3.0,297.240000,0.000000,0.000000 --3.0,297.360000,0.000000,0.000000 --3.0,297.480000,0.000000,0.000000 --3.0,297.600000,0.000000,0.000000 --3.0,297.720000,0.000000,0.000000 --3.0,297.840000,0.000000,0.000000 --3.0,297.960000,0.000000,0.000000 --3.0,298.080000,0.000000,0.000000 --3.0,298.200000,0.000000,0.000000 --3.0,298.320000,0.000000,0.000000 --3.0,298.440000,0.000000,0.000000 --3.0,298.560000,0.000000,0.000000 --3.0,298.680000,0.000000,0.000000 --3.0,298.800000,0.000000,0.000000 --3.0,298.920000,0.000000,0.000000 --3.0,299.040000,0.000000,0.000000 --3.0,299.160000,0.000000,0.000000 --3.0,299.280000,0.000000,0.000000 --3.0,299.400000,0.000000,0.000000 --3.0,299.520000,0.000000,0.000000 --3.0,299.640000,0.000000,0.000000 --3.0,299.760000,0.000000,0.000000 --3.0,299.880000,0.000000,0.000000 --3.0,300.000000,0.000000,0.000000 --3.0,300.120000,0.000000,0.000000 --3.0,300.240000,0.000000,0.000000 --3.0,300.360000,0.000000,0.000000 --3.0,300.480000,0.000000,0.000000 --3.0,300.600000,0.000000,0.000000 --3.0,300.720000,0.000000,0.000000 --3.0,300.840000,0.000000,0.000000 --3.0,300.960000,0.000000,0.000000 --3.0,301.080000,0.000000,0.000000 --3.0,301.200000,0.000000,0.000000 --3.0,301.320000,0.000000,0.000000 --3.0,301.440000,0.000000,0.000000 --3.0,301.560000,0.000000,0.000000 --3.0,301.680000,0.000000,0.000000 --3.0,301.800000,0.000000,0.000000 --3.0,301.920000,0.000000,0.000000 --3.0,302.040000,0.000000,0.000000 --3.0,302.160000,0.000000,0.000000 --3.0,302.280000,0.000000,0.000000 --3.0,302.400000,0.000000,0.000000 --3.0,302.520000,0.000000,0.000000 --3.0,302.640000,0.000000,0.000000 --3.0,302.760000,0.000000,0.000000 --3.0,302.880000,0.000000,0.000000 --3.0,303.000000,0.000000,0.000000 --3.0,303.120000,0.000000,0.000000 --3.0,303.240000,0.000000,0.000000 --3.0,303.360000,0.000000,0.000000 --3.0,303.480000,0.000000,0.000000 --3.0,303.600000,0.000000,0.000000 --3.0,303.720000,0.000000,0.000000 --3.0,303.840000,0.000000,0.000000 --3.0,303.960000,0.000000,0.000000 --3.0,304.080000,0.000000,0.000000 --3.0,304.200000,0.000000,0.000000 --3.0,304.320000,0.000000,0.000000 --3.0,304.440000,0.000000,0.000000 --3.0,304.560000,0.000000,0.000000 --3.0,304.680000,0.000000,0.000000 --3.0,304.800000,0.000000,0.000000 --3.0,304.920000,0.000000,0.000000 --3.0,305.040000,0.000000,0.000000 --3.0,305.160000,0.000000,0.000000 --3.0,305.280000,0.000000,0.000000 --3.0,305.400000,0.000000,0.000000 --3.0,305.520000,0.000000,0.000000 --3.0,305.640000,0.000000,0.000000 --3.0,305.760000,0.000000,0.000000 --3.0,305.880000,0.000000,0.000000 --3.0,306.000000,0.000000,0.000000 --3.0,306.120000,0.000000,0.000000 --3.0,306.240000,0.000000,0.000000 --3.0,306.360000,0.000000,0.000000 --3.0,306.480000,0.000000,0.000000 --3.0,306.600000,0.000000,0.000000 --3.0,306.720000,0.000000,0.000000 --3.0,306.840000,0.000000,0.000000 --3.0,306.960000,0.000000,0.000000 --3.0,307.080000,0.000000,0.000000 --3.0,307.200000,0.000000,0.000000 --3.0,307.320000,0.000000,0.000000 --3.0,307.440000,0.000000,0.000000 --3.0,307.560000,0.000000,0.000000 --3.0,307.680000,0.000000,0.000000 --3.0,307.800000,0.000000,0.000000 --3.0,307.920000,0.000000,0.000000 --3.0,308.040000,0.000000,0.000000 --3.0,308.160000,0.000000,0.000000 --3.0,308.280000,0.000000,0.000000 --3.0,308.400000,0.000000,0.000000 --3.0,308.520000,0.000000,0.000000 --3.0,308.640000,0.000000,0.000000 --3.0,308.760000,0.000000,0.000000 --3.0,308.880000,0.000000,0.000000 --3.0,309.000000,0.000000,0.000000 --3.0,309.120000,0.000000,0.000000 --3.0,309.240000,0.000000,0.000000 --3.0,309.360000,0.000000,0.000000 --3.0,309.480000,0.000000,0.000000 --3.0,309.600000,0.000000,0.000000 --3.0,309.720000,0.000000,0.000000 --3.0,309.840000,0.000000,0.000000 --3.0,309.960000,0.000000,0.000000 --3.0,310.080000,0.000000,0.000000 --3.0,310.200000,0.000000,0.000000 --3.0,310.320000,0.000000,0.000000 --3.0,310.440000,0.000000,0.000000 --3.0,310.560000,0.000000,0.000000 --3.0,310.680000,0.000000,0.000000 --3.0,310.800000,0.000000,0.000000 --3.0,310.920000,0.000000,0.000000 --3.0,311.040000,0.000000,0.000000 --3.0,311.160000,0.000000,0.000000 --3.0,311.280000,0.000000,0.000000 --3.0,311.400000,0.000000,0.000000 --3.0,311.520000,0.000000,0.000000 --3.0,311.640000,0.000000,0.000000 --3.0,311.760000,0.000000,0.000000 --3.0,311.880000,0.000000,0.000000 --3.0,312.000000,0.000000,0.000000 --3.0,312.120000,0.000000,0.000000 --3.0,312.240000,0.000000,0.000000 --3.0,312.360000,0.000000,0.000000 --3.0,312.480000,0.000000,0.000000 --3.0,312.600000,0.000000,0.000000 --3.0,312.720000,0.000000,0.000000 --3.0,312.840000,0.000000,0.000000 --3.0,312.960000,0.000000,0.000000 --3.0,313.080000,0.000000,0.000000 --3.0,313.200000,0.000000,0.000000 --3.0,313.320000,0.000000,0.000000 --3.0,313.440000,0.000000,0.000000 --3.0,313.560000,0.000000,0.000000 --3.0,313.680000,0.000000,0.000000 --3.0,313.800000,0.000000,0.000000 --3.0,313.920000,0.000000,0.000000 --3.0,314.040000,0.000000,0.000000 --3.0,314.160000,0.000000,0.000000 --3.0,314.280000,0.000000,0.000000 --3.0,314.400000,0.000000,0.000000 --3.0,314.520000,0.000000,0.000000 --3.0,314.640000,0.000000,0.000000 --3.0,314.760000,0.000000,0.000000 --3.0,314.880000,0.000000,0.000000 --3.0,315.000000,0.000000,0.000000 --3.0,315.120000,0.000000,0.000000 --3.0,315.240000,0.000000,0.000000 --3.0,315.360000,0.000000,0.000000 --3.0,315.480000,0.000000,0.000000 --3.0,315.600000,0.000000,0.000000 --3.0,315.720000,0.000000,0.000000 --3.0,315.840000,0.000000,0.000000 --3.0,315.960000,0.000000,0.000000 --3.0,316.080000,0.000000,0.000000 --3.0,316.200000,0.000000,0.000000 --3.0,316.320000,0.000000,0.000000 --3.0,316.440000,0.000000,0.000000 --3.0,316.560000,0.000000,0.000000 --3.0,316.680000,0.000000,0.000000 --3.0,316.800000,0.000000,0.000000 --3.0,316.920000,0.000000,0.000000 --3.0,317.040000,0.000000,0.000000 --3.0,317.160000,0.000000,0.000000 --3.0,317.280000,0.000000,0.000000 --3.0,317.400000,0.000000,0.000000 --3.0,317.520000,0.000000,0.000000 --3.0,317.640000,0.000000,0.000000 --3.0,317.760000,0.000000,0.000000 --3.0,317.880000,0.000000,0.000000 --3.0,318.000000,0.000000,0.000000 --3.0,318.120000,0.000000,0.000000 --3.0,318.240000,0.000000,0.000000 --3.0,318.360000,0.000000,0.000000 --3.0,318.480000,0.000000,0.000000 --3.0,318.600000,0.000000,0.000000 --3.0,318.720000,0.000000,0.000000 --3.0,318.840000,0.000000,0.000000 --3.0,318.960000,0.000000,0.000000 --3.0,319.080000,0.000000,0.000000 --3.0,319.200000,0.000000,0.000000 --3.0,319.320000,0.000000,0.000000 --3.0,319.440000,0.000000,0.000000 --3.0,319.560000,0.000000,0.000000 --3.0,319.680000,0.000000,0.000000 --3.0,319.800000,0.000000,0.000000 --3.0,319.920000,0.000000,0.000000 --3.0,320.040000,0.000000,0.000000 --3.0,320.160000,0.000000,0.000000 --3.0,320.280000,0.000000,0.000000 --3.0,320.400000,0.000000,0.000000 --3.0,320.520000,0.000000,0.000000 --3.0,320.640000,0.000000,0.000000 --3.0,320.760000,0.000000,0.000000 --3.0,320.880000,0.000000,0.000000 --3.0,321.000000,0.000000,0.000000 --3.0,321.120000,0.000000,0.000000 --3.0,321.240000,0.000000,0.000000 --3.0,321.360000,0.000000,0.000000 --3.0,321.480000,0.000000,0.000000 --3.0,321.600000,0.000000,0.000000 --3.0,321.720000,0.000000,0.000000 --3.0,321.840000,0.000000,0.000000 --3.0,321.960000,0.000000,0.000000 --3.0,322.080000,0.000000,0.000000 --3.0,322.200000,0.000000,0.000000 --3.0,322.320000,0.000000,0.000000 --3.0,322.440000,0.000000,0.000000 --3.0,322.560000,0.000000,0.000000 --3.0,322.680000,0.000000,0.000000 --3.0,322.800000,0.000000,0.000000 --3.0,322.920000,0.000000,0.000000 --3.0,323.040000,0.000000,0.000000 --3.0,323.160000,0.000000,0.000000 --3.0,323.280000,0.000000,0.000000 --3.0,323.400000,0.000000,0.000000 --3.0,323.520000,0.000000,0.000000 --3.0,323.640000,0.000000,0.000000 --3.0,323.760000,0.000000,0.000000 --3.0,323.880000,0.000000,0.000000 --3.0,324.000000,0.000000,0.000000 --3.0,324.120000,0.000000,0.000000 --3.0,324.240000,0.000000,0.000000 --3.0,324.360000,0.000000,0.000000 --3.0,324.480000,0.000000,0.000000 --3.0,324.600000,0.000000,0.000000 --3.0,324.720000,0.000000,0.000000 --3.0,324.840000,0.000000,0.000000 --3.0,324.960000,0.000000,0.000000 --3.0,325.080000,0.000000,0.000000 --3.0,325.200000,0.000000,0.000000 --3.0,325.320000,0.000000,0.000000 --3.0,325.440000,0.000000,0.000000 --3.0,325.560000,0.000000,0.000000 --3.0,325.680000,0.000000,0.000000 --3.0,325.800000,0.000000,0.000000 --3.0,325.920000,0.000000,0.000000 --3.0,326.040000,0.000000,0.000000 --3.0,326.160000,0.000000,0.000000 --3.0,326.280000,0.000000,0.000000 --3.0,326.400000,0.000000,0.000000 --3.0,326.520000,0.000000,0.000000 --3.0,326.640000,0.000000,0.000000 --3.0,326.760000,0.000000,0.000000 --3.0,326.880000,0.000000,0.000000 --3.0,327.000000,0.000000,0.000000 --3.0,327.120000,0.000000,0.000000 --3.0,327.240000,0.000000,0.000000 --3.0,327.360000,0.000000,0.000000 --3.0,327.480000,0.000000,0.000000 --3.0,327.600000,0.000000,0.000000 --3.0,327.720000,0.000000,0.000000 --3.0,327.840000,0.000000,0.000000 --3.0,327.960000,0.000000,0.000000 --3.0,328.080000,0.000000,0.000000 --3.0,328.200000,0.000000,0.000000 --3.0,328.320000,0.000000,0.000000 --3.0,328.440000,0.000000,0.000000 --3.0,328.560000,0.000000,0.000000 --3.0,328.680000,0.000000,0.000000 --3.0,328.800000,0.000000,0.000000 --3.0,328.920000,0.000000,0.000000 --3.0,329.040000,0.000000,0.000000 --3.0,329.160000,0.000000,0.000000 --3.0,329.280000,0.000000,0.000000 --3.0,329.400000,0.000000,0.000000 --3.0,329.520000,0.000000,0.000000 --3.0,329.640000,0.000000,0.000000 --3.0,329.760000,0.000000,0.000000 --3.0,329.880000,0.000000,0.000000 --3.0,330.000000,0.000000,0.000000 --3.0,330.120000,0.000000,0.000000 --3.0,330.240000,0.000000,0.000000 --3.0,330.360000,0.000000,0.000000 --3.0,330.480000,0.000000,0.000000 --3.0,330.600000,0.000000,0.000000 --3.0,330.720000,0.000000,0.000000 --3.0,330.840000,0.000000,0.000000 --3.0,330.960000,0.000000,0.000000 --3.0,331.080000,0.000000,0.000000 --3.0,331.200000,0.000000,0.000000 --3.0,331.320000,0.000000,0.000000 --3.0,331.440000,0.000000,0.000000 --3.0,331.560000,0.000000,0.000000 --3.0,331.680000,0.000000,0.000000 --3.0,331.800000,0.000000,0.000000 --3.0,331.920000,0.000000,0.000000 --3.0,332.040000,0.000000,0.000000 --3.0,332.160000,0.000000,0.000000 --3.0,332.280000,0.000000,0.000000 --3.0,332.400000,0.000000,0.000000 --3.0,332.520000,0.000000,0.000000 --3.0,332.640000,0.000000,0.000000 --3.0,332.760000,0.000000,0.000000 --3.0,332.880000,0.000000,0.000000 --3.0,333.000000,0.000000,0.000000 --3.0,333.120000,0.000000,0.000000 --3.0,333.240000,0.000000,0.000000 --3.0,333.360000,0.000000,0.000000 --3.0,333.480000,0.000000,0.000000 --3.0,333.600000,0.000000,0.000000 --3.0,333.720000,0.000000,0.000000 --3.0,333.840000,0.000000,0.000000 --3.0,333.960000,0.000000,0.000000 --3.0,334.080000,0.000000,0.000000 --3.0,334.200000,0.000000,0.000000 --3.0,334.320000,0.000000,0.000000 --3.0,334.440000,0.000000,0.000000 --3.0,334.560000,0.000000,0.000000 --3.0,334.680000,0.000000,0.000000 --3.0,334.800000,0.000000,0.000000 --3.0,334.920000,0.000000,0.000000 --3.0,335.040000,0.000000,0.000000 --3.0,335.160000,0.000000,0.000000 --3.0,335.280000,0.000000,0.000000 --3.0,335.400000,0.000000,0.000000 --3.0,335.520000,0.000000,0.000000 --3.0,335.640000,0.000000,0.000000 --3.0,335.760000,0.000000,0.000000 --3.0,335.880000,0.000000,0.000000 --3.0,336.000000,0.000000,0.000000 --3.0,336.120000,0.000000,0.000000 --3.0,336.240000,0.000000,0.000000 --3.0,336.360000,0.000000,0.000000 --3.0,336.480000,0.000000,0.000000 --3.0,336.600000,0.000000,0.000000 --3.0,336.720000,0.000000,0.000000 --3.0,336.840000,0.000000,0.000000 --3.0,336.960000,0.000000,0.000000 --3.0,337.080000,0.000000,0.000000 --3.0,337.200000,0.000000,0.000000 --3.0,337.320000,0.000000,0.000000 --3.0,337.440000,0.000000,0.000000 --3.0,337.560000,0.000000,0.000000 --3.0,337.680000,0.000000,0.000000 --3.0,337.800000,0.000000,0.000000 --3.0,337.920000,0.000000,0.000000 --3.0,338.040000,0.000000,0.000000 --3.0,338.160000,0.000000,0.000000 --3.0,338.280000,0.000000,0.000000 --3.0,338.400000,0.000000,0.000000 --3.0,338.520000,0.000000,0.000000 --3.0,338.640000,0.000000,0.000000 --3.0,338.760000,0.000000,0.000000 --3.0,338.880000,0.000000,0.000000 --3.0,339.000000,0.000000,0.000000 --3.0,339.120000,0.000000,0.000000 --3.0,339.240000,0.000000,0.000000 --3.0,339.360000,0.000000,0.000000 --3.0,339.480000,0.000000,0.000000 --3.0,339.600000,0.000000,0.000000 --3.0,339.720000,0.000000,0.000000 --3.0,339.840000,0.000000,0.000000 --3.0,339.960000,0.000000,0.000000 --3.0,340.080000,0.000000,0.000000 --3.0,340.200000,0.000000,0.000000 --3.0,340.320000,0.000000,0.000000 --3.0,340.440000,0.000000,0.000000 --3.0,340.560000,0.000000,0.000000 --3.0,340.680000,0.000000,0.000000 --3.0,340.800000,0.000000,0.000000 --3.0,340.920000,0.000000,0.000000 --3.0,341.040000,0.000000,0.000000 --3.0,341.160000,0.000000,0.000000 --3.0,341.280000,0.000000,0.000000 --3.0,341.400000,0.000000,0.000000 --3.0,341.520000,0.000000,0.000000 --3.0,341.640000,0.000000,0.000000 --3.0,341.760000,0.000000,0.000000 --3.0,341.880000,0.000000,0.000000 --3.0,342.000000,0.000000,0.000000 --3.0,342.120000,0.000000,0.000000 --3.0,342.240000,0.000000,0.000000 --3.0,342.360000,0.000000,0.000000 --3.0,342.480000,0.000000,0.000000 --3.0,342.600000,0.000000,0.000000 --3.0,342.720000,0.000000,0.000000 --3.0,342.840000,0.000000,0.000000 --3.0,342.960000,0.000000,0.000000 --3.0,343.080000,0.000000,0.000000 --3.0,343.200000,0.000000,0.000000 --3.0,343.320000,0.000000,0.000000 --3.0,343.440000,0.000000,0.000000 --3.0,343.560000,0.000000,0.000000 --3.0,343.680000,0.000000,0.000000 --3.0,343.800000,0.000000,0.000000 --3.0,343.920000,0.000000,0.000000 --3.0,344.040000,0.000000,0.000000 --3.0,344.160000,0.000000,0.000000 --3.0,344.280000,0.000000,0.000000 --3.0,344.400000,0.000000,0.000000 --3.0,344.520000,0.000000,0.000000 --3.0,344.640000,0.000000,0.000000 --3.0,344.760000,0.000000,0.000000 --3.0,344.880000,0.000000,0.000000 --3.0,345.000000,0.000000,0.000000 --3.0,345.120000,0.000000,0.000000 --3.0,345.240000,0.000000,0.000000 --3.0,345.360000,0.000000,0.000000 --3.0,345.480000,0.000000,0.000000 --3.0,345.600000,0.000000,0.000000 --3.0,345.720000,0.000000,0.000000 --3.0,345.840000,0.000000,0.000000 --3.0,345.960000,0.000000,0.000000 --3.0,346.080000,0.000000,0.000000 --3.0,346.200000,0.000000,0.000000 --3.0,346.320000,0.000000,0.000000 --3.0,346.440000,0.000000,0.000000 --3.0,346.560000,0.000000,0.000000 --3.0,346.680000,0.000000,0.000000 --3.0,346.800000,0.000000,0.000000 --3.0,346.920000,0.000000,0.000000 --3.0,347.040000,0.000000,0.000000 --3.0,347.160000,0.000000,0.000000 --3.0,347.280000,0.000000,0.000000 --3.0,347.400000,0.000000,0.000000 --3.0,347.520000,0.000000,0.000000 --3.0,347.640000,0.000000,0.000000 --3.0,347.760000,0.000000,0.000000 --3.0,347.880000,0.000000,0.000000 --3.0,348.000000,0.000000,0.000000 --3.0,348.120000,0.000000,0.000000 --3.0,348.240000,0.000000,0.000000 --3.0,348.360000,0.000000,0.000000 --3.0,348.480000,0.000000,0.000000 --3.0,348.600000,0.000000,0.000000 --3.0,348.720000,0.000000,0.000000 --3.0,348.840000,0.000000,0.000000 --3.0,348.960000,0.000000,0.000000 --3.0,349.080000,0.000000,0.000000 --3.0,349.200000,0.000000,0.000000 --3.0,349.320000,0.000000,0.000000 --3.0,349.440000,0.000000,0.000000 --3.0,349.560000,0.000000,0.000000 --3.0,349.680000,0.000000,0.000000 --3.0,349.800000,0.000000,0.000000 --3.0,349.920000,0.000000,0.000000 --3.0,350.040000,0.000000,0.000000 --3.0,350.160000,0.000000,0.000000 --3.0,350.280000,0.000000,0.000000 --3.0,350.400000,0.000000,0.000000 --3.0,350.520000,0.000000,0.000000 --3.0,350.640000,0.000000,0.000000 --3.0,350.760000,0.000000,0.000000 --3.0,350.880000,0.000000,0.000000 --3.0,351.000000,0.000000,0.000000 --3.0,351.120000,0.000000,0.000000 --3.0,351.240000,0.000000,0.000000 --3.0,351.360000,0.000000,0.000000 --3.0,351.480000,0.000000,0.000000 --3.0,351.600000,0.000000,0.000000 --3.0,351.720000,0.000000,0.000000 --3.0,351.840000,0.000000,0.000000 --3.0,351.960000,0.000000,0.000000 --3.0,352.080000,0.000000,0.000000 --3.0,352.200000,0.000000,0.000000 --3.0,352.320000,0.000000,0.000000 --3.0,352.440000,0.000000,0.000000 --3.0,352.560000,0.000000,0.000000 --3.0,352.680000,0.000000,0.000000 --3.0,352.800000,0.000000,0.000000 --3.0,352.920000,0.000000,0.000000 --3.0,353.040000,0.000000,0.000000 --3.0,353.160000,0.000000,0.000000 --3.0,353.280000,0.000000,0.000000 --3.0,353.400000,0.000000,0.000000 --3.0,353.520000,0.000000,0.000000 --3.0,353.640000,0.000000,0.000000 --3.0,353.760000,0.000000,0.000000 --3.0,353.880000,0.000000,0.000000 --3.0,354.000000,0.000000,0.000000 --3.0,354.120000,0.000000,0.000000 --3.0,354.240000,0.000000,0.000000 --3.0,354.360000,0.000000,0.000000 --3.0,354.480000,0.000000,0.000000 --3.0,354.600000,0.000000,0.000000 --3.0,354.720000,0.000000,0.000000 --3.0,354.840000,0.000000,0.000000 --3.0,354.960000,0.000000,0.000000 --3.0,355.080000,0.000000,0.000000 --3.0,355.200000,0.000000,0.000000 --3.0,355.320000,0.000000,0.000000 --3.0,355.440000,0.000000,0.000000 --3.0,355.560000,0.000000,0.000000 --3.0,355.680000,0.000000,0.000000 --3.0,355.800000,0.000000,0.000000 --3.0,355.920000,0.000000,0.000000 --3.0,356.040000,0.000000,0.000000 --3.0,356.160000,0.000000,0.000000 --3.0,356.280000,0.000000,0.000000 --3.0,356.400000,0.000000,0.000000 --3.0,356.520000,0.000000,0.000000 --3.0,356.640000,0.000000,0.000000 --3.0,356.760000,0.000000,0.000000 --3.0,356.880000,0.000000,0.000000 --3.0,357.000000,0.000000,0.000000 --3.0,357.120000,0.000000,0.000000 --3.0,357.240000,0.000000,0.000000 --3.0,357.360000,0.000000,0.000000 --3.0,357.480000,0.000000,0.000000 --3.0,357.600000,0.000000,0.000000 --3.0,357.720000,0.000000,0.000000 --3.0,357.840000,0.000000,0.000000 --3.0,357.960000,0.000000,0.000000 --3.0,358.080000,0.000000,0.000000 --3.0,358.200000,0.000000,0.000000 --3.0,358.320000,0.000000,0.000000 --3.0,358.440000,0.000000,0.000000 --3.0,358.560000,0.000000,0.000000 --3.0,358.680000,0.000000,0.000000 --3.0,358.800000,0.000000,0.000000 --3.0,358.920000,0.000000,0.000000 --3.0,359.040000,0.000000,0.000000 --3.0,359.160000,0.000000,0.000000 --3.0,359.280000,0.000000,0.000000 --3.0,359.400000,0.000000,0.000000 --3.0,359.520000,0.000000,0.000000 --3.0,359.640000,0.000000,0.000000 --3.0,359.760000,0.000000,0.000000 --3.0,359.880000,0.000000,0.000000 diff --git a/scripts/trajectories/full_circle_in_15s.csv b/scripts/trajectories/full_circle_in_15s.csv deleted file mode 100644 index e2f6939939772172d9b7abffe170d92b9b9e2054..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full_circle_in_15s.csv +++ /dev/null @@ -1,3000 +0,0 @@ -1.000000,0.000000,0.000000,0.000000 -0.999999,0.000000,0.000000,0.001047 -0.999998,0.000000,0.000000,0.002094 -0.999995,0.000000,0.000000,0.003142 -0.999991,0.000000,0.000000,0.004189 -0.999986,0.000000,0.000000,0.005236 -0.999980,0.000000,0.000000,0.006283 -0.999973,0.000000,0.000000,0.007330 -0.999965,0.000000,0.000000,0.008377 -0.999956,0.000000,0.000000,0.009425 -0.999945,0.000000,0.000000,0.010472 -0.999934,0.000000,0.000000,0.011519 -0.999921,0.000000,0.000000,0.012566 -0.999907,0.000000,0.000000,0.013613 -0.999893,0.000000,0.000000,0.014660 -0.999877,0.000000,0.000000,0.015707 -0.999860,0.000000,0.000000,0.016754 -0.999842,0.000000,0.000000,0.017801 -0.999822,0.000000,0.000000,0.018848 -0.999802,0.000000,0.000000,0.019895 -0.999781,0.000000,0.000000,0.020942 -0.999758,0.000000,0.000000,0.021989 -0.999735,0.000000,0.000000,0.023036 -0.999710,0.000000,0.000000,0.024083 -0.999684,0.000000,0.000000,0.025130 -0.999657,0.000000,0.000000,0.026177 -0.999629,0.000000,0.000000,0.027224 -0.999600,0.000000,0.000000,0.028271 -0.999570,0.000000,0.000000,0.029317 -0.999539,0.000000,0.000000,0.030364 -0.999507,0.000000,0.000000,0.031411 -0.999473,0.000000,0.000000,0.032457 -0.999439,0.000000,0.000000,0.033504 -0.999403,0.000000,0.000000,0.034551 -0.999366,0.000000,0.000000,0.035597 -0.999328,0.000000,0.000000,0.036644 -0.999289,0.000000,0.000000,0.037690 -0.999249,0.000000,0.000000,0.038737 -0.999208,0.000000,0.000000,0.039783 -0.999166,0.000000,0.000000,0.040829 -0.999123,0.000000,0.000000,0.041876 -0.999078,0.000000,0.000000,0.042922 -0.999033,0.000000,0.000000,0.043968 -0.998986,0.000000,0.000000,0.045014 -0.998939,0.000000,0.000000,0.046060 -0.998890,0.000000,0.000000,0.047106 -0.998840,0.000000,0.000000,0.048152 -0.998789,0.000000,0.000000,0.049198 -0.998737,0.000000,0.000000,0.050244 -0.998684,0.000000,0.000000,0.051290 -0.998630,0.000000,0.000000,0.052336 -0.998574,0.000000,0.000000,0.053382 -0.998518,0.000000,0.000000,0.054427 -0.998460,0.000000,0.000000,0.055473 -0.998402,0.000000,0.000000,0.056519 -0.998342,0.000000,0.000000,0.057564 -0.998281,0.000000,0.000000,0.058609 -0.998219,0.000000,0.000000,0.059655 -0.998156,0.000000,0.000000,0.060700 -0.998092,0.000000,0.000000,0.061745 -0.998027,0.000000,0.000000,0.062791 -0.997960,0.000000,0.000000,0.063836 -0.997893,0.000000,0.000000,0.064881 -0.997825,0.000000,0.000000,0.065926 -0.997755,0.000000,0.000000,0.066970 -0.997684,0.000000,0.000000,0.068015 -0.997613,0.000000,0.000000,0.069060 -0.997540,0.000000,0.000000,0.070105 -0.997466,0.000000,0.000000,0.071149 -0.997391,0.000000,0.000000,0.072194 -0.997314,0.000000,0.000000,0.073238 -0.997237,0.000000,0.000000,0.074283 -0.997159,0.000000,0.000000,0.075327 -0.997079,0.000000,0.000000,0.076371 -0.996999,0.000000,0.000000,0.077415 -0.996917,0.000000,0.000000,0.078459 -0.996835,0.000000,0.000000,0.079503 -0.996751,0.000000,0.000000,0.080547 -0.996666,0.000000,0.000000,0.081591 -0.996580,0.000000,0.000000,0.082634 -0.996493,0.000000,0.000000,0.083678 -0.996405,0.000000,0.000000,0.084721 -0.996315,0.000000,0.000000,0.085765 -0.996225,0.000000,0.000000,0.086808 -0.996134,0.000000,0.000000,0.087851 -0.996041,0.000000,0.000000,0.088894 -0.995947,0.000000,0.000000,0.089937 -0.995853,0.000000,0.000000,0.090980 -0.995757,0.000000,0.000000,0.092023 -0.995660,0.000000,0.000000,0.093066 -0.995562,0.000000,0.000000,0.094108 -0.995463,0.000000,0.000000,0.095151 -0.995363,0.000000,0.000000,0.096193 -0.995261,0.000000,0.000000,0.097235 -0.995159,0.000000,0.000000,0.098278 -0.995056,0.000000,0.000000,0.099320 -0.994951,0.000000,0.000000,0.100362 -0.994845,0.000000,0.000000,0.101404 -0.994739,0.000000,0.000000,0.102445 -0.994631,0.000000,0.000000,0.103487 -0.994522,0.000000,0.000000,0.104528 -0.994412,0.000000,0.000000,0.105570 -0.994301,0.000000,0.000000,0.106611 -0.994189,0.000000,0.000000,0.107652 -0.994075,0.000000,0.000000,0.108693 -0.993961,0.000000,0.000000,0.109734 -0.993845,0.000000,0.000000,0.110775 -0.993729,0.000000,0.000000,0.111816 -0.993611,0.000000,0.000000,0.112856 -0.993493,0.000000,0.000000,0.113897 -0.993373,0.000000,0.000000,0.114937 -0.993252,0.000000,0.000000,0.115977 -0.993130,0.000000,0.000000,0.117017 -0.993007,0.000000,0.000000,0.118057 -0.992883,0.000000,0.000000,0.119097 -0.992757,0.000000,0.000000,0.120137 -0.992631,0.000000,0.000000,0.121176 -0.992504,0.000000,0.000000,0.122216 -0.992375,0.000000,0.000000,0.123255 -0.992245,0.000000,0.000000,0.124294 -0.992115,0.000000,0.000000,0.125333 -0.991983,0.000000,0.000000,0.126372 -0.991850,0.000000,0.000000,0.127411 -0.991716,0.000000,0.000000,0.128449 -0.991581,0.000000,0.000000,0.129488 -0.991445,0.000000,0.000000,0.130526 -0.991308,0.000000,0.000000,0.131564 -0.991169,0.000000,0.000000,0.132602 -0.991030,0.000000,0.000000,0.133640 -0.990889,0.000000,0.000000,0.134678 -0.990748,0.000000,0.000000,0.135716 -0.990605,0.000000,0.000000,0.136753 -0.990461,0.000000,0.000000,0.137790 -0.990317,0.000000,0.000000,0.138827 -0.990171,0.000000,0.000000,0.139864 -0.990024,0.000000,0.000000,0.140901 -0.989876,0.000000,0.000000,0.141938 -0.989726,0.000000,0.000000,0.142974 -0.989576,0.000000,0.000000,0.144011 -0.989425,0.000000,0.000000,0.145047 -0.989272,0.000000,0.000000,0.146083 -0.989119,0.000000,0.000000,0.147119 -0.988964,0.000000,0.000000,0.148155 -0.988809,0.000000,0.000000,0.149190 -0.988652,0.000000,0.000000,0.150226 -0.988494,0.000000,0.000000,0.151261 -0.988335,0.000000,0.000000,0.152296 -0.988175,0.000000,0.000000,0.153331 -0.988014,0.000000,0.000000,0.154366 -0.987852,0.000000,0.000000,0.155400 -0.987688,0.000000,0.000000,0.156434 -0.987524,0.000000,0.000000,0.157469 -0.987359,0.000000,0.000000,0.158503 -0.987192,0.000000,0.000000,0.159537 -0.987024,0.000000,0.000000,0.160570 -0.986856,0.000000,0.000000,0.161604 -0.986686,0.000000,0.000000,0.162637 -0.986515,0.000000,0.000000,0.163670 -0.986343,0.000000,0.000000,0.164703 -0.986170,0.000000,0.000000,0.165736 -0.985996,0.000000,0.000000,0.166769 -0.985821,0.000000,0.000000,0.167801 -0.985645,0.000000,0.000000,0.168833 -0.985467,0.000000,0.000000,0.169866 -0.985289,0.000000,0.000000,0.170897 -0.985109,0.000000,0.000000,0.171929 -0.984929,0.000000,0.000000,0.172961 -0.984747,0.000000,0.000000,0.173992 -0.984564,0.000000,0.000000,0.175023 -0.984381,0.000000,0.000000,0.176054 -0.984196,0.000000,0.000000,0.177085 -0.984010,0.000000,0.000000,0.178115 -0.983823,0.000000,0.000000,0.179146 -0.983634,0.000000,0.000000,0.180176 -0.983445,0.000000,0.000000,0.181206 -0.983255,0.000000,0.000000,0.182236 -0.983064,0.000000,0.000000,0.183265 -0.982871,0.000000,0.000000,0.184294 -0.982678,0.000000,0.000000,0.185324 -0.982483,0.000000,0.000000,0.186353 -0.982287,0.000000,0.000000,0.187381 -0.982090,0.000000,0.000000,0.188410 -0.981893,0.000000,0.000000,0.189438 -0.981694,0.000000,0.000000,0.190466 -0.981494,0.000000,0.000000,0.191494 -0.981293,0.000000,0.000000,0.192522 -0.981091,0.000000,0.000000,0.193549 -0.980887,0.000000,0.000000,0.194577 -0.980683,0.000000,0.000000,0.195604 -0.980478,0.000000,0.000000,0.196631 -0.980271,0.000000,0.000000,0.197657 -0.980064,0.000000,0.000000,0.198684 -0.979855,0.000000,0.000000,0.199710 -0.979645,0.000000,0.000000,0.200736 -0.979435,0.000000,0.000000,0.201762 -0.979223,0.000000,0.000000,0.202787 -0.979010,0.000000,0.000000,0.203813 -0.978796,0.000000,0.000000,0.204838 -0.978581,0.000000,0.000000,0.205863 -0.978365,0.000000,0.000000,0.206887 -0.978148,0.000000,0.000000,0.207912 -0.977929,0.000000,0.000000,0.208936 -0.977710,0.000000,0.000000,0.209960 -0.977490,0.000000,0.000000,0.210984 -0.977268,0.000000,0.000000,0.212007 -0.977046,0.000000,0.000000,0.213030 -0.976822,0.000000,0.000000,0.214053 -0.976597,0.000000,0.000000,0.215076 -0.976371,0.000000,0.000000,0.216099 -0.976145,0.000000,0.000000,0.217121 -0.975917,0.000000,0.000000,0.218143 -0.975688,0.000000,0.000000,0.219165 -0.975458,0.000000,0.000000,0.220187 -0.975227,0.000000,0.000000,0.221208 -0.974994,0.000000,0.000000,0.222229 -0.974761,0.000000,0.000000,0.223250 -0.974527,0.000000,0.000000,0.224271 -0.974291,0.000000,0.000000,0.225291 -0.974055,0.000000,0.000000,0.226311 -0.973817,0.000000,0.000000,0.227331 -0.973579,0.000000,0.000000,0.228351 -0.973339,0.000000,0.000000,0.229370 -0.973099,0.000000,0.000000,0.230389 -0.972857,0.000000,0.000000,0.231408 -0.972614,0.000000,0.000000,0.232427 -0.972370,0.000000,0.000000,0.233445 -0.972125,0.000000,0.000000,0.234463 -0.971879,0.000000,0.000000,0.235481 -0.971632,0.000000,0.000000,0.236499 -0.971384,0.000000,0.000000,0.237516 -0.971134,0.000000,0.000000,0.238533 -0.970884,0.000000,0.000000,0.239550 -0.970633,0.000000,0.000000,0.240567 -0.970380,0.000000,0.000000,0.241583 -0.970127,0.000000,0.000000,0.242599 -0.969872,0.000000,0.000000,0.243615 -0.969616,0.000000,0.000000,0.244631 -0.969360,0.000000,0.000000,0.245646 -0.969102,0.000000,0.000000,0.246661 -0.968843,0.000000,0.000000,0.247675 -0.968583,0.000000,0.000000,0.248690 -0.968322,0.000000,0.000000,0.249704 -0.968060,0.000000,0.000000,0.250718 -0.967797,0.000000,0.000000,0.251732 -0.967533,0.000000,0.000000,0.252745 -0.967268,0.000000,0.000000,0.253758 -0.967001,0.000000,0.000000,0.254771 -0.966734,0.000000,0.000000,0.255783 -0.966466,0.000000,0.000000,0.256795 -0.966196,0.000000,0.000000,0.257807 -0.965926,0.000000,0.000000,0.258819 -0.965654,0.000000,0.000000,0.259830 -0.965382,0.000000,0.000000,0.260842 -0.965108,0.000000,0.000000,0.261852 -0.964833,0.000000,0.000000,0.262863 -0.964557,0.000000,0.000000,0.263873 -0.964281,0.000000,0.000000,0.264883 -0.964003,0.000000,0.000000,0.265893 -0.963724,0.000000,0.000000,0.266902 -0.963444,0.000000,0.000000,0.267911 -0.963163,0.000000,0.000000,0.268920 -0.962880,0.000000,0.000000,0.269928 -0.962597,0.000000,0.000000,0.270936 -0.962313,0.000000,0.000000,0.271944 -0.962028,0.000000,0.000000,0.272952 -0.961741,0.000000,0.000000,0.273959 -0.961454,0.000000,0.000000,0.274966 -0.961165,0.000000,0.000000,0.275973 -0.960876,0.000000,0.000000,0.276979 -0.960585,0.000000,0.000000,0.277985 -0.960294,0.000000,0.000000,0.278991 -0.960001,0.000000,0.000000,0.279997 -0.959707,0.000000,0.000000,0.281002 -0.959412,0.000000,0.000000,0.282007 -0.959117,0.000000,0.000000,0.283011 -0.958820,0.000000,0.000000,0.284015 -0.958522,0.000000,0.000000,0.285019 -0.958223,0.000000,0.000000,0.286023 -0.957923,0.000000,0.000000,0.287026 -0.957622,0.000000,0.000000,0.288029 -0.957319,0.000000,0.000000,0.289032 -0.957016,0.000000,0.000000,0.290034 -0.956712,0.000000,0.000000,0.291036 -0.956407,0.000000,0.000000,0.292038 -0.956100,0.000000,0.000000,0.293039 -0.955793,0.000000,0.000000,0.294040 -0.955485,0.000000,0.000000,0.295041 -0.955175,0.000000,0.000000,0.296041 -0.954865,0.000000,0.000000,0.297042 -0.954553,0.000000,0.000000,0.298041 -0.954240,0.000000,0.000000,0.299041 -0.953927,0.000000,0.000000,0.300040 -0.953612,0.000000,0.000000,0.301039 -0.953296,0.000000,0.000000,0.302037 -0.952979,0.000000,0.000000,0.303035 -0.952661,0.000000,0.000000,0.304033 -0.952343,0.000000,0.000000,0.305031 -0.952023,0.000000,0.000000,0.306028 -0.951702,0.000000,0.000000,0.307024 -0.951380,0.000000,0.000000,0.308021 -0.951057,0.000000,0.000000,0.309017 -0.950732,0.000000,0.000000,0.310013 -0.950407,0.000000,0.000000,0.311008 -0.950081,0.000000,0.000000,0.312003 -0.949754,0.000000,0.000000,0.312998 -0.949425,0.000000,0.000000,0.313992 -0.949096,0.000000,0.000000,0.314987 -0.948766,0.000000,0.000000,0.315980 -0.948434,0.000000,0.000000,0.316974 -0.948102,0.000000,0.000000,0.317967 -0.947768,0.000000,0.000000,0.318959 -0.947434,0.000000,0.000000,0.319952 -0.947098,0.000000,0.000000,0.320944 -0.946762,0.000000,0.000000,0.321935 -0.946424,0.000000,0.000000,0.322927 -0.946085,0.000000,0.000000,0.323917 -0.945746,0.000000,0.000000,0.324908 -0.945405,0.000000,0.000000,0.325898 -0.945063,0.000000,0.000000,0.326888 -0.944720,0.000000,0.000000,0.327878 -0.944376,0.000000,0.000000,0.328867 -0.944031,0.000000,0.000000,0.329855 -0.943686,0.000000,0.000000,0.330844 -0.943339,0.000000,0.000000,0.331832 -0.942991,0.000000,0.000000,0.332820 -0.942641,0.000000,0.000000,0.333807 -0.942291,0.000000,0.000000,0.334794 -0.941940,0.000000,0.000000,0.335780 -0.941588,0.000000,0.000000,0.336767 -0.941235,0.000000,0.000000,0.337752 -0.940881,0.000000,0.000000,0.338738 -0.940526,0.000000,0.000000,0.339723 -0.940169,0.000000,0.000000,0.340708 -0.939812,0.000000,0.000000,0.341692 -0.939454,0.000000,0.000000,0.342676 -0.939094,0.000000,0.000000,0.343660 -0.938734,0.000000,0.000000,0.344643 -0.938372,0.000000,0.000000,0.345626 -0.938010,0.000000,0.000000,0.346608 -0.937646,0.000000,0.000000,0.347590 -0.937282,0.000000,0.000000,0.348572 -0.936916,0.000000,0.000000,0.349553 -0.936550,0.000000,0.000000,0.350534 -0.936182,0.000000,0.000000,0.351515 -0.935814,0.000000,0.000000,0.352495 -0.935444,0.000000,0.000000,0.353475 -0.935073,0.000000,0.000000,0.354454 -0.934702,0.000000,0.000000,0.355433 -0.934329,0.000000,0.000000,0.356412 -0.933955,0.000000,0.000000,0.357390 -0.933580,0.000000,0.000000,0.358368 -0.933205,0.000000,0.000000,0.359345 -0.932828,0.000000,0.000000,0.360322 -0.932450,0.000000,0.000000,0.361299 -0.932071,0.000000,0.000000,0.362275 -0.931691,0.000000,0.000000,0.363251 -0.931310,0.000000,0.000000,0.364227 -0.930928,0.000000,0.000000,0.365202 -0.930545,0.000000,0.000000,0.366176 -0.930161,0.000000,0.000000,0.367151 -0.929776,0.000000,0.000000,0.368125 -0.929390,0.000000,0.000000,0.369098 -0.929003,0.000000,0.000000,0.370071 -0.928615,0.000000,0.000000,0.371044 -0.928226,0.000000,0.000000,0.372016 -0.927836,0.000000,0.000000,0.372988 -0.927445,0.000000,0.000000,0.373959 -0.927053,0.000000,0.000000,0.374930 -0.926660,0.000000,0.000000,0.375901 -0.926266,0.000000,0.000000,0.376871 -0.925871,0.000000,0.000000,0.377841 -0.925474,0.000000,0.000000,0.378810 -0.925077,0.000000,0.000000,0.379779 -0.924679,0.000000,0.000000,0.380748 -0.924280,0.000000,0.000000,0.381716 -0.923880,0.000000,0.000000,0.382683 -0.923478,0.000000,0.000000,0.383651 -0.923076,0.000000,0.000000,0.384618 -0.922673,0.000000,0.000000,0.385584 -0.922268,0.000000,0.000000,0.386550 -0.921863,0.000000,0.000000,0.387516 -0.921457,0.000000,0.000000,0.388481 -0.921050,0.000000,0.000000,0.389445 -0.920641,0.000000,0.000000,0.390410 -0.920232,0.000000,0.000000,0.391374 -0.919821,0.000000,0.000000,0.392337 -0.919410,0.000000,0.000000,0.393300 -0.918998,0.000000,0.000000,0.394263 -0.918584,0.000000,0.000000,0.395225 -0.918170,0.000000,0.000000,0.396187 -0.917755,0.000000,0.000000,0.397148 -0.917338,0.000000,0.000000,0.398109 -0.916921,0.000000,0.000000,0.399069 -0.916502,0.000000,0.000000,0.400029 -0.916083,0.000000,0.000000,0.400989 -0.915663,0.000000,0.000000,0.401948 -0.915241,0.000000,0.000000,0.402906 -0.914819,0.000000,0.000000,0.403865 -0.914395,0.000000,0.000000,0.404822 -0.913971,0.000000,0.000000,0.405780 -0.913545,0.000000,0.000000,0.406737 -0.913119,0.000000,0.000000,0.407693 -0.912692,0.000000,0.000000,0.408649 -0.912263,0.000000,0.000000,0.409605 -0.911834,0.000000,0.000000,0.410560 -0.911403,0.000000,0.000000,0.411514 -0.910972,0.000000,0.000000,0.412469 -0.910539,0.000000,0.000000,0.413422 -0.910106,0.000000,0.000000,0.414376 -0.909672,0.000000,0.000000,0.415328 -0.909236,0.000000,0.000000,0.416281 -0.908800,0.000000,0.000000,0.417233 -0.908362,0.000000,0.000000,0.418184 -0.907924,0.000000,0.000000,0.419135 -0.907484,0.000000,0.000000,0.420086 -0.907044,0.000000,0.000000,0.421036 -0.906603,0.000000,0.000000,0.421985 -0.906160,0.000000,0.000000,0.422935 -0.905717,0.000000,0.000000,0.423883 -0.905272,0.000000,0.000000,0.424832 -0.904827,0.000000,0.000000,0.425779 -0.904381,0.000000,0.000000,0.426727 -0.903933,0.000000,0.000000,0.427673 -0.903485,0.000000,0.000000,0.428620 -0.903036,0.000000,0.000000,0.429566 -0.902585,0.000000,0.000000,0.430511 -0.902134,0.000000,0.000000,0.431456 -0.901682,0.000000,0.000000,0.432401 -0.901228,0.000000,0.000000,0.433345 -0.900774,0.000000,0.000000,0.434288 -0.900319,0.000000,0.000000,0.435231 -0.899863,0.000000,0.000000,0.436174 -0.899405,0.000000,0.000000,0.437116 -0.898947,0.000000,0.000000,0.438057 -0.898488,0.000000,0.000000,0.438999 -0.898028,0.000000,0.000000,0.439939 -0.897566,0.000000,0.000000,0.440879 -0.897104,0.000000,0.000000,0.441819 -0.896641,0.000000,0.000000,0.442758 -0.896177,0.000000,0.000000,0.443697 -0.895712,0.000000,0.000000,0.444635 -0.895246,0.000000,0.000000,0.445573 -0.894779,0.000000,0.000000,0.446510 -0.894310,0.000000,0.000000,0.447447 -0.893841,0.000000,0.000000,0.448383 -0.893371,0.000000,0.000000,0.449319 -0.892900,0.000000,0.000000,0.450254 -0.892428,0.000000,0.000000,0.451189 -0.891955,0.000000,0.000000,0.452123 -0.891481,0.000000,0.000000,0.453057 -0.891007,0.000000,0.000000,0.453990 -0.890531,0.000000,0.000000,0.454923 -0.890054,0.000000,0.000000,0.455856 -0.889576,0.000000,0.000000,0.456787 -0.889097,0.000000,0.000000,0.457719 -0.888617,0.000000,0.000000,0.458650 -0.888136,0.000000,0.000000,0.459580 -0.887655,0.000000,0.000000,0.460510 -0.887172,0.000000,0.000000,0.461439 -0.886688,0.000000,0.000000,0.462368 -0.886204,0.000000,0.000000,0.463296 -0.885718,0.000000,0.000000,0.464224 -0.885231,0.000000,0.000000,0.465151 -0.884744,0.000000,0.000000,0.466078 -0.884255,0.000000,0.000000,0.467004 -0.883766,0.000000,0.000000,0.467930 -0.883275,0.000000,0.000000,0.468855 -0.882784,0.000000,0.000000,0.469780 -0.882291,0.000000,0.000000,0.470704 -0.881798,0.000000,0.000000,0.471628 -0.881303,0.000000,0.000000,0.472551 -0.880808,0.000000,0.000000,0.473473 -0.880312,0.000000,0.000000,0.474396 -0.879815,0.000000,0.000000,0.475317 -0.879316,0.000000,0.000000,0.476238 -0.878817,0.000000,0.000000,0.477159 -0.878317,0.000000,0.000000,0.478079 -0.877816,0.000000,0.000000,0.478998 -0.877314,0.000000,0.000000,0.479917 -0.876811,0.000000,0.000000,0.480836 -0.876307,0.000000,0.000000,0.481754 -0.875802,0.000000,0.000000,0.482671 -0.875296,0.000000,0.000000,0.483588 -0.874789,0.000000,0.000000,0.484504 -0.874281,0.000000,0.000000,0.485420 -0.873772,0.000000,0.000000,0.486335 -0.873262,0.000000,0.000000,0.487250 -0.872752,0.000000,0.000000,0.488164 -0.872240,0.000000,0.000000,0.489078 -0.871727,0.000000,0.000000,0.489991 -0.871214,0.000000,0.000000,0.490904 -0.870699,0.000000,0.000000,0.491816 -0.870184,0.000000,0.000000,0.492727 -0.869667,0.000000,0.000000,0.493638 -0.869150,0.000000,0.000000,0.494549 -0.868632,0.000000,0.000000,0.495459 -0.868112,0.000000,0.000000,0.496368 -0.867592,0.000000,0.000000,0.497277 -0.867071,0.000000,0.000000,0.498185 -0.866549,0.000000,0.000000,0.499093 -0.866025,0.000000,0.000000,0.500000 -0.865501,0.000000,0.000000,0.500907 -0.864976,0.000000,0.000000,0.501813 -0.864450,0.000000,0.000000,0.502718 -0.863923,0.000000,0.000000,0.503623 -0.863396,0.000000,0.000000,0.504528 -0.862867,0.000000,0.000000,0.505431 -0.862337,0.000000,0.000000,0.506335 -0.861806,0.000000,0.000000,0.507238 -0.861275,0.000000,0.000000,0.508140 -0.860742,0.000000,0.000000,0.509041 -0.860208,0.000000,0.000000,0.509943 -0.859674,0.000000,0.000000,0.510843 -0.859139,0.000000,0.000000,0.511743 -0.858602,0.000000,0.000000,0.512642 -0.858065,0.000000,0.000000,0.513541 -0.857527,0.000000,0.000000,0.514440 -0.856987,0.000000,0.000000,0.515337 -0.856447,0.000000,0.000000,0.516234 -0.855906,0.000000,0.000000,0.517131 -0.855364,0.000000,0.000000,0.518027 -0.854821,0.000000,0.000000,0.518922 -0.854277,0.000000,0.000000,0.519817 -0.853733,0.000000,0.000000,0.520712 -0.853187,0.000000,0.000000,0.521605 -0.852640,0.000000,0.000000,0.522499 -0.852093,0.000000,0.000000,0.523391 -0.851544,0.000000,0.000000,0.524283 -0.850994,0.000000,0.000000,0.525175 -0.850444,0.000000,0.000000,0.526066 -0.849893,0.000000,0.000000,0.526956 -0.849340,0.000000,0.000000,0.527846 -0.848787,0.000000,0.000000,0.528735 -0.848233,0.000000,0.000000,0.529623 -0.847678,0.000000,0.000000,0.530511 -0.847122,0.000000,0.000000,0.531399 -0.846565,0.000000,0.000000,0.532285 -0.846007,0.000000,0.000000,0.533172 -0.845448,0.000000,0.000000,0.534057 -0.844889,0.000000,0.000000,0.534942 -0.844328,0.000000,0.000000,0.535827 -0.843766,0.000000,0.000000,0.536711 -0.843204,0.000000,0.000000,0.537594 -0.842640,0.000000,0.000000,0.538477 -0.842076,0.000000,0.000000,0.539359 -0.841511,0.000000,0.000000,0.540240 -0.840945,0.000000,0.000000,0.541121 -0.840377,0.000000,0.000000,0.542002 -0.839809,0.000000,0.000000,0.542881 -0.839240,0.000000,0.000000,0.543760 -0.838671,0.000000,0.000000,0.544639 -0.838100,0.000000,0.000000,0.545517 -0.837528,0.000000,0.000000,0.546394 -0.836955,0.000000,0.000000,0.547271 -0.836382,0.000000,0.000000,0.548147 -0.835807,0.000000,0.000000,0.549023 -0.835232,0.000000,0.000000,0.549898 -0.834656,0.000000,0.000000,0.550772 -0.834078,0.000000,0.000000,0.551646 -0.833500,0.000000,0.000000,0.552519 -0.832921,0.000000,0.000000,0.553392 -0.832341,0.000000,0.000000,0.554263 -0.831760,0.000000,0.000000,0.555135 -0.831179,0.000000,0.000000,0.556006 -0.830596,0.000000,0.000000,0.556876 -0.830012,0.000000,0.000000,0.557745 -0.829428,0.000000,0.000000,0.558614 -0.828842,0.000000,0.000000,0.559482 -0.828256,0.000000,0.000000,0.560350 -0.827669,0.000000,0.000000,0.561217 -0.827081,0.000000,0.000000,0.562083 -0.826492,0.000000,0.000000,0.562949 -0.825902,0.000000,0.000000,0.563814 -0.825311,0.000000,0.000000,0.564679 -0.824719,0.000000,0.000000,0.565543 -0.824126,0.000000,0.000000,0.566406 -0.823533,0.000000,0.000000,0.567269 -0.822938,0.000000,0.000000,0.568131 -0.822343,0.000000,0.000000,0.568993 -0.821746,0.000000,0.000000,0.569853 -0.821149,0.000000,0.000000,0.570714 -0.820551,0.000000,0.000000,0.571573 -0.819952,0.000000,0.000000,0.572432 -0.819352,0.000000,0.000000,0.573290 -0.818751,0.000000,0.000000,0.574148 -0.818150,0.000000,0.000000,0.575005 -0.817547,0.000000,0.000000,0.575862 -0.816944,0.000000,0.000000,0.576718 -0.816339,0.000000,0.000000,0.577573 -0.815734,0.000000,0.000000,0.578427 -0.815128,0.000000,0.000000,0.579281 -0.814521,0.000000,0.000000,0.580134 -0.813913,0.000000,0.000000,0.580987 -0.813304,0.000000,0.000000,0.581839 -0.812694,0.000000,0.000000,0.582690 -0.812084,0.000000,0.000000,0.583541 -0.811472,0.000000,0.000000,0.584391 -0.810860,0.000000,0.000000,0.585241 -0.810246,0.000000,0.000000,0.586090 -0.809632,0.000000,0.000000,0.586938 -0.809017,0.000000,0.000000,0.587785 -0.808401,0.000000,0.000000,0.588632 -0.807784,0.000000,0.000000,0.589478 -0.807166,0.000000,0.000000,0.590324 -0.806548,0.000000,0.000000,0.591169 -0.805928,0.000000,0.000000,0.592013 -0.805308,0.000000,0.000000,0.592857 -0.804687,0.000000,0.000000,0.593700 -0.804064,0.000000,0.000000,0.594542 -0.803441,0.000000,0.000000,0.595384 -0.802817,0.000000,0.000000,0.596225 -0.802193,0.000000,0.000000,0.597065 -0.801567,0.000000,0.000000,0.597905 -0.800940,0.000000,0.000000,0.598744 -0.800313,0.000000,0.000000,0.599582 -0.799685,0.000000,0.000000,0.600420 -0.799055,0.000000,0.000000,0.601257 -0.798425,0.000000,0.000000,0.602094 -0.797794,0.000000,0.000000,0.602930 -0.797163,0.000000,0.000000,0.603765 -0.796530,0.000000,0.000000,0.604599 -0.795896,0.000000,0.000000,0.605433 -0.795262,0.000000,0.000000,0.606266 -0.794627,0.000000,0.000000,0.607098 -0.793990,0.000000,0.000000,0.607930 -0.793353,0.000000,0.000000,0.608761 -0.792715,0.000000,0.000000,0.609592 -0.792077,0.000000,0.000000,0.610422 -0.791437,0.000000,0.000000,0.611251 -0.790796,0.000000,0.000000,0.612079 -0.790155,0.000000,0.000000,0.612907 -0.789513,0.000000,0.000000,0.613734 -0.788870,0.000000,0.000000,0.614561 -0.788226,0.000000,0.000000,0.615386 -0.787581,0.000000,0.000000,0.616211 -0.786935,0.000000,0.000000,0.617036 -0.786288,0.000000,0.000000,0.617860 -0.785641,0.000000,0.000000,0.618683 -0.784993,0.000000,0.000000,0.619505 -0.784343,0.000000,0.000000,0.620327 -0.783693,0.000000,0.000000,0.621148 -0.783043,0.000000,0.000000,0.621968 -0.782391,0.000000,0.000000,0.622788 -0.781738,0.000000,0.000000,0.623607 -0.781085,0.000000,0.000000,0.624425 -0.780430,0.000000,0.000000,0.625243 -0.779775,0.000000,0.000000,0.626060 -0.779119,0.000000,0.000000,0.626876 -0.778462,0.000000,0.000000,0.627691 -0.777805,0.000000,0.000000,0.628506 -0.777146,0.000000,0.000000,0.629320 -0.776487,0.000000,0.000000,0.630134 -0.775826,0.000000,0.000000,0.630947 -0.775165,0.000000,0.000000,0.631759 -0.774503,0.000000,0.000000,0.632570 -0.773840,0.000000,0.000000,0.633381 -0.773177,0.000000,0.000000,0.634191 -0.772512,0.000000,0.000000,0.635000 -0.771847,0.000000,0.000000,0.635809 -0.771180,0.000000,0.000000,0.636617 -0.770513,0.000000,0.000000,0.637424 -0.769845,0.000000,0.000000,0.638231 -0.769177,0.000000,0.000000,0.639036 -0.768507,0.000000,0.000000,0.639841 -0.767836,0.000000,0.000000,0.640646 -0.767165,0.000000,0.000000,0.641450 -0.766493,0.000000,0.000000,0.642253 -0.765820,0.000000,0.000000,0.643055 -0.765146,0.000000,0.000000,0.643857 -0.764472,0.000000,0.000000,0.644657 -0.763796,0.000000,0.000000,0.645458 -0.763120,0.000000,0.000000,0.646257 -0.762443,0.000000,0.000000,0.647056 -0.761764,0.000000,0.000000,0.647854 -0.761086,0.000000,0.000000,0.648651 -0.760406,0.000000,0.000000,0.649448 -0.759725,0.000000,0.000000,0.650244 -0.759044,0.000000,0.000000,0.651039 -0.758362,0.000000,0.000000,0.651834 -0.757679,0.000000,0.000000,0.652628 -0.756995,0.000000,0.000000,0.653421 -0.756310,0.000000,0.000000,0.654213 -0.755625,0.000000,0.000000,0.655005 -0.754939,0.000000,0.000000,0.655796 -0.754251,0.000000,0.000000,0.656586 -0.753563,0.000000,0.000000,0.657375 -0.752875,0.000000,0.000000,0.658164 -0.752185,0.000000,0.000000,0.658952 -0.751494,0.000000,0.000000,0.659739 -0.750803,0.000000,0.000000,0.660526 -0.750111,0.000000,0.000000,0.661312 -0.749418,0.000000,0.000000,0.662097 -0.748724,0.000000,0.000000,0.662881 -0.748030,0.000000,0.000000,0.663665 -0.747334,0.000000,0.000000,0.664448 -0.746638,0.000000,0.000000,0.665230 -0.745941,0.000000,0.000000,0.666012 -0.745243,0.000000,0.000000,0.666793 -0.744545,0.000000,0.000000,0.667573 -0.743845,0.000000,0.000000,0.668352 -0.743145,0.000000,0.000000,0.669131 -0.742444,0.000000,0.000000,0.669908 -0.741742,0.000000,0.000000,0.670686 -0.741039,0.000000,0.000000,0.671462 -0.740335,0.000000,0.000000,0.672238 -0.739631,0.000000,0.000000,0.673013 -0.738926,0.000000,0.000000,0.673787 -0.738220,0.000000,0.000000,0.674560 -0.737513,0.000000,0.000000,0.675333 -0.736806,0.000000,0.000000,0.676105 -0.736097,0.000000,0.000000,0.676876 -0.735388,0.000000,0.000000,0.677646 -0.734678,0.000000,0.000000,0.678416 -0.733967,0.000000,0.000000,0.679185 -0.733255,0.000000,0.000000,0.679953 -0.732543,0.000000,0.000000,0.680721 -0.731830,0.000000,0.000000,0.681488 -0.731116,0.000000,0.000000,0.682254 -0.730401,0.000000,0.000000,0.683019 -0.729685,0.000000,0.000000,0.683783 -0.728969,0.000000,0.000000,0.684547 -0.728251,0.000000,0.000000,0.685310 -0.727533,0.000000,0.000000,0.686072 -0.726814,0.000000,0.000000,0.686834 -0.726095,0.000000,0.000000,0.687595 -0.725374,0.000000,0.000000,0.688355 -0.724653,0.000000,0.000000,0.689114 -0.723931,0.000000,0.000000,0.689872 -0.723208,0.000000,0.000000,0.690630 -0.722485,0.000000,0.000000,0.691387 -0.721760,0.000000,0.000000,0.692143 -0.721035,0.000000,0.000000,0.692899 -0.720309,0.000000,0.000000,0.693653 -0.719582,0.000000,0.000000,0.694407 -0.718855,0.000000,0.000000,0.695160 -0.718126,0.000000,0.000000,0.695913 -0.717397,0.000000,0.000000,0.696664 -0.716667,0.000000,0.000000,0.697415 -0.715936,0.000000,0.000000,0.698165 -0.715205,0.000000,0.000000,0.698915 -0.714473,0.000000,0.000000,0.699663 -0.713740,0.000000,0.000000,0.700411 -0.713006,0.000000,0.000000,0.701158 -0.712271,0.000000,0.000000,0.701904 -0.711536,0.000000,0.000000,0.702650 -0.710799,0.000000,0.000000,0.703395 -0.710062,0.000000,0.000000,0.704139 -0.709325,0.000000,0.000000,0.704882 -0.708586,0.000000,0.000000,0.705624 -0.707847,0.000000,0.000000,0.706366 -0.707107,0.000000,0.000000,0.707107 -0.706366,0.000000,0.000000,0.707847 -0.705624,0.000000,0.000000,0.708586 -0.704882,0.000000,0.000000,0.709325 -0.704139,0.000000,0.000000,0.710062 -0.703395,0.000000,0.000000,0.710799 -0.702650,0.000000,0.000000,0.711536 -0.701904,0.000000,0.000000,0.712271 -0.701158,0.000000,0.000000,0.713006 -0.700411,0.000000,0.000000,0.713740 -0.699663,0.000000,0.000000,0.714473 -0.698915,0.000000,0.000000,0.715205 -0.698165,0.000000,0.000000,0.715936 -0.697415,0.000000,0.000000,0.716667 -0.696664,0.000000,0.000000,0.717397 -0.695913,0.000000,0.000000,0.718126 -0.695160,0.000000,0.000000,0.718855 -0.694407,0.000000,0.000000,0.719582 -0.693653,0.000000,0.000000,0.720309 -0.692899,0.000000,0.000000,0.721035 -0.692143,0.000000,0.000000,0.721760 -0.691387,0.000000,0.000000,0.722485 -0.690630,0.000000,0.000000,0.723208 -0.689872,0.000000,0.000000,0.723931 -0.689114,0.000000,0.000000,0.724653 -0.688355,0.000000,0.000000,0.725374 -0.687595,0.000000,0.000000,0.726095 -0.686834,0.000000,0.000000,0.726814 -0.686072,0.000000,0.000000,0.727533 -0.685310,0.000000,0.000000,0.728251 -0.684547,0.000000,0.000000,0.728969 -0.683783,0.000000,0.000000,0.729685 -0.683019,0.000000,0.000000,0.730401 -0.682254,0.000000,0.000000,0.731116 -0.681488,0.000000,0.000000,0.731830 -0.680721,0.000000,0.000000,0.732543 -0.679953,0.000000,0.000000,0.733255 -0.679185,0.000000,0.000000,0.733967 -0.678416,0.000000,0.000000,0.734678 -0.677646,0.000000,0.000000,0.735388 -0.676876,0.000000,0.000000,0.736097 -0.676105,0.000000,0.000000,0.736806 -0.675333,0.000000,0.000000,0.737513 -0.674560,0.000000,0.000000,0.738220 -0.673787,0.000000,0.000000,0.738926 -0.673013,0.000000,0.000000,0.739631 -0.672238,0.000000,0.000000,0.740335 -0.671462,0.000000,0.000000,0.741039 -0.670686,0.000000,0.000000,0.741742 -0.669908,0.000000,0.000000,0.742444 -0.669131,0.000000,0.000000,0.743145 -0.668352,0.000000,0.000000,0.743845 -0.667573,0.000000,0.000000,0.744545 -0.666793,0.000000,0.000000,0.745243 -0.666012,0.000000,0.000000,0.745941 -0.665230,0.000000,0.000000,0.746638 -0.664448,0.000000,0.000000,0.747334 -0.663665,0.000000,0.000000,0.748030 -0.662881,0.000000,0.000000,0.748724 -0.662097,0.000000,0.000000,0.749418 -0.661312,0.000000,0.000000,0.750111 -0.660526,0.000000,0.000000,0.750803 -0.659739,0.000000,0.000000,0.751494 -0.658952,0.000000,0.000000,0.752185 -0.658164,0.000000,0.000000,0.752875 -0.657375,0.000000,0.000000,0.753563 -0.656586,0.000000,0.000000,0.754251 -0.655796,0.000000,0.000000,0.754939 -0.655005,0.000000,0.000000,0.755625 -0.654213,0.000000,0.000000,0.756310 -0.653421,0.000000,0.000000,0.756995 -0.652628,0.000000,0.000000,0.757679 -0.651834,0.000000,0.000000,0.758362 -0.651039,0.000000,0.000000,0.759044 -0.650244,0.000000,0.000000,0.759725 -0.649448,0.000000,0.000000,0.760406 -0.648651,0.000000,0.000000,0.761086 -0.647854,0.000000,0.000000,0.761764 -0.647056,0.000000,0.000000,0.762443 -0.646257,0.000000,0.000000,0.763120 -0.645458,0.000000,0.000000,0.763796 -0.644657,0.000000,0.000000,0.764472 -0.643857,0.000000,0.000000,0.765146 -0.643055,0.000000,0.000000,0.765820 -0.642253,0.000000,0.000000,0.766493 -0.641450,0.000000,0.000000,0.767165 -0.640646,0.000000,0.000000,0.767836 -0.639841,0.000000,0.000000,0.768507 -0.639036,0.000000,0.000000,0.769177 -0.638231,0.000000,0.000000,0.769845 -0.637424,0.000000,0.000000,0.770513 -0.636617,0.000000,0.000000,0.771180 -0.635809,0.000000,0.000000,0.771847 -0.635000,0.000000,0.000000,0.772512 -0.634191,0.000000,0.000000,0.773177 -0.633381,0.000000,0.000000,0.773840 -0.632570,0.000000,0.000000,0.774503 -0.631759,0.000000,0.000000,0.775165 -0.630947,0.000000,0.000000,0.775826 -0.630134,0.000000,0.000000,0.776487 -0.629320,0.000000,0.000000,0.777146 -0.628506,0.000000,0.000000,0.777805 -0.627691,0.000000,0.000000,0.778462 -0.626876,0.000000,0.000000,0.779119 -0.626060,0.000000,0.000000,0.779775 -0.625243,0.000000,0.000000,0.780430 -0.624425,0.000000,0.000000,0.781085 -0.623607,0.000000,0.000000,0.781738 -0.622788,0.000000,0.000000,0.782391 -0.621968,0.000000,0.000000,0.783043 -0.621148,0.000000,0.000000,0.783693 -0.620327,0.000000,0.000000,0.784343 -0.619505,0.000000,0.000000,0.784993 -0.618683,0.000000,0.000000,0.785641 -0.617860,0.000000,0.000000,0.786288 -0.617036,0.000000,0.000000,0.786935 -0.616211,0.000000,0.000000,0.787581 -0.615386,0.000000,0.000000,0.788226 -0.614561,0.000000,0.000000,0.788870 -0.613734,0.000000,0.000000,0.789513 -0.612907,0.000000,0.000000,0.790155 -0.612079,0.000000,0.000000,0.790796 -0.611251,0.000000,0.000000,0.791437 -0.610422,0.000000,0.000000,0.792077 -0.609592,0.000000,0.000000,0.792715 -0.608761,0.000000,0.000000,0.793353 -0.607930,0.000000,0.000000,0.793990 -0.607098,0.000000,0.000000,0.794627 -0.606266,0.000000,0.000000,0.795262 -0.605433,0.000000,0.000000,0.795896 -0.604599,0.000000,0.000000,0.796530 -0.603765,0.000000,0.000000,0.797163 -0.602930,0.000000,0.000000,0.797794 -0.602094,0.000000,0.000000,0.798425 -0.601257,0.000000,0.000000,0.799055 -0.600420,0.000000,0.000000,0.799685 -0.599582,0.000000,0.000000,0.800313 -0.598744,0.000000,0.000000,0.800940 -0.597905,0.000000,0.000000,0.801567 -0.597065,0.000000,0.000000,0.802193 -0.596225,0.000000,0.000000,0.802817 -0.595384,0.000000,0.000000,0.803441 -0.594542,0.000000,0.000000,0.804064 -0.593700,0.000000,0.000000,0.804687 -0.592857,0.000000,0.000000,0.805308 -0.592013,0.000000,0.000000,0.805928 -0.591169,0.000000,0.000000,0.806548 -0.590324,0.000000,0.000000,0.807166 -0.589478,0.000000,0.000000,0.807784 -0.588632,0.000000,0.000000,0.808401 -0.587785,0.000000,0.000000,0.809017 -0.586938,0.000000,0.000000,0.809632 -0.586090,0.000000,0.000000,0.810246 -0.585241,0.000000,0.000000,0.810860 -0.584391,0.000000,0.000000,0.811472 -0.583541,0.000000,0.000000,0.812084 -0.582690,0.000000,0.000000,0.812694 -0.581839,0.000000,0.000000,0.813304 -0.580987,0.000000,0.000000,0.813913 -0.580134,0.000000,0.000000,0.814521 -0.579281,0.000000,0.000000,0.815128 -0.578427,0.000000,0.000000,0.815734 -0.577573,0.000000,0.000000,0.816339 -0.576718,0.000000,0.000000,0.816944 -0.575862,0.000000,0.000000,0.817547 -0.575005,0.000000,0.000000,0.818150 -0.574148,0.000000,0.000000,0.818751 -0.573290,0.000000,0.000000,0.819352 -0.572432,0.000000,0.000000,0.819952 -0.571573,0.000000,0.000000,0.820551 -0.570714,0.000000,0.000000,0.821149 -0.569853,0.000000,0.000000,0.821746 -0.568993,0.000000,0.000000,0.822343 -0.568131,0.000000,0.000000,0.822938 -0.567269,0.000000,0.000000,0.823533 -0.566406,0.000000,0.000000,0.824126 -0.565543,0.000000,0.000000,0.824719 -0.564679,0.000000,0.000000,0.825311 -0.563814,0.000000,0.000000,0.825902 -0.562949,0.000000,0.000000,0.826492 -0.562083,0.000000,0.000000,0.827081 -0.561217,0.000000,0.000000,0.827669 -0.560350,0.000000,0.000000,0.828256 -0.559482,0.000000,0.000000,0.828842 -0.558614,0.000000,0.000000,0.829428 -0.557745,0.000000,0.000000,0.830012 -0.556876,0.000000,0.000000,0.830596 -0.556006,0.000000,0.000000,0.831179 -0.555135,0.000000,0.000000,0.831760 -0.554263,0.000000,0.000000,0.832341 -0.553392,0.000000,0.000000,0.832921 -0.552519,0.000000,0.000000,0.833500 -0.551646,0.000000,0.000000,0.834078 -0.550772,0.000000,0.000000,0.834656 -0.549898,0.000000,0.000000,0.835232 -0.549023,0.000000,0.000000,0.835807 -0.548147,0.000000,0.000000,0.836382 -0.547271,0.000000,0.000000,0.836955 -0.546394,0.000000,0.000000,0.837528 -0.545517,0.000000,0.000000,0.838100 -0.544639,0.000000,0.000000,0.838671 -0.543760,0.000000,0.000000,0.839240 -0.542881,0.000000,0.000000,0.839809 -0.542002,0.000000,0.000000,0.840377 -0.541121,0.000000,0.000000,0.840945 -0.540240,0.000000,0.000000,0.841511 -0.539359,0.000000,0.000000,0.842076 -0.538477,0.000000,0.000000,0.842640 -0.537594,0.000000,0.000000,0.843204 -0.536711,0.000000,0.000000,0.843766 -0.535827,0.000000,0.000000,0.844328 -0.534942,0.000000,0.000000,0.844889 -0.534057,0.000000,0.000000,0.845448 -0.533172,0.000000,0.000000,0.846007 -0.532285,0.000000,0.000000,0.846565 -0.531399,0.000000,0.000000,0.847122 -0.530511,0.000000,0.000000,0.847678 -0.529623,0.000000,0.000000,0.848233 -0.528735,0.000000,0.000000,0.848787 -0.527846,0.000000,0.000000,0.849340 -0.526956,0.000000,0.000000,0.849893 -0.526066,0.000000,0.000000,0.850444 -0.525175,0.000000,0.000000,0.850994 -0.524283,0.000000,0.000000,0.851544 -0.523391,0.000000,0.000000,0.852093 -0.522499,0.000000,0.000000,0.852640 -0.521605,0.000000,0.000000,0.853187 -0.520712,0.000000,0.000000,0.853733 -0.519817,0.000000,0.000000,0.854277 -0.518922,0.000000,0.000000,0.854821 -0.518027,0.000000,0.000000,0.855364 -0.517131,0.000000,0.000000,0.855906 -0.516234,0.000000,0.000000,0.856447 -0.515337,0.000000,0.000000,0.856987 -0.514440,0.000000,0.000000,0.857527 -0.513541,0.000000,0.000000,0.858065 -0.512642,0.000000,0.000000,0.858602 -0.511743,0.000000,0.000000,0.859139 -0.510843,0.000000,0.000000,0.859674 -0.509943,0.000000,0.000000,0.860208 -0.509041,0.000000,0.000000,0.860742 -0.508140,0.000000,0.000000,0.861275 -0.507238,0.000000,0.000000,0.861806 -0.506335,0.000000,0.000000,0.862337 -0.505431,0.000000,0.000000,0.862867 -0.504528,0.000000,0.000000,0.863396 -0.503623,0.000000,0.000000,0.863923 -0.502718,0.000000,0.000000,0.864450 -0.501813,0.000000,0.000000,0.864976 -0.500907,0.000000,0.000000,0.865501 -0.500000,0.000000,0.000000,0.866025 -0.499093,0.000000,0.000000,0.866549 -0.498185,0.000000,0.000000,0.867071 -0.497277,0.000000,0.000000,0.867592 -0.496368,0.000000,0.000000,0.868112 -0.495459,0.000000,0.000000,0.868632 -0.494549,0.000000,0.000000,0.869150 -0.493638,0.000000,0.000000,0.869667 -0.492727,0.000000,0.000000,0.870184 -0.491816,0.000000,0.000000,0.870699 -0.490904,0.000000,0.000000,0.871214 -0.489991,0.000000,0.000000,0.871727 -0.489078,0.000000,0.000000,0.872240 -0.488164,0.000000,0.000000,0.872752 -0.487250,0.000000,0.000000,0.873262 -0.486335,0.000000,0.000000,0.873772 -0.485420,0.000000,0.000000,0.874281 -0.484504,0.000000,0.000000,0.874789 -0.483588,0.000000,0.000000,0.875296 -0.482671,0.000000,0.000000,0.875802 -0.481754,0.000000,0.000000,0.876307 -0.480836,0.000000,0.000000,0.876811 -0.479917,0.000000,0.000000,0.877314 -0.478998,0.000000,0.000000,0.877816 -0.478079,0.000000,0.000000,0.878317 -0.477159,0.000000,0.000000,0.878817 -0.476238,0.000000,0.000000,0.879316 -0.475317,0.000000,0.000000,0.879815 -0.474396,0.000000,0.000000,0.880312 -0.473473,0.000000,0.000000,0.880808 -0.472551,0.000000,0.000000,0.881303 -0.471628,0.000000,0.000000,0.881798 -0.470704,0.000000,0.000000,0.882291 -0.469780,0.000000,0.000000,0.882784 -0.468855,0.000000,0.000000,0.883275 -0.467930,0.000000,0.000000,0.883766 -0.467004,0.000000,0.000000,0.884255 -0.466078,0.000000,0.000000,0.884744 -0.465151,0.000000,0.000000,0.885231 -0.464224,0.000000,0.000000,0.885718 -0.463296,0.000000,0.000000,0.886204 -0.462368,0.000000,0.000000,0.886688 -0.461439,0.000000,0.000000,0.887172 -0.460510,0.000000,0.000000,0.887655 -0.459580,0.000000,0.000000,0.888136 -0.458650,0.000000,0.000000,0.888617 -0.457719,0.000000,0.000000,0.889097 -0.456787,0.000000,0.000000,0.889576 -0.455856,0.000000,0.000000,0.890054 -0.454923,0.000000,0.000000,0.890531 -0.453990,0.000000,0.000000,0.891007 -0.453057,0.000000,0.000000,0.891481 -0.452123,0.000000,0.000000,0.891955 -0.451189,0.000000,0.000000,0.892428 -0.450254,0.000000,0.000000,0.892900 -0.449319,0.000000,0.000000,0.893371 -0.448383,0.000000,0.000000,0.893841 -0.447447,0.000000,0.000000,0.894310 -0.446510,0.000000,0.000000,0.894779 -0.445573,0.000000,0.000000,0.895246 -0.444635,0.000000,0.000000,0.895712 -0.443697,0.000000,0.000000,0.896177 -0.442758,0.000000,0.000000,0.896641 -0.441819,0.000000,0.000000,0.897104 -0.440879,0.000000,0.000000,0.897566 -0.439939,0.000000,0.000000,0.898028 -0.438999,0.000000,0.000000,0.898488 -0.438057,0.000000,0.000000,0.898947 -0.437116,0.000000,0.000000,0.899405 -0.436174,0.000000,0.000000,0.899863 -0.435231,0.000000,0.000000,0.900319 -0.434288,0.000000,0.000000,0.900774 -0.433345,0.000000,0.000000,0.901228 -0.432401,0.000000,0.000000,0.901682 -0.431456,0.000000,0.000000,0.902134 -0.430511,0.000000,0.000000,0.902585 -0.429566,0.000000,0.000000,0.903036 -0.428620,0.000000,0.000000,0.903485 -0.427673,0.000000,0.000000,0.903933 -0.426727,0.000000,0.000000,0.904381 -0.425779,0.000000,0.000000,0.904827 -0.424832,0.000000,0.000000,0.905272 -0.423883,0.000000,0.000000,0.905717 -0.422935,0.000000,0.000000,0.906160 -0.421985,0.000000,0.000000,0.906603 -0.421036,0.000000,0.000000,0.907044 -0.420086,0.000000,0.000000,0.907484 -0.419135,0.000000,0.000000,0.907924 -0.418184,0.000000,0.000000,0.908362 -0.417233,0.000000,0.000000,0.908800 -0.416281,0.000000,0.000000,0.909236 -0.415328,0.000000,0.000000,0.909672 -0.414376,0.000000,0.000000,0.910106 -0.413422,0.000000,0.000000,0.910539 -0.412469,0.000000,0.000000,0.910972 -0.411514,0.000000,0.000000,0.911403 -0.410560,0.000000,0.000000,0.911834 -0.409605,0.000000,0.000000,0.912263 -0.408649,0.000000,0.000000,0.912692 -0.407693,0.000000,0.000000,0.913119 -0.406737,0.000000,0.000000,0.913545 -0.405780,0.000000,0.000000,0.913971 -0.404822,0.000000,0.000000,0.914395 -0.403865,0.000000,0.000000,0.914819 -0.402906,0.000000,0.000000,0.915241 -0.401948,0.000000,0.000000,0.915663 -0.400989,0.000000,0.000000,0.916083 -0.400029,0.000000,0.000000,0.916502 -0.399069,0.000000,0.000000,0.916921 -0.398109,0.000000,0.000000,0.917338 -0.397148,0.000000,0.000000,0.917755 -0.396187,0.000000,0.000000,0.918170 -0.395225,0.000000,0.000000,0.918584 -0.394263,0.000000,0.000000,0.918998 -0.393300,0.000000,0.000000,0.919410 -0.392337,0.000000,0.000000,0.919821 -0.391374,0.000000,0.000000,0.920232 -0.390410,0.000000,0.000000,0.920641 -0.389445,0.000000,0.000000,0.921050 -0.388481,0.000000,0.000000,0.921457 -0.387516,0.000000,0.000000,0.921863 -0.386550,0.000000,0.000000,0.922268 -0.385584,0.000000,0.000000,0.922673 -0.384618,0.000000,0.000000,0.923076 -0.383651,0.000000,0.000000,0.923478 -0.382683,0.000000,0.000000,0.923880 -0.381716,0.000000,0.000000,0.924280 -0.380748,0.000000,0.000000,0.924679 -0.379779,0.000000,0.000000,0.925077 -0.378810,0.000000,0.000000,0.925474 -0.377841,0.000000,0.000000,0.925871 -0.376871,0.000000,0.000000,0.926266 -0.375901,0.000000,0.000000,0.926660 -0.374930,0.000000,0.000000,0.927053 -0.373959,0.000000,0.000000,0.927445 -0.372988,0.000000,0.000000,0.927836 -0.372016,0.000000,0.000000,0.928226 -0.371044,0.000000,0.000000,0.928615 -0.370071,0.000000,0.000000,0.929003 -0.369098,0.000000,0.000000,0.929390 -0.368125,0.000000,0.000000,0.929776 -0.367151,0.000000,0.000000,0.930161 -0.366176,0.000000,0.000000,0.930545 -0.365202,0.000000,0.000000,0.930928 -0.364227,0.000000,0.000000,0.931310 -0.363251,0.000000,0.000000,0.931691 -0.362275,0.000000,0.000000,0.932071 -0.361299,0.000000,0.000000,0.932450 -0.360322,0.000000,0.000000,0.932828 -0.359345,0.000000,0.000000,0.933205 -0.358368,0.000000,0.000000,0.933580 -0.357390,0.000000,0.000000,0.933955 -0.356412,0.000000,0.000000,0.934329 -0.355433,0.000000,0.000000,0.934702 -0.354454,0.000000,0.000000,0.935073 -0.353475,0.000000,0.000000,0.935444 -0.352495,0.000000,0.000000,0.935814 -0.351515,0.000000,0.000000,0.936182 -0.350534,0.000000,0.000000,0.936550 -0.349553,0.000000,0.000000,0.936916 -0.348572,0.000000,0.000000,0.937282 -0.347590,0.000000,0.000000,0.937646 -0.346608,0.000000,0.000000,0.938010 -0.345626,0.000000,0.000000,0.938372 -0.344643,0.000000,0.000000,0.938734 -0.343660,0.000000,0.000000,0.939094 -0.342676,0.000000,0.000000,0.939454 -0.341692,0.000000,0.000000,0.939812 -0.340708,0.000000,0.000000,0.940169 -0.339723,0.000000,0.000000,0.940526 -0.338738,0.000000,0.000000,0.940881 -0.337752,0.000000,0.000000,0.941235 -0.336767,0.000000,0.000000,0.941588 -0.335780,0.000000,0.000000,0.941940 -0.334794,0.000000,0.000000,0.942291 -0.333807,0.000000,0.000000,0.942641 -0.332820,0.000000,0.000000,0.942991 -0.331832,0.000000,0.000000,0.943339 -0.330844,0.000000,0.000000,0.943686 -0.329855,0.000000,0.000000,0.944031 -0.328867,0.000000,0.000000,0.944376 -0.327878,0.000000,0.000000,0.944720 -0.326888,0.000000,0.000000,0.945063 -0.325898,0.000000,0.000000,0.945405 -0.324908,0.000000,0.000000,0.945746 -0.323917,0.000000,0.000000,0.946085 -0.322927,0.000000,0.000000,0.946424 -0.321935,0.000000,0.000000,0.946762 -0.320944,0.000000,0.000000,0.947098 -0.319952,0.000000,0.000000,0.947434 -0.318959,0.000000,0.000000,0.947768 -0.317967,0.000000,0.000000,0.948102 -0.316974,0.000000,0.000000,0.948434 -0.315980,0.000000,0.000000,0.948766 -0.314987,0.000000,0.000000,0.949096 -0.313992,0.000000,0.000000,0.949425 -0.312998,0.000000,0.000000,0.949754 -0.312003,0.000000,0.000000,0.950081 -0.311008,0.000000,0.000000,0.950407 -0.310013,0.000000,0.000000,0.950732 -0.309017,0.000000,0.000000,0.951057 -0.308021,0.000000,0.000000,0.951380 -0.307024,0.000000,0.000000,0.951702 -0.306028,0.000000,0.000000,0.952023 -0.305031,0.000000,0.000000,0.952343 -0.304033,0.000000,0.000000,0.952661 -0.303035,0.000000,0.000000,0.952979 -0.302037,0.000000,0.000000,0.953296 -0.301039,0.000000,0.000000,0.953612 -0.300040,0.000000,0.000000,0.953927 -0.299041,0.000000,0.000000,0.954240 -0.298041,0.000000,0.000000,0.954553 -0.297042,0.000000,0.000000,0.954865 -0.296041,0.000000,0.000000,0.955175 -0.295041,0.000000,0.000000,0.955485 -0.294040,0.000000,0.000000,0.955793 -0.293039,0.000000,0.000000,0.956100 -0.292038,0.000000,0.000000,0.956407 -0.291036,0.000000,0.000000,0.956712 -0.290034,0.000000,0.000000,0.957016 -0.289032,0.000000,0.000000,0.957319 -0.288029,0.000000,0.000000,0.957622 -0.287026,0.000000,0.000000,0.957923 -0.286023,0.000000,0.000000,0.958223 -0.285019,0.000000,0.000000,0.958522 -0.284015,0.000000,0.000000,0.958820 -0.283011,0.000000,0.000000,0.959117 -0.282007,0.000000,0.000000,0.959412 -0.281002,0.000000,0.000000,0.959707 -0.279997,0.000000,0.000000,0.960001 -0.278991,0.000000,0.000000,0.960294 -0.277985,0.000000,0.000000,0.960585 -0.276979,0.000000,0.000000,0.960876 -0.275973,0.000000,0.000000,0.961165 -0.274966,0.000000,0.000000,0.961454 -0.273959,0.000000,0.000000,0.961741 -0.272952,0.000000,0.000000,0.962028 -0.271944,0.000000,0.000000,0.962313 -0.270936,0.000000,0.000000,0.962597 -0.269928,0.000000,0.000000,0.962880 -0.268920,0.000000,0.000000,0.963163 -0.267911,0.000000,0.000000,0.963444 -0.266902,0.000000,0.000000,0.963724 -0.265893,0.000000,0.000000,0.964003 -0.264883,0.000000,0.000000,0.964281 -0.263873,0.000000,0.000000,0.964557 -0.262863,0.000000,0.000000,0.964833 -0.261852,0.000000,0.000000,0.965108 -0.260842,0.000000,0.000000,0.965382 -0.259830,0.000000,0.000000,0.965654 -0.258819,0.000000,0.000000,0.965926 -0.257807,0.000000,0.000000,0.966196 -0.256795,0.000000,0.000000,0.966466 -0.255783,0.000000,0.000000,0.966734 -0.254771,0.000000,0.000000,0.967001 -0.253758,0.000000,0.000000,0.967268 -0.252745,0.000000,0.000000,0.967533 -0.251732,0.000000,0.000000,0.967797 -0.250718,0.000000,0.000000,0.968060 -0.249704,0.000000,0.000000,0.968322 -0.248690,0.000000,0.000000,0.968583 -0.247675,0.000000,0.000000,0.968843 -0.246661,0.000000,0.000000,0.969102 -0.245646,0.000000,0.000000,0.969360 -0.244631,0.000000,0.000000,0.969616 -0.243615,0.000000,0.000000,0.969872 -0.242599,0.000000,0.000000,0.970127 -0.241583,0.000000,0.000000,0.970380 -0.240567,0.000000,0.000000,0.970633 -0.239550,0.000000,0.000000,0.970884 -0.238533,0.000000,0.000000,0.971134 -0.237516,0.000000,0.000000,0.971384 -0.236499,0.000000,0.000000,0.971632 -0.235481,0.000000,0.000000,0.971879 -0.234463,0.000000,0.000000,0.972125 -0.233445,0.000000,0.000000,0.972370 -0.232427,0.000000,0.000000,0.972614 -0.231408,0.000000,0.000000,0.972857 -0.230389,0.000000,0.000000,0.973099 -0.229370,0.000000,0.000000,0.973339 -0.228351,0.000000,0.000000,0.973579 -0.227331,0.000000,0.000000,0.973817 -0.226311,0.000000,0.000000,0.974055 -0.225291,0.000000,0.000000,0.974291 -0.224271,0.000000,0.000000,0.974527 -0.223250,0.000000,0.000000,0.974761 -0.222229,0.000000,0.000000,0.974994 -0.221208,0.000000,0.000000,0.975227 -0.220187,0.000000,0.000000,0.975458 -0.219165,0.000000,0.000000,0.975688 -0.218143,0.000000,0.000000,0.975917 -0.217121,0.000000,0.000000,0.976145 -0.216099,0.000000,0.000000,0.976371 -0.215076,0.000000,0.000000,0.976597 -0.214053,0.000000,0.000000,0.976822 -0.213030,0.000000,0.000000,0.977046 -0.212007,0.000000,0.000000,0.977268 -0.210984,0.000000,0.000000,0.977490 -0.209960,0.000000,0.000000,0.977710 -0.208936,0.000000,0.000000,0.977929 -0.207912,0.000000,0.000000,0.978148 -0.206887,0.000000,0.000000,0.978365 -0.205863,0.000000,0.000000,0.978581 -0.204838,0.000000,0.000000,0.978796 -0.203813,0.000000,0.000000,0.979010 -0.202787,0.000000,0.000000,0.979223 -0.201762,0.000000,0.000000,0.979435 -0.200736,0.000000,0.000000,0.979645 -0.199710,0.000000,0.000000,0.979855 -0.198684,0.000000,0.000000,0.980064 -0.197657,0.000000,0.000000,0.980271 -0.196631,0.000000,0.000000,0.980478 -0.195604,0.000000,0.000000,0.980683 -0.194577,0.000000,0.000000,0.980887 -0.193549,0.000000,0.000000,0.981091 -0.192522,0.000000,0.000000,0.981293 -0.191494,0.000000,0.000000,0.981494 -0.190466,0.000000,0.000000,0.981694 -0.189438,0.000000,0.000000,0.981893 -0.188410,0.000000,0.000000,0.982090 -0.187381,0.000000,0.000000,0.982287 -0.186353,0.000000,0.000000,0.982483 -0.185324,0.000000,0.000000,0.982678 -0.184294,0.000000,0.000000,0.982871 -0.183265,0.000000,0.000000,0.983064 -0.182236,0.000000,0.000000,0.983255 -0.181206,0.000000,0.000000,0.983445 -0.180176,0.000000,0.000000,0.983634 -0.179146,0.000000,0.000000,0.983823 -0.178115,0.000000,0.000000,0.984010 -0.177085,0.000000,0.000000,0.984196 -0.176054,0.000000,0.000000,0.984381 -0.175023,0.000000,0.000000,0.984564 -0.173992,0.000000,0.000000,0.984747 -0.172961,0.000000,0.000000,0.984929 -0.171929,0.000000,0.000000,0.985109 -0.170897,0.000000,0.000000,0.985289 -0.169866,0.000000,0.000000,0.985467 -0.168833,0.000000,0.000000,0.985645 -0.167801,0.000000,0.000000,0.985821 -0.166769,0.000000,0.000000,0.985996 -0.165736,0.000000,0.000000,0.986170 -0.164703,0.000000,0.000000,0.986343 -0.163670,0.000000,0.000000,0.986515 -0.162637,0.000000,0.000000,0.986686 -0.161604,0.000000,0.000000,0.986856 -0.160570,0.000000,0.000000,0.987024 -0.159537,0.000000,0.000000,0.987192 -0.158503,0.000000,0.000000,0.987359 -0.157469,0.000000,0.000000,0.987524 -0.156434,0.000000,0.000000,0.987688 -0.155400,0.000000,0.000000,0.987852 -0.154366,0.000000,0.000000,0.988014 -0.153331,0.000000,0.000000,0.988175 -0.152296,0.000000,0.000000,0.988335 -0.151261,0.000000,0.000000,0.988494 -0.150226,0.000000,0.000000,0.988652 -0.149190,0.000000,0.000000,0.988809 -0.148155,0.000000,0.000000,0.988964 -0.147119,0.000000,0.000000,0.989119 -0.146083,0.000000,0.000000,0.989272 -0.145047,0.000000,0.000000,0.989425 -0.144011,0.000000,0.000000,0.989576 -0.142974,0.000000,0.000000,0.989726 -0.141938,0.000000,0.000000,0.989876 -0.140901,0.000000,0.000000,0.990024 -0.139864,0.000000,0.000000,0.990171 -0.138827,0.000000,0.000000,0.990317 -0.137790,0.000000,0.000000,0.990461 -0.136753,0.000000,0.000000,0.990605 -0.135716,0.000000,0.000000,0.990748 -0.134678,0.000000,0.000000,0.990889 -0.133640,0.000000,0.000000,0.991030 -0.132602,0.000000,0.000000,0.991169 -0.131564,0.000000,0.000000,0.991308 -0.130526,0.000000,0.000000,0.991445 -0.129488,0.000000,0.000000,0.991581 -0.128449,0.000000,0.000000,0.991716 -0.127411,0.000000,0.000000,0.991850 -0.126372,0.000000,0.000000,0.991983 -0.125333,0.000000,0.000000,0.992115 -0.124294,0.000000,0.000000,0.992245 -0.123255,0.000000,0.000000,0.992375 -0.122216,0.000000,0.000000,0.992504 -0.121176,0.000000,0.000000,0.992631 -0.120137,0.000000,0.000000,0.992757 -0.119097,0.000000,0.000000,0.992883 -0.118057,0.000000,0.000000,0.993007 -0.117017,0.000000,0.000000,0.993130 -0.115977,0.000000,0.000000,0.993252 -0.114937,0.000000,0.000000,0.993373 -0.113897,0.000000,0.000000,0.993493 -0.112856,0.000000,0.000000,0.993611 -0.111816,0.000000,0.000000,0.993729 -0.110775,0.000000,0.000000,0.993845 -0.109734,0.000000,0.000000,0.993961 -0.108693,0.000000,0.000000,0.994075 -0.107652,0.000000,0.000000,0.994189 -0.106611,0.000000,0.000000,0.994301 -0.105570,0.000000,0.000000,0.994412 -0.104528,0.000000,0.000000,0.994522 -0.103487,0.000000,0.000000,0.994631 -0.102445,0.000000,0.000000,0.994739 -0.101404,0.000000,0.000000,0.994845 -0.100362,0.000000,0.000000,0.994951 -0.099320,0.000000,0.000000,0.995056 -0.098278,0.000000,0.000000,0.995159 -0.097235,0.000000,0.000000,0.995261 -0.096193,0.000000,0.000000,0.995363 -0.095151,0.000000,0.000000,0.995463 -0.094108,0.000000,0.000000,0.995562 -0.093066,0.000000,0.000000,0.995660 -0.092023,0.000000,0.000000,0.995757 -0.090980,0.000000,0.000000,0.995853 -0.089937,0.000000,0.000000,0.995947 -0.088894,0.000000,0.000000,0.996041 -0.087851,0.000000,0.000000,0.996134 -0.086808,0.000000,0.000000,0.996225 -0.085765,0.000000,0.000000,0.996315 -0.084721,0.000000,0.000000,0.996405 -0.083678,0.000000,0.000000,0.996493 -0.082634,0.000000,0.000000,0.996580 -0.081591,0.000000,0.000000,0.996666 -0.080547,0.000000,0.000000,0.996751 -0.079503,0.000000,0.000000,0.996835 -0.078459,0.000000,0.000000,0.996917 -0.077415,0.000000,0.000000,0.996999 -0.076371,0.000000,0.000000,0.997079 -0.075327,0.000000,0.000000,0.997159 -0.074283,0.000000,0.000000,0.997237 -0.073238,0.000000,0.000000,0.997314 -0.072194,0.000000,0.000000,0.997391 -0.071149,0.000000,0.000000,0.997466 -0.070105,0.000000,0.000000,0.997540 -0.069060,0.000000,0.000000,0.997613 -0.068015,0.000000,0.000000,0.997684 -0.066970,0.000000,0.000000,0.997755 -0.065926,0.000000,0.000000,0.997825 -0.064881,0.000000,0.000000,0.997893 -0.063836,0.000000,0.000000,0.997960 -0.062791,0.000000,0.000000,0.998027 -0.061745,0.000000,0.000000,0.998092 -0.060700,0.000000,0.000000,0.998156 -0.059655,0.000000,0.000000,0.998219 -0.058609,0.000000,0.000000,0.998281 -0.057564,0.000000,0.000000,0.998342 -0.056519,0.000000,0.000000,0.998402 -0.055473,0.000000,0.000000,0.998460 -0.054427,0.000000,0.000000,0.998518 -0.053382,0.000000,0.000000,0.998574 -0.052336,0.000000,0.000000,0.998630 -0.051290,0.000000,0.000000,0.998684 -0.050244,0.000000,0.000000,0.998737 -0.049198,0.000000,0.000000,0.998789 -0.048152,0.000000,0.000000,0.998840 -0.047106,0.000000,0.000000,0.998890 -0.046060,0.000000,0.000000,0.998939 -0.045014,0.000000,0.000000,0.998986 -0.043968,0.000000,0.000000,0.999033 -0.042922,0.000000,0.000000,0.999078 -0.041876,0.000000,0.000000,0.999123 -0.040829,0.000000,0.000000,0.999166 -0.039783,0.000000,0.000000,0.999208 -0.038737,0.000000,0.000000,0.999249 -0.037690,0.000000,0.000000,0.999289 -0.036644,0.000000,0.000000,0.999328 -0.035597,0.000000,0.000000,0.999366 -0.034551,0.000000,0.000000,0.999403 -0.033504,0.000000,0.000000,0.999439 -0.032457,0.000000,0.000000,0.999473 -0.031411,0.000000,0.000000,0.999507 -0.030364,0.000000,0.000000,0.999539 -0.029317,0.000000,0.000000,0.999570 -0.028271,0.000000,0.000000,0.999600 -0.027224,0.000000,0.000000,0.999629 -0.026177,0.000000,0.000000,0.999657 -0.025130,0.000000,0.000000,0.999684 -0.024083,0.000000,0.000000,0.999710 -0.023036,0.000000,0.000000,0.999735 -0.021989,0.000000,0.000000,0.999758 -0.020942,0.000000,0.000000,0.999781 -0.019895,0.000000,0.000000,0.999802 -0.018848,0.000000,0.000000,0.999822 -0.017801,0.000000,0.000000,0.999842 -0.016754,0.000000,0.000000,0.999860 -0.015707,0.000000,0.000000,0.999877 -0.014660,0.000000,0.000000,0.999893 -0.013613,0.000000,0.000000,0.999907 -0.012566,0.000000,0.000000,0.999921 -0.011519,0.000000,0.000000,0.999934 -0.010472,0.000000,0.000000,0.999945 -0.009425,0.000000,0.000000,0.999956 -0.008377,0.000000,0.000000,0.999965 -0.007330,0.000000,0.000000,0.999973 -0.006283,0.000000,0.000000,0.999980 -0.005236,0.000000,0.000000,0.999986 -0.004189,0.000000,0.000000,0.999991 -0.003142,0.000000,0.000000,0.999995 -0.002094,0.000000,0.000000,0.999998 -0.001047,0.000000,0.000000,0.999999 -0.000000,0.000000,0.000000,1.000000 --0.001047,-0.000000,0.000000,0.999999 --0.002094,-0.000000,0.000000,0.999998 --0.003142,-0.000000,0.000000,0.999995 --0.004189,-0.000000,0.000000,0.999991 --0.005236,-0.000000,0.000000,0.999986 --0.006283,-0.000000,0.000000,0.999980 --0.007330,-0.000000,0.000000,0.999973 --0.008377,-0.000000,0.000000,0.999965 --0.009425,-0.000000,0.000000,0.999956 --0.010472,-0.000000,0.000000,0.999945 --0.011519,-0.000000,0.000000,0.999934 --0.012566,-0.000000,0.000000,0.999921 --0.013613,-0.000000,0.000000,0.999907 --0.014660,-0.000000,0.000000,0.999893 --0.015707,-0.000000,0.000000,0.999877 --0.016754,-0.000000,0.000000,0.999860 --0.017801,-0.000000,0.000000,0.999842 --0.018848,-0.000000,0.000000,0.999822 --0.019895,-0.000000,0.000000,0.999802 --0.020942,-0.000000,0.000000,0.999781 --0.021989,-0.000000,0.000000,0.999758 --0.023036,-0.000000,0.000000,0.999735 --0.024083,-0.000000,0.000000,0.999710 --0.025130,-0.000000,0.000000,0.999684 --0.026177,-0.000000,0.000000,0.999657 --0.027224,-0.000000,0.000000,0.999629 --0.028271,-0.000000,0.000000,0.999600 --0.029317,-0.000000,0.000000,0.999570 --0.030364,-0.000000,0.000000,0.999539 --0.031411,-0.000000,0.000000,0.999507 --0.032457,-0.000000,0.000000,0.999473 --0.033504,-0.000000,0.000000,0.999439 --0.034551,-0.000000,0.000000,0.999403 --0.035597,-0.000000,0.000000,0.999366 --0.036644,-0.000000,0.000000,0.999328 --0.037690,-0.000000,0.000000,0.999289 --0.038737,-0.000000,0.000000,0.999249 --0.039783,-0.000000,0.000000,0.999208 --0.040829,-0.000000,0.000000,0.999166 --0.041876,-0.000000,0.000000,0.999123 --0.042922,-0.000000,0.000000,0.999078 --0.043968,-0.000000,0.000000,0.999033 --0.045014,-0.000000,0.000000,0.998986 --0.046060,-0.000000,0.000000,0.998939 --0.047106,-0.000000,0.000000,0.998890 --0.048152,-0.000000,0.000000,0.998840 --0.049198,-0.000000,0.000000,0.998789 --0.050244,-0.000000,0.000000,0.998737 --0.051290,-0.000000,0.000000,0.998684 --0.052336,-0.000000,0.000000,0.998630 --0.053382,-0.000000,0.000000,0.998574 --0.054427,-0.000000,0.000000,0.998518 --0.055473,-0.000000,0.000000,0.998460 --0.056519,-0.000000,0.000000,0.998402 --0.057564,-0.000000,0.000000,0.998342 --0.058609,-0.000000,0.000000,0.998281 --0.059655,-0.000000,0.000000,0.998219 --0.060700,-0.000000,0.000000,0.998156 --0.061745,-0.000000,0.000000,0.998092 --0.062791,-0.000000,0.000000,0.998027 --0.063836,-0.000000,0.000000,0.997960 --0.064881,-0.000000,0.000000,0.997893 --0.065926,-0.000000,0.000000,0.997825 --0.066970,-0.000000,0.000000,0.997755 --0.068015,-0.000000,0.000000,0.997684 --0.069060,-0.000000,0.000000,0.997613 --0.070105,-0.000000,0.000000,0.997540 --0.071149,-0.000000,0.000000,0.997466 --0.072194,-0.000000,0.000000,0.997391 --0.073238,-0.000000,0.000000,0.997314 --0.074283,-0.000000,0.000000,0.997237 --0.075327,-0.000000,0.000000,0.997159 --0.076371,-0.000000,0.000000,0.997079 --0.077415,-0.000000,0.000000,0.996999 --0.078459,-0.000000,0.000000,0.996917 --0.079503,-0.000000,0.000000,0.996835 --0.080547,-0.000000,0.000000,0.996751 --0.081591,-0.000000,0.000000,0.996666 --0.082634,-0.000000,0.000000,0.996580 --0.083678,-0.000000,0.000000,0.996493 --0.084721,-0.000000,0.000000,0.996405 --0.085765,-0.000000,0.000000,0.996315 --0.086808,-0.000000,0.000000,0.996225 --0.087851,-0.000000,0.000000,0.996134 --0.088894,-0.000000,0.000000,0.996041 --0.089937,-0.000000,0.000000,0.995947 --0.090980,-0.000000,0.000000,0.995853 --0.092023,-0.000000,0.000000,0.995757 --0.093066,-0.000000,0.000000,0.995660 --0.094108,-0.000000,0.000000,0.995562 --0.095151,-0.000000,0.000000,0.995463 --0.096193,-0.000000,0.000000,0.995363 --0.097235,-0.000000,0.000000,0.995261 --0.098278,-0.000000,0.000000,0.995159 --0.099320,-0.000000,0.000000,0.995056 --0.100362,-0.000000,0.000000,0.994951 --0.101404,-0.000000,0.000000,0.994845 --0.102445,-0.000000,0.000000,0.994739 --0.103487,-0.000000,0.000000,0.994631 --0.104528,-0.000000,0.000000,0.994522 --0.105570,-0.000000,0.000000,0.994412 --0.106611,-0.000000,0.000000,0.994301 --0.107652,-0.000000,0.000000,0.994189 --0.108693,-0.000000,0.000000,0.994075 --0.109734,-0.000000,0.000000,0.993961 --0.110775,-0.000000,0.000000,0.993845 --0.111816,-0.000000,0.000000,0.993729 --0.112856,-0.000000,0.000000,0.993611 --0.113897,-0.000000,0.000000,0.993493 --0.114937,-0.000000,0.000000,0.993373 --0.115977,-0.000000,0.000000,0.993252 --0.117017,-0.000000,0.000000,0.993130 --0.118057,-0.000000,0.000000,0.993007 --0.119097,-0.000000,0.000000,0.992883 --0.120137,-0.000000,0.000000,0.992757 --0.121176,-0.000000,0.000000,0.992631 --0.122216,-0.000000,0.000000,0.992504 --0.123255,-0.000000,0.000000,0.992375 --0.124294,-0.000000,0.000000,0.992245 --0.125333,-0.000000,0.000000,0.992115 --0.126372,-0.000000,0.000000,0.991983 --0.127411,-0.000000,0.000000,0.991850 --0.128449,-0.000000,0.000000,0.991716 --0.129488,-0.000000,0.000000,0.991581 --0.130526,-0.000000,0.000000,0.991445 --0.131564,-0.000000,0.000000,0.991308 --0.132602,-0.000000,0.000000,0.991169 --0.133640,-0.000000,0.000000,0.991030 --0.134678,-0.000000,0.000000,0.990889 --0.135716,-0.000000,0.000000,0.990748 --0.136753,-0.000000,0.000000,0.990605 --0.137790,-0.000000,0.000000,0.990461 --0.138827,-0.000000,0.000000,0.990317 --0.139864,-0.000000,0.000000,0.990171 --0.140901,-0.000000,0.000000,0.990024 --0.141938,-0.000000,0.000000,0.989876 --0.142974,-0.000000,0.000000,0.989726 --0.144011,-0.000000,0.000000,0.989576 --0.145047,-0.000000,0.000000,0.989425 --0.146083,-0.000000,0.000000,0.989272 --0.147119,-0.000000,0.000000,0.989119 --0.148155,-0.000000,0.000000,0.988964 --0.149190,-0.000000,0.000000,0.988809 --0.150226,-0.000000,0.000000,0.988652 --0.151261,-0.000000,0.000000,0.988494 --0.152296,-0.000000,0.000000,0.988335 --0.153331,-0.000000,0.000000,0.988175 --0.154366,-0.000000,0.000000,0.988014 --0.155400,-0.000000,0.000000,0.987852 --0.156434,-0.000000,0.000000,0.987688 --0.157469,-0.000000,0.000000,0.987524 --0.158503,-0.000000,0.000000,0.987359 --0.159537,-0.000000,0.000000,0.987192 --0.160570,-0.000000,0.000000,0.987024 --0.161604,-0.000000,0.000000,0.986856 --0.162637,-0.000000,0.000000,0.986686 --0.163670,-0.000000,0.000000,0.986515 --0.164703,-0.000000,0.000000,0.986343 --0.165736,-0.000000,0.000000,0.986170 --0.166769,-0.000000,0.000000,0.985996 --0.167801,-0.000000,0.000000,0.985821 --0.168833,-0.000000,0.000000,0.985645 --0.169866,-0.000000,0.000000,0.985467 --0.170897,-0.000000,0.000000,0.985289 --0.171929,-0.000000,0.000000,0.985109 --0.172961,-0.000000,0.000000,0.984929 --0.173992,-0.000000,0.000000,0.984747 --0.175023,-0.000000,0.000000,0.984564 --0.176054,-0.000000,0.000000,0.984381 --0.177085,-0.000000,0.000000,0.984196 --0.178115,-0.000000,0.000000,0.984010 --0.179146,-0.000000,0.000000,0.983823 --0.180176,-0.000000,0.000000,0.983634 --0.181206,-0.000000,0.000000,0.983445 --0.182236,-0.000000,0.000000,0.983255 --0.183265,-0.000000,0.000000,0.983064 --0.184294,-0.000000,0.000000,0.982871 --0.185324,-0.000000,0.000000,0.982678 --0.186353,-0.000000,0.000000,0.982483 --0.187381,-0.000000,0.000000,0.982287 --0.188410,-0.000000,0.000000,0.982090 --0.189438,-0.000000,0.000000,0.981893 --0.190466,-0.000000,0.000000,0.981694 --0.191494,-0.000000,0.000000,0.981494 --0.192522,-0.000000,0.000000,0.981293 --0.193549,-0.000000,0.000000,0.981091 --0.194577,-0.000000,0.000000,0.980887 --0.195604,-0.000000,0.000000,0.980683 --0.196631,-0.000000,0.000000,0.980478 --0.197657,-0.000000,0.000000,0.980271 --0.198684,-0.000000,0.000000,0.980064 --0.199710,-0.000000,0.000000,0.979855 --0.200736,-0.000000,0.000000,0.979645 --0.201762,-0.000000,0.000000,0.979435 --0.202787,-0.000000,0.000000,0.979223 --0.203813,-0.000000,0.000000,0.979010 --0.204838,-0.000000,0.000000,0.978796 --0.205863,-0.000000,0.000000,0.978581 --0.206887,-0.000000,0.000000,0.978365 --0.207912,-0.000000,0.000000,0.978148 --0.208936,-0.000000,0.000000,0.977929 --0.209960,-0.000000,0.000000,0.977710 --0.210984,-0.000000,0.000000,0.977490 --0.212007,-0.000000,0.000000,0.977268 --0.213030,-0.000000,0.000000,0.977046 --0.214053,-0.000000,0.000000,0.976822 --0.215076,-0.000000,0.000000,0.976597 --0.216099,-0.000000,0.000000,0.976371 --0.217121,-0.000000,0.000000,0.976145 --0.218143,-0.000000,0.000000,0.975917 --0.219165,-0.000000,0.000000,0.975688 --0.220187,-0.000000,0.000000,0.975458 --0.221208,-0.000000,0.000000,0.975227 --0.222229,-0.000000,0.000000,0.974994 --0.223250,-0.000000,0.000000,0.974761 --0.224271,-0.000000,0.000000,0.974527 --0.225291,-0.000000,0.000000,0.974291 --0.226311,-0.000000,0.000000,0.974055 --0.227331,-0.000000,0.000000,0.973817 --0.228351,-0.000000,0.000000,0.973579 --0.229370,-0.000000,0.000000,0.973339 --0.230389,-0.000000,0.000000,0.973099 --0.231408,-0.000000,0.000000,0.972857 --0.232427,-0.000000,0.000000,0.972614 --0.233445,-0.000000,0.000000,0.972370 --0.234463,-0.000000,0.000000,0.972125 --0.235481,-0.000000,0.000000,0.971879 --0.236499,-0.000000,0.000000,0.971632 --0.237516,-0.000000,0.000000,0.971384 --0.238533,-0.000000,0.000000,0.971134 --0.239550,-0.000000,0.000000,0.970884 --0.240567,-0.000000,0.000000,0.970633 --0.241583,-0.000000,0.000000,0.970380 --0.242599,-0.000000,0.000000,0.970127 --0.243615,-0.000000,0.000000,0.969872 --0.244631,-0.000000,0.000000,0.969616 --0.245646,-0.000000,0.000000,0.969360 --0.246661,-0.000000,0.000000,0.969102 --0.247675,-0.000000,0.000000,0.968843 --0.248690,-0.000000,0.000000,0.968583 --0.249704,-0.000000,0.000000,0.968322 --0.250718,-0.000000,0.000000,0.968060 --0.251732,-0.000000,0.000000,0.967797 --0.252745,-0.000000,0.000000,0.967533 --0.253758,-0.000000,0.000000,0.967268 --0.254771,-0.000000,0.000000,0.967001 --0.255783,-0.000000,0.000000,0.966734 --0.256795,-0.000000,0.000000,0.966466 --0.257807,-0.000000,0.000000,0.966196 --0.258819,-0.000000,0.000000,0.965926 --0.259830,-0.000000,0.000000,0.965654 --0.260842,-0.000000,0.000000,0.965382 --0.261852,-0.000000,0.000000,0.965108 --0.262863,-0.000000,0.000000,0.964833 --0.263873,-0.000000,0.000000,0.964557 --0.264883,-0.000000,0.000000,0.964281 --0.265893,-0.000000,0.000000,0.964003 --0.266902,-0.000000,0.000000,0.963724 --0.267911,-0.000000,0.000000,0.963444 --0.268920,-0.000000,0.000000,0.963163 --0.269928,-0.000000,0.000000,0.962880 --0.270936,-0.000000,0.000000,0.962597 --0.271944,-0.000000,0.000000,0.962313 --0.272952,-0.000000,0.000000,0.962028 --0.273959,-0.000000,0.000000,0.961741 --0.274966,-0.000000,0.000000,0.961454 --0.275973,-0.000000,0.000000,0.961165 --0.276979,-0.000000,0.000000,0.960876 --0.277985,-0.000000,0.000000,0.960585 --0.278991,-0.000000,0.000000,0.960294 --0.279997,-0.000000,0.000000,0.960001 --0.281002,-0.000000,0.000000,0.959707 --0.282007,-0.000000,0.000000,0.959412 --0.283011,-0.000000,0.000000,0.959117 --0.284015,-0.000000,0.000000,0.958820 --0.285019,-0.000000,0.000000,0.958522 --0.286023,-0.000000,0.000000,0.958223 --0.287026,-0.000000,0.000000,0.957923 --0.288029,-0.000000,0.000000,0.957622 --0.289032,-0.000000,0.000000,0.957319 --0.290034,-0.000000,0.000000,0.957016 --0.291036,-0.000000,0.000000,0.956712 --0.292038,-0.000000,0.000000,0.956407 --0.293039,-0.000000,0.000000,0.956100 --0.294040,-0.000000,0.000000,0.955793 --0.295041,-0.000000,0.000000,0.955485 --0.296041,-0.000000,0.000000,0.955175 --0.297042,-0.000000,0.000000,0.954865 --0.298041,-0.000000,0.000000,0.954553 --0.299041,-0.000000,0.000000,0.954240 --0.300040,-0.000000,0.000000,0.953927 --0.301039,-0.000000,0.000000,0.953612 --0.302037,-0.000000,0.000000,0.953296 --0.303035,-0.000000,0.000000,0.952979 --0.304033,-0.000000,0.000000,0.952661 --0.305031,-0.000000,0.000000,0.952343 --0.306028,-0.000000,0.000000,0.952023 --0.307024,-0.000000,0.000000,0.951702 --0.308021,-0.000000,0.000000,0.951380 --0.309017,-0.000000,0.000000,0.951057 --0.310013,-0.000000,0.000000,0.950732 --0.311008,-0.000000,0.000000,0.950407 --0.312003,-0.000000,0.000000,0.950081 --0.312998,-0.000000,0.000000,0.949754 --0.313992,-0.000000,0.000000,0.949425 --0.314987,-0.000000,0.000000,0.949096 --0.315980,-0.000000,0.000000,0.948766 --0.316974,-0.000000,0.000000,0.948434 --0.317967,-0.000000,0.000000,0.948102 --0.318959,-0.000000,0.000000,0.947768 --0.319952,-0.000000,0.000000,0.947434 --0.320944,-0.000000,0.000000,0.947098 --0.321935,-0.000000,0.000000,0.946762 --0.322927,-0.000000,0.000000,0.946424 --0.323917,-0.000000,0.000000,0.946085 --0.324908,-0.000000,0.000000,0.945746 --0.325898,-0.000000,0.000000,0.945405 --0.326888,-0.000000,0.000000,0.945063 --0.327878,-0.000000,0.000000,0.944720 --0.328867,-0.000000,0.000000,0.944376 --0.329855,-0.000000,0.000000,0.944031 --0.330844,-0.000000,0.000000,0.943686 --0.331832,-0.000000,0.000000,0.943339 --0.332820,-0.000000,0.000000,0.942991 --0.333807,-0.000000,0.000000,0.942641 --0.334794,-0.000000,0.000000,0.942291 --0.335780,-0.000000,0.000000,0.941940 --0.336767,-0.000000,0.000000,0.941588 --0.337752,-0.000000,0.000000,0.941235 --0.338738,-0.000000,0.000000,0.940881 --0.339723,-0.000000,0.000000,0.940526 --0.340708,-0.000000,0.000000,0.940169 --0.341692,-0.000000,0.000000,0.939812 --0.342676,-0.000000,0.000000,0.939454 --0.343660,-0.000000,0.000000,0.939094 --0.344643,-0.000000,0.000000,0.938734 --0.345626,-0.000000,0.000000,0.938372 --0.346608,-0.000000,0.000000,0.938010 --0.347590,-0.000000,0.000000,0.937646 --0.348572,-0.000000,0.000000,0.937282 --0.349553,-0.000000,0.000000,0.936916 --0.350534,-0.000000,0.000000,0.936550 --0.351515,-0.000000,0.000000,0.936182 --0.352495,-0.000000,0.000000,0.935814 --0.353475,-0.000000,0.000000,0.935444 --0.354454,-0.000000,0.000000,0.935073 --0.355433,-0.000000,0.000000,0.934702 --0.356412,-0.000000,0.000000,0.934329 --0.357390,-0.000000,0.000000,0.933955 --0.358368,-0.000000,0.000000,0.933580 --0.359345,-0.000000,0.000000,0.933205 --0.360322,-0.000000,0.000000,0.932828 --0.361299,-0.000000,0.000000,0.932450 --0.362275,-0.000000,0.000000,0.932071 --0.363251,-0.000000,0.000000,0.931691 --0.364227,-0.000000,0.000000,0.931310 --0.365202,-0.000000,0.000000,0.930928 --0.366176,-0.000000,0.000000,0.930545 --0.367151,-0.000000,0.000000,0.930161 --0.368125,-0.000000,0.000000,0.929776 --0.369098,-0.000000,0.000000,0.929390 --0.370071,-0.000000,0.000000,0.929003 --0.371044,-0.000000,0.000000,0.928615 --0.372016,-0.000000,0.000000,0.928226 --0.372988,-0.000000,0.000000,0.927836 --0.373959,-0.000000,0.000000,0.927445 --0.374930,-0.000000,0.000000,0.927053 --0.375901,-0.000000,0.000000,0.926660 --0.376871,-0.000000,0.000000,0.926266 --0.377841,-0.000000,0.000000,0.925871 --0.378810,-0.000000,0.000000,0.925474 --0.379779,-0.000000,0.000000,0.925077 --0.380748,-0.000000,0.000000,0.924679 --0.381716,-0.000000,0.000000,0.924280 --0.382683,-0.000000,0.000000,0.923880 --0.383651,-0.000000,0.000000,0.923478 --0.384618,-0.000000,0.000000,0.923076 --0.385584,-0.000000,0.000000,0.922673 --0.386550,-0.000000,0.000000,0.922268 --0.387516,-0.000000,0.000000,0.921863 --0.388481,-0.000000,0.000000,0.921457 --0.389445,-0.000000,0.000000,0.921050 --0.390410,-0.000000,0.000000,0.920641 --0.391374,-0.000000,0.000000,0.920232 --0.392337,-0.000000,0.000000,0.919821 --0.393300,-0.000000,0.000000,0.919410 --0.394263,-0.000000,0.000000,0.918998 --0.395225,-0.000000,0.000000,0.918584 --0.396187,-0.000000,0.000000,0.918170 --0.397148,-0.000000,0.000000,0.917755 --0.398109,-0.000000,0.000000,0.917338 --0.399069,-0.000000,0.000000,0.916921 --0.400029,-0.000000,0.000000,0.916502 --0.400989,-0.000000,0.000000,0.916083 --0.401948,-0.000000,0.000000,0.915663 --0.402906,-0.000000,0.000000,0.915241 --0.403865,-0.000000,0.000000,0.914819 --0.404822,-0.000000,0.000000,0.914395 --0.405780,-0.000000,0.000000,0.913971 --0.406737,-0.000000,0.000000,0.913545 --0.407693,-0.000000,0.000000,0.913119 --0.408649,-0.000000,0.000000,0.912692 --0.409605,-0.000000,0.000000,0.912263 --0.410560,-0.000000,0.000000,0.911834 --0.411514,-0.000000,0.000000,0.911403 --0.412469,-0.000000,0.000000,0.910972 --0.413422,-0.000000,0.000000,0.910539 --0.414376,-0.000000,0.000000,0.910106 --0.415328,-0.000000,0.000000,0.909672 --0.416281,-0.000000,0.000000,0.909236 --0.417233,-0.000000,0.000000,0.908800 --0.418184,-0.000000,0.000000,0.908362 --0.419135,-0.000000,0.000000,0.907924 --0.420086,-0.000000,0.000000,0.907484 --0.421036,-0.000000,0.000000,0.907044 --0.421985,-0.000000,0.000000,0.906603 --0.422935,-0.000000,0.000000,0.906160 --0.423883,-0.000000,0.000000,0.905717 --0.424832,-0.000000,0.000000,0.905272 --0.425779,-0.000000,0.000000,0.904827 --0.426727,-0.000000,0.000000,0.904381 --0.427673,-0.000000,0.000000,0.903933 --0.428620,-0.000000,0.000000,0.903485 --0.429566,-0.000000,0.000000,0.903036 --0.430511,-0.000000,0.000000,0.902585 --0.431456,-0.000000,0.000000,0.902134 --0.432401,-0.000000,0.000000,0.901682 --0.433345,-0.000000,0.000000,0.901228 --0.434288,-0.000000,0.000000,0.900774 --0.435231,-0.000000,0.000000,0.900319 --0.436174,-0.000000,0.000000,0.899863 --0.437116,-0.000000,0.000000,0.899405 --0.438057,-0.000000,0.000000,0.898947 --0.438999,-0.000000,0.000000,0.898488 --0.439939,-0.000000,0.000000,0.898028 --0.440879,-0.000000,0.000000,0.897566 --0.441819,-0.000000,0.000000,0.897104 --0.442758,-0.000000,0.000000,0.896641 --0.443697,-0.000000,0.000000,0.896177 --0.444635,-0.000000,0.000000,0.895712 --0.445573,-0.000000,0.000000,0.895246 --0.446510,-0.000000,0.000000,0.894779 --0.447447,-0.000000,0.000000,0.894310 --0.448383,-0.000000,0.000000,0.893841 --0.449319,-0.000000,0.000000,0.893371 --0.450254,-0.000000,0.000000,0.892900 --0.451189,-0.000000,0.000000,0.892428 --0.452123,-0.000000,0.000000,0.891955 --0.453057,-0.000000,0.000000,0.891481 --0.453990,-0.000000,0.000000,0.891007 --0.454923,-0.000000,0.000000,0.890531 --0.455856,-0.000000,0.000000,0.890054 --0.456787,-0.000000,0.000000,0.889576 --0.457719,-0.000000,0.000000,0.889097 --0.458650,-0.000000,0.000000,0.888617 --0.459580,-0.000000,0.000000,0.888136 --0.460510,-0.000000,0.000000,0.887655 --0.461439,-0.000000,0.000000,0.887172 --0.462368,-0.000000,0.000000,0.886688 --0.463296,-0.000000,0.000000,0.886204 --0.464224,-0.000000,0.000000,0.885718 --0.465151,-0.000000,0.000000,0.885231 --0.466078,-0.000000,0.000000,0.884744 --0.467004,-0.000000,0.000000,0.884255 --0.467930,-0.000000,0.000000,0.883766 --0.468855,-0.000000,0.000000,0.883275 --0.469780,-0.000000,0.000000,0.882784 --0.470704,-0.000000,0.000000,0.882291 --0.471628,-0.000000,0.000000,0.881798 --0.472551,-0.000000,0.000000,0.881303 --0.473473,-0.000000,0.000000,0.880808 --0.474396,-0.000000,0.000000,0.880312 --0.475317,-0.000000,0.000000,0.879815 --0.476238,-0.000000,0.000000,0.879316 --0.477159,-0.000000,0.000000,0.878817 --0.478079,-0.000000,0.000000,0.878317 --0.478998,-0.000000,0.000000,0.877816 --0.479917,-0.000000,0.000000,0.877314 --0.480836,-0.000000,0.000000,0.876811 --0.481754,-0.000000,0.000000,0.876307 --0.482671,-0.000000,0.000000,0.875802 --0.483588,-0.000000,0.000000,0.875296 --0.484504,-0.000000,0.000000,0.874789 --0.485420,-0.000000,0.000000,0.874281 --0.486335,-0.000000,0.000000,0.873772 --0.487250,-0.000000,0.000000,0.873262 --0.488164,-0.000000,0.000000,0.872752 --0.489078,-0.000000,0.000000,0.872240 --0.489991,-0.000000,0.000000,0.871727 --0.490904,-0.000000,0.000000,0.871214 --0.491816,-0.000000,0.000000,0.870699 --0.492727,-0.000000,0.000000,0.870184 --0.493638,-0.000000,0.000000,0.869667 --0.494549,-0.000000,0.000000,0.869150 --0.495459,-0.000000,0.000000,0.868632 --0.496368,-0.000000,0.000000,0.868112 --0.497277,-0.000000,0.000000,0.867592 --0.498185,-0.000000,0.000000,0.867071 --0.499093,-0.000000,0.000000,0.866549 --0.500000,-0.000000,0.000000,0.866025 --0.500907,-0.000000,0.000000,0.865501 --0.501813,-0.000000,0.000000,0.864976 --0.502718,-0.000000,0.000000,0.864450 --0.503623,-0.000000,0.000000,0.863923 --0.504528,-0.000000,0.000000,0.863396 --0.505431,-0.000000,0.000000,0.862867 --0.506335,-0.000000,0.000000,0.862337 --0.507238,-0.000000,0.000000,0.861806 --0.508140,-0.000000,0.000000,0.861275 --0.509041,-0.000000,0.000000,0.860742 --0.509943,-0.000000,0.000000,0.860208 --0.510843,-0.000000,0.000000,0.859674 --0.511743,-0.000000,0.000000,0.859139 --0.512642,-0.000000,0.000000,0.858602 --0.513541,-0.000000,0.000000,0.858065 --0.514440,-0.000000,0.000000,0.857527 --0.515337,-0.000000,0.000000,0.856987 --0.516234,-0.000000,0.000000,0.856447 --0.517131,-0.000000,0.000000,0.855906 --0.518027,-0.000000,0.000000,0.855364 --0.518922,-0.000000,0.000000,0.854821 --0.519817,-0.000000,0.000000,0.854277 --0.520712,-0.000000,0.000000,0.853733 --0.521605,-0.000000,0.000000,0.853187 --0.522499,-0.000000,0.000000,0.852640 --0.523391,-0.000000,0.000000,0.852093 --0.524283,-0.000000,0.000000,0.851544 --0.525175,-0.000000,0.000000,0.850994 --0.526066,-0.000000,0.000000,0.850444 --0.526956,-0.000000,0.000000,0.849893 --0.527846,-0.000000,0.000000,0.849340 --0.528735,-0.000000,0.000000,0.848787 --0.529623,-0.000000,0.000000,0.848233 --0.530511,-0.000000,0.000000,0.847678 --0.531399,-0.000000,0.000000,0.847122 --0.532285,-0.000000,0.000000,0.846565 --0.533172,-0.000000,0.000000,0.846007 --0.534057,-0.000000,0.000000,0.845448 --0.534942,-0.000000,0.000000,0.844889 --0.535827,-0.000000,0.000000,0.844328 --0.536711,-0.000000,0.000000,0.843766 --0.537594,-0.000000,0.000000,0.843204 --0.538477,-0.000000,0.000000,0.842640 --0.539359,-0.000000,0.000000,0.842076 --0.540240,-0.000000,0.000000,0.841511 --0.541121,-0.000000,0.000000,0.840945 --0.542002,-0.000000,0.000000,0.840377 --0.542881,-0.000000,0.000000,0.839809 --0.543760,-0.000000,0.000000,0.839240 --0.544639,-0.000000,0.000000,0.838671 --0.545517,-0.000000,0.000000,0.838100 --0.546394,-0.000000,0.000000,0.837528 --0.547271,-0.000000,0.000000,0.836955 --0.548147,-0.000000,0.000000,0.836382 --0.549023,-0.000000,0.000000,0.835807 --0.549898,-0.000000,0.000000,0.835232 --0.550772,-0.000000,0.000000,0.834656 --0.551646,-0.000000,0.000000,0.834078 --0.552519,-0.000000,0.000000,0.833500 --0.553392,-0.000000,0.000000,0.832921 --0.554263,-0.000000,0.000000,0.832341 --0.555135,-0.000000,0.000000,0.831760 --0.556006,-0.000000,0.000000,0.831179 --0.556876,-0.000000,0.000000,0.830596 --0.557745,-0.000000,0.000000,0.830012 --0.558614,-0.000000,0.000000,0.829428 --0.559482,-0.000000,0.000000,0.828842 --0.560350,-0.000000,0.000000,0.828256 --0.561217,-0.000000,0.000000,0.827669 --0.562083,-0.000000,0.000000,0.827081 --0.562949,-0.000000,0.000000,0.826492 --0.563814,-0.000000,0.000000,0.825902 --0.564679,-0.000000,0.000000,0.825311 --0.565543,-0.000000,0.000000,0.824719 --0.566406,-0.000000,0.000000,0.824126 --0.567269,-0.000000,0.000000,0.823533 --0.568131,-0.000000,0.000000,0.822938 --0.568993,-0.000000,0.000000,0.822343 --0.569853,-0.000000,0.000000,0.821746 --0.570714,-0.000000,0.000000,0.821149 --0.571573,-0.000000,0.000000,0.820551 --0.572432,-0.000000,0.000000,0.819952 --0.573290,-0.000000,0.000000,0.819352 --0.574148,-0.000000,0.000000,0.818751 --0.575005,-0.000000,0.000000,0.818150 --0.575862,-0.000000,0.000000,0.817547 --0.576718,-0.000000,0.000000,0.816944 --0.577573,-0.000000,0.000000,0.816339 --0.578427,-0.000000,0.000000,0.815734 --0.579281,-0.000000,0.000000,0.815128 --0.580134,-0.000000,0.000000,0.814521 --0.580987,-0.000000,0.000000,0.813913 --0.581839,-0.000000,0.000000,0.813304 --0.582690,-0.000000,0.000000,0.812694 --0.583541,-0.000000,0.000000,0.812084 --0.584391,-0.000000,0.000000,0.811472 --0.585241,-0.000000,0.000000,0.810860 --0.586090,-0.000000,0.000000,0.810246 --0.586938,-0.000000,0.000000,0.809632 --0.587785,-0.000000,0.000000,0.809017 --0.588632,-0.000000,0.000000,0.808401 --0.589478,-0.000000,0.000000,0.807784 --0.590324,-0.000000,0.000000,0.807166 --0.591169,-0.000000,0.000000,0.806548 --0.592013,-0.000000,0.000000,0.805928 --0.592857,-0.000000,0.000000,0.805308 --0.593700,-0.000000,0.000000,0.804687 --0.594542,-0.000000,0.000000,0.804064 --0.595384,-0.000000,0.000000,0.803441 --0.596225,-0.000000,0.000000,0.802817 --0.597065,-0.000000,0.000000,0.802193 --0.597905,-0.000000,0.000000,0.801567 --0.598744,-0.000000,0.000000,0.800940 --0.599582,-0.000000,0.000000,0.800313 --0.600420,-0.000000,0.000000,0.799685 --0.601257,-0.000000,0.000000,0.799055 --0.602094,-0.000000,0.000000,0.798425 --0.602930,-0.000000,0.000000,0.797794 --0.603765,-0.000000,0.000000,0.797163 --0.604599,-0.000000,0.000000,0.796530 --0.605433,-0.000000,0.000000,0.795896 --0.606266,-0.000000,0.000000,0.795262 --0.607098,-0.000000,0.000000,0.794627 --0.607930,-0.000000,0.000000,0.793990 --0.608761,-0.000000,0.000000,0.793353 --0.609592,-0.000000,0.000000,0.792715 --0.610422,-0.000000,0.000000,0.792077 --0.611251,-0.000000,0.000000,0.791437 --0.612079,-0.000000,0.000000,0.790796 --0.612907,-0.000000,0.000000,0.790155 --0.613734,-0.000000,0.000000,0.789513 --0.614561,-0.000000,0.000000,0.788870 --0.615386,-0.000000,0.000000,0.788226 --0.616211,-0.000000,0.000000,0.787581 --0.617036,-0.000000,0.000000,0.786935 --0.617860,-0.000000,0.000000,0.786288 --0.618683,-0.000000,0.000000,0.785641 --0.619505,-0.000000,0.000000,0.784993 --0.620327,-0.000000,0.000000,0.784343 --0.621148,-0.000000,0.000000,0.783693 --0.621968,-0.000000,0.000000,0.783043 --0.622788,-0.000000,0.000000,0.782391 --0.623607,-0.000000,0.000000,0.781738 --0.624425,-0.000000,0.000000,0.781085 --0.625243,-0.000000,0.000000,0.780430 --0.626060,-0.000000,0.000000,0.779775 --0.626876,-0.000000,0.000000,0.779119 --0.627691,-0.000000,0.000000,0.778462 --0.628506,-0.000000,0.000000,0.777805 --0.629320,-0.000000,0.000000,0.777146 --0.630134,-0.000000,0.000000,0.776487 --0.630947,-0.000000,0.000000,0.775826 --0.631759,-0.000000,0.000000,0.775165 --0.632570,-0.000000,0.000000,0.774503 --0.633381,-0.000000,0.000000,0.773840 --0.634191,-0.000000,0.000000,0.773177 --0.635000,-0.000000,0.000000,0.772512 --0.635809,-0.000000,0.000000,0.771847 --0.636617,-0.000000,0.000000,0.771180 --0.637424,-0.000000,0.000000,0.770513 --0.638231,-0.000000,0.000000,0.769845 --0.639036,-0.000000,0.000000,0.769177 --0.639841,-0.000000,0.000000,0.768507 --0.640646,-0.000000,0.000000,0.767836 --0.641450,-0.000000,0.000000,0.767165 --0.642253,-0.000000,0.000000,0.766493 --0.643055,-0.000000,0.000000,0.765820 --0.643857,-0.000000,0.000000,0.765146 --0.644657,-0.000000,0.000000,0.764472 --0.645458,-0.000000,0.000000,0.763796 --0.646257,-0.000000,0.000000,0.763120 --0.647056,-0.000000,0.000000,0.762443 --0.647854,-0.000000,0.000000,0.761764 --0.648651,-0.000000,0.000000,0.761086 --0.649448,-0.000000,0.000000,0.760406 --0.650244,-0.000000,0.000000,0.759725 --0.651039,-0.000000,0.000000,0.759044 --0.651834,-0.000000,0.000000,0.758362 --0.652628,-0.000000,0.000000,0.757679 --0.653421,-0.000000,0.000000,0.756995 --0.654213,-0.000000,0.000000,0.756310 --0.655005,-0.000000,0.000000,0.755625 --0.655796,-0.000000,0.000000,0.754939 --0.656586,-0.000000,0.000000,0.754251 --0.657375,-0.000000,0.000000,0.753563 --0.658164,-0.000000,0.000000,0.752875 --0.658952,-0.000000,0.000000,0.752185 --0.659739,-0.000000,0.000000,0.751494 --0.660526,-0.000000,0.000000,0.750803 --0.661312,-0.000000,0.000000,0.750111 --0.662097,-0.000000,0.000000,0.749418 --0.662881,-0.000000,0.000000,0.748724 --0.663665,-0.000000,0.000000,0.748030 --0.664448,-0.000000,0.000000,0.747334 --0.665230,-0.000000,0.000000,0.746638 --0.666012,-0.000000,0.000000,0.745941 --0.666793,-0.000000,0.000000,0.745243 --0.667573,-0.000000,0.000000,0.744545 --0.668352,-0.000000,0.000000,0.743845 --0.669131,-0.000000,0.000000,0.743145 --0.669908,-0.000000,0.000000,0.742444 --0.670686,-0.000000,0.000000,0.741742 --0.671462,-0.000000,0.000000,0.741039 --0.672238,-0.000000,0.000000,0.740335 --0.673013,-0.000000,0.000000,0.739631 --0.673787,-0.000000,0.000000,0.738926 --0.674560,-0.000000,0.000000,0.738220 --0.675333,-0.000000,0.000000,0.737513 --0.676105,-0.000000,0.000000,0.736806 --0.676876,-0.000000,0.000000,0.736097 --0.677646,-0.000000,0.000000,0.735388 --0.678416,-0.000000,0.000000,0.734678 --0.679185,-0.000000,0.000000,0.733967 --0.679953,-0.000000,0.000000,0.733255 --0.680721,-0.000000,0.000000,0.732543 --0.681488,-0.000000,0.000000,0.731830 --0.682254,-0.000000,0.000000,0.731116 --0.683019,-0.000000,0.000000,0.730401 --0.683783,-0.000000,0.000000,0.729685 --0.684547,-0.000000,0.000000,0.728969 --0.685310,-0.000000,0.000000,0.728251 --0.686072,-0.000000,0.000000,0.727533 --0.686834,-0.000000,0.000000,0.726814 --0.687595,-0.000000,0.000000,0.726095 --0.688355,-0.000000,0.000000,0.725374 --0.689114,-0.000000,0.000000,0.724653 --0.689872,-0.000000,0.000000,0.723931 --0.690630,-0.000000,0.000000,0.723208 --0.691387,-0.000000,0.000000,0.722485 --0.692143,-0.000000,0.000000,0.721760 --0.692899,-0.000000,0.000000,0.721035 --0.693653,-0.000000,0.000000,0.720309 --0.694407,-0.000000,0.000000,0.719582 --0.695160,-0.000000,0.000000,0.718855 --0.695913,-0.000000,0.000000,0.718126 --0.696664,-0.000000,0.000000,0.717397 --0.697415,-0.000000,0.000000,0.716667 --0.698165,-0.000000,0.000000,0.715936 --0.698915,-0.000000,0.000000,0.715205 --0.699663,-0.000000,0.000000,0.714473 --0.700411,-0.000000,0.000000,0.713740 --0.701158,-0.000000,0.000000,0.713006 --0.701904,-0.000000,0.000000,0.712271 --0.702650,-0.000000,0.000000,0.711536 --0.703395,-0.000000,0.000000,0.710799 --0.704139,-0.000000,0.000000,0.710062 --0.704882,-0.000000,0.000000,0.709325 --0.705624,-0.000000,0.000000,0.708586 --0.706366,-0.000000,0.000000,0.707847 --0.707107,-0.000000,0.000000,0.707107 --0.707847,-0.000000,0.000000,0.706366 --0.708586,-0.000000,0.000000,0.705624 --0.709325,-0.000000,0.000000,0.704882 --0.710062,-0.000000,0.000000,0.704139 --0.710799,-0.000000,0.000000,0.703395 --0.711536,-0.000000,0.000000,0.702650 --0.712271,-0.000000,0.000000,0.701904 --0.713006,-0.000000,0.000000,0.701158 --0.713740,-0.000000,0.000000,0.700411 --0.714473,-0.000000,0.000000,0.699663 --0.715205,-0.000000,0.000000,0.698915 --0.715936,-0.000000,0.000000,0.698165 --0.716667,-0.000000,0.000000,0.697415 --0.717397,-0.000000,0.000000,0.696664 --0.718126,-0.000000,0.000000,0.695913 --0.718855,-0.000000,0.000000,0.695160 --0.719582,-0.000000,0.000000,0.694407 --0.720309,-0.000000,0.000000,0.693653 --0.721035,-0.000000,0.000000,0.692899 --0.721760,-0.000000,0.000000,0.692143 --0.722485,-0.000000,0.000000,0.691387 --0.723208,-0.000000,0.000000,0.690630 --0.723931,-0.000000,0.000000,0.689872 --0.724653,-0.000000,0.000000,0.689114 --0.725374,-0.000000,0.000000,0.688355 --0.726095,-0.000000,0.000000,0.687595 --0.726814,-0.000000,0.000000,0.686834 --0.727533,-0.000000,0.000000,0.686072 --0.728251,-0.000000,0.000000,0.685310 --0.728969,-0.000000,0.000000,0.684547 --0.729685,-0.000000,0.000000,0.683783 --0.730401,-0.000000,0.000000,0.683019 --0.731116,-0.000000,0.000000,0.682254 --0.731830,-0.000000,0.000000,0.681488 --0.732543,-0.000000,0.000000,0.680721 --0.733255,-0.000000,0.000000,0.679953 --0.733967,-0.000000,0.000000,0.679185 --0.734678,-0.000000,0.000000,0.678416 --0.735388,-0.000000,0.000000,0.677646 --0.736097,-0.000000,0.000000,0.676876 --0.736806,-0.000000,0.000000,0.676105 --0.737513,-0.000000,0.000000,0.675333 --0.738220,-0.000000,0.000000,0.674560 --0.738926,-0.000000,0.000000,0.673787 --0.739631,-0.000000,0.000000,0.673013 --0.740335,-0.000000,0.000000,0.672238 --0.741039,-0.000000,0.000000,0.671462 --0.741742,-0.000000,0.000000,0.670686 --0.742444,-0.000000,0.000000,0.669908 --0.743145,-0.000000,0.000000,0.669131 --0.743845,-0.000000,0.000000,0.668352 --0.744545,-0.000000,0.000000,0.667573 --0.745243,-0.000000,0.000000,0.666793 --0.745941,-0.000000,0.000000,0.666012 --0.746638,-0.000000,0.000000,0.665230 --0.747334,-0.000000,0.000000,0.664448 --0.748030,-0.000000,0.000000,0.663665 --0.748724,-0.000000,0.000000,0.662881 --0.749418,-0.000000,0.000000,0.662097 --0.750111,-0.000000,0.000000,0.661312 --0.750803,-0.000000,0.000000,0.660526 --0.751494,-0.000000,0.000000,0.659739 --0.752185,-0.000000,0.000000,0.658952 --0.752875,-0.000000,0.000000,0.658164 --0.753563,-0.000000,0.000000,0.657375 --0.754251,-0.000000,0.000000,0.656586 --0.754939,-0.000000,0.000000,0.655796 --0.755625,-0.000000,0.000000,0.655005 --0.756310,-0.000000,0.000000,0.654213 --0.756995,-0.000000,0.000000,0.653421 --0.757679,-0.000000,0.000000,0.652628 --0.758362,-0.000000,0.000000,0.651834 --0.759044,-0.000000,0.000000,0.651039 --0.759725,-0.000000,0.000000,0.650244 --0.760406,-0.000000,0.000000,0.649448 --0.761086,-0.000000,0.000000,0.648651 --0.761764,-0.000000,0.000000,0.647854 --0.762443,-0.000000,0.000000,0.647056 --0.763120,-0.000000,0.000000,0.646257 --0.763796,-0.000000,0.000000,0.645458 --0.764472,-0.000000,0.000000,0.644657 --0.765146,-0.000000,0.000000,0.643857 --0.765820,-0.000000,0.000000,0.643055 --0.766493,-0.000000,0.000000,0.642253 --0.767165,-0.000000,0.000000,0.641450 --0.767836,-0.000000,0.000000,0.640646 --0.768507,-0.000000,0.000000,0.639841 --0.769177,-0.000000,0.000000,0.639036 --0.769845,-0.000000,0.000000,0.638231 --0.770513,-0.000000,0.000000,0.637424 --0.771180,-0.000000,0.000000,0.636617 --0.771847,-0.000000,0.000000,0.635809 --0.772512,-0.000000,0.000000,0.635000 --0.773177,-0.000000,0.000000,0.634191 --0.773840,-0.000000,0.000000,0.633381 --0.774503,-0.000000,0.000000,0.632570 --0.775165,-0.000000,0.000000,0.631759 --0.775826,-0.000000,0.000000,0.630947 --0.776487,-0.000000,0.000000,0.630134 --0.777146,-0.000000,0.000000,0.629320 --0.777805,-0.000000,0.000000,0.628506 --0.778462,-0.000000,0.000000,0.627691 --0.779119,-0.000000,0.000000,0.626876 --0.779775,-0.000000,0.000000,0.626060 --0.780430,-0.000000,0.000000,0.625243 --0.781085,-0.000000,0.000000,0.624425 --0.781738,-0.000000,0.000000,0.623607 --0.782391,-0.000000,0.000000,0.622788 --0.783043,-0.000000,0.000000,0.621968 --0.783693,-0.000000,0.000000,0.621148 --0.784343,-0.000000,0.000000,0.620327 --0.784993,-0.000000,0.000000,0.619505 --0.785641,-0.000000,0.000000,0.618683 --0.786288,-0.000000,0.000000,0.617860 --0.786935,-0.000000,0.000000,0.617036 --0.787581,-0.000000,0.000000,0.616211 --0.788226,-0.000000,0.000000,0.615386 --0.788870,-0.000000,0.000000,0.614561 --0.789513,-0.000000,0.000000,0.613734 --0.790155,-0.000000,0.000000,0.612907 --0.790796,-0.000000,0.000000,0.612079 --0.791437,-0.000000,0.000000,0.611251 --0.792077,-0.000000,0.000000,0.610422 --0.792715,-0.000000,0.000000,0.609592 --0.793353,-0.000000,0.000000,0.608761 --0.793990,-0.000000,0.000000,0.607930 --0.794627,-0.000000,0.000000,0.607098 --0.795262,-0.000000,0.000000,0.606266 --0.795896,-0.000000,0.000000,0.605433 --0.796530,-0.000000,0.000000,0.604599 --0.797163,-0.000000,0.000000,0.603765 --0.797794,-0.000000,0.000000,0.602930 --0.798425,-0.000000,0.000000,0.602094 --0.799055,-0.000000,0.000000,0.601257 --0.799685,-0.000000,0.000000,0.600420 --0.800313,-0.000000,0.000000,0.599582 --0.800940,-0.000000,0.000000,0.598744 --0.801567,-0.000000,0.000000,0.597905 --0.802193,-0.000000,0.000000,0.597065 --0.802817,-0.000000,0.000000,0.596225 --0.803441,-0.000000,0.000000,0.595384 --0.804064,-0.000000,0.000000,0.594542 --0.804687,-0.000000,0.000000,0.593700 --0.805308,-0.000000,0.000000,0.592857 --0.805928,-0.000000,0.000000,0.592013 --0.806548,-0.000000,0.000000,0.591169 --0.807166,-0.000000,0.000000,0.590324 --0.807784,-0.000000,0.000000,0.589478 --0.808401,-0.000000,0.000000,0.588632 --0.809017,-0.000000,0.000000,0.587785 --0.809632,-0.000000,0.000000,0.586938 --0.810246,-0.000000,0.000000,0.586090 --0.810860,-0.000000,0.000000,0.585241 --0.811472,-0.000000,0.000000,0.584391 --0.812084,-0.000000,0.000000,0.583541 --0.812694,-0.000000,0.000000,0.582690 --0.813304,-0.000000,0.000000,0.581839 --0.813913,-0.000000,0.000000,0.580987 --0.814521,-0.000000,0.000000,0.580134 --0.815128,-0.000000,0.000000,0.579281 --0.815734,-0.000000,0.000000,0.578427 --0.816339,-0.000000,0.000000,0.577573 --0.816944,-0.000000,0.000000,0.576718 --0.817547,-0.000000,0.000000,0.575862 --0.818150,-0.000000,0.000000,0.575005 --0.818751,-0.000000,0.000000,0.574148 --0.819352,-0.000000,0.000000,0.573290 --0.819952,-0.000000,0.000000,0.572432 --0.820551,-0.000000,0.000000,0.571573 --0.821149,-0.000000,0.000000,0.570714 --0.821746,-0.000000,0.000000,0.569853 --0.822343,-0.000000,0.000000,0.568993 --0.822938,-0.000000,0.000000,0.568131 --0.823533,-0.000000,0.000000,0.567269 --0.824126,-0.000000,0.000000,0.566406 --0.824719,-0.000000,0.000000,0.565543 --0.825311,-0.000000,0.000000,0.564679 --0.825902,-0.000000,0.000000,0.563814 --0.826492,-0.000000,0.000000,0.562949 --0.827081,-0.000000,0.000000,0.562083 --0.827669,-0.000000,0.000000,0.561217 --0.828256,-0.000000,0.000000,0.560350 --0.828842,-0.000000,0.000000,0.559482 --0.829428,-0.000000,0.000000,0.558614 --0.830012,-0.000000,0.000000,0.557745 --0.830596,-0.000000,0.000000,0.556876 --0.831179,-0.000000,0.000000,0.556006 --0.831760,-0.000000,0.000000,0.555135 --0.832341,-0.000000,0.000000,0.554263 --0.832921,-0.000000,0.000000,0.553392 --0.833500,-0.000000,0.000000,0.552519 --0.834078,-0.000000,0.000000,0.551646 --0.834656,-0.000000,0.000000,0.550772 --0.835232,-0.000000,0.000000,0.549898 --0.835807,-0.000000,0.000000,0.549023 --0.836382,-0.000000,0.000000,0.548147 --0.836955,-0.000000,0.000000,0.547271 --0.837528,-0.000000,0.000000,0.546394 --0.838100,-0.000000,0.000000,0.545517 --0.838671,-0.000000,0.000000,0.544639 --0.839240,-0.000000,0.000000,0.543760 --0.839809,-0.000000,0.000000,0.542881 --0.840377,-0.000000,0.000000,0.542002 --0.840945,-0.000000,0.000000,0.541121 --0.841511,-0.000000,0.000000,0.540240 --0.842076,-0.000000,0.000000,0.539359 --0.842640,-0.000000,0.000000,0.538477 --0.843204,-0.000000,0.000000,0.537594 --0.843766,-0.000000,0.000000,0.536711 --0.844328,-0.000000,0.000000,0.535827 --0.844889,-0.000000,0.000000,0.534942 --0.845448,-0.000000,0.000000,0.534057 --0.846007,-0.000000,0.000000,0.533172 --0.846565,-0.000000,0.000000,0.532285 --0.847122,-0.000000,0.000000,0.531399 --0.847678,-0.000000,0.000000,0.530511 --0.848233,-0.000000,0.000000,0.529623 --0.848787,-0.000000,0.000000,0.528735 --0.849340,-0.000000,0.000000,0.527846 --0.849893,-0.000000,0.000000,0.526956 --0.850444,-0.000000,0.000000,0.526066 --0.850994,-0.000000,0.000000,0.525175 --0.851544,-0.000000,0.000000,0.524283 --0.852093,-0.000000,0.000000,0.523391 --0.852640,-0.000000,0.000000,0.522499 --0.853187,-0.000000,0.000000,0.521605 --0.853733,-0.000000,0.000000,0.520712 --0.854277,-0.000000,0.000000,0.519817 --0.854821,-0.000000,0.000000,0.518922 --0.855364,-0.000000,0.000000,0.518027 --0.855906,-0.000000,0.000000,0.517131 --0.856447,-0.000000,0.000000,0.516234 --0.856987,-0.000000,0.000000,0.515337 --0.857527,-0.000000,0.000000,0.514440 --0.858065,-0.000000,0.000000,0.513541 --0.858602,-0.000000,0.000000,0.512642 --0.859139,-0.000000,0.000000,0.511743 --0.859674,-0.000000,0.000000,0.510843 --0.860208,-0.000000,0.000000,0.509943 --0.860742,-0.000000,0.000000,0.509041 --0.861275,-0.000000,0.000000,0.508140 --0.861806,-0.000000,0.000000,0.507238 --0.862337,-0.000000,0.000000,0.506335 --0.862867,-0.000000,0.000000,0.505431 --0.863396,-0.000000,0.000000,0.504528 --0.863923,-0.000000,0.000000,0.503623 --0.864450,-0.000000,0.000000,0.502718 --0.864976,-0.000000,0.000000,0.501813 --0.865501,-0.000000,0.000000,0.500907 --0.866025,-0.000000,0.000000,0.500000 --0.866549,-0.000000,0.000000,0.499093 --0.867071,-0.000000,0.000000,0.498185 --0.867592,-0.000000,0.000000,0.497277 --0.868112,-0.000000,0.000000,0.496368 --0.868632,-0.000000,0.000000,0.495459 --0.869150,-0.000000,0.000000,0.494549 --0.869667,-0.000000,0.000000,0.493638 --0.870184,-0.000000,0.000000,0.492727 --0.870699,-0.000000,0.000000,0.491816 --0.871214,-0.000000,0.000000,0.490904 --0.871727,-0.000000,0.000000,0.489991 --0.872240,-0.000000,0.000000,0.489078 --0.872752,-0.000000,0.000000,0.488164 --0.873262,-0.000000,0.000000,0.487250 --0.873772,-0.000000,0.000000,0.486335 --0.874281,-0.000000,0.000000,0.485420 --0.874789,-0.000000,0.000000,0.484504 --0.875296,-0.000000,0.000000,0.483588 --0.875802,-0.000000,0.000000,0.482671 --0.876307,-0.000000,0.000000,0.481754 --0.876811,-0.000000,0.000000,0.480836 --0.877314,-0.000000,0.000000,0.479917 --0.877816,-0.000000,0.000000,0.478998 --0.878317,-0.000000,0.000000,0.478079 --0.878817,-0.000000,0.000000,0.477159 --0.879316,-0.000000,0.000000,0.476238 --0.879815,-0.000000,0.000000,0.475317 --0.880312,-0.000000,0.000000,0.474396 --0.880808,-0.000000,0.000000,0.473473 --0.881303,-0.000000,0.000000,0.472551 --0.881798,-0.000000,0.000000,0.471628 --0.882291,-0.000000,0.000000,0.470704 --0.882784,-0.000000,0.000000,0.469780 --0.883275,-0.000000,0.000000,0.468855 --0.883766,-0.000000,0.000000,0.467930 --0.884255,-0.000000,0.000000,0.467004 --0.884744,-0.000000,0.000000,0.466078 --0.885231,-0.000000,0.000000,0.465151 --0.885718,-0.000000,0.000000,0.464224 --0.886204,-0.000000,0.000000,0.463296 --0.886688,-0.000000,0.000000,0.462368 --0.887172,-0.000000,0.000000,0.461439 --0.887655,-0.000000,0.000000,0.460510 --0.888136,-0.000000,0.000000,0.459580 --0.888617,-0.000000,0.000000,0.458650 --0.889097,-0.000000,0.000000,0.457719 --0.889576,-0.000000,0.000000,0.456787 --0.890054,-0.000000,0.000000,0.455856 --0.890531,-0.000000,0.000000,0.454923 --0.891007,-0.000000,0.000000,0.453990 --0.891481,-0.000000,0.000000,0.453057 --0.891955,-0.000000,0.000000,0.452123 --0.892428,-0.000000,0.000000,0.451189 --0.892900,-0.000000,0.000000,0.450254 --0.893371,-0.000000,0.000000,0.449319 --0.893841,-0.000000,0.000000,0.448383 --0.894310,-0.000000,0.000000,0.447447 --0.894779,-0.000000,0.000000,0.446510 --0.895246,-0.000000,0.000000,0.445573 --0.895712,-0.000000,0.000000,0.444635 --0.896177,-0.000000,0.000000,0.443697 --0.896641,-0.000000,0.000000,0.442758 --0.897104,-0.000000,0.000000,0.441819 --0.897566,-0.000000,0.000000,0.440879 --0.898028,-0.000000,0.000000,0.439939 --0.898488,-0.000000,0.000000,0.438999 --0.898947,-0.000000,0.000000,0.438057 --0.899405,-0.000000,0.000000,0.437116 --0.899863,-0.000000,0.000000,0.436174 --0.900319,-0.000000,0.000000,0.435231 --0.900774,-0.000000,0.000000,0.434288 --0.901228,-0.000000,0.000000,0.433345 --0.901682,-0.000000,0.000000,0.432401 --0.902134,-0.000000,0.000000,0.431456 --0.902585,-0.000000,0.000000,0.430511 --0.903036,-0.000000,0.000000,0.429566 --0.903485,-0.000000,0.000000,0.428620 --0.903933,-0.000000,0.000000,0.427673 --0.904381,-0.000000,0.000000,0.426727 --0.904827,-0.000000,0.000000,0.425779 --0.905272,-0.000000,0.000000,0.424832 --0.905717,-0.000000,0.000000,0.423883 --0.906160,-0.000000,0.000000,0.422935 --0.906603,-0.000000,0.000000,0.421985 --0.907044,-0.000000,0.000000,0.421036 --0.907484,-0.000000,0.000000,0.420086 --0.907924,-0.000000,0.000000,0.419135 --0.908362,-0.000000,0.000000,0.418184 --0.908800,-0.000000,0.000000,0.417233 --0.909236,-0.000000,0.000000,0.416281 --0.909672,-0.000000,0.000000,0.415328 --0.910106,-0.000000,0.000000,0.414376 --0.910539,-0.000000,0.000000,0.413422 --0.910972,-0.000000,0.000000,0.412469 --0.911403,-0.000000,0.000000,0.411514 --0.911834,-0.000000,0.000000,0.410560 --0.912263,-0.000000,0.000000,0.409605 --0.912692,-0.000000,0.000000,0.408649 --0.913119,-0.000000,0.000000,0.407693 --0.913545,-0.000000,0.000000,0.406737 --0.913971,-0.000000,0.000000,0.405780 --0.914395,-0.000000,0.000000,0.404822 --0.914819,-0.000000,0.000000,0.403865 --0.915241,-0.000000,0.000000,0.402906 --0.915663,-0.000000,0.000000,0.401948 --0.916083,-0.000000,0.000000,0.400989 --0.916502,-0.000000,0.000000,0.400029 --0.916921,-0.000000,0.000000,0.399069 --0.917338,-0.000000,0.000000,0.398109 --0.917755,-0.000000,0.000000,0.397148 --0.918170,-0.000000,0.000000,0.396187 --0.918584,-0.000000,0.000000,0.395225 --0.918998,-0.000000,0.000000,0.394263 --0.919410,-0.000000,0.000000,0.393300 --0.919821,-0.000000,0.000000,0.392337 --0.920232,-0.000000,0.000000,0.391374 --0.920641,-0.000000,0.000000,0.390410 --0.921050,-0.000000,0.000000,0.389445 --0.921457,-0.000000,0.000000,0.388481 --0.921863,-0.000000,0.000000,0.387516 --0.922268,-0.000000,0.000000,0.386550 --0.922673,-0.000000,0.000000,0.385584 --0.923076,-0.000000,0.000000,0.384618 --0.923478,-0.000000,0.000000,0.383651 --0.923880,-0.000000,0.000000,0.382683 --0.924280,-0.000000,0.000000,0.381716 --0.924679,-0.000000,0.000000,0.380748 --0.925077,-0.000000,0.000000,0.379779 --0.925474,-0.000000,0.000000,0.378810 --0.925871,-0.000000,0.000000,0.377841 --0.926266,-0.000000,0.000000,0.376871 --0.926660,-0.000000,0.000000,0.375901 --0.927053,-0.000000,0.000000,0.374930 --0.927445,-0.000000,0.000000,0.373959 --0.927836,-0.000000,0.000000,0.372988 --0.928226,-0.000000,0.000000,0.372016 --0.928615,-0.000000,0.000000,0.371044 --0.929003,-0.000000,0.000000,0.370071 --0.929390,-0.000000,0.000000,0.369098 --0.929776,-0.000000,0.000000,0.368125 --0.930161,-0.000000,0.000000,0.367151 --0.930545,-0.000000,0.000000,0.366176 --0.930928,-0.000000,0.000000,0.365202 --0.931310,-0.000000,0.000000,0.364227 --0.931691,-0.000000,0.000000,0.363251 --0.932071,-0.000000,0.000000,0.362275 --0.932450,-0.000000,0.000000,0.361299 --0.932828,-0.000000,0.000000,0.360322 --0.933205,-0.000000,0.000000,0.359345 --0.933580,-0.000000,0.000000,0.358368 --0.933955,-0.000000,0.000000,0.357390 --0.934329,-0.000000,0.000000,0.356412 --0.934702,-0.000000,0.000000,0.355433 --0.935073,-0.000000,0.000000,0.354454 --0.935444,-0.000000,0.000000,0.353475 --0.935814,-0.000000,0.000000,0.352495 --0.936182,-0.000000,0.000000,0.351515 --0.936550,-0.000000,0.000000,0.350534 --0.936916,-0.000000,0.000000,0.349553 --0.937282,-0.000000,0.000000,0.348572 --0.937646,-0.000000,0.000000,0.347590 --0.938010,-0.000000,0.000000,0.346608 --0.938372,-0.000000,0.000000,0.345626 --0.938734,-0.000000,0.000000,0.344643 --0.939094,-0.000000,0.000000,0.343660 --0.939454,-0.000000,0.000000,0.342676 --0.939812,-0.000000,0.000000,0.341692 --0.940169,-0.000000,0.000000,0.340708 --0.940526,-0.000000,0.000000,0.339723 --0.940881,-0.000000,0.000000,0.338738 --0.941235,-0.000000,0.000000,0.337752 --0.941588,-0.000000,0.000000,0.336767 --0.941940,-0.000000,0.000000,0.335780 --0.942291,-0.000000,0.000000,0.334794 --0.942641,-0.000000,0.000000,0.333807 --0.942991,-0.000000,0.000000,0.332820 --0.943339,-0.000000,0.000000,0.331832 --0.943686,-0.000000,0.000000,0.330844 --0.944031,-0.000000,0.000000,0.329855 --0.944376,-0.000000,0.000000,0.328867 --0.944720,-0.000000,0.000000,0.327878 --0.945063,-0.000000,0.000000,0.326888 --0.945405,-0.000000,0.000000,0.325898 --0.945746,-0.000000,0.000000,0.324908 --0.946085,-0.000000,0.000000,0.323917 --0.946424,-0.000000,0.000000,0.322927 --0.946762,-0.000000,0.000000,0.321935 --0.947098,-0.000000,0.000000,0.320944 --0.947434,-0.000000,0.000000,0.319952 --0.947768,-0.000000,0.000000,0.318959 --0.948102,-0.000000,0.000000,0.317967 --0.948434,-0.000000,0.000000,0.316974 --0.948766,-0.000000,0.000000,0.315980 --0.949096,-0.000000,0.000000,0.314987 --0.949425,-0.000000,0.000000,0.313992 --0.949754,-0.000000,0.000000,0.312998 --0.950081,-0.000000,0.000000,0.312003 --0.950407,-0.000000,0.000000,0.311008 --0.950732,-0.000000,0.000000,0.310013 --0.951057,-0.000000,0.000000,0.309017 --0.951380,-0.000000,0.000000,0.308021 --0.951702,-0.000000,0.000000,0.307024 --0.952023,-0.000000,0.000000,0.306028 --0.952343,-0.000000,0.000000,0.305031 --0.952661,-0.000000,0.000000,0.304033 --0.952979,-0.000000,0.000000,0.303035 --0.953296,-0.000000,0.000000,0.302037 --0.953612,-0.000000,0.000000,0.301039 --0.953927,-0.000000,0.000000,0.300040 --0.954240,-0.000000,0.000000,0.299041 --0.954553,-0.000000,0.000000,0.298041 --0.954865,-0.000000,0.000000,0.297042 --0.955175,-0.000000,0.000000,0.296041 --0.955485,-0.000000,0.000000,0.295041 --0.955793,-0.000000,0.000000,0.294040 --0.956100,-0.000000,0.000000,0.293039 --0.956407,-0.000000,0.000000,0.292038 --0.956712,-0.000000,0.000000,0.291036 --0.957016,-0.000000,0.000000,0.290034 --0.957319,-0.000000,0.000000,0.289032 --0.957622,-0.000000,0.000000,0.288029 --0.957923,-0.000000,0.000000,0.287026 --0.958223,-0.000000,0.000000,0.286023 --0.958522,-0.000000,0.000000,0.285019 --0.958820,-0.000000,0.000000,0.284015 --0.959117,-0.000000,0.000000,0.283011 --0.959412,-0.000000,0.000000,0.282007 --0.959707,-0.000000,0.000000,0.281002 --0.960001,-0.000000,0.000000,0.279997 --0.960294,-0.000000,0.000000,0.278991 --0.960585,-0.000000,0.000000,0.277985 --0.960876,-0.000000,0.000000,0.276979 --0.961165,-0.000000,0.000000,0.275973 --0.961454,-0.000000,0.000000,0.274966 --0.961741,-0.000000,0.000000,0.273959 --0.962028,-0.000000,0.000000,0.272952 --0.962313,-0.000000,0.000000,0.271944 --0.962597,-0.000000,0.000000,0.270936 --0.962880,-0.000000,0.000000,0.269928 --0.963163,-0.000000,0.000000,0.268920 --0.963444,-0.000000,0.000000,0.267911 --0.963724,-0.000000,0.000000,0.266902 --0.964003,-0.000000,0.000000,0.265893 --0.964281,-0.000000,0.000000,0.264883 --0.964557,-0.000000,0.000000,0.263873 --0.964833,-0.000000,0.000000,0.262863 --0.965108,-0.000000,0.000000,0.261852 --0.965382,-0.000000,0.000000,0.260842 --0.965654,-0.000000,0.000000,0.259830 --0.965926,-0.000000,0.000000,0.258819 --0.966196,-0.000000,0.000000,0.257807 --0.966466,-0.000000,0.000000,0.256795 --0.966734,-0.000000,0.000000,0.255783 --0.967001,-0.000000,0.000000,0.254771 --0.967268,-0.000000,0.000000,0.253758 --0.967533,-0.000000,0.000000,0.252745 --0.967797,-0.000000,0.000000,0.251732 --0.968060,-0.000000,0.000000,0.250718 --0.968322,-0.000000,0.000000,0.249704 --0.968583,-0.000000,0.000000,0.248690 --0.968843,-0.000000,0.000000,0.247675 --0.969102,-0.000000,0.000000,0.246661 --0.969360,-0.000000,0.000000,0.245646 --0.969616,-0.000000,0.000000,0.244631 --0.969872,-0.000000,0.000000,0.243615 --0.970127,-0.000000,0.000000,0.242599 --0.970380,-0.000000,0.000000,0.241583 --0.970633,-0.000000,0.000000,0.240567 --0.970884,-0.000000,0.000000,0.239550 --0.971134,-0.000000,0.000000,0.238533 --0.971384,-0.000000,0.000000,0.237516 --0.971632,-0.000000,0.000000,0.236499 --0.971879,-0.000000,0.000000,0.235481 --0.972125,-0.000000,0.000000,0.234463 --0.972370,-0.000000,0.000000,0.233445 --0.972614,-0.000000,0.000000,0.232427 --0.972857,-0.000000,0.000000,0.231408 --0.973099,-0.000000,0.000000,0.230389 --0.973339,-0.000000,0.000000,0.229370 --0.973579,-0.000000,0.000000,0.228351 --0.973817,-0.000000,0.000000,0.227331 --0.974055,-0.000000,0.000000,0.226311 --0.974291,-0.000000,0.000000,0.225291 --0.974527,-0.000000,0.000000,0.224271 --0.974761,-0.000000,0.000000,0.223250 --0.974994,-0.000000,0.000000,0.222229 --0.975227,-0.000000,0.000000,0.221208 --0.975458,-0.000000,0.000000,0.220187 --0.975688,-0.000000,0.000000,0.219165 --0.975917,-0.000000,0.000000,0.218143 --0.976145,-0.000000,0.000000,0.217121 --0.976371,-0.000000,0.000000,0.216099 --0.976597,-0.000000,0.000000,0.215076 --0.976822,-0.000000,0.000000,0.214053 --0.977046,-0.000000,0.000000,0.213030 --0.977268,-0.000000,0.000000,0.212007 --0.977490,-0.000000,0.000000,0.210984 --0.977710,-0.000000,0.000000,0.209960 --0.977929,-0.000000,0.000000,0.208936 --0.978148,-0.000000,0.000000,0.207912 --0.978365,-0.000000,0.000000,0.206887 --0.978581,-0.000000,0.000000,0.205863 --0.978796,-0.000000,0.000000,0.204838 --0.979010,-0.000000,0.000000,0.203813 --0.979223,-0.000000,0.000000,0.202787 --0.979435,-0.000000,0.000000,0.201762 --0.979645,-0.000000,0.000000,0.200736 --0.979855,-0.000000,0.000000,0.199710 --0.980064,-0.000000,0.000000,0.198684 --0.980271,-0.000000,0.000000,0.197657 --0.980478,-0.000000,0.000000,0.196631 --0.980683,-0.000000,0.000000,0.195604 --0.980887,-0.000000,0.000000,0.194577 --0.981091,-0.000000,0.000000,0.193549 --0.981293,-0.000000,0.000000,0.192522 --0.981494,-0.000000,0.000000,0.191494 --0.981694,-0.000000,0.000000,0.190466 --0.981893,-0.000000,0.000000,0.189438 --0.982090,-0.000000,0.000000,0.188410 --0.982287,-0.000000,0.000000,0.187381 --0.982483,-0.000000,0.000000,0.186353 --0.982678,-0.000000,0.000000,0.185324 --0.982871,-0.000000,0.000000,0.184294 --0.983064,-0.000000,0.000000,0.183265 --0.983255,-0.000000,0.000000,0.182236 --0.983445,-0.000000,0.000000,0.181206 --0.983634,-0.000000,0.000000,0.180176 --0.983823,-0.000000,0.000000,0.179146 --0.984010,-0.000000,0.000000,0.178115 --0.984196,-0.000000,0.000000,0.177085 --0.984381,-0.000000,0.000000,0.176054 --0.984564,-0.000000,0.000000,0.175023 --0.984747,-0.000000,0.000000,0.173992 --0.984929,-0.000000,0.000000,0.172961 --0.985109,-0.000000,0.000000,0.171929 --0.985289,-0.000000,0.000000,0.170897 --0.985467,-0.000000,0.000000,0.169866 --0.985645,-0.000000,0.000000,0.168833 --0.985821,-0.000000,0.000000,0.167801 --0.985996,-0.000000,0.000000,0.166769 --0.986170,-0.000000,0.000000,0.165736 --0.986343,-0.000000,0.000000,0.164703 --0.986515,-0.000000,0.000000,0.163670 --0.986686,-0.000000,0.000000,0.162637 --0.986856,-0.000000,0.000000,0.161604 --0.987024,-0.000000,0.000000,0.160570 --0.987192,-0.000000,0.000000,0.159537 --0.987359,-0.000000,0.000000,0.158503 --0.987524,-0.000000,0.000000,0.157469 --0.987688,-0.000000,0.000000,0.156434 --0.987852,-0.000000,0.000000,0.155400 --0.988014,-0.000000,0.000000,0.154366 --0.988175,-0.000000,0.000000,0.153331 --0.988335,-0.000000,0.000000,0.152296 --0.988494,-0.000000,0.000000,0.151261 --0.988652,-0.000000,0.000000,0.150226 --0.988809,-0.000000,0.000000,0.149190 --0.988964,-0.000000,0.000000,0.148155 --0.989119,-0.000000,0.000000,0.147119 --0.989272,-0.000000,0.000000,0.146083 --0.989425,-0.000000,0.000000,0.145047 --0.989576,-0.000000,0.000000,0.144011 --0.989726,-0.000000,0.000000,0.142974 --0.989876,-0.000000,0.000000,0.141938 --0.990024,-0.000000,0.000000,0.140901 --0.990171,-0.000000,0.000000,0.139864 --0.990317,-0.000000,0.000000,0.138827 --0.990461,-0.000000,0.000000,0.137790 --0.990605,-0.000000,0.000000,0.136753 --0.990748,-0.000000,0.000000,0.135716 --0.990889,-0.000000,0.000000,0.134678 --0.991030,-0.000000,0.000000,0.133640 --0.991169,-0.000000,0.000000,0.132602 --0.991308,-0.000000,0.000000,0.131564 --0.991445,-0.000000,0.000000,0.130526 --0.991581,-0.000000,0.000000,0.129488 --0.991716,-0.000000,0.000000,0.128449 --0.991850,-0.000000,0.000000,0.127411 --0.991983,-0.000000,0.000000,0.126372 --0.992115,-0.000000,0.000000,0.125333 --0.992245,-0.000000,0.000000,0.124294 --0.992375,-0.000000,0.000000,0.123255 --0.992504,-0.000000,0.000000,0.122216 --0.992631,-0.000000,0.000000,0.121176 --0.992757,-0.000000,0.000000,0.120137 --0.992883,-0.000000,0.000000,0.119097 --0.993007,-0.000000,0.000000,0.118057 --0.993130,-0.000000,0.000000,0.117017 --0.993252,-0.000000,0.000000,0.115977 --0.993373,-0.000000,0.000000,0.114937 --0.993493,-0.000000,0.000000,0.113897 --0.993611,-0.000000,0.000000,0.112856 --0.993729,-0.000000,0.000000,0.111816 --0.993845,-0.000000,0.000000,0.110775 --0.993961,-0.000000,0.000000,0.109734 --0.994075,-0.000000,0.000000,0.108693 --0.994189,-0.000000,0.000000,0.107652 --0.994301,-0.000000,0.000000,0.106611 --0.994412,-0.000000,0.000000,0.105570 --0.994522,-0.000000,0.000000,0.104528 --0.994631,-0.000000,0.000000,0.103487 --0.994739,-0.000000,0.000000,0.102445 --0.994845,-0.000000,0.000000,0.101404 --0.994951,-0.000000,0.000000,0.100362 --0.995056,-0.000000,0.000000,0.099320 --0.995159,-0.000000,0.000000,0.098278 --0.995261,-0.000000,0.000000,0.097235 --0.995363,-0.000000,0.000000,0.096193 --0.995463,-0.000000,0.000000,0.095151 --0.995562,-0.000000,0.000000,0.094108 --0.995660,-0.000000,0.000000,0.093066 --0.995757,-0.000000,0.000000,0.092023 --0.995853,-0.000000,0.000000,0.090980 --0.995947,-0.000000,0.000000,0.089937 --0.996041,-0.000000,0.000000,0.088894 --0.996134,-0.000000,0.000000,0.087851 --0.996225,-0.000000,0.000000,0.086808 --0.996315,-0.000000,0.000000,0.085765 --0.996405,-0.000000,0.000000,0.084721 --0.996493,-0.000000,0.000000,0.083678 --0.996580,-0.000000,0.000000,0.082634 --0.996666,-0.000000,0.000000,0.081591 --0.996751,-0.000000,0.000000,0.080547 --0.996835,-0.000000,0.000000,0.079503 --0.996917,-0.000000,0.000000,0.078459 --0.996999,-0.000000,0.000000,0.077415 --0.997079,-0.000000,0.000000,0.076371 --0.997159,-0.000000,0.000000,0.075327 --0.997237,-0.000000,0.000000,0.074283 --0.997314,-0.000000,0.000000,0.073238 --0.997391,-0.000000,0.000000,0.072194 --0.997466,-0.000000,0.000000,0.071149 --0.997540,-0.000000,0.000000,0.070105 --0.997613,-0.000000,0.000000,0.069060 --0.997684,-0.000000,0.000000,0.068015 --0.997755,-0.000000,0.000000,0.066970 --0.997825,-0.000000,0.000000,0.065926 --0.997893,-0.000000,0.000000,0.064881 --0.997960,-0.000000,0.000000,0.063836 --0.998027,-0.000000,0.000000,0.062791 --0.998092,-0.000000,0.000000,0.061745 --0.998156,-0.000000,0.000000,0.060700 --0.998219,-0.000000,0.000000,0.059655 --0.998281,-0.000000,0.000000,0.058609 --0.998342,-0.000000,0.000000,0.057564 --0.998402,-0.000000,0.000000,0.056519 --0.998460,-0.000000,0.000000,0.055473 --0.998518,-0.000000,0.000000,0.054427 --0.998574,-0.000000,0.000000,0.053382 --0.998630,-0.000000,0.000000,0.052336 --0.998684,-0.000000,0.000000,0.051290 --0.998737,-0.000000,0.000000,0.050244 --0.998789,-0.000000,0.000000,0.049198 --0.998840,-0.000000,0.000000,0.048152 --0.998890,-0.000000,0.000000,0.047106 --0.998939,-0.000000,0.000000,0.046060 --0.998986,-0.000000,0.000000,0.045014 --0.999033,-0.000000,0.000000,0.043968 --0.999078,-0.000000,0.000000,0.042922 --0.999123,-0.000000,0.000000,0.041876 --0.999166,-0.000000,0.000000,0.040829 --0.999208,-0.000000,0.000000,0.039783 --0.999249,-0.000000,0.000000,0.038737 --0.999289,-0.000000,0.000000,0.037690 --0.999328,-0.000000,0.000000,0.036644 --0.999366,-0.000000,0.000000,0.035597 --0.999403,-0.000000,0.000000,0.034551 --0.999439,-0.000000,0.000000,0.033504 --0.999473,-0.000000,0.000000,0.032457 --0.999507,-0.000000,0.000000,0.031411 --0.999539,-0.000000,0.000000,0.030364 --0.999570,-0.000000,0.000000,0.029317 --0.999600,-0.000000,0.000000,0.028271 --0.999629,-0.000000,0.000000,0.027224 --0.999657,-0.000000,0.000000,0.026177 --0.999684,-0.000000,0.000000,0.025130 --0.999710,-0.000000,0.000000,0.024083 --0.999735,-0.000000,0.000000,0.023036 --0.999758,-0.000000,0.000000,0.021989 --0.999781,-0.000000,0.000000,0.020942 --0.999802,-0.000000,0.000000,0.019895 --0.999822,-0.000000,0.000000,0.018848 --0.999842,-0.000000,0.000000,0.017801 --0.999860,-0.000000,0.000000,0.016754 --0.999877,-0.000000,0.000000,0.015707 --0.999893,-0.000000,0.000000,0.014660 --0.999907,-0.000000,0.000000,0.013613 --0.999921,-0.000000,0.000000,0.012566 --0.999934,-0.000000,0.000000,0.011519 --0.999945,-0.000000,0.000000,0.010472 --0.999956,-0.000000,0.000000,0.009425 --0.999965,-0.000000,0.000000,0.008377 --0.999973,-0.000000,0.000000,0.007330 --0.999980,-0.000000,0.000000,0.006283 --0.999986,-0.000000,0.000000,0.005236 --0.999991,-0.000000,0.000000,0.004189 --0.999995,-0.000000,0.000000,0.003142 --0.999998,-0.000000,0.000000,0.002094 --0.999999,-0.000000,0.000000,0.001047 diff --git a/scripts/trajectories/full_circle_in_15s_delayed.csv b/scripts/trajectories/full_circle_in_15s_delayed.csv deleted file mode 100644 index 6596193a69f5e6d0809c2355c4d907bd476cb3c5..0000000000000000000000000000000000000000 --- a/scripts/trajectories/full_circle_in_15s_delayed.csv +++ /dev/null @@ -1,3020 +0,0 @@ -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -1.000000,0.000000,0.000000,0.000000 -0.999999,0.000000,0.000000,0.001047 -0.999998,0.000000,0.000000,0.002094 -0.999995,0.000000,0.000000,0.003142 -0.999991,0.000000,0.000000,0.004189 -0.999986,0.000000,0.000000,0.005236 -0.999980,0.000000,0.000000,0.006283 -0.999973,0.000000,0.000000,0.007330 -0.999965,0.000000,0.000000,0.008377 -0.999956,0.000000,0.000000,0.009425 -0.999945,0.000000,0.000000,0.010472 -0.999934,0.000000,0.000000,0.011519 -0.999921,0.000000,0.000000,0.012566 -0.999907,0.000000,0.000000,0.013613 -0.999893,0.000000,0.000000,0.014660 -0.999877,0.000000,0.000000,0.015707 -0.999860,0.000000,0.000000,0.016754 -0.999842,0.000000,0.000000,0.017801 -0.999822,0.000000,0.000000,0.018848 -0.999802,0.000000,0.000000,0.019895 -0.999781,0.000000,0.000000,0.020942 -0.999758,0.000000,0.000000,0.021989 -0.999735,0.000000,0.000000,0.023036 -0.999710,0.000000,0.000000,0.024083 -0.999684,0.000000,0.000000,0.025130 -0.999657,0.000000,0.000000,0.026177 -0.999629,0.000000,0.000000,0.027224 -0.999600,0.000000,0.000000,0.028271 -0.999570,0.000000,0.000000,0.029317 -0.999539,0.000000,0.000000,0.030364 -0.999507,0.000000,0.000000,0.031411 -0.999473,0.000000,0.000000,0.032457 -0.999439,0.000000,0.000000,0.033504 -0.999403,0.000000,0.000000,0.034551 -0.999366,0.000000,0.000000,0.035597 -0.999328,0.000000,0.000000,0.036644 -0.999289,0.000000,0.000000,0.037690 -0.999249,0.000000,0.000000,0.038737 -0.999208,0.000000,0.000000,0.039783 -0.999166,0.000000,0.000000,0.040829 -0.999123,0.000000,0.000000,0.041876 -0.999078,0.000000,0.000000,0.042922 -0.999033,0.000000,0.000000,0.043968 -0.998986,0.000000,0.000000,0.045014 -0.998939,0.000000,0.000000,0.046060 -0.998890,0.000000,0.000000,0.047106 -0.998840,0.000000,0.000000,0.048152 -0.998789,0.000000,0.000000,0.049198 -0.998737,0.000000,0.000000,0.050244 -0.998684,0.000000,0.000000,0.051290 -0.998630,0.000000,0.000000,0.052336 -0.998574,0.000000,0.000000,0.053382 -0.998518,0.000000,0.000000,0.054427 -0.998460,0.000000,0.000000,0.055473 -0.998402,0.000000,0.000000,0.056519 -0.998342,0.000000,0.000000,0.057564 -0.998281,0.000000,0.000000,0.058609 -0.998219,0.000000,0.000000,0.059655 -0.998156,0.000000,0.000000,0.060700 -0.998092,0.000000,0.000000,0.061745 -0.998027,0.000000,0.000000,0.062791 -0.997960,0.000000,0.000000,0.063836 -0.997893,0.000000,0.000000,0.064881 -0.997825,0.000000,0.000000,0.065926 -0.997755,0.000000,0.000000,0.066970 -0.997684,0.000000,0.000000,0.068015 -0.997613,0.000000,0.000000,0.069060 -0.997540,0.000000,0.000000,0.070105 -0.997466,0.000000,0.000000,0.071149 -0.997391,0.000000,0.000000,0.072194 -0.997314,0.000000,0.000000,0.073238 -0.997237,0.000000,0.000000,0.074283 -0.997159,0.000000,0.000000,0.075327 -0.997079,0.000000,0.000000,0.076371 -0.996999,0.000000,0.000000,0.077415 -0.996917,0.000000,0.000000,0.078459 -0.996835,0.000000,0.000000,0.079503 -0.996751,0.000000,0.000000,0.080547 -0.996666,0.000000,0.000000,0.081591 -0.996580,0.000000,0.000000,0.082634 -0.996493,0.000000,0.000000,0.083678 -0.996405,0.000000,0.000000,0.084721 -0.996315,0.000000,0.000000,0.085765 -0.996225,0.000000,0.000000,0.086808 -0.996134,0.000000,0.000000,0.087851 -0.996041,0.000000,0.000000,0.088894 -0.995947,0.000000,0.000000,0.089937 -0.995853,0.000000,0.000000,0.090980 -0.995757,0.000000,0.000000,0.092023 -0.995660,0.000000,0.000000,0.093066 -0.995562,0.000000,0.000000,0.094108 -0.995463,0.000000,0.000000,0.095151 -0.995363,0.000000,0.000000,0.096193 -0.995261,0.000000,0.000000,0.097235 -0.995159,0.000000,0.000000,0.098278 -0.995056,0.000000,0.000000,0.099320 -0.994951,0.000000,0.000000,0.100362 -0.994845,0.000000,0.000000,0.101404 -0.994739,0.000000,0.000000,0.102445 -0.994631,0.000000,0.000000,0.103487 -0.994522,0.000000,0.000000,0.104528 -0.994412,0.000000,0.000000,0.105570 -0.994301,0.000000,0.000000,0.106611 -0.994189,0.000000,0.000000,0.107652 -0.994075,0.000000,0.000000,0.108693 -0.993961,0.000000,0.000000,0.109734 -0.993845,0.000000,0.000000,0.110775 -0.993729,0.000000,0.000000,0.111816 -0.993611,0.000000,0.000000,0.112856 -0.993493,0.000000,0.000000,0.113897 -0.993373,0.000000,0.000000,0.114937 -0.993252,0.000000,0.000000,0.115977 -0.993130,0.000000,0.000000,0.117017 -0.993007,0.000000,0.000000,0.118057 -0.992883,0.000000,0.000000,0.119097 -0.992757,0.000000,0.000000,0.120137 -0.992631,0.000000,0.000000,0.121176 -0.992504,0.000000,0.000000,0.122216 -0.992375,0.000000,0.000000,0.123255 -0.992245,0.000000,0.000000,0.124294 -0.992115,0.000000,0.000000,0.125333 -0.991983,0.000000,0.000000,0.126372 -0.991850,0.000000,0.000000,0.127411 -0.991716,0.000000,0.000000,0.128449 -0.991581,0.000000,0.000000,0.129488 -0.991445,0.000000,0.000000,0.130526 -0.991308,0.000000,0.000000,0.131564 -0.991169,0.000000,0.000000,0.132602 -0.991030,0.000000,0.000000,0.133640 -0.990889,0.000000,0.000000,0.134678 -0.990748,0.000000,0.000000,0.135716 -0.990605,0.000000,0.000000,0.136753 -0.990461,0.000000,0.000000,0.137790 -0.990317,0.000000,0.000000,0.138827 -0.990171,0.000000,0.000000,0.139864 -0.990024,0.000000,0.000000,0.140901 -0.989876,0.000000,0.000000,0.141938 -0.989726,0.000000,0.000000,0.142974 -0.989576,0.000000,0.000000,0.144011 -0.989425,0.000000,0.000000,0.145047 -0.989272,0.000000,0.000000,0.146083 -0.989119,0.000000,0.000000,0.147119 -0.988964,0.000000,0.000000,0.148155 -0.988809,0.000000,0.000000,0.149190 -0.988652,0.000000,0.000000,0.150226 -0.988494,0.000000,0.000000,0.151261 -0.988335,0.000000,0.000000,0.152296 -0.988175,0.000000,0.000000,0.153331 -0.988014,0.000000,0.000000,0.154366 -0.987852,0.000000,0.000000,0.155400 -0.987688,0.000000,0.000000,0.156434 -0.987524,0.000000,0.000000,0.157469 -0.987359,0.000000,0.000000,0.158503 -0.987192,0.000000,0.000000,0.159537 -0.987024,0.000000,0.000000,0.160570 -0.986856,0.000000,0.000000,0.161604 -0.986686,0.000000,0.000000,0.162637 -0.986515,0.000000,0.000000,0.163670 -0.986343,0.000000,0.000000,0.164703 -0.986170,0.000000,0.000000,0.165736 -0.985996,0.000000,0.000000,0.166769 -0.985821,0.000000,0.000000,0.167801 -0.985645,0.000000,0.000000,0.168833 -0.985467,0.000000,0.000000,0.169866 -0.985289,0.000000,0.000000,0.170897 -0.985109,0.000000,0.000000,0.171929 -0.984929,0.000000,0.000000,0.172961 -0.984747,0.000000,0.000000,0.173992 -0.984564,0.000000,0.000000,0.175023 -0.984381,0.000000,0.000000,0.176054 -0.984196,0.000000,0.000000,0.177085 -0.984010,0.000000,0.000000,0.178115 -0.983823,0.000000,0.000000,0.179146 -0.983634,0.000000,0.000000,0.180176 -0.983445,0.000000,0.000000,0.181206 -0.983255,0.000000,0.000000,0.182236 -0.983064,0.000000,0.000000,0.183265 -0.982871,0.000000,0.000000,0.184294 -0.982678,0.000000,0.000000,0.185324 -0.982483,0.000000,0.000000,0.186353 -0.982287,0.000000,0.000000,0.187381 -0.982090,0.000000,0.000000,0.188410 -0.981893,0.000000,0.000000,0.189438 -0.981694,0.000000,0.000000,0.190466 -0.981494,0.000000,0.000000,0.191494 -0.981293,0.000000,0.000000,0.192522 -0.981091,0.000000,0.000000,0.193549 -0.980887,0.000000,0.000000,0.194577 -0.980683,0.000000,0.000000,0.195604 -0.980478,0.000000,0.000000,0.196631 -0.980271,0.000000,0.000000,0.197657 -0.980064,0.000000,0.000000,0.198684 -0.979855,0.000000,0.000000,0.199710 -0.979645,0.000000,0.000000,0.200736 -0.979435,0.000000,0.000000,0.201762 -0.979223,0.000000,0.000000,0.202787 -0.979010,0.000000,0.000000,0.203813 -0.978796,0.000000,0.000000,0.204838 -0.978581,0.000000,0.000000,0.205863 -0.978365,0.000000,0.000000,0.206887 -0.978148,0.000000,0.000000,0.207912 -0.977929,0.000000,0.000000,0.208936 -0.977710,0.000000,0.000000,0.209960 -0.977490,0.000000,0.000000,0.210984 -0.977268,0.000000,0.000000,0.212007 -0.977046,0.000000,0.000000,0.213030 -0.976822,0.000000,0.000000,0.214053 -0.976597,0.000000,0.000000,0.215076 -0.976371,0.000000,0.000000,0.216099 -0.976145,0.000000,0.000000,0.217121 -0.975917,0.000000,0.000000,0.218143 -0.975688,0.000000,0.000000,0.219165 -0.975458,0.000000,0.000000,0.220187 -0.975227,0.000000,0.000000,0.221208 -0.974994,0.000000,0.000000,0.222229 -0.974761,0.000000,0.000000,0.223250 -0.974527,0.000000,0.000000,0.224271 -0.974291,0.000000,0.000000,0.225291 -0.974055,0.000000,0.000000,0.226311 -0.973817,0.000000,0.000000,0.227331 -0.973579,0.000000,0.000000,0.228351 -0.973339,0.000000,0.000000,0.229370 -0.973099,0.000000,0.000000,0.230389 -0.972857,0.000000,0.000000,0.231408 -0.972614,0.000000,0.000000,0.232427 -0.972370,0.000000,0.000000,0.233445 -0.972125,0.000000,0.000000,0.234463 -0.971879,0.000000,0.000000,0.235481 -0.971632,0.000000,0.000000,0.236499 -0.971384,0.000000,0.000000,0.237516 -0.971134,0.000000,0.000000,0.238533 -0.970884,0.000000,0.000000,0.239550 -0.970633,0.000000,0.000000,0.240567 -0.970380,0.000000,0.000000,0.241583 -0.970127,0.000000,0.000000,0.242599 -0.969872,0.000000,0.000000,0.243615 -0.969616,0.000000,0.000000,0.244631 -0.969360,0.000000,0.000000,0.245646 -0.969102,0.000000,0.000000,0.246661 -0.968843,0.000000,0.000000,0.247675 -0.968583,0.000000,0.000000,0.248690 -0.968322,0.000000,0.000000,0.249704 -0.968060,0.000000,0.000000,0.250718 -0.967797,0.000000,0.000000,0.251732 -0.967533,0.000000,0.000000,0.252745 -0.967268,0.000000,0.000000,0.253758 -0.967001,0.000000,0.000000,0.254771 -0.966734,0.000000,0.000000,0.255783 -0.966466,0.000000,0.000000,0.256795 -0.966196,0.000000,0.000000,0.257807 -0.965926,0.000000,0.000000,0.258819 -0.965654,0.000000,0.000000,0.259830 -0.965382,0.000000,0.000000,0.260842 -0.965108,0.000000,0.000000,0.261852 -0.964833,0.000000,0.000000,0.262863 -0.964557,0.000000,0.000000,0.263873 -0.964281,0.000000,0.000000,0.264883 -0.964003,0.000000,0.000000,0.265893 -0.963724,0.000000,0.000000,0.266902 -0.963444,0.000000,0.000000,0.267911 -0.963163,0.000000,0.000000,0.268920 -0.962880,0.000000,0.000000,0.269928 -0.962597,0.000000,0.000000,0.270936 -0.962313,0.000000,0.000000,0.271944 -0.962028,0.000000,0.000000,0.272952 -0.961741,0.000000,0.000000,0.273959 -0.961454,0.000000,0.000000,0.274966 -0.961165,0.000000,0.000000,0.275973 -0.960876,0.000000,0.000000,0.276979 -0.960585,0.000000,0.000000,0.277985 -0.960294,0.000000,0.000000,0.278991 -0.960001,0.000000,0.000000,0.279997 -0.959707,0.000000,0.000000,0.281002 -0.959412,0.000000,0.000000,0.282007 -0.959117,0.000000,0.000000,0.283011 -0.958820,0.000000,0.000000,0.284015 -0.958522,0.000000,0.000000,0.285019 -0.958223,0.000000,0.000000,0.286023 -0.957923,0.000000,0.000000,0.287026 -0.957622,0.000000,0.000000,0.288029 -0.957319,0.000000,0.000000,0.289032 -0.957016,0.000000,0.000000,0.290034 -0.956712,0.000000,0.000000,0.291036 -0.956407,0.000000,0.000000,0.292038 -0.956100,0.000000,0.000000,0.293039 -0.955793,0.000000,0.000000,0.294040 -0.955485,0.000000,0.000000,0.295041 -0.955175,0.000000,0.000000,0.296041 -0.954865,0.000000,0.000000,0.297042 -0.954553,0.000000,0.000000,0.298041 -0.954240,0.000000,0.000000,0.299041 -0.953927,0.000000,0.000000,0.300040 -0.953612,0.000000,0.000000,0.301039 -0.953296,0.000000,0.000000,0.302037 -0.952979,0.000000,0.000000,0.303035 -0.952661,0.000000,0.000000,0.304033 -0.952343,0.000000,0.000000,0.305031 -0.952023,0.000000,0.000000,0.306028 -0.951702,0.000000,0.000000,0.307024 -0.951380,0.000000,0.000000,0.308021 -0.951057,0.000000,0.000000,0.309017 -0.950732,0.000000,0.000000,0.310013 -0.950407,0.000000,0.000000,0.311008 -0.950081,0.000000,0.000000,0.312003 -0.949754,0.000000,0.000000,0.312998 -0.949425,0.000000,0.000000,0.313992 -0.949096,0.000000,0.000000,0.314987 -0.948766,0.000000,0.000000,0.315980 -0.948434,0.000000,0.000000,0.316974 -0.948102,0.000000,0.000000,0.317967 -0.947768,0.000000,0.000000,0.318959 -0.947434,0.000000,0.000000,0.319952 -0.947098,0.000000,0.000000,0.320944 -0.946762,0.000000,0.000000,0.321935 -0.946424,0.000000,0.000000,0.322927 -0.946085,0.000000,0.000000,0.323917 -0.945746,0.000000,0.000000,0.324908 -0.945405,0.000000,0.000000,0.325898 -0.945063,0.000000,0.000000,0.326888 -0.944720,0.000000,0.000000,0.327878 -0.944376,0.000000,0.000000,0.328867 -0.944031,0.000000,0.000000,0.329855 -0.943686,0.000000,0.000000,0.330844 -0.943339,0.000000,0.000000,0.331832 -0.942991,0.000000,0.000000,0.332820 -0.942641,0.000000,0.000000,0.333807 -0.942291,0.000000,0.000000,0.334794 -0.941940,0.000000,0.000000,0.335780 -0.941588,0.000000,0.000000,0.336767 -0.941235,0.000000,0.000000,0.337752 -0.940881,0.000000,0.000000,0.338738 -0.940526,0.000000,0.000000,0.339723 -0.940169,0.000000,0.000000,0.340708 -0.939812,0.000000,0.000000,0.341692 -0.939454,0.000000,0.000000,0.342676 -0.939094,0.000000,0.000000,0.343660 -0.938734,0.000000,0.000000,0.344643 -0.938372,0.000000,0.000000,0.345626 -0.938010,0.000000,0.000000,0.346608 -0.937646,0.000000,0.000000,0.347590 -0.937282,0.000000,0.000000,0.348572 -0.936916,0.000000,0.000000,0.349553 -0.936550,0.000000,0.000000,0.350534 -0.936182,0.000000,0.000000,0.351515 -0.935814,0.000000,0.000000,0.352495 -0.935444,0.000000,0.000000,0.353475 -0.935073,0.000000,0.000000,0.354454 -0.934702,0.000000,0.000000,0.355433 -0.934329,0.000000,0.000000,0.356412 -0.933955,0.000000,0.000000,0.357390 -0.933580,0.000000,0.000000,0.358368 -0.933205,0.000000,0.000000,0.359345 -0.932828,0.000000,0.000000,0.360322 -0.932450,0.000000,0.000000,0.361299 -0.932071,0.000000,0.000000,0.362275 -0.931691,0.000000,0.000000,0.363251 -0.931310,0.000000,0.000000,0.364227 -0.930928,0.000000,0.000000,0.365202 -0.930545,0.000000,0.000000,0.366176 -0.930161,0.000000,0.000000,0.367151 -0.929776,0.000000,0.000000,0.368125 -0.929390,0.000000,0.000000,0.369098 -0.929003,0.000000,0.000000,0.370071 -0.928615,0.000000,0.000000,0.371044 -0.928226,0.000000,0.000000,0.372016 -0.927836,0.000000,0.000000,0.372988 -0.927445,0.000000,0.000000,0.373959 -0.927053,0.000000,0.000000,0.374930 -0.926660,0.000000,0.000000,0.375901 -0.926266,0.000000,0.000000,0.376871 -0.925871,0.000000,0.000000,0.377841 -0.925474,0.000000,0.000000,0.378810 -0.925077,0.000000,0.000000,0.379779 -0.924679,0.000000,0.000000,0.380748 -0.924280,0.000000,0.000000,0.381716 -0.923880,0.000000,0.000000,0.382683 -0.923478,0.000000,0.000000,0.383651 -0.923076,0.000000,0.000000,0.384618 -0.922673,0.000000,0.000000,0.385584 -0.922268,0.000000,0.000000,0.386550 -0.921863,0.000000,0.000000,0.387516 -0.921457,0.000000,0.000000,0.388481 -0.921050,0.000000,0.000000,0.389445 -0.920641,0.000000,0.000000,0.390410 -0.920232,0.000000,0.000000,0.391374 -0.919821,0.000000,0.000000,0.392337 -0.919410,0.000000,0.000000,0.393300 -0.918998,0.000000,0.000000,0.394263 -0.918584,0.000000,0.000000,0.395225 -0.918170,0.000000,0.000000,0.396187 -0.917755,0.000000,0.000000,0.397148 -0.917338,0.000000,0.000000,0.398109 -0.916921,0.000000,0.000000,0.399069 -0.916502,0.000000,0.000000,0.400029 -0.916083,0.000000,0.000000,0.400989 -0.915663,0.000000,0.000000,0.401948 -0.915241,0.000000,0.000000,0.402906 -0.914819,0.000000,0.000000,0.403865 -0.914395,0.000000,0.000000,0.404822 -0.913971,0.000000,0.000000,0.405780 -0.913545,0.000000,0.000000,0.406737 -0.913119,0.000000,0.000000,0.407693 -0.912692,0.000000,0.000000,0.408649 -0.912263,0.000000,0.000000,0.409605 -0.911834,0.000000,0.000000,0.410560 -0.911403,0.000000,0.000000,0.411514 -0.910972,0.000000,0.000000,0.412469 -0.910539,0.000000,0.000000,0.413422 -0.910106,0.000000,0.000000,0.414376 -0.909672,0.000000,0.000000,0.415328 -0.909236,0.000000,0.000000,0.416281 -0.908800,0.000000,0.000000,0.417233 -0.908362,0.000000,0.000000,0.418184 -0.907924,0.000000,0.000000,0.419135 -0.907484,0.000000,0.000000,0.420086 -0.907044,0.000000,0.000000,0.421036 -0.906603,0.000000,0.000000,0.421985 -0.906160,0.000000,0.000000,0.422935 -0.905717,0.000000,0.000000,0.423883 -0.905272,0.000000,0.000000,0.424832 -0.904827,0.000000,0.000000,0.425779 -0.904381,0.000000,0.000000,0.426727 -0.903933,0.000000,0.000000,0.427673 -0.903485,0.000000,0.000000,0.428620 -0.903036,0.000000,0.000000,0.429566 -0.902585,0.000000,0.000000,0.430511 -0.902134,0.000000,0.000000,0.431456 -0.901682,0.000000,0.000000,0.432401 -0.901228,0.000000,0.000000,0.433345 -0.900774,0.000000,0.000000,0.434288 -0.900319,0.000000,0.000000,0.435231 -0.899863,0.000000,0.000000,0.436174 -0.899405,0.000000,0.000000,0.437116 -0.898947,0.000000,0.000000,0.438057 -0.898488,0.000000,0.000000,0.438999 -0.898028,0.000000,0.000000,0.439939 -0.897566,0.000000,0.000000,0.440879 -0.897104,0.000000,0.000000,0.441819 -0.896641,0.000000,0.000000,0.442758 -0.896177,0.000000,0.000000,0.443697 -0.895712,0.000000,0.000000,0.444635 -0.895246,0.000000,0.000000,0.445573 -0.894779,0.000000,0.000000,0.446510 -0.894310,0.000000,0.000000,0.447447 -0.893841,0.000000,0.000000,0.448383 -0.893371,0.000000,0.000000,0.449319 -0.892900,0.000000,0.000000,0.450254 -0.892428,0.000000,0.000000,0.451189 -0.891955,0.000000,0.000000,0.452123 -0.891481,0.000000,0.000000,0.453057 -0.891007,0.000000,0.000000,0.453990 -0.890531,0.000000,0.000000,0.454923 -0.890054,0.000000,0.000000,0.455856 -0.889576,0.000000,0.000000,0.456787 -0.889097,0.000000,0.000000,0.457719 -0.888617,0.000000,0.000000,0.458650 -0.888136,0.000000,0.000000,0.459580 -0.887655,0.000000,0.000000,0.460510 -0.887172,0.000000,0.000000,0.461439 -0.886688,0.000000,0.000000,0.462368 -0.886204,0.000000,0.000000,0.463296 -0.885718,0.000000,0.000000,0.464224 -0.885231,0.000000,0.000000,0.465151 -0.884744,0.000000,0.000000,0.466078 -0.884255,0.000000,0.000000,0.467004 -0.883766,0.000000,0.000000,0.467930 -0.883275,0.000000,0.000000,0.468855 -0.882784,0.000000,0.000000,0.469780 -0.882291,0.000000,0.000000,0.470704 -0.881798,0.000000,0.000000,0.471628 -0.881303,0.000000,0.000000,0.472551 -0.880808,0.000000,0.000000,0.473473 -0.880312,0.000000,0.000000,0.474396 -0.879815,0.000000,0.000000,0.475317 -0.879316,0.000000,0.000000,0.476238 -0.878817,0.000000,0.000000,0.477159 -0.878317,0.000000,0.000000,0.478079 -0.877816,0.000000,0.000000,0.478998 -0.877314,0.000000,0.000000,0.479917 -0.876811,0.000000,0.000000,0.480836 -0.876307,0.000000,0.000000,0.481754 -0.875802,0.000000,0.000000,0.482671 -0.875296,0.000000,0.000000,0.483588 -0.874789,0.000000,0.000000,0.484504 -0.874281,0.000000,0.000000,0.485420 -0.873772,0.000000,0.000000,0.486335 -0.873262,0.000000,0.000000,0.487250 -0.872752,0.000000,0.000000,0.488164 -0.872240,0.000000,0.000000,0.489078 -0.871727,0.000000,0.000000,0.489991 -0.871214,0.000000,0.000000,0.490904 -0.870699,0.000000,0.000000,0.491816 -0.870184,0.000000,0.000000,0.492727 -0.869667,0.000000,0.000000,0.493638 -0.869150,0.000000,0.000000,0.494549 -0.868632,0.000000,0.000000,0.495459 -0.868112,0.000000,0.000000,0.496368 -0.867592,0.000000,0.000000,0.497277 -0.867071,0.000000,0.000000,0.498185 -0.866549,0.000000,0.000000,0.499093 -0.866025,0.000000,0.000000,0.500000 -0.865501,0.000000,0.000000,0.500907 -0.864976,0.000000,0.000000,0.501813 -0.864450,0.000000,0.000000,0.502718 -0.863923,0.000000,0.000000,0.503623 -0.863396,0.000000,0.000000,0.504528 -0.862867,0.000000,0.000000,0.505431 -0.862337,0.000000,0.000000,0.506335 -0.861806,0.000000,0.000000,0.507238 -0.861275,0.000000,0.000000,0.508140 -0.860742,0.000000,0.000000,0.509041 -0.860208,0.000000,0.000000,0.509943 -0.859674,0.000000,0.000000,0.510843 -0.859139,0.000000,0.000000,0.511743 -0.858602,0.000000,0.000000,0.512642 -0.858065,0.000000,0.000000,0.513541 -0.857527,0.000000,0.000000,0.514440 -0.856987,0.000000,0.000000,0.515337 -0.856447,0.000000,0.000000,0.516234 -0.855906,0.000000,0.000000,0.517131 -0.855364,0.000000,0.000000,0.518027 -0.854821,0.000000,0.000000,0.518922 -0.854277,0.000000,0.000000,0.519817 -0.853733,0.000000,0.000000,0.520712 -0.853187,0.000000,0.000000,0.521605 -0.852640,0.000000,0.000000,0.522499 -0.852093,0.000000,0.000000,0.523391 -0.851544,0.000000,0.000000,0.524283 -0.850994,0.000000,0.000000,0.525175 -0.850444,0.000000,0.000000,0.526066 -0.849893,0.000000,0.000000,0.526956 -0.849340,0.000000,0.000000,0.527846 -0.848787,0.000000,0.000000,0.528735 -0.848233,0.000000,0.000000,0.529623 -0.847678,0.000000,0.000000,0.530511 -0.847122,0.000000,0.000000,0.531399 -0.846565,0.000000,0.000000,0.532285 -0.846007,0.000000,0.000000,0.533172 -0.845448,0.000000,0.000000,0.534057 -0.844889,0.000000,0.000000,0.534942 -0.844328,0.000000,0.000000,0.535827 -0.843766,0.000000,0.000000,0.536711 -0.843204,0.000000,0.000000,0.537594 -0.842640,0.000000,0.000000,0.538477 -0.842076,0.000000,0.000000,0.539359 -0.841511,0.000000,0.000000,0.540240 -0.840945,0.000000,0.000000,0.541121 -0.840377,0.000000,0.000000,0.542002 -0.839809,0.000000,0.000000,0.542881 -0.839240,0.000000,0.000000,0.543760 -0.838671,0.000000,0.000000,0.544639 -0.838100,0.000000,0.000000,0.545517 -0.837528,0.000000,0.000000,0.546394 -0.836955,0.000000,0.000000,0.547271 -0.836382,0.000000,0.000000,0.548147 -0.835807,0.000000,0.000000,0.549023 -0.835232,0.000000,0.000000,0.549898 -0.834656,0.000000,0.000000,0.550772 -0.834078,0.000000,0.000000,0.551646 -0.833500,0.000000,0.000000,0.552519 -0.832921,0.000000,0.000000,0.553392 -0.832341,0.000000,0.000000,0.554263 -0.831760,0.000000,0.000000,0.555135 -0.831179,0.000000,0.000000,0.556006 -0.830596,0.000000,0.000000,0.556876 -0.830012,0.000000,0.000000,0.557745 -0.829428,0.000000,0.000000,0.558614 -0.828842,0.000000,0.000000,0.559482 -0.828256,0.000000,0.000000,0.560350 -0.827669,0.000000,0.000000,0.561217 -0.827081,0.000000,0.000000,0.562083 -0.826492,0.000000,0.000000,0.562949 -0.825902,0.000000,0.000000,0.563814 -0.825311,0.000000,0.000000,0.564679 -0.824719,0.000000,0.000000,0.565543 -0.824126,0.000000,0.000000,0.566406 -0.823533,0.000000,0.000000,0.567269 -0.822938,0.000000,0.000000,0.568131 -0.822343,0.000000,0.000000,0.568993 -0.821746,0.000000,0.000000,0.569853 -0.821149,0.000000,0.000000,0.570714 -0.820551,0.000000,0.000000,0.571573 -0.819952,0.000000,0.000000,0.572432 -0.819352,0.000000,0.000000,0.573290 -0.818751,0.000000,0.000000,0.574148 -0.818150,0.000000,0.000000,0.575005 -0.817547,0.000000,0.000000,0.575862 -0.816944,0.000000,0.000000,0.576718 -0.816339,0.000000,0.000000,0.577573 -0.815734,0.000000,0.000000,0.578427 -0.815128,0.000000,0.000000,0.579281 -0.814521,0.000000,0.000000,0.580134 -0.813913,0.000000,0.000000,0.580987 -0.813304,0.000000,0.000000,0.581839 -0.812694,0.000000,0.000000,0.582690 -0.812084,0.000000,0.000000,0.583541 -0.811472,0.000000,0.000000,0.584391 -0.810860,0.000000,0.000000,0.585241 -0.810246,0.000000,0.000000,0.586090 -0.809632,0.000000,0.000000,0.586938 -0.809017,0.000000,0.000000,0.587785 -0.808401,0.000000,0.000000,0.588632 -0.807784,0.000000,0.000000,0.589478 -0.807166,0.000000,0.000000,0.590324 -0.806548,0.000000,0.000000,0.591169 -0.805928,0.000000,0.000000,0.592013 -0.805308,0.000000,0.000000,0.592857 -0.804687,0.000000,0.000000,0.593700 -0.804064,0.000000,0.000000,0.594542 -0.803441,0.000000,0.000000,0.595384 -0.802817,0.000000,0.000000,0.596225 -0.802193,0.000000,0.000000,0.597065 -0.801567,0.000000,0.000000,0.597905 -0.800940,0.000000,0.000000,0.598744 -0.800313,0.000000,0.000000,0.599582 -0.799685,0.000000,0.000000,0.600420 -0.799055,0.000000,0.000000,0.601257 -0.798425,0.000000,0.000000,0.602094 -0.797794,0.000000,0.000000,0.602930 -0.797163,0.000000,0.000000,0.603765 -0.796530,0.000000,0.000000,0.604599 -0.795896,0.000000,0.000000,0.605433 -0.795262,0.000000,0.000000,0.606266 -0.794627,0.000000,0.000000,0.607098 -0.793990,0.000000,0.000000,0.607930 -0.793353,0.000000,0.000000,0.608761 -0.792715,0.000000,0.000000,0.609592 -0.792077,0.000000,0.000000,0.610422 -0.791437,0.000000,0.000000,0.611251 -0.790796,0.000000,0.000000,0.612079 -0.790155,0.000000,0.000000,0.612907 -0.789513,0.000000,0.000000,0.613734 -0.788870,0.000000,0.000000,0.614561 -0.788226,0.000000,0.000000,0.615386 -0.787581,0.000000,0.000000,0.616211 -0.786935,0.000000,0.000000,0.617036 -0.786288,0.000000,0.000000,0.617860 -0.785641,0.000000,0.000000,0.618683 -0.784993,0.000000,0.000000,0.619505 -0.784343,0.000000,0.000000,0.620327 -0.783693,0.000000,0.000000,0.621148 -0.783043,0.000000,0.000000,0.621968 -0.782391,0.000000,0.000000,0.622788 -0.781738,0.000000,0.000000,0.623607 -0.781085,0.000000,0.000000,0.624425 -0.780430,0.000000,0.000000,0.625243 -0.779775,0.000000,0.000000,0.626060 -0.779119,0.000000,0.000000,0.626876 -0.778462,0.000000,0.000000,0.627691 -0.777805,0.000000,0.000000,0.628506 -0.777146,0.000000,0.000000,0.629320 -0.776487,0.000000,0.000000,0.630134 -0.775826,0.000000,0.000000,0.630947 -0.775165,0.000000,0.000000,0.631759 -0.774503,0.000000,0.000000,0.632570 -0.773840,0.000000,0.000000,0.633381 -0.773177,0.000000,0.000000,0.634191 -0.772512,0.000000,0.000000,0.635000 -0.771847,0.000000,0.000000,0.635809 -0.771180,0.000000,0.000000,0.636617 -0.770513,0.000000,0.000000,0.637424 -0.769845,0.000000,0.000000,0.638231 -0.769177,0.000000,0.000000,0.639036 -0.768507,0.000000,0.000000,0.639841 -0.767836,0.000000,0.000000,0.640646 -0.767165,0.000000,0.000000,0.641450 -0.766493,0.000000,0.000000,0.642253 -0.765820,0.000000,0.000000,0.643055 -0.765146,0.000000,0.000000,0.643857 -0.764472,0.000000,0.000000,0.644657 -0.763796,0.000000,0.000000,0.645458 -0.763120,0.000000,0.000000,0.646257 -0.762443,0.000000,0.000000,0.647056 -0.761764,0.000000,0.000000,0.647854 -0.761086,0.000000,0.000000,0.648651 -0.760406,0.000000,0.000000,0.649448 -0.759725,0.000000,0.000000,0.650244 -0.759044,0.000000,0.000000,0.651039 -0.758362,0.000000,0.000000,0.651834 -0.757679,0.000000,0.000000,0.652628 -0.756995,0.000000,0.000000,0.653421 -0.756310,0.000000,0.000000,0.654213 -0.755625,0.000000,0.000000,0.655005 -0.754939,0.000000,0.000000,0.655796 -0.754251,0.000000,0.000000,0.656586 -0.753563,0.000000,0.000000,0.657375 -0.752875,0.000000,0.000000,0.658164 -0.752185,0.000000,0.000000,0.658952 -0.751494,0.000000,0.000000,0.659739 -0.750803,0.000000,0.000000,0.660526 -0.750111,0.000000,0.000000,0.661312 -0.749418,0.000000,0.000000,0.662097 -0.748724,0.000000,0.000000,0.662881 -0.748030,0.000000,0.000000,0.663665 -0.747334,0.000000,0.000000,0.664448 -0.746638,0.000000,0.000000,0.665230 -0.745941,0.000000,0.000000,0.666012 -0.745243,0.000000,0.000000,0.666793 -0.744545,0.000000,0.000000,0.667573 -0.743845,0.000000,0.000000,0.668352 -0.743145,0.000000,0.000000,0.669131 -0.742444,0.000000,0.000000,0.669908 -0.741742,0.000000,0.000000,0.670686 -0.741039,0.000000,0.000000,0.671462 -0.740335,0.000000,0.000000,0.672238 -0.739631,0.000000,0.000000,0.673013 -0.738926,0.000000,0.000000,0.673787 -0.738220,0.000000,0.000000,0.674560 -0.737513,0.000000,0.000000,0.675333 -0.736806,0.000000,0.000000,0.676105 -0.736097,0.000000,0.000000,0.676876 -0.735388,0.000000,0.000000,0.677646 -0.734678,0.000000,0.000000,0.678416 -0.733967,0.000000,0.000000,0.679185 -0.733255,0.000000,0.000000,0.679953 -0.732543,0.000000,0.000000,0.680721 -0.731830,0.000000,0.000000,0.681488 -0.731116,0.000000,0.000000,0.682254 -0.730401,0.000000,0.000000,0.683019 -0.729685,0.000000,0.000000,0.683783 -0.728969,0.000000,0.000000,0.684547 -0.728251,0.000000,0.000000,0.685310 -0.727533,0.000000,0.000000,0.686072 -0.726814,0.000000,0.000000,0.686834 -0.726095,0.000000,0.000000,0.687595 -0.725374,0.000000,0.000000,0.688355 -0.724653,0.000000,0.000000,0.689114 -0.723931,0.000000,0.000000,0.689872 -0.723208,0.000000,0.000000,0.690630 -0.722485,0.000000,0.000000,0.691387 -0.721760,0.000000,0.000000,0.692143 -0.721035,0.000000,0.000000,0.692899 -0.720309,0.000000,0.000000,0.693653 -0.719582,0.000000,0.000000,0.694407 -0.718855,0.000000,0.000000,0.695160 -0.718126,0.000000,0.000000,0.695913 -0.717397,0.000000,0.000000,0.696664 -0.716667,0.000000,0.000000,0.697415 -0.715936,0.000000,0.000000,0.698165 -0.715205,0.000000,0.000000,0.698915 -0.714473,0.000000,0.000000,0.699663 -0.713740,0.000000,0.000000,0.700411 -0.713006,0.000000,0.000000,0.701158 -0.712271,0.000000,0.000000,0.701904 -0.711536,0.000000,0.000000,0.702650 -0.710799,0.000000,0.000000,0.703395 -0.710062,0.000000,0.000000,0.704139 -0.709325,0.000000,0.000000,0.704882 -0.708586,0.000000,0.000000,0.705624 -0.707847,0.000000,0.000000,0.706366 -0.707107,0.000000,0.000000,0.707107 -0.706366,0.000000,0.000000,0.707847 -0.705624,0.000000,0.000000,0.708586 -0.704882,0.000000,0.000000,0.709325 -0.704139,0.000000,0.000000,0.710062 -0.703395,0.000000,0.000000,0.710799 -0.702650,0.000000,0.000000,0.711536 -0.701904,0.000000,0.000000,0.712271 -0.701158,0.000000,0.000000,0.713006 -0.700411,0.000000,0.000000,0.713740 -0.699663,0.000000,0.000000,0.714473 -0.698915,0.000000,0.000000,0.715205 -0.698165,0.000000,0.000000,0.715936 -0.697415,0.000000,0.000000,0.716667 -0.696664,0.000000,0.000000,0.717397 -0.695913,0.000000,0.000000,0.718126 -0.695160,0.000000,0.000000,0.718855 -0.694407,0.000000,0.000000,0.719582 -0.693653,0.000000,0.000000,0.720309 -0.692899,0.000000,0.000000,0.721035 -0.692143,0.000000,0.000000,0.721760 -0.691387,0.000000,0.000000,0.722485 -0.690630,0.000000,0.000000,0.723208 -0.689872,0.000000,0.000000,0.723931 -0.689114,0.000000,0.000000,0.724653 -0.688355,0.000000,0.000000,0.725374 -0.687595,0.000000,0.000000,0.726095 -0.686834,0.000000,0.000000,0.726814 -0.686072,0.000000,0.000000,0.727533 -0.685310,0.000000,0.000000,0.728251 -0.684547,0.000000,0.000000,0.728969 -0.683783,0.000000,0.000000,0.729685 -0.683019,0.000000,0.000000,0.730401 -0.682254,0.000000,0.000000,0.731116 -0.681488,0.000000,0.000000,0.731830 -0.680721,0.000000,0.000000,0.732543 -0.679953,0.000000,0.000000,0.733255 -0.679185,0.000000,0.000000,0.733967 -0.678416,0.000000,0.000000,0.734678 -0.677646,0.000000,0.000000,0.735388 -0.676876,0.000000,0.000000,0.736097 -0.676105,0.000000,0.000000,0.736806 -0.675333,0.000000,0.000000,0.737513 -0.674560,0.000000,0.000000,0.738220 -0.673787,0.000000,0.000000,0.738926 -0.673013,0.000000,0.000000,0.739631 -0.672238,0.000000,0.000000,0.740335 -0.671462,0.000000,0.000000,0.741039 -0.670686,0.000000,0.000000,0.741742 -0.669908,0.000000,0.000000,0.742444 -0.669131,0.000000,0.000000,0.743145 -0.668352,0.000000,0.000000,0.743845 -0.667573,0.000000,0.000000,0.744545 -0.666793,0.000000,0.000000,0.745243 -0.666012,0.000000,0.000000,0.745941 -0.665230,0.000000,0.000000,0.746638 -0.664448,0.000000,0.000000,0.747334 -0.663665,0.000000,0.000000,0.748030 -0.662881,0.000000,0.000000,0.748724 -0.662097,0.000000,0.000000,0.749418 -0.661312,0.000000,0.000000,0.750111 -0.660526,0.000000,0.000000,0.750803 -0.659739,0.000000,0.000000,0.751494 -0.658952,0.000000,0.000000,0.752185 -0.658164,0.000000,0.000000,0.752875 -0.657375,0.000000,0.000000,0.753563 -0.656586,0.000000,0.000000,0.754251 -0.655796,0.000000,0.000000,0.754939 -0.655005,0.000000,0.000000,0.755625 -0.654213,0.000000,0.000000,0.756310 -0.653421,0.000000,0.000000,0.756995 -0.652628,0.000000,0.000000,0.757679 -0.651834,0.000000,0.000000,0.758362 -0.651039,0.000000,0.000000,0.759044 -0.650244,0.000000,0.000000,0.759725 -0.649448,0.000000,0.000000,0.760406 -0.648651,0.000000,0.000000,0.761086 -0.647854,0.000000,0.000000,0.761764 -0.647056,0.000000,0.000000,0.762443 -0.646257,0.000000,0.000000,0.763120 -0.645458,0.000000,0.000000,0.763796 -0.644657,0.000000,0.000000,0.764472 -0.643857,0.000000,0.000000,0.765146 -0.643055,0.000000,0.000000,0.765820 -0.642253,0.000000,0.000000,0.766493 -0.641450,0.000000,0.000000,0.767165 -0.640646,0.000000,0.000000,0.767836 -0.639841,0.000000,0.000000,0.768507 -0.639036,0.000000,0.000000,0.769177 -0.638231,0.000000,0.000000,0.769845 -0.637424,0.000000,0.000000,0.770513 -0.636617,0.000000,0.000000,0.771180 -0.635809,0.000000,0.000000,0.771847 -0.635000,0.000000,0.000000,0.772512 -0.634191,0.000000,0.000000,0.773177 -0.633381,0.000000,0.000000,0.773840 -0.632570,0.000000,0.000000,0.774503 -0.631759,0.000000,0.000000,0.775165 -0.630947,0.000000,0.000000,0.775826 -0.630134,0.000000,0.000000,0.776487 -0.629320,0.000000,0.000000,0.777146 -0.628506,0.000000,0.000000,0.777805 -0.627691,0.000000,0.000000,0.778462 -0.626876,0.000000,0.000000,0.779119 -0.626060,0.000000,0.000000,0.779775 -0.625243,0.000000,0.000000,0.780430 -0.624425,0.000000,0.000000,0.781085 -0.623607,0.000000,0.000000,0.781738 -0.622788,0.000000,0.000000,0.782391 -0.621968,0.000000,0.000000,0.783043 -0.621148,0.000000,0.000000,0.783693 -0.620327,0.000000,0.000000,0.784343 -0.619505,0.000000,0.000000,0.784993 -0.618683,0.000000,0.000000,0.785641 -0.617860,0.000000,0.000000,0.786288 -0.617036,0.000000,0.000000,0.786935 -0.616211,0.000000,0.000000,0.787581 -0.615386,0.000000,0.000000,0.788226 -0.614561,0.000000,0.000000,0.788870 -0.613734,0.000000,0.000000,0.789513 -0.612907,0.000000,0.000000,0.790155 -0.612079,0.000000,0.000000,0.790796 -0.611251,0.000000,0.000000,0.791437 -0.610422,0.000000,0.000000,0.792077 -0.609592,0.000000,0.000000,0.792715 -0.608761,0.000000,0.000000,0.793353 -0.607930,0.000000,0.000000,0.793990 -0.607098,0.000000,0.000000,0.794627 -0.606266,0.000000,0.000000,0.795262 -0.605433,0.000000,0.000000,0.795896 -0.604599,0.000000,0.000000,0.796530 -0.603765,0.000000,0.000000,0.797163 -0.602930,0.000000,0.000000,0.797794 -0.602094,0.000000,0.000000,0.798425 -0.601257,0.000000,0.000000,0.799055 -0.600420,0.000000,0.000000,0.799685 -0.599582,0.000000,0.000000,0.800313 -0.598744,0.000000,0.000000,0.800940 -0.597905,0.000000,0.000000,0.801567 -0.597065,0.000000,0.000000,0.802193 -0.596225,0.000000,0.000000,0.802817 -0.595384,0.000000,0.000000,0.803441 -0.594542,0.000000,0.000000,0.804064 -0.593700,0.000000,0.000000,0.804687 -0.592857,0.000000,0.000000,0.805308 -0.592013,0.000000,0.000000,0.805928 -0.591169,0.000000,0.000000,0.806548 -0.590324,0.000000,0.000000,0.807166 -0.589478,0.000000,0.000000,0.807784 -0.588632,0.000000,0.000000,0.808401 -0.587785,0.000000,0.000000,0.809017 -0.586938,0.000000,0.000000,0.809632 -0.586090,0.000000,0.000000,0.810246 -0.585241,0.000000,0.000000,0.810860 -0.584391,0.000000,0.000000,0.811472 -0.583541,0.000000,0.000000,0.812084 -0.582690,0.000000,0.000000,0.812694 -0.581839,0.000000,0.000000,0.813304 -0.580987,0.000000,0.000000,0.813913 -0.580134,0.000000,0.000000,0.814521 -0.579281,0.000000,0.000000,0.815128 -0.578427,0.000000,0.000000,0.815734 -0.577573,0.000000,0.000000,0.816339 -0.576718,0.000000,0.000000,0.816944 -0.575862,0.000000,0.000000,0.817547 -0.575005,0.000000,0.000000,0.818150 -0.574148,0.000000,0.000000,0.818751 -0.573290,0.000000,0.000000,0.819352 -0.572432,0.000000,0.000000,0.819952 -0.571573,0.000000,0.000000,0.820551 -0.570714,0.000000,0.000000,0.821149 -0.569853,0.000000,0.000000,0.821746 -0.568993,0.000000,0.000000,0.822343 -0.568131,0.000000,0.000000,0.822938 -0.567269,0.000000,0.000000,0.823533 -0.566406,0.000000,0.000000,0.824126 -0.565543,0.000000,0.000000,0.824719 -0.564679,0.000000,0.000000,0.825311 -0.563814,0.000000,0.000000,0.825902 -0.562949,0.000000,0.000000,0.826492 -0.562083,0.000000,0.000000,0.827081 -0.561217,0.000000,0.000000,0.827669 -0.560350,0.000000,0.000000,0.828256 -0.559482,0.000000,0.000000,0.828842 -0.558614,0.000000,0.000000,0.829428 -0.557745,0.000000,0.000000,0.830012 -0.556876,0.000000,0.000000,0.830596 -0.556006,0.000000,0.000000,0.831179 -0.555135,0.000000,0.000000,0.831760 -0.554263,0.000000,0.000000,0.832341 -0.553392,0.000000,0.000000,0.832921 -0.552519,0.000000,0.000000,0.833500 -0.551646,0.000000,0.000000,0.834078 -0.550772,0.000000,0.000000,0.834656 -0.549898,0.000000,0.000000,0.835232 -0.549023,0.000000,0.000000,0.835807 -0.548147,0.000000,0.000000,0.836382 -0.547271,0.000000,0.000000,0.836955 -0.546394,0.000000,0.000000,0.837528 -0.545517,0.000000,0.000000,0.838100 -0.544639,0.000000,0.000000,0.838671 -0.543760,0.000000,0.000000,0.839240 -0.542881,0.000000,0.000000,0.839809 -0.542002,0.000000,0.000000,0.840377 -0.541121,0.000000,0.000000,0.840945 -0.540240,0.000000,0.000000,0.841511 -0.539359,0.000000,0.000000,0.842076 -0.538477,0.000000,0.000000,0.842640 -0.537594,0.000000,0.000000,0.843204 -0.536711,0.000000,0.000000,0.843766 -0.535827,0.000000,0.000000,0.844328 -0.534942,0.000000,0.000000,0.844889 -0.534057,0.000000,0.000000,0.845448 -0.533172,0.000000,0.000000,0.846007 -0.532285,0.000000,0.000000,0.846565 -0.531399,0.000000,0.000000,0.847122 -0.530511,0.000000,0.000000,0.847678 -0.529623,0.000000,0.000000,0.848233 -0.528735,0.000000,0.000000,0.848787 -0.527846,0.000000,0.000000,0.849340 -0.526956,0.000000,0.000000,0.849893 -0.526066,0.000000,0.000000,0.850444 -0.525175,0.000000,0.000000,0.850994 -0.524283,0.000000,0.000000,0.851544 -0.523391,0.000000,0.000000,0.852093 -0.522499,0.000000,0.000000,0.852640 -0.521605,0.000000,0.000000,0.853187 -0.520712,0.000000,0.000000,0.853733 -0.519817,0.000000,0.000000,0.854277 -0.518922,0.000000,0.000000,0.854821 -0.518027,0.000000,0.000000,0.855364 -0.517131,0.000000,0.000000,0.855906 -0.516234,0.000000,0.000000,0.856447 -0.515337,0.000000,0.000000,0.856987 -0.514440,0.000000,0.000000,0.857527 -0.513541,0.000000,0.000000,0.858065 -0.512642,0.000000,0.000000,0.858602 -0.511743,0.000000,0.000000,0.859139 -0.510843,0.000000,0.000000,0.859674 -0.509943,0.000000,0.000000,0.860208 -0.509041,0.000000,0.000000,0.860742 -0.508140,0.000000,0.000000,0.861275 -0.507238,0.000000,0.000000,0.861806 -0.506335,0.000000,0.000000,0.862337 -0.505431,0.000000,0.000000,0.862867 -0.504528,0.000000,0.000000,0.863396 -0.503623,0.000000,0.000000,0.863923 -0.502718,0.000000,0.000000,0.864450 -0.501813,0.000000,0.000000,0.864976 -0.500907,0.000000,0.000000,0.865501 -0.500000,0.000000,0.000000,0.866025 -0.499093,0.000000,0.000000,0.866549 -0.498185,0.000000,0.000000,0.867071 -0.497277,0.000000,0.000000,0.867592 -0.496368,0.000000,0.000000,0.868112 -0.495459,0.000000,0.000000,0.868632 -0.494549,0.000000,0.000000,0.869150 -0.493638,0.000000,0.000000,0.869667 -0.492727,0.000000,0.000000,0.870184 -0.491816,0.000000,0.000000,0.870699 -0.490904,0.000000,0.000000,0.871214 -0.489991,0.000000,0.000000,0.871727 -0.489078,0.000000,0.000000,0.872240 -0.488164,0.000000,0.000000,0.872752 -0.487250,0.000000,0.000000,0.873262 -0.486335,0.000000,0.000000,0.873772 -0.485420,0.000000,0.000000,0.874281 -0.484504,0.000000,0.000000,0.874789 -0.483588,0.000000,0.000000,0.875296 -0.482671,0.000000,0.000000,0.875802 -0.481754,0.000000,0.000000,0.876307 -0.480836,0.000000,0.000000,0.876811 -0.479917,0.000000,0.000000,0.877314 -0.478998,0.000000,0.000000,0.877816 -0.478079,0.000000,0.000000,0.878317 -0.477159,0.000000,0.000000,0.878817 -0.476238,0.000000,0.000000,0.879316 -0.475317,0.000000,0.000000,0.879815 -0.474396,0.000000,0.000000,0.880312 -0.473473,0.000000,0.000000,0.880808 -0.472551,0.000000,0.000000,0.881303 -0.471628,0.000000,0.000000,0.881798 -0.470704,0.000000,0.000000,0.882291 -0.469780,0.000000,0.000000,0.882784 -0.468855,0.000000,0.000000,0.883275 -0.467930,0.000000,0.000000,0.883766 -0.467004,0.000000,0.000000,0.884255 -0.466078,0.000000,0.000000,0.884744 -0.465151,0.000000,0.000000,0.885231 -0.464224,0.000000,0.000000,0.885718 -0.463296,0.000000,0.000000,0.886204 -0.462368,0.000000,0.000000,0.886688 -0.461439,0.000000,0.000000,0.887172 -0.460510,0.000000,0.000000,0.887655 -0.459580,0.000000,0.000000,0.888136 -0.458650,0.000000,0.000000,0.888617 -0.457719,0.000000,0.000000,0.889097 -0.456787,0.000000,0.000000,0.889576 -0.455856,0.000000,0.000000,0.890054 -0.454923,0.000000,0.000000,0.890531 -0.453990,0.000000,0.000000,0.891007 -0.453057,0.000000,0.000000,0.891481 -0.452123,0.000000,0.000000,0.891955 -0.451189,0.000000,0.000000,0.892428 -0.450254,0.000000,0.000000,0.892900 -0.449319,0.000000,0.000000,0.893371 -0.448383,0.000000,0.000000,0.893841 -0.447447,0.000000,0.000000,0.894310 -0.446510,0.000000,0.000000,0.894779 -0.445573,0.000000,0.000000,0.895246 -0.444635,0.000000,0.000000,0.895712 -0.443697,0.000000,0.000000,0.896177 -0.442758,0.000000,0.000000,0.896641 -0.441819,0.000000,0.000000,0.897104 -0.440879,0.000000,0.000000,0.897566 -0.439939,0.000000,0.000000,0.898028 -0.438999,0.000000,0.000000,0.898488 -0.438057,0.000000,0.000000,0.898947 -0.437116,0.000000,0.000000,0.899405 -0.436174,0.000000,0.000000,0.899863 -0.435231,0.000000,0.000000,0.900319 -0.434288,0.000000,0.000000,0.900774 -0.433345,0.000000,0.000000,0.901228 -0.432401,0.000000,0.000000,0.901682 -0.431456,0.000000,0.000000,0.902134 -0.430511,0.000000,0.000000,0.902585 -0.429566,0.000000,0.000000,0.903036 -0.428620,0.000000,0.000000,0.903485 -0.427673,0.000000,0.000000,0.903933 -0.426727,0.000000,0.000000,0.904381 -0.425779,0.000000,0.000000,0.904827 -0.424832,0.000000,0.000000,0.905272 -0.423883,0.000000,0.000000,0.905717 -0.422935,0.000000,0.000000,0.906160 -0.421985,0.000000,0.000000,0.906603 -0.421036,0.000000,0.000000,0.907044 -0.420086,0.000000,0.000000,0.907484 -0.419135,0.000000,0.000000,0.907924 -0.418184,0.000000,0.000000,0.908362 -0.417233,0.000000,0.000000,0.908800 -0.416281,0.000000,0.000000,0.909236 -0.415328,0.000000,0.000000,0.909672 -0.414376,0.000000,0.000000,0.910106 -0.413422,0.000000,0.000000,0.910539 -0.412469,0.000000,0.000000,0.910972 -0.411514,0.000000,0.000000,0.911403 -0.410560,0.000000,0.000000,0.911834 -0.409605,0.000000,0.000000,0.912263 -0.408649,0.000000,0.000000,0.912692 -0.407693,0.000000,0.000000,0.913119 -0.406737,0.000000,0.000000,0.913545 -0.405780,0.000000,0.000000,0.913971 -0.404822,0.000000,0.000000,0.914395 -0.403865,0.000000,0.000000,0.914819 -0.402906,0.000000,0.000000,0.915241 -0.401948,0.000000,0.000000,0.915663 -0.400989,0.000000,0.000000,0.916083 -0.400029,0.000000,0.000000,0.916502 -0.399069,0.000000,0.000000,0.916921 -0.398109,0.000000,0.000000,0.917338 -0.397148,0.000000,0.000000,0.917755 -0.396187,0.000000,0.000000,0.918170 -0.395225,0.000000,0.000000,0.918584 -0.394263,0.000000,0.000000,0.918998 -0.393300,0.000000,0.000000,0.919410 -0.392337,0.000000,0.000000,0.919821 -0.391374,0.000000,0.000000,0.920232 -0.390410,0.000000,0.000000,0.920641 -0.389445,0.000000,0.000000,0.921050 -0.388481,0.000000,0.000000,0.921457 -0.387516,0.000000,0.000000,0.921863 -0.386550,0.000000,0.000000,0.922268 -0.385584,0.000000,0.000000,0.922673 -0.384618,0.000000,0.000000,0.923076 -0.383651,0.000000,0.000000,0.923478 -0.382683,0.000000,0.000000,0.923880 -0.381716,0.000000,0.000000,0.924280 -0.380748,0.000000,0.000000,0.924679 -0.379779,0.000000,0.000000,0.925077 -0.378810,0.000000,0.000000,0.925474 -0.377841,0.000000,0.000000,0.925871 -0.376871,0.000000,0.000000,0.926266 -0.375901,0.000000,0.000000,0.926660 -0.374930,0.000000,0.000000,0.927053 -0.373959,0.000000,0.000000,0.927445 -0.372988,0.000000,0.000000,0.927836 -0.372016,0.000000,0.000000,0.928226 -0.371044,0.000000,0.000000,0.928615 -0.370071,0.000000,0.000000,0.929003 -0.369098,0.000000,0.000000,0.929390 -0.368125,0.000000,0.000000,0.929776 -0.367151,0.000000,0.000000,0.930161 -0.366176,0.000000,0.000000,0.930545 -0.365202,0.000000,0.000000,0.930928 -0.364227,0.000000,0.000000,0.931310 -0.363251,0.000000,0.000000,0.931691 -0.362275,0.000000,0.000000,0.932071 -0.361299,0.000000,0.000000,0.932450 -0.360322,0.000000,0.000000,0.932828 -0.359345,0.000000,0.000000,0.933205 -0.358368,0.000000,0.000000,0.933580 -0.357390,0.000000,0.000000,0.933955 -0.356412,0.000000,0.000000,0.934329 -0.355433,0.000000,0.000000,0.934702 -0.354454,0.000000,0.000000,0.935073 -0.353475,0.000000,0.000000,0.935444 -0.352495,0.000000,0.000000,0.935814 -0.351515,0.000000,0.000000,0.936182 -0.350534,0.000000,0.000000,0.936550 -0.349553,0.000000,0.000000,0.936916 -0.348572,0.000000,0.000000,0.937282 -0.347590,0.000000,0.000000,0.937646 -0.346608,0.000000,0.000000,0.938010 -0.345626,0.000000,0.000000,0.938372 -0.344643,0.000000,0.000000,0.938734 -0.343660,0.000000,0.000000,0.939094 -0.342676,0.000000,0.000000,0.939454 -0.341692,0.000000,0.000000,0.939812 -0.340708,0.000000,0.000000,0.940169 -0.339723,0.000000,0.000000,0.940526 -0.338738,0.000000,0.000000,0.940881 -0.337752,0.000000,0.000000,0.941235 -0.336767,0.000000,0.000000,0.941588 -0.335780,0.000000,0.000000,0.941940 -0.334794,0.000000,0.000000,0.942291 -0.333807,0.000000,0.000000,0.942641 -0.332820,0.000000,0.000000,0.942991 -0.331832,0.000000,0.000000,0.943339 -0.330844,0.000000,0.000000,0.943686 -0.329855,0.000000,0.000000,0.944031 -0.328867,0.000000,0.000000,0.944376 -0.327878,0.000000,0.000000,0.944720 -0.326888,0.000000,0.000000,0.945063 -0.325898,0.000000,0.000000,0.945405 -0.324908,0.000000,0.000000,0.945746 -0.323917,0.000000,0.000000,0.946085 -0.322927,0.000000,0.000000,0.946424 -0.321935,0.000000,0.000000,0.946762 -0.320944,0.000000,0.000000,0.947098 -0.319952,0.000000,0.000000,0.947434 -0.318959,0.000000,0.000000,0.947768 -0.317967,0.000000,0.000000,0.948102 -0.316974,0.000000,0.000000,0.948434 -0.315980,0.000000,0.000000,0.948766 -0.314987,0.000000,0.000000,0.949096 -0.313992,0.000000,0.000000,0.949425 -0.312998,0.000000,0.000000,0.949754 -0.312003,0.000000,0.000000,0.950081 -0.311008,0.000000,0.000000,0.950407 -0.310013,0.000000,0.000000,0.950732 -0.309017,0.000000,0.000000,0.951057 -0.308021,0.000000,0.000000,0.951380 -0.307024,0.000000,0.000000,0.951702 -0.306028,0.000000,0.000000,0.952023 -0.305031,0.000000,0.000000,0.952343 -0.304033,0.000000,0.000000,0.952661 -0.303035,0.000000,0.000000,0.952979 -0.302037,0.000000,0.000000,0.953296 -0.301039,0.000000,0.000000,0.953612 -0.300040,0.000000,0.000000,0.953927 -0.299041,0.000000,0.000000,0.954240 -0.298041,0.000000,0.000000,0.954553 -0.297042,0.000000,0.000000,0.954865 -0.296041,0.000000,0.000000,0.955175 -0.295041,0.000000,0.000000,0.955485 -0.294040,0.000000,0.000000,0.955793 -0.293039,0.000000,0.000000,0.956100 -0.292038,0.000000,0.000000,0.956407 -0.291036,0.000000,0.000000,0.956712 -0.290034,0.000000,0.000000,0.957016 -0.289032,0.000000,0.000000,0.957319 -0.288029,0.000000,0.000000,0.957622 -0.287026,0.000000,0.000000,0.957923 -0.286023,0.000000,0.000000,0.958223 -0.285019,0.000000,0.000000,0.958522 -0.284015,0.000000,0.000000,0.958820 -0.283011,0.000000,0.000000,0.959117 -0.282007,0.000000,0.000000,0.959412 -0.281002,0.000000,0.000000,0.959707 -0.279997,0.000000,0.000000,0.960001 -0.278991,0.000000,0.000000,0.960294 -0.277985,0.000000,0.000000,0.960585 -0.276979,0.000000,0.000000,0.960876 -0.275973,0.000000,0.000000,0.961165 -0.274966,0.000000,0.000000,0.961454 -0.273959,0.000000,0.000000,0.961741 -0.272952,0.000000,0.000000,0.962028 -0.271944,0.000000,0.000000,0.962313 -0.270936,0.000000,0.000000,0.962597 -0.269928,0.000000,0.000000,0.962880 -0.268920,0.000000,0.000000,0.963163 -0.267911,0.000000,0.000000,0.963444 -0.266902,0.000000,0.000000,0.963724 -0.265893,0.000000,0.000000,0.964003 -0.264883,0.000000,0.000000,0.964281 -0.263873,0.000000,0.000000,0.964557 -0.262863,0.000000,0.000000,0.964833 -0.261852,0.000000,0.000000,0.965108 -0.260842,0.000000,0.000000,0.965382 -0.259830,0.000000,0.000000,0.965654 -0.258819,0.000000,0.000000,0.965926 -0.257807,0.000000,0.000000,0.966196 -0.256795,0.000000,0.000000,0.966466 -0.255783,0.000000,0.000000,0.966734 -0.254771,0.000000,0.000000,0.967001 -0.253758,0.000000,0.000000,0.967268 -0.252745,0.000000,0.000000,0.967533 -0.251732,0.000000,0.000000,0.967797 -0.250718,0.000000,0.000000,0.968060 -0.249704,0.000000,0.000000,0.968322 -0.248690,0.000000,0.000000,0.968583 -0.247675,0.000000,0.000000,0.968843 -0.246661,0.000000,0.000000,0.969102 -0.245646,0.000000,0.000000,0.969360 -0.244631,0.000000,0.000000,0.969616 -0.243615,0.000000,0.000000,0.969872 -0.242599,0.000000,0.000000,0.970127 -0.241583,0.000000,0.000000,0.970380 -0.240567,0.000000,0.000000,0.970633 -0.239550,0.000000,0.000000,0.970884 -0.238533,0.000000,0.000000,0.971134 -0.237516,0.000000,0.000000,0.971384 -0.236499,0.000000,0.000000,0.971632 -0.235481,0.000000,0.000000,0.971879 -0.234463,0.000000,0.000000,0.972125 -0.233445,0.000000,0.000000,0.972370 -0.232427,0.000000,0.000000,0.972614 -0.231408,0.000000,0.000000,0.972857 -0.230389,0.000000,0.000000,0.973099 -0.229370,0.000000,0.000000,0.973339 -0.228351,0.000000,0.000000,0.973579 -0.227331,0.000000,0.000000,0.973817 -0.226311,0.000000,0.000000,0.974055 -0.225291,0.000000,0.000000,0.974291 -0.224271,0.000000,0.000000,0.974527 -0.223250,0.000000,0.000000,0.974761 -0.222229,0.000000,0.000000,0.974994 -0.221208,0.000000,0.000000,0.975227 -0.220187,0.000000,0.000000,0.975458 -0.219165,0.000000,0.000000,0.975688 -0.218143,0.000000,0.000000,0.975917 -0.217121,0.000000,0.000000,0.976145 -0.216099,0.000000,0.000000,0.976371 -0.215076,0.000000,0.000000,0.976597 -0.214053,0.000000,0.000000,0.976822 -0.213030,0.000000,0.000000,0.977046 -0.212007,0.000000,0.000000,0.977268 -0.210984,0.000000,0.000000,0.977490 -0.209960,0.000000,0.000000,0.977710 -0.208936,0.000000,0.000000,0.977929 -0.207912,0.000000,0.000000,0.978148 -0.206887,0.000000,0.000000,0.978365 -0.205863,0.000000,0.000000,0.978581 -0.204838,0.000000,0.000000,0.978796 -0.203813,0.000000,0.000000,0.979010 -0.202787,0.000000,0.000000,0.979223 -0.201762,0.000000,0.000000,0.979435 -0.200736,0.000000,0.000000,0.979645 -0.199710,0.000000,0.000000,0.979855 -0.198684,0.000000,0.000000,0.980064 -0.197657,0.000000,0.000000,0.980271 -0.196631,0.000000,0.000000,0.980478 -0.195604,0.000000,0.000000,0.980683 -0.194577,0.000000,0.000000,0.980887 -0.193549,0.000000,0.000000,0.981091 -0.192522,0.000000,0.000000,0.981293 -0.191494,0.000000,0.000000,0.981494 -0.190466,0.000000,0.000000,0.981694 -0.189438,0.000000,0.000000,0.981893 -0.188410,0.000000,0.000000,0.982090 -0.187381,0.000000,0.000000,0.982287 -0.186353,0.000000,0.000000,0.982483 -0.185324,0.000000,0.000000,0.982678 -0.184294,0.000000,0.000000,0.982871 -0.183265,0.000000,0.000000,0.983064 -0.182236,0.000000,0.000000,0.983255 -0.181206,0.000000,0.000000,0.983445 -0.180176,0.000000,0.000000,0.983634 -0.179146,0.000000,0.000000,0.983823 -0.178115,0.000000,0.000000,0.984010 -0.177085,0.000000,0.000000,0.984196 -0.176054,0.000000,0.000000,0.984381 -0.175023,0.000000,0.000000,0.984564 -0.173992,0.000000,0.000000,0.984747 -0.172961,0.000000,0.000000,0.984929 -0.171929,0.000000,0.000000,0.985109 -0.170897,0.000000,0.000000,0.985289 -0.169866,0.000000,0.000000,0.985467 -0.168833,0.000000,0.000000,0.985645 -0.167801,0.000000,0.000000,0.985821 -0.166769,0.000000,0.000000,0.985996 -0.165736,0.000000,0.000000,0.986170 -0.164703,0.000000,0.000000,0.986343 -0.163670,0.000000,0.000000,0.986515 -0.162637,0.000000,0.000000,0.986686 -0.161604,0.000000,0.000000,0.986856 -0.160570,0.000000,0.000000,0.987024 -0.159537,0.000000,0.000000,0.987192 -0.158503,0.000000,0.000000,0.987359 -0.157469,0.000000,0.000000,0.987524 -0.156434,0.000000,0.000000,0.987688 -0.155400,0.000000,0.000000,0.987852 -0.154366,0.000000,0.000000,0.988014 -0.153331,0.000000,0.000000,0.988175 -0.152296,0.000000,0.000000,0.988335 -0.151261,0.000000,0.000000,0.988494 -0.150226,0.000000,0.000000,0.988652 -0.149190,0.000000,0.000000,0.988809 -0.148155,0.000000,0.000000,0.988964 -0.147119,0.000000,0.000000,0.989119 -0.146083,0.000000,0.000000,0.989272 -0.145047,0.000000,0.000000,0.989425 -0.144011,0.000000,0.000000,0.989576 -0.142974,0.000000,0.000000,0.989726 -0.141938,0.000000,0.000000,0.989876 -0.140901,0.000000,0.000000,0.990024 -0.139864,0.000000,0.000000,0.990171 -0.138827,0.000000,0.000000,0.990317 -0.137790,0.000000,0.000000,0.990461 -0.136753,0.000000,0.000000,0.990605 -0.135716,0.000000,0.000000,0.990748 -0.134678,0.000000,0.000000,0.990889 -0.133640,0.000000,0.000000,0.991030 -0.132602,0.000000,0.000000,0.991169 -0.131564,0.000000,0.000000,0.991308 -0.130526,0.000000,0.000000,0.991445 -0.129488,0.000000,0.000000,0.991581 -0.128449,0.000000,0.000000,0.991716 -0.127411,0.000000,0.000000,0.991850 -0.126372,0.000000,0.000000,0.991983 -0.125333,0.000000,0.000000,0.992115 -0.124294,0.000000,0.000000,0.992245 -0.123255,0.000000,0.000000,0.992375 -0.122216,0.000000,0.000000,0.992504 -0.121176,0.000000,0.000000,0.992631 -0.120137,0.000000,0.000000,0.992757 -0.119097,0.000000,0.000000,0.992883 -0.118057,0.000000,0.000000,0.993007 -0.117017,0.000000,0.000000,0.993130 -0.115977,0.000000,0.000000,0.993252 -0.114937,0.000000,0.000000,0.993373 -0.113897,0.000000,0.000000,0.993493 -0.112856,0.000000,0.000000,0.993611 -0.111816,0.000000,0.000000,0.993729 -0.110775,0.000000,0.000000,0.993845 -0.109734,0.000000,0.000000,0.993961 -0.108693,0.000000,0.000000,0.994075 -0.107652,0.000000,0.000000,0.994189 -0.106611,0.000000,0.000000,0.994301 -0.105570,0.000000,0.000000,0.994412 -0.104528,0.000000,0.000000,0.994522 -0.103487,0.000000,0.000000,0.994631 -0.102445,0.000000,0.000000,0.994739 -0.101404,0.000000,0.000000,0.994845 -0.100362,0.000000,0.000000,0.994951 -0.099320,0.000000,0.000000,0.995056 -0.098278,0.000000,0.000000,0.995159 -0.097235,0.000000,0.000000,0.995261 -0.096193,0.000000,0.000000,0.995363 -0.095151,0.000000,0.000000,0.995463 -0.094108,0.000000,0.000000,0.995562 -0.093066,0.000000,0.000000,0.995660 -0.092023,0.000000,0.000000,0.995757 -0.090980,0.000000,0.000000,0.995853 -0.089937,0.000000,0.000000,0.995947 -0.088894,0.000000,0.000000,0.996041 -0.087851,0.000000,0.000000,0.996134 -0.086808,0.000000,0.000000,0.996225 -0.085765,0.000000,0.000000,0.996315 -0.084721,0.000000,0.000000,0.996405 -0.083678,0.000000,0.000000,0.996493 -0.082634,0.000000,0.000000,0.996580 -0.081591,0.000000,0.000000,0.996666 -0.080547,0.000000,0.000000,0.996751 -0.079503,0.000000,0.000000,0.996835 -0.078459,0.000000,0.000000,0.996917 -0.077415,0.000000,0.000000,0.996999 -0.076371,0.000000,0.000000,0.997079 -0.075327,0.000000,0.000000,0.997159 -0.074283,0.000000,0.000000,0.997237 -0.073238,0.000000,0.000000,0.997314 -0.072194,0.000000,0.000000,0.997391 -0.071149,0.000000,0.000000,0.997466 -0.070105,0.000000,0.000000,0.997540 -0.069060,0.000000,0.000000,0.997613 -0.068015,0.000000,0.000000,0.997684 -0.066970,0.000000,0.000000,0.997755 -0.065926,0.000000,0.000000,0.997825 -0.064881,0.000000,0.000000,0.997893 -0.063836,0.000000,0.000000,0.997960 -0.062791,0.000000,0.000000,0.998027 -0.061745,0.000000,0.000000,0.998092 -0.060700,0.000000,0.000000,0.998156 -0.059655,0.000000,0.000000,0.998219 -0.058609,0.000000,0.000000,0.998281 -0.057564,0.000000,0.000000,0.998342 -0.056519,0.000000,0.000000,0.998402 -0.055473,0.000000,0.000000,0.998460 -0.054427,0.000000,0.000000,0.998518 -0.053382,0.000000,0.000000,0.998574 -0.052336,0.000000,0.000000,0.998630 -0.051290,0.000000,0.000000,0.998684 -0.050244,0.000000,0.000000,0.998737 -0.049198,0.000000,0.000000,0.998789 -0.048152,0.000000,0.000000,0.998840 -0.047106,0.000000,0.000000,0.998890 -0.046060,0.000000,0.000000,0.998939 -0.045014,0.000000,0.000000,0.998986 -0.043968,0.000000,0.000000,0.999033 -0.042922,0.000000,0.000000,0.999078 -0.041876,0.000000,0.000000,0.999123 -0.040829,0.000000,0.000000,0.999166 -0.039783,0.000000,0.000000,0.999208 -0.038737,0.000000,0.000000,0.999249 -0.037690,0.000000,0.000000,0.999289 -0.036644,0.000000,0.000000,0.999328 -0.035597,0.000000,0.000000,0.999366 -0.034551,0.000000,0.000000,0.999403 -0.033504,0.000000,0.000000,0.999439 -0.032457,0.000000,0.000000,0.999473 -0.031411,0.000000,0.000000,0.999507 -0.030364,0.000000,0.000000,0.999539 -0.029317,0.000000,0.000000,0.999570 -0.028271,0.000000,0.000000,0.999600 -0.027224,0.000000,0.000000,0.999629 -0.026177,0.000000,0.000000,0.999657 -0.025130,0.000000,0.000000,0.999684 -0.024083,0.000000,0.000000,0.999710 -0.023036,0.000000,0.000000,0.999735 -0.021989,0.000000,0.000000,0.999758 -0.020942,0.000000,0.000000,0.999781 -0.019895,0.000000,0.000000,0.999802 -0.018848,0.000000,0.000000,0.999822 -0.017801,0.000000,0.000000,0.999842 -0.016754,0.000000,0.000000,0.999860 -0.015707,0.000000,0.000000,0.999877 -0.014660,0.000000,0.000000,0.999893 -0.013613,0.000000,0.000000,0.999907 -0.012566,0.000000,0.000000,0.999921 -0.011519,0.000000,0.000000,0.999934 -0.010472,0.000000,0.000000,0.999945 -0.009425,0.000000,0.000000,0.999956 -0.008377,0.000000,0.000000,0.999965 -0.007330,0.000000,0.000000,0.999973 -0.006283,0.000000,0.000000,0.999980 -0.005236,0.000000,0.000000,0.999986 -0.004189,0.000000,0.000000,0.999991 -0.003142,0.000000,0.000000,0.999995 -0.002094,0.000000,0.000000,0.999998 -0.001047,0.000000,0.000000,0.999999 -0.000000,0.000000,0.000000,1.000000 --0.001047,-0.000000,0.000000,0.999999 --0.002094,-0.000000,0.000000,0.999998 --0.003142,-0.000000,0.000000,0.999995 --0.004189,-0.000000,0.000000,0.999991 --0.005236,-0.000000,0.000000,0.999986 --0.006283,-0.000000,0.000000,0.999980 --0.007330,-0.000000,0.000000,0.999973 --0.008377,-0.000000,0.000000,0.999965 --0.009425,-0.000000,0.000000,0.999956 --0.010472,-0.000000,0.000000,0.999945 --0.011519,-0.000000,0.000000,0.999934 --0.012566,-0.000000,0.000000,0.999921 --0.013613,-0.000000,0.000000,0.999907 --0.014660,-0.000000,0.000000,0.999893 --0.015707,-0.000000,0.000000,0.999877 --0.016754,-0.000000,0.000000,0.999860 --0.017801,-0.000000,0.000000,0.999842 --0.018848,-0.000000,0.000000,0.999822 --0.019895,-0.000000,0.000000,0.999802 --0.020942,-0.000000,0.000000,0.999781 --0.021989,-0.000000,0.000000,0.999758 --0.023036,-0.000000,0.000000,0.999735 --0.024083,-0.000000,0.000000,0.999710 --0.025130,-0.000000,0.000000,0.999684 --0.026177,-0.000000,0.000000,0.999657 --0.027224,-0.000000,0.000000,0.999629 --0.028271,-0.000000,0.000000,0.999600 --0.029317,-0.000000,0.000000,0.999570 --0.030364,-0.000000,0.000000,0.999539 --0.031411,-0.000000,0.000000,0.999507 --0.032457,-0.000000,0.000000,0.999473 --0.033504,-0.000000,0.000000,0.999439 --0.034551,-0.000000,0.000000,0.999403 --0.035597,-0.000000,0.000000,0.999366 --0.036644,-0.000000,0.000000,0.999328 --0.037690,-0.000000,0.000000,0.999289 --0.038737,-0.000000,0.000000,0.999249 --0.039783,-0.000000,0.000000,0.999208 --0.040829,-0.000000,0.000000,0.999166 --0.041876,-0.000000,0.000000,0.999123 --0.042922,-0.000000,0.000000,0.999078 --0.043968,-0.000000,0.000000,0.999033 --0.045014,-0.000000,0.000000,0.998986 --0.046060,-0.000000,0.000000,0.998939 --0.047106,-0.000000,0.000000,0.998890 --0.048152,-0.000000,0.000000,0.998840 --0.049198,-0.000000,0.000000,0.998789 --0.050244,-0.000000,0.000000,0.998737 --0.051290,-0.000000,0.000000,0.998684 --0.052336,-0.000000,0.000000,0.998630 --0.053382,-0.000000,0.000000,0.998574 --0.054427,-0.000000,0.000000,0.998518 --0.055473,-0.000000,0.000000,0.998460 --0.056519,-0.000000,0.000000,0.998402 --0.057564,-0.000000,0.000000,0.998342 --0.058609,-0.000000,0.000000,0.998281 --0.059655,-0.000000,0.000000,0.998219 --0.060700,-0.000000,0.000000,0.998156 --0.061745,-0.000000,0.000000,0.998092 --0.062791,-0.000000,0.000000,0.998027 --0.063836,-0.000000,0.000000,0.997960 --0.064881,-0.000000,0.000000,0.997893 --0.065926,-0.000000,0.000000,0.997825 --0.066970,-0.000000,0.000000,0.997755 --0.068015,-0.000000,0.000000,0.997684 --0.069060,-0.000000,0.000000,0.997613 --0.070105,-0.000000,0.000000,0.997540 --0.071149,-0.000000,0.000000,0.997466 --0.072194,-0.000000,0.000000,0.997391 --0.073238,-0.000000,0.000000,0.997314 --0.074283,-0.000000,0.000000,0.997237 --0.075327,-0.000000,0.000000,0.997159 --0.076371,-0.000000,0.000000,0.997079 --0.077415,-0.000000,0.000000,0.996999 --0.078459,-0.000000,0.000000,0.996917 --0.079503,-0.000000,0.000000,0.996835 --0.080547,-0.000000,0.000000,0.996751 --0.081591,-0.000000,0.000000,0.996666 --0.082634,-0.000000,0.000000,0.996580 --0.083678,-0.000000,0.000000,0.996493 --0.084721,-0.000000,0.000000,0.996405 --0.085765,-0.000000,0.000000,0.996315 --0.086808,-0.000000,0.000000,0.996225 --0.087851,-0.000000,0.000000,0.996134 --0.088894,-0.000000,0.000000,0.996041 --0.089937,-0.000000,0.000000,0.995947 --0.090980,-0.000000,0.000000,0.995853 --0.092023,-0.000000,0.000000,0.995757 --0.093066,-0.000000,0.000000,0.995660 --0.094108,-0.000000,0.000000,0.995562 --0.095151,-0.000000,0.000000,0.995463 --0.096193,-0.000000,0.000000,0.995363 --0.097235,-0.000000,0.000000,0.995261 --0.098278,-0.000000,0.000000,0.995159 --0.099320,-0.000000,0.000000,0.995056 --0.100362,-0.000000,0.000000,0.994951 --0.101404,-0.000000,0.000000,0.994845 --0.102445,-0.000000,0.000000,0.994739 --0.103487,-0.000000,0.000000,0.994631 --0.104528,-0.000000,0.000000,0.994522 --0.105570,-0.000000,0.000000,0.994412 --0.106611,-0.000000,0.000000,0.994301 --0.107652,-0.000000,0.000000,0.994189 --0.108693,-0.000000,0.000000,0.994075 --0.109734,-0.000000,0.000000,0.993961 --0.110775,-0.000000,0.000000,0.993845 --0.111816,-0.000000,0.000000,0.993729 --0.112856,-0.000000,0.000000,0.993611 --0.113897,-0.000000,0.000000,0.993493 --0.114937,-0.000000,0.000000,0.993373 --0.115977,-0.000000,0.000000,0.993252 --0.117017,-0.000000,0.000000,0.993130 --0.118057,-0.000000,0.000000,0.993007 --0.119097,-0.000000,0.000000,0.992883 --0.120137,-0.000000,0.000000,0.992757 --0.121176,-0.000000,0.000000,0.992631 --0.122216,-0.000000,0.000000,0.992504 --0.123255,-0.000000,0.000000,0.992375 --0.124294,-0.000000,0.000000,0.992245 --0.125333,-0.000000,0.000000,0.992115 --0.126372,-0.000000,0.000000,0.991983 --0.127411,-0.000000,0.000000,0.991850 --0.128449,-0.000000,0.000000,0.991716 --0.129488,-0.000000,0.000000,0.991581 --0.130526,-0.000000,0.000000,0.991445 --0.131564,-0.000000,0.000000,0.991308 --0.132602,-0.000000,0.000000,0.991169 --0.133640,-0.000000,0.000000,0.991030 --0.134678,-0.000000,0.000000,0.990889 --0.135716,-0.000000,0.000000,0.990748 --0.136753,-0.000000,0.000000,0.990605 --0.137790,-0.000000,0.000000,0.990461 --0.138827,-0.000000,0.000000,0.990317 --0.139864,-0.000000,0.000000,0.990171 --0.140901,-0.000000,0.000000,0.990024 --0.141938,-0.000000,0.000000,0.989876 --0.142974,-0.000000,0.000000,0.989726 --0.144011,-0.000000,0.000000,0.989576 --0.145047,-0.000000,0.000000,0.989425 --0.146083,-0.000000,0.000000,0.989272 --0.147119,-0.000000,0.000000,0.989119 --0.148155,-0.000000,0.000000,0.988964 --0.149190,-0.000000,0.000000,0.988809 --0.150226,-0.000000,0.000000,0.988652 --0.151261,-0.000000,0.000000,0.988494 --0.152296,-0.000000,0.000000,0.988335 --0.153331,-0.000000,0.000000,0.988175 --0.154366,-0.000000,0.000000,0.988014 --0.155400,-0.000000,0.000000,0.987852 --0.156434,-0.000000,0.000000,0.987688 --0.157469,-0.000000,0.000000,0.987524 --0.158503,-0.000000,0.000000,0.987359 --0.159537,-0.000000,0.000000,0.987192 --0.160570,-0.000000,0.000000,0.987024 --0.161604,-0.000000,0.000000,0.986856 --0.162637,-0.000000,0.000000,0.986686 --0.163670,-0.000000,0.000000,0.986515 --0.164703,-0.000000,0.000000,0.986343 --0.165736,-0.000000,0.000000,0.986170 --0.166769,-0.000000,0.000000,0.985996 --0.167801,-0.000000,0.000000,0.985821 --0.168833,-0.000000,0.000000,0.985645 --0.169866,-0.000000,0.000000,0.985467 --0.170897,-0.000000,0.000000,0.985289 --0.171929,-0.000000,0.000000,0.985109 --0.172961,-0.000000,0.000000,0.984929 --0.173992,-0.000000,0.000000,0.984747 --0.175023,-0.000000,0.000000,0.984564 --0.176054,-0.000000,0.000000,0.984381 --0.177085,-0.000000,0.000000,0.984196 --0.178115,-0.000000,0.000000,0.984010 --0.179146,-0.000000,0.000000,0.983823 --0.180176,-0.000000,0.000000,0.983634 --0.181206,-0.000000,0.000000,0.983445 --0.182236,-0.000000,0.000000,0.983255 --0.183265,-0.000000,0.000000,0.983064 --0.184294,-0.000000,0.000000,0.982871 --0.185324,-0.000000,0.000000,0.982678 --0.186353,-0.000000,0.000000,0.982483 --0.187381,-0.000000,0.000000,0.982287 --0.188410,-0.000000,0.000000,0.982090 --0.189438,-0.000000,0.000000,0.981893 --0.190466,-0.000000,0.000000,0.981694 --0.191494,-0.000000,0.000000,0.981494 --0.192522,-0.000000,0.000000,0.981293 --0.193549,-0.000000,0.000000,0.981091 --0.194577,-0.000000,0.000000,0.980887 --0.195604,-0.000000,0.000000,0.980683 --0.196631,-0.000000,0.000000,0.980478 --0.197657,-0.000000,0.000000,0.980271 --0.198684,-0.000000,0.000000,0.980064 --0.199710,-0.000000,0.000000,0.979855 --0.200736,-0.000000,0.000000,0.979645 --0.201762,-0.000000,0.000000,0.979435 --0.202787,-0.000000,0.000000,0.979223 --0.203813,-0.000000,0.000000,0.979010 --0.204838,-0.000000,0.000000,0.978796 --0.205863,-0.000000,0.000000,0.978581 --0.206887,-0.000000,0.000000,0.978365 --0.207912,-0.000000,0.000000,0.978148 --0.208936,-0.000000,0.000000,0.977929 --0.209960,-0.000000,0.000000,0.977710 --0.210984,-0.000000,0.000000,0.977490 --0.212007,-0.000000,0.000000,0.977268 --0.213030,-0.000000,0.000000,0.977046 --0.214053,-0.000000,0.000000,0.976822 --0.215076,-0.000000,0.000000,0.976597 --0.216099,-0.000000,0.000000,0.976371 --0.217121,-0.000000,0.000000,0.976145 --0.218143,-0.000000,0.000000,0.975917 --0.219165,-0.000000,0.000000,0.975688 --0.220187,-0.000000,0.000000,0.975458 --0.221208,-0.000000,0.000000,0.975227 --0.222229,-0.000000,0.000000,0.974994 --0.223250,-0.000000,0.000000,0.974761 --0.224271,-0.000000,0.000000,0.974527 --0.225291,-0.000000,0.000000,0.974291 --0.226311,-0.000000,0.000000,0.974055 --0.227331,-0.000000,0.000000,0.973817 --0.228351,-0.000000,0.000000,0.973579 --0.229370,-0.000000,0.000000,0.973339 --0.230389,-0.000000,0.000000,0.973099 --0.231408,-0.000000,0.000000,0.972857 --0.232427,-0.000000,0.000000,0.972614 --0.233445,-0.000000,0.000000,0.972370 --0.234463,-0.000000,0.000000,0.972125 --0.235481,-0.000000,0.000000,0.971879 --0.236499,-0.000000,0.000000,0.971632 --0.237516,-0.000000,0.000000,0.971384 --0.238533,-0.000000,0.000000,0.971134 --0.239550,-0.000000,0.000000,0.970884 --0.240567,-0.000000,0.000000,0.970633 --0.241583,-0.000000,0.000000,0.970380 --0.242599,-0.000000,0.000000,0.970127 --0.243615,-0.000000,0.000000,0.969872 --0.244631,-0.000000,0.000000,0.969616 --0.245646,-0.000000,0.000000,0.969360 --0.246661,-0.000000,0.000000,0.969102 --0.247675,-0.000000,0.000000,0.968843 --0.248690,-0.000000,0.000000,0.968583 --0.249704,-0.000000,0.000000,0.968322 --0.250718,-0.000000,0.000000,0.968060 --0.251732,-0.000000,0.000000,0.967797 --0.252745,-0.000000,0.000000,0.967533 --0.253758,-0.000000,0.000000,0.967268 --0.254771,-0.000000,0.000000,0.967001 --0.255783,-0.000000,0.000000,0.966734 --0.256795,-0.000000,0.000000,0.966466 --0.257807,-0.000000,0.000000,0.966196 --0.258819,-0.000000,0.000000,0.965926 --0.259830,-0.000000,0.000000,0.965654 --0.260842,-0.000000,0.000000,0.965382 --0.261852,-0.000000,0.000000,0.965108 --0.262863,-0.000000,0.000000,0.964833 --0.263873,-0.000000,0.000000,0.964557 --0.264883,-0.000000,0.000000,0.964281 --0.265893,-0.000000,0.000000,0.964003 --0.266902,-0.000000,0.000000,0.963724 --0.267911,-0.000000,0.000000,0.963444 --0.268920,-0.000000,0.000000,0.963163 --0.269928,-0.000000,0.000000,0.962880 --0.270936,-0.000000,0.000000,0.962597 --0.271944,-0.000000,0.000000,0.962313 --0.272952,-0.000000,0.000000,0.962028 --0.273959,-0.000000,0.000000,0.961741 --0.274966,-0.000000,0.000000,0.961454 --0.275973,-0.000000,0.000000,0.961165 --0.276979,-0.000000,0.000000,0.960876 --0.277985,-0.000000,0.000000,0.960585 --0.278991,-0.000000,0.000000,0.960294 --0.279997,-0.000000,0.000000,0.960001 --0.281002,-0.000000,0.000000,0.959707 --0.282007,-0.000000,0.000000,0.959412 --0.283011,-0.000000,0.000000,0.959117 --0.284015,-0.000000,0.000000,0.958820 --0.285019,-0.000000,0.000000,0.958522 --0.286023,-0.000000,0.000000,0.958223 --0.287026,-0.000000,0.000000,0.957923 --0.288029,-0.000000,0.000000,0.957622 --0.289032,-0.000000,0.000000,0.957319 --0.290034,-0.000000,0.000000,0.957016 --0.291036,-0.000000,0.000000,0.956712 --0.292038,-0.000000,0.000000,0.956407 --0.293039,-0.000000,0.000000,0.956100 --0.294040,-0.000000,0.000000,0.955793 --0.295041,-0.000000,0.000000,0.955485 --0.296041,-0.000000,0.000000,0.955175 --0.297042,-0.000000,0.000000,0.954865 --0.298041,-0.000000,0.000000,0.954553 --0.299041,-0.000000,0.000000,0.954240 --0.300040,-0.000000,0.000000,0.953927 --0.301039,-0.000000,0.000000,0.953612 --0.302037,-0.000000,0.000000,0.953296 --0.303035,-0.000000,0.000000,0.952979 --0.304033,-0.000000,0.000000,0.952661 --0.305031,-0.000000,0.000000,0.952343 --0.306028,-0.000000,0.000000,0.952023 --0.307024,-0.000000,0.000000,0.951702 --0.308021,-0.000000,0.000000,0.951380 --0.309017,-0.000000,0.000000,0.951057 --0.310013,-0.000000,0.000000,0.950732 --0.311008,-0.000000,0.000000,0.950407 --0.312003,-0.000000,0.000000,0.950081 --0.312998,-0.000000,0.000000,0.949754 --0.313992,-0.000000,0.000000,0.949425 --0.314987,-0.000000,0.000000,0.949096 --0.315980,-0.000000,0.000000,0.948766 --0.316974,-0.000000,0.000000,0.948434 --0.317967,-0.000000,0.000000,0.948102 --0.318959,-0.000000,0.000000,0.947768 --0.319952,-0.000000,0.000000,0.947434 --0.320944,-0.000000,0.000000,0.947098 --0.321935,-0.000000,0.000000,0.946762 --0.322927,-0.000000,0.000000,0.946424 --0.323917,-0.000000,0.000000,0.946085 --0.324908,-0.000000,0.000000,0.945746 --0.325898,-0.000000,0.000000,0.945405 --0.326888,-0.000000,0.000000,0.945063 --0.327878,-0.000000,0.000000,0.944720 --0.328867,-0.000000,0.000000,0.944376 --0.329855,-0.000000,0.000000,0.944031 --0.330844,-0.000000,0.000000,0.943686 --0.331832,-0.000000,0.000000,0.943339 --0.332820,-0.000000,0.000000,0.942991 --0.333807,-0.000000,0.000000,0.942641 --0.334794,-0.000000,0.000000,0.942291 --0.335780,-0.000000,0.000000,0.941940 --0.336767,-0.000000,0.000000,0.941588 --0.337752,-0.000000,0.000000,0.941235 --0.338738,-0.000000,0.000000,0.940881 --0.339723,-0.000000,0.000000,0.940526 --0.340708,-0.000000,0.000000,0.940169 --0.341692,-0.000000,0.000000,0.939812 --0.342676,-0.000000,0.000000,0.939454 --0.343660,-0.000000,0.000000,0.939094 --0.344643,-0.000000,0.000000,0.938734 --0.345626,-0.000000,0.000000,0.938372 --0.346608,-0.000000,0.000000,0.938010 --0.347590,-0.000000,0.000000,0.937646 --0.348572,-0.000000,0.000000,0.937282 --0.349553,-0.000000,0.000000,0.936916 --0.350534,-0.000000,0.000000,0.936550 --0.351515,-0.000000,0.000000,0.936182 --0.352495,-0.000000,0.000000,0.935814 --0.353475,-0.000000,0.000000,0.935444 --0.354454,-0.000000,0.000000,0.935073 --0.355433,-0.000000,0.000000,0.934702 --0.356412,-0.000000,0.000000,0.934329 --0.357390,-0.000000,0.000000,0.933955 --0.358368,-0.000000,0.000000,0.933580 --0.359345,-0.000000,0.000000,0.933205 --0.360322,-0.000000,0.000000,0.932828 --0.361299,-0.000000,0.000000,0.932450 --0.362275,-0.000000,0.000000,0.932071 --0.363251,-0.000000,0.000000,0.931691 --0.364227,-0.000000,0.000000,0.931310 --0.365202,-0.000000,0.000000,0.930928 --0.366176,-0.000000,0.000000,0.930545 --0.367151,-0.000000,0.000000,0.930161 --0.368125,-0.000000,0.000000,0.929776 --0.369098,-0.000000,0.000000,0.929390 --0.370071,-0.000000,0.000000,0.929003 --0.371044,-0.000000,0.000000,0.928615 --0.372016,-0.000000,0.000000,0.928226 --0.372988,-0.000000,0.000000,0.927836 --0.373959,-0.000000,0.000000,0.927445 --0.374930,-0.000000,0.000000,0.927053 --0.375901,-0.000000,0.000000,0.926660 --0.376871,-0.000000,0.000000,0.926266 --0.377841,-0.000000,0.000000,0.925871 --0.378810,-0.000000,0.000000,0.925474 --0.379779,-0.000000,0.000000,0.925077 --0.380748,-0.000000,0.000000,0.924679 --0.381716,-0.000000,0.000000,0.924280 --0.382683,-0.000000,0.000000,0.923880 --0.383651,-0.000000,0.000000,0.923478 --0.384618,-0.000000,0.000000,0.923076 --0.385584,-0.000000,0.000000,0.922673 --0.386550,-0.000000,0.000000,0.922268 --0.387516,-0.000000,0.000000,0.921863 --0.388481,-0.000000,0.000000,0.921457 --0.389445,-0.000000,0.000000,0.921050 --0.390410,-0.000000,0.000000,0.920641 --0.391374,-0.000000,0.000000,0.920232 --0.392337,-0.000000,0.000000,0.919821 --0.393300,-0.000000,0.000000,0.919410 --0.394263,-0.000000,0.000000,0.918998 --0.395225,-0.000000,0.000000,0.918584 --0.396187,-0.000000,0.000000,0.918170 --0.397148,-0.000000,0.000000,0.917755 --0.398109,-0.000000,0.000000,0.917338 --0.399069,-0.000000,0.000000,0.916921 --0.400029,-0.000000,0.000000,0.916502 --0.400989,-0.000000,0.000000,0.916083 --0.401948,-0.000000,0.000000,0.915663 --0.402906,-0.000000,0.000000,0.915241 --0.403865,-0.000000,0.000000,0.914819 --0.404822,-0.000000,0.000000,0.914395 --0.405780,-0.000000,0.000000,0.913971 --0.406737,-0.000000,0.000000,0.913545 --0.407693,-0.000000,0.000000,0.913119 --0.408649,-0.000000,0.000000,0.912692 --0.409605,-0.000000,0.000000,0.912263 --0.410560,-0.000000,0.000000,0.911834 --0.411514,-0.000000,0.000000,0.911403 --0.412469,-0.000000,0.000000,0.910972 --0.413422,-0.000000,0.000000,0.910539 --0.414376,-0.000000,0.000000,0.910106 --0.415328,-0.000000,0.000000,0.909672 --0.416281,-0.000000,0.000000,0.909236 --0.417233,-0.000000,0.000000,0.908800 --0.418184,-0.000000,0.000000,0.908362 --0.419135,-0.000000,0.000000,0.907924 --0.420086,-0.000000,0.000000,0.907484 --0.421036,-0.000000,0.000000,0.907044 --0.421985,-0.000000,0.000000,0.906603 --0.422935,-0.000000,0.000000,0.906160 --0.423883,-0.000000,0.000000,0.905717 --0.424832,-0.000000,0.000000,0.905272 --0.425779,-0.000000,0.000000,0.904827 --0.426727,-0.000000,0.000000,0.904381 --0.427673,-0.000000,0.000000,0.903933 --0.428620,-0.000000,0.000000,0.903485 --0.429566,-0.000000,0.000000,0.903036 --0.430511,-0.000000,0.000000,0.902585 --0.431456,-0.000000,0.000000,0.902134 --0.432401,-0.000000,0.000000,0.901682 --0.433345,-0.000000,0.000000,0.901228 --0.434288,-0.000000,0.000000,0.900774 --0.435231,-0.000000,0.000000,0.900319 --0.436174,-0.000000,0.000000,0.899863 --0.437116,-0.000000,0.000000,0.899405 --0.438057,-0.000000,0.000000,0.898947 --0.438999,-0.000000,0.000000,0.898488 --0.439939,-0.000000,0.000000,0.898028 --0.440879,-0.000000,0.000000,0.897566 --0.441819,-0.000000,0.000000,0.897104 --0.442758,-0.000000,0.000000,0.896641 --0.443697,-0.000000,0.000000,0.896177 --0.444635,-0.000000,0.000000,0.895712 --0.445573,-0.000000,0.000000,0.895246 --0.446510,-0.000000,0.000000,0.894779 --0.447447,-0.000000,0.000000,0.894310 --0.448383,-0.000000,0.000000,0.893841 --0.449319,-0.000000,0.000000,0.893371 --0.450254,-0.000000,0.000000,0.892900 --0.451189,-0.000000,0.000000,0.892428 --0.452123,-0.000000,0.000000,0.891955 --0.453057,-0.000000,0.000000,0.891481 --0.453990,-0.000000,0.000000,0.891007 --0.454923,-0.000000,0.000000,0.890531 --0.455856,-0.000000,0.000000,0.890054 --0.456787,-0.000000,0.000000,0.889576 --0.457719,-0.000000,0.000000,0.889097 --0.458650,-0.000000,0.000000,0.888617 --0.459580,-0.000000,0.000000,0.888136 --0.460510,-0.000000,0.000000,0.887655 --0.461439,-0.000000,0.000000,0.887172 --0.462368,-0.000000,0.000000,0.886688 --0.463296,-0.000000,0.000000,0.886204 --0.464224,-0.000000,0.000000,0.885718 --0.465151,-0.000000,0.000000,0.885231 --0.466078,-0.000000,0.000000,0.884744 --0.467004,-0.000000,0.000000,0.884255 --0.467930,-0.000000,0.000000,0.883766 --0.468855,-0.000000,0.000000,0.883275 --0.469780,-0.000000,0.000000,0.882784 --0.470704,-0.000000,0.000000,0.882291 --0.471628,-0.000000,0.000000,0.881798 --0.472551,-0.000000,0.000000,0.881303 --0.473473,-0.000000,0.000000,0.880808 --0.474396,-0.000000,0.000000,0.880312 --0.475317,-0.000000,0.000000,0.879815 --0.476238,-0.000000,0.000000,0.879316 --0.477159,-0.000000,0.000000,0.878817 --0.478079,-0.000000,0.000000,0.878317 --0.478998,-0.000000,0.000000,0.877816 --0.479917,-0.000000,0.000000,0.877314 --0.480836,-0.000000,0.000000,0.876811 --0.481754,-0.000000,0.000000,0.876307 --0.482671,-0.000000,0.000000,0.875802 --0.483588,-0.000000,0.000000,0.875296 --0.484504,-0.000000,0.000000,0.874789 --0.485420,-0.000000,0.000000,0.874281 --0.486335,-0.000000,0.000000,0.873772 --0.487250,-0.000000,0.000000,0.873262 --0.488164,-0.000000,0.000000,0.872752 --0.489078,-0.000000,0.000000,0.872240 --0.489991,-0.000000,0.000000,0.871727 --0.490904,-0.000000,0.000000,0.871214 --0.491816,-0.000000,0.000000,0.870699 --0.492727,-0.000000,0.000000,0.870184 --0.493638,-0.000000,0.000000,0.869667 --0.494549,-0.000000,0.000000,0.869150 --0.495459,-0.000000,0.000000,0.868632 --0.496368,-0.000000,0.000000,0.868112 --0.497277,-0.000000,0.000000,0.867592 --0.498185,-0.000000,0.000000,0.867071 --0.499093,-0.000000,0.000000,0.866549 --0.500000,-0.000000,0.000000,0.866025 --0.500907,-0.000000,0.000000,0.865501 --0.501813,-0.000000,0.000000,0.864976 --0.502718,-0.000000,0.000000,0.864450 --0.503623,-0.000000,0.000000,0.863923 --0.504528,-0.000000,0.000000,0.863396 --0.505431,-0.000000,0.000000,0.862867 --0.506335,-0.000000,0.000000,0.862337 --0.507238,-0.000000,0.000000,0.861806 --0.508140,-0.000000,0.000000,0.861275 --0.509041,-0.000000,0.000000,0.860742 --0.509943,-0.000000,0.000000,0.860208 --0.510843,-0.000000,0.000000,0.859674 --0.511743,-0.000000,0.000000,0.859139 --0.512642,-0.000000,0.000000,0.858602 --0.513541,-0.000000,0.000000,0.858065 --0.514440,-0.000000,0.000000,0.857527 --0.515337,-0.000000,0.000000,0.856987 --0.516234,-0.000000,0.000000,0.856447 --0.517131,-0.000000,0.000000,0.855906 --0.518027,-0.000000,0.000000,0.855364 --0.518922,-0.000000,0.000000,0.854821 --0.519817,-0.000000,0.000000,0.854277 --0.520712,-0.000000,0.000000,0.853733 --0.521605,-0.000000,0.000000,0.853187 --0.522499,-0.000000,0.000000,0.852640 --0.523391,-0.000000,0.000000,0.852093 --0.524283,-0.000000,0.000000,0.851544 --0.525175,-0.000000,0.000000,0.850994 --0.526066,-0.000000,0.000000,0.850444 --0.526956,-0.000000,0.000000,0.849893 --0.527846,-0.000000,0.000000,0.849340 --0.528735,-0.000000,0.000000,0.848787 --0.529623,-0.000000,0.000000,0.848233 --0.530511,-0.000000,0.000000,0.847678 --0.531399,-0.000000,0.000000,0.847122 --0.532285,-0.000000,0.000000,0.846565 --0.533172,-0.000000,0.000000,0.846007 --0.534057,-0.000000,0.000000,0.845448 --0.534942,-0.000000,0.000000,0.844889 --0.535827,-0.000000,0.000000,0.844328 --0.536711,-0.000000,0.000000,0.843766 --0.537594,-0.000000,0.000000,0.843204 --0.538477,-0.000000,0.000000,0.842640 --0.539359,-0.000000,0.000000,0.842076 --0.540240,-0.000000,0.000000,0.841511 --0.541121,-0.000000,0.000000,0.840945 --0.542002,-0.000000,0.000000,0.840377 --0.542881,-0.000000,0.000000,0.839809 --0.543760,-0.000000,0.000000,0.839240 --0.544639,-0.000000,0.000000,0.838671 --0.545517,-0.000000,0.000000,0.838100 --0.546394,-0.000000,0.000000,0.837528 --0.547271,-0.000000,0.000000,0.836955 --0.548147,-0.000000,0.000000,0.836382 --0.549023,-0.000000,0.000000,0.835807 --0.549898,-0.000000,0.000000,0.835232 --0.550772,-0.000000,0.000000,0.834656 --0.551646,-0.000000,0.000000,0.834078 --0.552519,-0.000000,0.000000,0.833500 --0.553392,-0.000000,0.000000,0.832921 --0.554263,-0.000000,0.000000,0.832341 --0.555135,-0.000000,0.000000,0.831760 --0.556006,-0.000000,0.000000,0.831179 --0.556876,-0.000000,0.000000,0.830596 --0.557745,-0.000000,0.000000,0.830012 --0.558614,-0.000000,0.000000,0.829428 --0.559482,-0.000000,0.000000,0.828842 --0.560350,-0.000000,0.000000,0.828256 --0.561217,-0.000000,0.000000,0.827669 --0.562083,-0.000000,0.000000,0.827081 --0.562949,-0.000000,0.000000,0.826492 --0.563814,-0.000000,0.000000,0.825902 --0.564679,-0.000000,0.000000,0.825311 --0.565543,-0.000000,0.000000,0.824719 --0.566406,-0.000000,0.000000,0.824126 --0.567269,-0.000000,0.000000,0.823533 --0.568131,-0.000000,0.000000,0.822938 --0.568993,-0.000000,0.000000,0.822343 --0.569853,-0.000000,0.000000,0.821746 --0.570714,-0.000000,0.000000,0.821149 --0.571573,-0.000000,0.000000,0.820551 --0.572432,-0.000000,0.000000,0.819952 --0.573290,-0.000000,0.000000,0.819352 --0.574148,-0.000000,0.000000,0.818751 --0.575005,-0.000000,0.000000,0.818150 --0.575862,-0.000000,0.000000,0.817547 --0.576718,-0.000000,0.000000,0.816944 --0.577573,-0.000000,0.000000,0.816339 --0.578427,-0.000000,0.000000,0.815734 --0.579281,-0.000000,0.000000,0.815128 --0.580134,-0.000000,0.000000,0.814521 --0.580987,-0.000000,0.000000,0.813913 --0.581839,-0.000000,0.000000,0.813304 --0.582690,-0.000000,0.000000,0.812694 --0.583541,-0.000000,0.000000,0.812084 --0.584391,-0.000000,0.000000,0.811472 --0.585241,-0.000000,0.000000,0.810860 --0.586090,-0.000000,0.000000,0.810246 --0.586938,-0.000000,0.000000,0.809632 --0.587785,-0.000000,0.000000,0.809017 --0.588632,-0.000000,0.000000,0.808401 --0.589478,-0.000000,0.000000,0.807784 --0.590324,-0.000000,0.000000,0.807166 --0.591169,-0.000000,0.000000,0.806548 --0.592013,-0.000000,0.000000,0.805928 --0.592857,-0.000000,0.000000,0.805308 --0.593700,-0.000000,0.000000,0.804687 --0.594542,-0.000000,0.000000,0.804064 --0.595384,-0.000000,0.000000,0.803441 --0.596225,-0.000000,0.000000,0.802817 --0.597065,-0.000000,0.000000,0.802193 --0.597905,-0.000000,0.000000,0.801567 --0.598744,-0.000000,0.000000,0.800940 --0.599582,-0.000000,0.000000,0.800313 --0.600420,-0.000000,0.000000,0.799685 --0.601257,-0.000000,0.000000,0.799055 --0.602094,-0.000000,0.000000,0.798425 --0.602930,-0.000000,0.000000,0.797794 --0.603765,-0.000000,0.000000,0.797163 --0.604599,-0.000000,0.000000,0.796530 --0.605433,-0.000000,0.000000,0.795896 --0.606266,-0.000000,0.000000,0.795262 --0.607098,-0.000000,0.000000,0.794627 --0.607930,-0.000000,0.000000,0.793990 --0.608761,-0.000000,0.000000,0.793353 --0.609592,-0.000000,0.000000,0.792715 --0.610422,-0.000000,0.000000,0.792077 --0.611251,-0.000000,0.000000,0.791437 --0.612079,-0.000000,0.000000,0.790796 --0.612907,-0.000000,0.000000,0.790155 --0.613734,-0.000000,0.000000,0.789513 --0.614561,-0.000000,0.000000,0.788870 --0.615386,-0.000000,0.000000,0.788226 --0.616211,-0.000000,0.000000,0.787581 --0.617036,-0.000000,0.000000,0.786935 --0.617860,-0.000000,0.000000,0.786288 --0.618683,-0.000000,0.000000,0.785641 --0.619505,-0.000000,0.000000,0.784993 --0.620327,-0.000000,0.000000,0.784343 --0.621148,-0.000000,0.000000,0.783693 --0.621968,-0.000000,0.000000,0.783043 --0.622788,-0.000000,0.000000,0.782391 --0.623607,-0.000000,0.000000,0.781738 --0.624425,-0.000000,0.000000,0.781085 --0.625243,-0.000000,0.000000,0.780430 --0.626060,-0.000000,0.000000,0.779775 --0.626876,-0.000000,0.000000,0.779119 --0.627691,-0.000000,0.000000,0.778462 --0.628506,-0.000000,0.000000,0.777805 --0.629320,-0.000000,0.000000,0.777146 --0.630134,-0.000000,0.000000,0.776487 --0.630947,-0.000000,0.000000,0.775826 --0.631759,-0.000000,0.000000,0.775165 --0.632570,-0.000000,0.000000,0.774503 --0.633381,-0.000000,0.000000,0.773840 --0.634191,-0.000000,0.000000,0.773177 --0.635000,-0.000000,0.000000,0.772512 --0.635809,-0.000000,0.000000,0.771847 --0.636617,-0.000000,0.000000,0.771180 --0.637424,-0.000000,0.000000,0.770513 --0.638231,-0.000000,0.000000,0.769845 --0.639036,-0.000000,0.000000,0.769177 --0.639841,-0.000000,0.000000,0.768507 --0.640646,-0.000000,0.000000,0.767836 --0.641450,-0.000000,0.000000,0.767165 --0.642253,-0.000000,0.000000,0.766493 --0.643055,-0.000000,0.000000,0.765820 --0.643857,-0.000000,0.000000,0.765146 --0.644657,-0.000000,0.000000,0.764472 --0.645458,-0.000000,0.000000,0.763796 --0.646257,-0.000000,0.000000,0.763120 --0.647056,-0.000000,0.000000,0.762443 --0.647854,-0.000000,0.000000,0.761764 --0.648651,-0.000000,0.000000,0.761086 --0.649448,-0.000000,0.000000,0.760406 --0.650244,-0.000000,0.000000,0.759725 --0.651039,-0.000000,0.000000,0.759044 --0.651834,-0.000000,0.000000,0.758362 --0.652628,-0.000000,0.000000,0.757679 --0.653421,-0.000000,0.000000,0.756995 --0.654213,-0.000000,0.000000,0.756310 --0.655005,-0.000000,0.000000,0.755625 --0.655796,-0.000000,0.000000,0.754939 --0.656586,-0.000000,0.000000,0.754251 --0.657375,-0.000000,0.000000,0.753563 --0.658164,-0.000000,0.000000,0.752875 --0.658952,-0.000000,0.000000,0.752185 --0.659739,-0.000000,0.000000,0.751494 --0.660526,-0.000000,0.000000,0.750803 --0.661312,-0.000000,0.000000,0.750111 --0.662097,-0.000000,0.000000,0.749418 --0.662881,-0.000000,0.000000,0.748724 --0.663665,-0.000000,0.000000,0.748030 --0.664448,-0.000000,0.000000,0.747334 --0.665230,-0.000000,0.000000,0.746638 --0.666012,-0.000000,0.000000,0.745941 --0.666793,-0.000000,0.000000,0.745243 --0.667573,-0.000000,0.000000,0.744545 --0.668352,-0.000000,0.000000,0.743845 --0.669131,-0.000000,0.000000,0.743145 --0.669908,-0.000000,0.000000,0.742444 --0.670686,-0.000000,0.000000,0.741742 --0.671462,-0.000000,0.000000,0.741039 --0.672238,-0.000000,0.000000,0.740335 --0.673013,-0.000000,0.000000,0.739631 --0.673787,-0.000000,0.000000,0.738926 --0.674560,-0.000000,0.000000,0.738220 --0.675333,-0.000000,0.000000,0.737513 --0.676105,-0.000000,0.000000,0.736806 --0.676876,-0.000000,0.000000,0.736097 --0.677646,-0.000000,0.000000,0.735388 --0.678416,-0.000000,0.000000,0.734678 --0.679185,-0.000000,0.000000,0.733967 --0.679953,-0.000000,0.000000,0.733255 --0.680721,-0.000000,0.000000,0.732543 --0.681488,-0.000000,0.000000,0.731830 --0.682254,-0.000000,0.000000,0.731116 --0.683019,-0.000000,0.000000,0.730401 --0.683783,-0.000000,0.000000,0.729685 --0.684547,-0.000000,0.000000,0.728969 --0.685310,-0.000000,0.000000,0.728251 --0.686072,-0.000000,0.000000,0.727533 --0.686834,-0.000000,0.000000,0.726814 --0.687595,-0.000000,0.000000,0.726095 --0.688355,-0.000000,0.000000,0.725374 --0.689114,-0.000000,0.000000,0.724653 --0.689872,-0.000000,0.000000,0.723931 --0.690630,-0.000000,0.000000,0.723208 --0.691387,-0.000000,0.000000,0.722485 --0.692143,-0.000000,0.000000,0.721760 --0.692899,-0.000000,0.000000,0.721035 --0.693653,-0.000000,0.000000,0.720309 --0.694407,-0.000000,0.000000,0.719582 --0.695160,-0.000000,0.000000,0.718855 --0.695913,-0.000000,0.000000,0.718126 --0.696664,-0.000000,0.000000,0.717397 --0.697415,-0.000000,0.000000,0.716667 --0.698165,-0.000000,0.000000,0.715936 --0.698915,-0.000000,0.000000,0.715205 --0.699663,-0.000000,0.000000,0.714473 --0.700411,-0.000000,0.000000,0.713740 --0.701158,-0.000000,0.000000,0.713006 --0.701904,-0.000000,0.000000,0.712271 --0.702650,-0.000000,0.000000,0.711536 --0.703395,-0.000000,0.000000,0.710799 --0.704139,-0.000000,0.000000,0.710062 --0.704882,-0.000000,0.000000,0.709325 --0.705624,-0.000000,0.000000,0.708586 --0.706366,-0.000000,0.000000,0.707847 --0.707107,-0.000000,0.000000,0.707107 --0.707847,-0.000000,0.000000,0.706366 --0.708586,-0.000000,0.000000,0.705624 --0.709325,-0.000000,0.000000,0.704882 --0.710062,-0.000000,0.000000,0.704139 --0.710799,-0.000000,0.000000,0.703395 --0.711536,-0.000000,0.000000,0.702650 --0.712271,-0.000000,0.000000,0.701904 --0.713006,-0.000000,0.000000,0.701158 --0.713740,-0.000000,0.000000,0.700411 --0.714473,-0.000000,0.000000,0.699663 --0.715205,-0.000000,0.000000,0.698915 --0.715936,-0.000000,0.000000,0.698165 --0.716667,-0.000000,0.000000,0.697415 --0.717397,-0.000000,0.000000,0.696664 --0.718126,-0.000000,0.000000,0.695913 --0.718855,-0.000000,0.000000,0.695160 --0.719582,-0.000000,0.000000,0.694407 --0.720309,-0.000000,0.000000,0.693653 --0.721035,-0.000000,0.000000,0.692899 --0.721760,-0.000000,0.000000,0.692143 --0.722485,-0.000000,0.000000,0.691387 --0.723208,-0.000000,0.000000,0.690630 --0.723931,-0.000000,0.000000,0.689872 --0.724653,-0.000000,0.000000,0.689114 --0.725374,-0.000000,0.000000,0.688355 --0.726095,-0.000000,0.000000,0.687595 --0.726814,-0.000000,0.000000,0.686834 --0.727533,-0.000000,0.000000,0.686072 --0.728251,-0.000000,0.000000,0.685310 --0.728969,-0.000000,0.000000,0.684547 --0.729685,-0.000000,0.000000,0.683783 --0.730401,-0.000000,0.000000,0.683019 --0.731116,-0.000000,0.000000,0.682254 --0.731830,-0.000000,0.000000,0.681488 --0.732543,-0.000000,0.000000,0.680721 --0.733255,-0.000000,0.000000,0.679953 --0.733967,-0.000000,0.000000,0.679185 --0.734678,-0.000000,0.000000,0.678416 --0.735388,-0.000000,0.000000,0.677646 --0.736097,-0.000000,0.000000,0.676876 --0.736806,-0.000000,0.000000,0.676105 --0.737513,-0.000000,0.000000,0.675333 --0.738220,-0.000000,0.000000,0.674560 --0.738926,-0.000000,0.000000,0.673787 --0.739631,-0.000000,0.000000,0.673013 --0.740335,-0.000000,0.000000,0.672238 --0.741039,-0.000000,0.000000,0.671462 --0.741742,-0.000000,0.000000,0.670686 --0.742444,-0.000000,0.000000,0.669908 --0.743145,-0.000000,0.000000,0.669131 --0.743845,-0.000000,0.000000,0.668352 --0.744545,-0.000000,0.000000,0.667573 --0.745243,-0.000000,0.000000,0.666793 --0.745941,-0.000000,0.000000,0.666012 --0.746638,-0.000000,0.000000,0.665230 --0.747334,-0.000000,0.000000,0.664448 --0.748030,-0.000000,0.000000,0.663665 --0.748724,-0.000000,0.000000,0.662881 --0.749418,-0.000000,0.000000,0.662097 --0.750111,-0.000000,0.000000,0.661312 --0.750803,-0.000000,0.000000,0.660526 --0.751494,-0.000000,0.000000,0.659739 --0.752185,-0.000000,0.000000,0.658952 --0.752875,-0.000000,0.000000,0.658164 --0.753563,-0.000000,0.000000,0.657375 --0.754251,-0.000000,0.000000,0.656586 --0.754939,-0.000000,0.000000,0.655796 --0.755625,-0.000000,0.000000,0.655005 --0.756310,-0.000000,0.000000,0.654213 --0.756995,-0.000000,0.000000,0.653421 --0.757679,-0.000000,0.000000,0.652628 --0.758362,-0.000000,0.000000,0.651834 --0.759044,-0.000000,0.000000,0.651039 --0.759725,-0.000000,0.000000,0.650244 --0.760406,-0.000000,0.000000,0.649448 --0.761086,-0.000000,0.000000,0.648651 --0.761764,-0.000000,0.000000,0.647854 --0.762443,-0.000000,0.000000,0.647056 --0.763120,-0.000000,0.000000,0.646257 --0.763796,-0.000000,0.000000,0.645458 --0.764472,-0.000000,0.000000,0.644657 --0.765146,-0.000000,0.000000,0.643857 --0.765820,-0.000000,0.000000,0.643055 --0.766493,-0.000000,0.000000,0.642253 --0.767165,-0.000000,0.000000,0.641450 --0.767836,-0.000000,0.000000,0.640646 --0.768507,-0.000000,0.000000,0.639841 --0.769177,-0.000000,0.000000,0.639036 --0.769845,-0.000000,0.000000,0.638231 --0.770513,-0.000000,0.000000,0.637424 --0.771180,-0.000000,0.000000,0.636617 --0.771847,-0.000000,0.000000,0.635809 --0.772512,-0.000000,0.000000,0.635000 --0.773177,-0.000000,0.000000,0.634191 --0.773840,-0.000000,0.000000,0.633381 --0.774503,-0.000000,0.000000,0.632570 --0.775165,-0.000000,0.000000,0.631759 --0.775826,-0.000000,0.000000,0.630947 --0.776487,-0.000000,0.000000,0.630134 --0.777146,-0.000000,0.000000,0.629320 --0.777805,-0.000000,0.000000,0.628506 --0.778462,-0.000000,0.000000,0.627691 --0.779119,-0.000000,0.000000,0.626876 --0.779775,-0.000000,0.000000,0.626060 --0.780430,-0.000000,0.000000,0.625243 --0.781085,-0.000000,0.000000,0.624425 --0.781738,-0.000000,0.000000,0.623607 --0.782391,-0.000000,0.000000,0.622788 --0.783043,-0.000000,0.000000,0.621968 --0.783693,-0.000000,0.000000,0.621148 --0.784343,-0.000000,0.000000,0.620327 --0.784993,-0.000000,0.000000,0.619505 --0.785641,-0.000000,0.000000,0.618683 --0.786288,-0.000000,0.000000,0.617860 --0.786935,-0.000000,0.000000,0.617036 --0.787581,-0.000000,0.000000,0.616211 --0.788226,-0.000000,0.000000,0.615386 --0.788870,-0.000000,0.000000,0.614561 --0.789513,-0.000000,0.000000,0.613734 --0.790155,-0.000000,0.000000,0.612907 --0.790796,-0.000000,0.000000,0.612079 --0.791437,-0.000000,0.000000,0.611251 --0.792077,-0.000000,0.000000,0.610422 --0.792715,-0.000000,0.000000,0.609592 --0.793353,-0.000000,0.000000,0.608761 --0.793990,-0.000000,0.000000,0.607930 --0.794627,-0.000000,0.000000,0.607098 --0.795262,-0.000000,0.000000,0.606266 --0.795896,-0.000000,0.000000,0.605433 --0.796530,-0.000000,0.000000,0.604599 --0.797163,-0.000000,0.000000,0.603765 --0.797794,-0.000000,0.000000,0.602930 --0.798425,-0.000000,0.000000,0.602094 --0.799055,-0.000000,0.000000,0.601257 --0.799685,-0.000000,0.000000,0.600420 --0.800313,-0.000000,0.000000,0.599582 --0.800940,-0.000000,0.000000,0.598744 --0.801567,-0.000000,0.000000,0.597905 --0.802193,-0.000000,0.000000,0.597065 --0.802817,-0.000000,0.000000,0.596225 --0.803441,-0.000000,0.000000,0.595384 --0.804064,-0.000000,0.000000,0.594542 --0.804687,-0.000000,0.000000,0.593700 --0.805308,-0.000000,0.000000,0.592857 --0.805928,-0.000000,0.000000,0.592013 --0.806548,-0.000000,0.000000,0.591169 --0.807166,-0.000000,0.000000,0.590324 --0.807784,-0.000000,0.000000,0.589478 --0.808401,-0.000000,0.000000,0.588632 --0.809017,-0.000000,0.000000,0.587785 --0.809632,-0.000000,0.000000,0.586938 --0.810246,-0.000000,0.000000,0.586090 --0.810860,-0.000000,0.000000,0.585241 --0.811472,-0.000000,0.000000,0.584391 --0.812084,-0.000000,0.000000,0.583541 --0.812694,-0.000000,0.000000,0.582690 --0.813304,-0.000000,0.000000,0.581839 --0.813913,-0.000000,0.000000,0.580987 --0.814521,-0.000000,0.000000,0.580134 --0.815128,-0.000000,0.000000,0.579281 --0.815734,-0.000000,0.000000,0.578427 --0.816339,-0.000000,0.000000,0.577573 --0.816944,-0.000000,0.000000,0.576718 --0.817547,-0.000000,0.000000,0.575862 --0.818150,-0.000000,0.000000,0.575005 --0.818751,-0.000000,0.000000,0.574148 --0.819352,-0.000000,0.000000,0.573290 --0.819952,-0.000000,0.000000,0.572432 --0.820551,-0.000000,0.000000,0.571573 --0.821149,-0.000000,0.000000,0.570714 --0.821746,-0.000000,0.000000,0.569853 --0.822343,-0.000000,0.000000,0.568993 --0.822938,-0.000000,0.000000,0.568131 --0.823533,-0.000000,0.000000,0.567269 --0.824126,-0.000000,0.000000,0.566406 --0.824719,-0.000000,0.000000,0.565543 --0.825311,-0.000000,0.000000,0.564679 --0.825902,-0.000000,0.000000,0.563814 --0.826492,-0.000000,0.000000,0.562949 --0.827081,-0.000000,0.000000,0.562083 --0.827669,-0.000000,0.000000,0.561217 --0.828256,-0.000000,0.000000,0.560350 --0.828842,-0.000000,0.000000,0.559482 --0.829428,-0.000000,0.000000,0.558614 --0.830012,-0.000000,0.000000,0.557745 --0.830596,-0.000000,0.000000,0.556876 --0.831179,-0.000000,0.000000,0.556006 --0.831760,-0.000000,0.000000,0.555135 --0.832341,-0.000000,0.000000,0.554263 --0.832921,-0.000000,0.000000,0.553392 --0.833500,-0.000000,0.000000,0.552519 --0.834078,-0.000000,0.000000,0.551646 --0.834656,-0.000000,0.000000,0.550772 --0.835232,-0.000000,0.000000,0.549898 --0.835807,-0.000000,0.000000,0.549023 --0.836382,-0.000000,0.000000,0.548147 --0.836955,-0.000000,0.000000,0.547271 --0.837528,-0.000000,0.000000,0.546394 --0.838100,-0.000000,0.000000,0.545517 --0.838671,-0.000000,0.000000,0.544639 --0.839240,-0.000000,0.000000,0.543760 --0.839809,-0.000000,0.000000,0.542881 --0.840377,-0.000000,0.000000,0.542002 --0.840945,-0.000000,0.000000,0.541121 --0.841511,-0.000000,0.000000,0.540240 --0.842076,-0.000000,0.000000,0.539359 --0.842640,-0.000000,0.000000,0.538477 --0.843204,-0.000000,0.000000,0.537594 --0.843766,-0.000000,0.000000,0.536711 --0.844328,-0.000000,0.000000,0.535827 --0.844889,-0.000000,0.000000,0.534942 --0.845448,-0.000000,0.000000,0.534057 --0.846007,-0.000000,0.000000,0.533172 --0.846565,-0.000000,0.000000,0.532285 --0.847122,-0.000000,0.000000,0.531399 --0.847678,-0.000000,0.000000,0.530511 --0.848233,-0.000000,0.000000,0.529623 --0.848787,-0.000000,0.000000,0.528735 --0.849340,-0.000000,0.000000,0.527846 --0.849893,-0.000000,0.000000,0.526956 --0.850444,-0.000000,0.000000,0.526066 --0.850994,-0.000000,0.000000,0.525175 --0.851544,-0.000000,0.000000,0.524283 --0.852093,-0.000000,0.000000,0.523391 --0.852640,-0.000000,0.000000,0.522499 --0.853187,-0.000000,0.000000,0.521605 --0.853733,-0.000000,0.000000,0.520712 --0.854277,-0.000000,0.000000,0.519817 --0.854821,-0.000000,0.000000,0.518922 --0.855364,-0.000000,0.000000,0.518027 --0.855906,-0.000000,0.000000,0.517131 --0.856447,-0.000000,0.000000,0.516234 --0.856987,-0.000000,0.000000,0.515337 --0.857527,-0.000000,0.000000,0.514440 --0.858065,-0.000000,0.000000,0.513541 --0.858602,-0.000000,0.000000,0.512642 --0.859139,-0.000000,0.000000,0.511743 --0.859674,-0.000000,0.000000,0.510843 --0.860208,-0.000000,0.000000,0.509943 --0.860742,-0.000000,0.000000,0.509041 --0.861275,-0.000000,0.000000,0.508140 --0.861806,-0.000000,0.000000,0.507238 --0.862337,-0.000000,0.000000,0.506335 --0.862867,-0.000000,0.000000,0.505431 --0.863396,-0.000000,0.000000,0.504528 --0.863923,-0.000000,0.000000,0.503623 --0.864450,-0.000000,0.000000,0.502718 --0.864976,-0.000000,0.000000,0.501813 --0.865501,-0.000000,0.000000,0.500907 --0.866025,-0.000000,0.000000,0.500000 --0.866549,-0.000000,0.000000,0.499093 --0.867071,-0.000000,0.000000,0.498185 --0.867592,-0.000000,0.000000,0.497277 --0.868112,-0.000000,0.000000,0.496368 --0.868632,-0.000000,0.000000,0.495459 --0.869150,-0.000000,0.000000,0.494549 --0.869667,-0.000000,0.000000,0.493638 --0.870184,-0.000000,0.000000,0.492727 --0.870699,-0.000000,0.000000,0.491816 --0.871214,-0.000000,0.000000,0.490904 --0.871727,-0.000000,0.000000,0.489991 --0.872240,-0.000000,0.000000,0.489078 --0.872752,-0.000000,0.000000,0.488164 --0.873262,-0.000000,0.000000,0.487250 --0.873772,-0.000000,0.000000,0.486335 --0.874281,-0.000000,0.000000,0.485420 --0.874789,-0.000000,0.000000,0.484504 --0.875296,-0.000000,0.000000,0.483588 --0.875802,-0.000000,0.000000,0.482671 --0.876307,-0.000000,0.000000,0.481754 --0.876811,-0.000000,0.000000,0.480836 --0.877314,-0.000000,0.000000,0.479917 --0.877816,-0.000000,0.000000,0.478998 --0.878317,-0.000000,0.000000,0.478079 --0.878817,-0.000000,0.000000,0.477159 --0.879316,-0.000000,0.000000,0.476238 --0.879815,-0.000000,0.000000,0.475317 --0.880312,-0.000000,0.000000,0.474396 --0.880808,-0.000000,0.000000,0.473473 --0.881303,-0.000000,0.000000,0.472551 --0.881798,-0.000000,0.000000,0.471628 --0.882291,-0.000000,0.000000,0.470704 --0.882784,-0.000000,0.000000,0.469780 --0.883275,-0.000000,0.000000,0.468855 --0.883766,-0.000000,0.000000,0.467930 --0.884255,-0.000000,0.000000,0.467004 --0.884744,-0.000000,0.000000,0.466078 --0.885231,-0.000000,0.000000,0.465151 --0.885718,-0.000000,0.000000,0.464224 --0.886204,-0.000000,0.000000,0.463296 --0.886688,-0.000000,0.000000,0.462368 --0.887172,-0.000000,0.000000,0.461439 --0.887655,-0.000000,0.000000,0.460510 --0.888136,-0.000000,0.000000,0.459580 --0.888617,-0.000000,0.000000,0.458650 --0.889097,-0.000000,0.000000,0.457719 --0.889576,-0.000000,0.000000,0.456787 --0.890054,-0.000000,0.000000,0.455856 --0.890531,-0.000000,0.000000,0.454923 --0.891007,-0.000000,0.000000,0.453990 --0.891481,-0.000000,0.000000,0.453057 --0.891955,-0.000000,0.000000,0.452123 --0.892428,-0.000000,0.000000,0.451189 --0.892900,-0.000000,0.000000,0.450254 --0.893371,-0.000000,0.000000,0.449319 --0.893841,-0.000000,0.000000,0.448383 --0.894310,-0.000000,0.000000,0.447447 --0.894779,-0.000000,0.000000,0.446510 --0.895246,-0.000000,0.000000,0.445573 --0.895712,-0.000000,0.000000,0.444635 --0.896177,-0.000000,0.000000,0.443697 --0.896641,-0.000000,0.000000,0.442758 --0.897104,-0.000000,0.000000,0.441819 --0.897566,-0.000000,0.000000,0.440879 --0.898028,-0.000000,0.000000,0.439939 --0.898488,-0.000000,0.000000,0.438999 --0.898947,-0.000000,0.000000,0.438057 --0.899405,-0.000000,0.000000,0.437116 --0.899863,-0.000000,0.000000,0.436174 --0.900319,-0.000000,0.000000,0.435231 --0.900774,-0.000000,0.000000,0.434288 --0.901228,-0.000000,0.000000,0.433345 --0.901682,-0.000000,0.000000,0.432401 --0.902134,-0.000000,0.000000,0.431456 --0.902585,-0.000000,0.000000,0.430511 --0.903036,-0.000000,0.000000,0.429566 --0.903485,-0.000000,0.000000,0.428620 --0.903933,-0.000000,0.000000,0.427673 --0.904381,-0.000000,0.000000,0.426727 --0.904827,-0.000000,0.000000,0.425779 --0.905272,-0.000000,0.000000,0.424832 --0.905717,-0.000000,0.000000,0.423883 --0.906160,-0.000000,0.000000,0.422935 --0.906603,-0.000000,0.000000,0.421985 --0.907044,-0.000000,0.000000,0.421036 --0.907484,-0.000000,0.000000,0.420086 --0.907924,-0.000000,0.000000,0.419135 --0.908362,-0.000000,0.000000,0.418184 --0.908800,-0.000000,0.000000,0.417233 --0.909236,-0.000000,0.000000,0.416281 --0.909672,-0.000000,0.000000,0.415328 --0.910106,-0.000000,0.000000,0.414376 --0.910539,-0.000000,0.000000,0.413422 --0.910972,-0.000000,0.000000,0.412469 --0.911403,-0.000000,0.000000,0.411514 --0.911834,-0.000000,0.000000,0.410560 --0.912263,-0.000000,0.000000,0.409605 --0.912692,-0.000000,0.000000,0.408649 --0.913119,-0.000000,0.000000,0.407693 --0.913545,-0.000000,0.000000,0.406737 --0.913971,-0.000000,0.000000,0.405780 --0.914395,-0.000000,0.000000,0.404822 --0.914819,-0.000000,0.000000,0.403865 --0.915241,-0.000000,0.000000,0.402906 --0.915663,-0.000000,0.000000,0.401948 --0.916083,-0.000000,0.000000,0.400989 --0.916502,-0.000000,0.000000,0.400029 --0.916921,-0.000000,0.000000,0.399069 --0.917338,-0.000000,0.000000,0.398109 --0.917755,-0.000000,0.000000,0.397148 --0.918170,-0.000000,0.000000,0.396187 --0.918584,-0.000000,0.000000,0.395225 --0.918998,-0.000000,0.000000,0.394263 --0.919410,-0.000000,0.000000,0.393300 --0.919821,-0.000000,0.000000,0.392337 --0.920232,-0.000000,0.000000,0.391374 --0.920641,-0.000000,0.000000,0.390410 --0.921050,-0.000000,0.000000,0.389445 --0.921457,-0.000000,0.000000,0.388481 --0.921863,-0.000000,0.000000,0.387516 --0.922268,-0.000000,0.000000,0.386550 --0.922673,-0.000000,0.000000,0.385584 --0.923076,-0.000000,0.000000,0.384618 --0.923478,-0.000000,0.000000,0.383651 --0.923880,-0.000000,0.000000,0.382683 --0.924280,-0.000000,0.000000,0.381716 --0.924679,-0.000000,0.000000,0.380748 --0.925077,-0.000000,0.000000,0.379779 --0.925474,-0.000000,0.000000,0.378810 --0.925871,-0.000000,0.000000,0.377841 --0.926266,-0.000000,0.000000,0.376871 --0.926660,-0.000000,0.000000,0.375901 --0.927053,-0.000000,0.000000,0.374930 --0.927445,-0.000000,0.000000,0.373959 --0.927836,-0.000000,0.000000,0.372988 --0.928226,-0.000000,0.000000,0.372016 --0.928615,-0.000000,0.000000,0.371044 --0.929003,-0.000000,0.000000,0.370071 --0.929390,-0.000000,0.000000,0.369098 --0.929776,-0.000000,0.000000,0.368125 --0.930161,-0.000000,0.000000,0.367151 --0.930545,-0.000000,0.000000,0.366176 --0.930928,-0.000000,0.000000,0.365202 --0.931310,-0.000000,0.000000,0.364227 --0.931691,-0.000000,0.000000,0.363251 --0.932071,-0.000000,0.000000,0.362275 --0.932450,-0.000000,0.000000,0.361299 --0.932828,-0.000000,0.000000,0.360322 --0.933205,-0.000000,0.000000,0.359345 --0.933580,-0.000000,0.000000,0.358368 --0.933955,-0.000000,0.000000,0.357390 --0.934329,-0.000000,0.000000,0.356412 --0.934702,-0.000000,0.000000,0.355433 --0.935073,-0.000000,0.000000,0.354454 --0.935444,-0.000000,0.000000,0.353475 --0.935814,-0.000000,0.000000,0.352495 --0.936182,-0.000000,0.000000,0.351515 --0.936550,-0.000000,0.000000,0.350534 --0.936916,-0.000000,0.000000,0.349553 --0.937282,-0.000000,0.000000,0.348572 --0.937646,-0.000000,0.000000,0.347590 --0.938010,-0.000000,0.000000,0.346608 --0.938372,-0.000000,0.000000,0.345626 --0.938734,-0.000000,0.000000,0.344643 --0.939094,-0.000000,0.000000,0.343660 --0.939454,-0.000000,0.000000,0.342676 --0.939812,-0.000000,0.000000,0.341692 --0.940169,-0.000000,0.000000,0.340708 --0.940526,-0.000000,0.000000,0.339723 --0.940881,-0.000000,0.000000,0.338738 --0.941235,-0.000000,0.000000,0.337752 --0.941588,-0.000000,0.000000,0.336767 --0.941940,-0.000000,0.000000,0.335780 --0.942291,-0.000000,0.000000,0.334794 --0.942641,-0.000000,0.000000,0.333807 --0.942991,-0.000000,0.000000,0.332820 --0.943339,-0.000000,0.000000,0.331832 --0.943686,-0.000000,0.000000,0.330844 --0.944031,-0.000000,0.000000,0.329855 --0.944376,-0.000000,0.000000,0.328867 --0.944720,-0.000000,0.000000,0.327878 --0.945063,-0.000000,0.000000,0.326888 --0.945405,-0.000000,0.000000,0.325898 --0.945746,-0.000000,0.000000,0.324908 --0.946085,-0.000000,0.000000,0.323917 --0.946424,-0.000000,0.000000,0.322927 --0.946762,-0.000000,0.000000,0.321935 --0.947098,-0.000000,0.000000,0.320944 --0.947434,-0.000000,0.000000,0.319952 --0.947768,-0.000000,0.000000,0.318959 --0.948102,-0.000000,0.000000,0.317967 --0.948434,-0.000000,0.000000,0.316974 --0.948766,-0.000000,0.000000,0.315980 --0.949096,-0.000000,0.000000,0.314987 --0.949425,-0.000000,0.000000,0.313992 --0.949754,-0.000000,0.000000,0.312998 --0.950081,-0.000000,0.000000,0.312003 --0.950407,-0.000000,0.000000,0.311008 --0.950732,-0.000000,0.000000,0.310013 --0.951057,-0.000000,0.000000,0.309017 --0.951380,-0.000000,0.000000,0.308021 --0.951702,-0.000000,0.000000,0.307024 --0.952023,-0.000000,0.000000,0.306028 --0.952343,-0.000000,0.000000,0.305031 --0.952661,-0.000000,0.000000,0.304033 --0.952979,-0.000000,0.000000,0.303035 --0.953296,-0.000000,0.000000,0.302037 --0.953612,-0.000000,0.000000,0.301039 --0.953927,-0.000000,0.000000,0.300040 --0.954240,-0.000000,0.000000,0.299041 --0.954553,-0.000000,0.000000,0.298041 --0.954865,-0.000000,0.000000,0.297042 --0.955175,-0.000000,0.000000,0.296041 --0.955485,-0.000000,0.000000,0.295041 --0.955793,-0.000000,0.000000,0.294040 --0.956100,-0.000000,0.000000,0.293039 --0.956407,-0.000000,0.000000,0.292038 --0.956712,-0.000000,0.000000,0.291036 --0.957016,-0.000000,0.000000,0.290034 --0.957319,-0.000000,0.000000,0.289032 --0.957622,-0.000000,0.000000,0.288029 --0.957923,-0.000000,0.000000,0.287026 --0.958223,-0.000000,0.000000,0.286023 --0.958522,-0.000000,0.000000,0.285019 --0.958820,-0.000000,0.000000,0.284015 --0.959117,-0.000000,0.000000,0.283011 --0.959412,-0.000000,0.000000,0.282007 --0.959707,-0.000000,0.000000,0.281002 --0.960001,-0.000000,0.000000,0.279997 --0.960294,-0.000000,0.000000,0.278991 --0.960585,-0.000000,0.000000,0.277985 --0.960876,-0.000000,0.000000,0.276979 --0.961165,-0.000000,0.000000,0.275973 --0.961454,-0.000000,0.000000,0.274966 --0.961741,-0.000000,0.000000,0.273959 --0.962028,-0.000000,0.000000,0.272952 --0.962313,-0.000000,0.000000,0.271944 --0.962597,-0.000000,0.000000,0.270936 --0.962880,-0.000000,0.000000,0.269928 --0.963163,-0.000000,0.000000,0.268920 --0.963444,-0.000000,0.000000,0.267911 --0.963724,-0.000000,0.000000,0.266902 --0.964003,-0.000000,0.000000,0.265893 --0.964281,-0.000000,0.000000,0.264883 --0.964557,-0.000000,0.000000,0.263873 --0.964833,-0.000000,0.000000,0.262863 --0.965108,-0.000000,0.000000,0.261852 --0.965382,-0.000000,0.000000,0.260842 --0.965654,-0.000000,0.000000,0.259830 --0.965926,-0.000000,0.000000,0.258819 --0.966196,-0.000000,0.000000,0.257807 --0.966466,-0.000000,0.000000,0.256795 --0.966734,-0.000000,0.000000,0.255783 --0.967001,-0.000000,0.000000,0.254771 --0.967268,-0.000000,0.000000,0.253758 --0.967533,-0.000000,0.000000,0.252745 --0.967797,-0.000000,0.000000,0.251732 --0.968060,-0.000000,0.000000,0.250718 --0.968322,-0.000000,0.000000,0.249704 --0.968583,-0.000000,0.000000,0.248690 --0.968843,-0.000000,0.000000,0.247675 --0.969102,-0.000000,0.000000,0.246661 --0.969360,-0.000000,0.000000,0.245646 --0.969616,-0.000000,0.000000,0.244631 --0.969872,-0.000000,0.000000,0.243615 --0.970127,-0.000000,0.000000,0.242599 --0.970380,-0.000000,0.000000,0.241583 --0.970633,-0.000000,0.000000,0.240567 --0.970884,-0.000000,0.000000,0.239550 --0.971134,-0.000000,0.000000,0.238533 --0.971384,-0.000000,0.000000,0.237516 --0.971632,-0.000000,0.000000,0.236499 --0.971879,-0.000000,0.000000,0.235481 --0.972125,-0.000000,0.000000,0.234463 --0.972370,-0.000000,0.000000,0.233445 --0.972614,-0.000000,0.000000,0.232427 --0.972857,-0.000000,0.000000,0.231408 --0.973099,-0.000000,0.000000,0.230389 --0.973339,-0.000000,0.000000,0.229370 --0.973579,-0.000000,0.000000,0.228351 --0.973817,-0.000000,0.000000,0.227331 --0.974055,-0.000000,0.000000,0.226311 --0.974291,-0.000000,0.000000,0.225291 --0.974527,-0.000000,0.000000,0.224271 --0.974761,-0.000000,0.000000,0.223250 --0.974994,-0.000000,0.000000,0.222229 --0.975227,-0.000000,0.000000,0.221208 --0.975458,-0.000000,0.000000,0.220187 --0.975688,-0.000000,0.000000,0.219165 --0.975917,-0.000000,0.000000,0.218143 --0.976145,-0.000000,0.000000,0.217121 --0.976371,-0.000000,0.000000,0.216099 --0.976597,-0.000000,0.000000,0.215076 --0.976822,-0.000000,0.000000,0.214053 --0.977046,-0.000000,0.000000,0.213030 --0.977268,-0.000000,0.000000,0.212007 --0.977490,-0.000000,0.000000,0.210984 --0.977710,-0.000000,0.000000,0.209960 --0.977929,-0.000000,0.000000,0.208936 --0.978148,-0.000000,0.000000,0.207912 --0.978365,-0.000000,0.000000,0.206887 --0.978581,-0.000000,0.000000,0.205863 --0.978796,-0.000000,0.000000,0.204838 --0.979010,-0.000000,0.000000,0.203813 --0.979223,-0.000000,0.000000,0.202787 --0.979435,-0.000000,0.000000,0.201762 --0.979645,-0.000000,0.000000,0.200736 --0.979855,-0.000000,0.000000,0.199710 --0.980064,-0.000000,0.000000,0.198684 --0.980271,-0.000000,0.000000,0.197657 --0.980478,-0.000000,0.000000,0.196631 --0.980683,-0.000000,0.000000,0.195604 --0.980887,-0.000000,0.000000,0.194577 --0.981091,-0.000000,0.000000,0.193549 --0.981293,-0.000000,0.000000,0.192522 --0.981494,-0.000000,0.000000,0.191494 --0.981694,-0.000000,0.000000,0.190466 --0.981893,-0.000000,0.000000,0.189438 --0.982090,-0.000000,0.000000,0.188410 --0.982287,-0.000000,0.000000,0.187381 --0.982483,-0.000000,0.000000,0.186353 --0.982678,-0.000000,0.000000,0.185324 --0.982871,-0.000000,0.000000,0.184294 --0.983064,-0.000000,0.000000,0.183265 --0.983255,-0.000000,0.000000,0.182236 --0.983445,-0.000000,0.000000,0.181206 --0.983634,-0.000000,0.000000,0.180176 --0.983823,-0.000000,0.000000,0.179146 --0.984010,-0.000000,0.000000,0.178115 --0.984196,-0.000000,0.000000,0.177085 --0.984381,-0.000000,0.000000,0.176054 --0.984564,-0.000000,0.000000,0.175023 --0.984747,-0.000000,0.000000,0.173992 --0.984929,-0.000000,0.000000,0.172961 --0.985109,-0.000000,0.000000,0.171929 --0.985289,-0.000000,0.000000,0.170897 --0.985467,-0.000000,0.000000,0.169866 --0.985645,-0.000000,0.000000,0.168833 --0.985821,-0.000000,0.000000,0.167801 --0.985996,-0.000000,0.000000,0.166769 --0.986170,-0.000000,0.000000,0.165736 --0.986343,-0.000000,0.000000,0.164703 --0.986515,-0.000000,0.000000,0.163670 --0.986686,-0.000000,0.000000,0.162637 --0.986856,-0.000000,0.000000,0.161604 --0.987024,-0.000000,0.000000,0.160570 --0.987192,-0.000000,0.000000,0.159537 --0.987359,-0.000000,0.000000,0.158503 --0.987524,-0.000000,0.000000,0.157469 --0.987688,-0.000000,0.000000,0.156434 --0.987852,-0.000000,0.000000,0.155400 --0.988014,-0.000000,0.000000,0.154366 --0.988175,-0.000000,0.000000,0.153331 --0.988335,-0.000000,0.000000,0.152296 --0.988494,-0.000000,0.000000,0.151261 --0.988652,-0.000000,0.000000,0.150226 --0.988809,-0.000000,0.000000,0.149190 --0.988964,-0.000000,0.000000,0.148155 --0.989119,-0.000000,0.000000,0.147119 --0.989272,-0.000000,0.000000,0.146083 --0.989425,-0.000000,0.000000,0.145047 --0.989576,-0.000000,0.000000,0.144011 --0.989726,-0.000000,0.000000,0.142974 --0.989876,-0.000000,0.000000,0.141938 --0.990024,-0.000000,0.000000,0.140901 --0.990171,-0.000000,0.000000,0.139864 --0.990317,-0.000000,0.000000,0.138827 --0.990461,-0.000000,0.000000,0.137790 --0.990605,-0.000000,0.000000,0.136753 --0.990748,-0.000000,0.000000,0.135716 --0.990889,-0.000000,0.000000,0.134678 --0.991030,-0.000000,0.000000,0.133640 --0.991169,-0.000000,0.000000,0.132602 --0.991308,-0.000000,0.000000,0.131564 --0.991445,-0.000000,0.000000,0.130526 --0.991581,-0.000000,0.000000,0.129488 --0.991716,-0.000000,0.000000,0.128449 --0.991850,-0.000000,0.000000,0.127411 --0.991983,-0.000000,0.000000,0.126372 --0.992115,-0.000000,0.000000,0.125333 --0.992245,-0.000000,0.000000,0.124294 --0.992375,-0.000000,0.000000,0.123255 --0.992504,-0.000000,0.000000,0.122216 --0.992631,-0.000000,0.000000,0.121176 --0.992757,-0.000000,0.000000,0.120137 --0.992883,-0.000000,0.000000,0.119097 --0.993007,-0.000000,0.000000,0.118057 --0.993130,-0.000000,0.000000,0.117017 --0.993252,-0.000000,0.000000,0.115977 --0.993373,-0.000000,0.000000,0.114937 --0.993493,-0.000000,0.000000,0.113897 --0.993611,-0.000000,0.000000,0.112856 --0.993729,-0.000000,0.000000,0.111816 --0.993845,-0.000000,0.000000,0.110775 --0.993961,-0.000000,0.000000,0.109734 --0.994075,-0.000000,0.000000,0.108693 --0.994189,-0.000000,0.000000,0.107652 --0.994301,-0.000000,0.000000,0.106611 --0.994412,-0.000000,0.000000,0.105570 --0.994522,-0.000000,0.000000,0.104528 --0.994631,-0.000000,0.000000,0.103487 --0.994739,-0.000000,0.000000,0.102445 --0.994845,-0.000000,0.000000,0.101404 --0.994951,-0.000000,0.000000,0.100362 --0.995056,-0.000000,0.000000,0.099320 --0.995159,-0.000000,0.000000,0.098278 --0.995261,-0.000000,0.000000,0.097235 --0.995363,-0.000000,0.000000,0.096193 --0.995463,-0.000000,0.000000,0.095151 --0.995562,-0.000000,0.000000,0.094108 --0.995660,-0.000000,0.000000,0.093066 --0.995757,-0.000000,0.000000,0.092023 --0.995853,-0.000000,0.000000,0.090980 --0.995947,-0.000000,0.000000,0.089937 --0.996041,-0.000000,0.000000,0.088894 --0.996134,-0.000000,0.000000,0.087851 --0.996225,-0.000000,0.000000,0.086808 --0.996315,-0.000000,0.000000,0.085765 --0.996405,-0.000000,0.000000,0.084721 --0.996493,-0.000000,0.000000,0.083678 --0.996580,-0.000000,0.000000,0.082634 --0.996666,-0.000000,0.000000,0.081591 --0.996751,-0.000000,0.000000,0.080547 --0.996835,-0.000000,0.000000,0.079503 --0.996917,-0.000000,0.000000,0.078459 --0.996999,-0.000000,0.000000,0.077415 --0.997079,-0.000000,0.000000,0.076371 --0.997159,-0.000000,0.000000,0.075327 --0.997237,-0.000000,0.000000,0.074283 --0.997314,-0.000000,0.000000,0.073238 --0.997391,-0.000000,0.000000,0.072194 --0.997466,-0.000000,0.000000,0.071149 --0.997540,-0.000000,0.000000,0.070105 --0.997613,-0.000000,0.000000,0.069060 --0.997684,-0.000000,0.000000,0.068015 --0.997755,-0.000000,0.000000,0.066970 --0.997825,-0.000000,0.000000,0.065926 --0.997893,-0.000000,0.000000,0.064881 --0.997960,-0.000000,0.000000,0.063836 --0.998027,-0.000000,0.000000,0.062791 --0.998092,-0.000000,0.000000,0.061745 --0.998156,-0.000000,0.000000,0.060700 --0.998219,-0.000000,0.000000,0.059655 --0.998281,-0.000000,0.000000,0.058609 --0.998342,-0.000000,0.000000,0.057564 --0.998402,-0.000000,0.000000,0.056519 --0.998460,-0.000000,0.000000,0.055473 --0.998518,-0.000000,0.000000,0.054427 --0.998574,-0.000000,0.000000,0.053382 --0.998630,-0.000000,0.000000,0.052336 --0.998684,-0.000000,0.000000,0.051290 --0.998737,-0.000000,0.000000,0.050244 --0.998789,-0.000000,0.000000,0.049198 --0.998840,-0.000000,0.000000,0.048152 --0.998890,-0.000000,0.000000,0.047106 --0.998939,-0.000000,0.000000,0.046060 --0.998986,-0.000000,0.000000,0.045014 --0.999033,-0.000000,0.000000,0.043968 --0.999078,-0.000000,0.000000,0.042922 --0.999123,-0.000000,0.000000,0.041876 --0.999166,-0.000000,0.000000,0.040829 --0.999208,-0.000000,0.000000,0.039783 --0.999249,-0.000000,0.000000,0.038737 --0.999289,-0.000000,0.000000,0.037690 --0.999328,-0.000000,0.000000,0.036644 --0.999366,-0.000000,0.000000,0.035597 --0.999403,-0.000000,0.000000,0.034551 --0.999439,-0.000000,0.000000,0.033504 --0.999473,-0.000000,0.000000,0.032457 --0.999507,-0.000000,0.000000,0.031411 --0.999539,-0.000000,0.000000,0.030364 --0.999570,-0.000000,0.000000,0.029317 --0.999600,-0.000000,0.000000,0.028271 --0.999629,-0.000000,0.000000,0.027224 --0.999657,-0.000000,0.000000,0.026177 --0.999684,-0.000000,0.000000,0.025130 --0.999710,-0.000000,0.000000,0.024083 --0.999735,-0.000000,0.000000,0.023036 --0.999758,-0.000000,0.000000,0.021989 --0.999781,-0.000000,0.000000,0.020942 --0.999802,-0.000000,0.000000,0.019895 --0.999822,-0.000000,0.000000,0.018848 --0.999842,-0.000000,0.000000,0.017801 --0.999860,-0.000000,0.000000,0.016754 --0.999877,-0.000000,0.000000,0.015707 --0.999893,-0.000000,0.000000,0.014660 --0.999907,-0.000000,0.000000,0.013613 --0.999921,-0.000000,0.000000,0.012566 --0.999934,-0.000000,0.000000,0.011519 --0.999945,-0.000000,0.000000,0.010472 --0.999956,-0.000000,0.000000,0.009425 --0.999965,-0.000000,0.000000,0.008377 --0.999973,-0.000000,0.000000,0.007330 --0.999980,-0.000000,0.000000,0.006283 --0.999986,-0.000000,0.000000,0.005236 --0.999991,-0.000000,0.000000,0.004189 --0.999995,-0.000000,0.000000,0.003142 --0.999998,-0.000000,0.000000,0.002094 --0.999999,-0.000000,0.000000,0.001047 diff --git a/scripts/trajectories/half-circle-front-over-top-15s.csv b/scripts/trajectories/half-circle-front-over-top-15s.csv deleted file mode 100644 index 1d763950f5c497d895fd974df63f789dae5354e5..0000000000000000000000000000000000000000 --- a/scripts/trajectories/half-circle-front-over-top-15s.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 1.000000, 0.000524, 0.000000, 0.000000 - 0.999999, 0.001048, 0.000000, 0.000000 - 0.999999, 0.001571, 0.000000, 0.000000 - 0.999998, 0.002095, 0.000000, 0.000000 - 0.999997, 0.002619, 0.000000, 0.000000 - 0.999995, 0.003143, 0.000000, 0.000000 - 0.999993, 0.003666, 0.000000, 0.000000 - 0.999991, 0.004190, 0.000000, 0.000000 - 0.999989, 0.004714, 0.000000, 0.000000 - 0.999986, 0.005238, 0.000000, 0.000000 - 0.999983, 0.005761, 0.000000, 0.000000 - 0.999980, 0.006285, 0.000000, 0.000000 - 0.999977, 0.006809, 0.000000, 0.000000 - 0.999973, 0.007333, 0.000000, 0.000000 - 0.999969, 0.007857, 0.000000, 0.000000 - 0.999965, 0.008380, 0.000000, 0.000000 - 0.999960, 0.008904, 0.000000, 0.000000 - 0.999956, 0.009428, 0.000000, 0.000000 - 0.999950, 0.009952, 0.000000, 0.000000 - 0.999945, 0.010475, 0.000000, 0.000000 - 0.999940, 0.010999, 0.000000, 0.000000 - 0.999934, 0.011523, 0.000000, 0.000000 - 0.999927, 0.012046, 0.000000, 0.000000 - 0.999921, 0.012570, 0.000000, 0.000000 - 0.999914, 0.013094, 0.000000, 0.000000 - 0.999907, 0.013618, 0.000000, 0.000000 - 0.999900, 0.014141, 0.000000, 0.000000 - 0.999892, 0.014665, 0.000000, 0.000000 - 0.999885, 0.015189, 0.000000, 0.000000 - 0.999877, 0.015713, 0.000000, 0.000000 - 0.999868, 0.016236, 0.000000, 0.000000 - 0.999860, 0.016760, 0.000000, 0.000000 - 0.999851, 0.017284, 0.000000, 0.000000 - 0.999841, 0.017807, 0.000000, 0.000000 - 0.999832, 0.018331, 0.000000, 0.000000 - 0.999822, 0.018855, 0.000000, 0.000000 - 0.999812, 0.019378, 0.000000, 0.000000 - 0.999802, 0.019902, 0.000000, 0.000000 - 0.999791, 0.020426, 0.000000, 0.000000 - 0.999781, 0.020949, 0.000000, 0.000000 - 0.999769, 0.021473, 0.000000, 0.000000 - 0.999758, 0.021997, 0.000000, 0.000000 - 0.999746, 0.022520, 0.000000, 0.000000 - 0.999734, 0.023044, 0.000000, 0.000000 - 0.999722, 0.023568, 0.000000, 0.000000 - 0.999710, 0.024091, 0.000000, 0.000000 - 0.999697, 0.024615, 0.000000, 0.000000 - 0.999684, 0.025138, 0.000000, 0.000000 - 0.999671, 0.025662, 0.000000, 0.000000 - 0.999657, 0.026186, 0.000000, 0.000000 - 0.999643, 0.026709, 0.000000, 0.000000 - 0.999629, 0.027233, 0.000000, 0.000000 - 0.999615, 0.027756, 0.000000, 0.000000 - 0.999600, 0.028280, 0.000000, 0.000000 - 0.999585, 0.028804, 0.000000, 0.000000 - 0.999570, 0.029327, 0.000000, 0.000000 - 0.999554, 0.029851, 0.000000, 0.000000 - 0.999539, 0.030374, 0.000000, 0.000000 - 0.999523, 0.030898, 0.000000, 0.000000 - 0.999506, 0.031421, 0.000000, 0.000000 - 0.999490, 0.031945, 0.000000, 0.000000 - 0.999473, 0.032468, 0.000000, 0.000000 - 0.999456, 0.032992, 0.000000, 0.000000 - 0.999438, 0.033515, 0.000000, 0.000000 - 0.999421, 0.034039, 0.000000, 0.000000 - 0.999403, 0.034562, 0.000000, 0.000000 - 0.999384, 0.035086, 0.000000, 0.000000 - 0.999366, 0.035609, 0.000000, 0.000000 - 0.999347, 0.036132, 0.000000, 0.000000 - 0.999328, 0.036656, 0.000000, 0.000000 - 0.999309, 0.037179, 0.000000, 0.000000 - 0.999289, 0.037703, 0.000000, 0.000000 - 0.999269, 0.038226, 0.000000, 0.000000 - 0.999249, 0.038750, 0.000000, 0.000000 - 0.999229, 0.039273, 0.000000, 0.000000 - 0.999208, 0.039796, 0.000000, 0.000000 - 0.999187, 0.040320, 0.000000, 0.000000 - 0.999166, 0.040843, 0.000000, 0.000000 - 0.999144, 0.041366, 0.000000, 0.000000 - 0.999122, 0.041890, 0.000000, 0.000000 - 0.999100, 0.042413, 0.000000, 0.000000 - 0.999078, 0.042936, 0.000000, 0.000000 - 0.999055, 0.043459, 0.000000, 0.000000 - 0.999032, 0.043983, 0.000000, 0.000000 - 0.999009, 0.044506, 0.000000, 0.000000 - 0.998986, 0.045029, 0.000000, 0.000000 - 0.998962, 0.045553, 0.000000, 0.000000 - 0.998938, 0.046076, 0.000000, 0.000000 - 0.998914, 0.046599, 0.000000, 0.000000 - 0.998889, 0.047122, 0.000000, 0.000000 - 0.998864, 0.047645, 0.000000, 0.000000 - 0.998839, 0.048169, 0.000000, 0.000000 - 0.998814, 0.048692, 0.000000, 0.000000 - 0.998788, 0.049215, 0.000000, 0.000000 - 0.998762, 0.049738, 0.000000, 0.000000 - 0.998736, 0.050261, 0.000000, 0.000000 - 0.998710, 0.050784, 0.000000, 0.000000 - 0.998683, 0.051307, 0.000000, 0.000000 - 0.998656, 0.051830, 0.000000, 0.000000 - 0.998629, 0.052353, 0.000000, 0.000000 - 0.998601, 0.052876, 0.000000, 0.000000 - 0.998573, 0.053399, 0.000000, 0.000000 - 0.998545, 0.053922, 0.000000, 0.000000 - 0.998517, 0.054445, 0.000000, 0.000000 - 0.998488, 0.054968, 0.000000, 0.000000 - 0.998459, 0.055491, 0.000000, 0.000000 - 0.998430, 0.056014, 0.000000, 0.000000 - 0.998400, 0.056537, 0.000000, 0.000000 - 0.998371, 0.057060, 0.000000, 0.000000 - 0.998341, 0.057583, 0.000000, 0.000000 - 0.998310, 0.058106, 0.000000, 0.000000 - 0.998280, 0.058629, 0.000000, 0.000000 - 0.998249, 0.059152, 0.000000, 0.000000 - 0.998218, 0.059675, 0.000000, 0.000000 - 0.998186, 0.060198, 0.000000, 0.000000 - 0.998155, 0.060720, 0.000000, 0.000000 - 0.998123, 0.061243, 0.000000, 0.000000 - 0.998091, 0.061766, 0.000000, 0.000000 - 0.998058, 0.062289, 0.000000, 0.000000 - 0.998025, 0.062811, 0.000000, 0.000000 - 0.997992, 0.063334, 0.000000, 0.000000 - 0.997959, 0.063857, 0.000000, 0.000000 - 0.997925, 0.064380, 0.000000, 0.000000 - 0.997892, 0.064902, 0.000000, 0.000000 - 0.997857, 0.065425, 0.000000, 0.000000 - 0.997823, 0.065948, 0.000000, 0.000000 - 0.997788, 0.066470, 0.000000, 0.000000 - 0.997753, 0.066993, 0.000000, 0.000000 - 0.997718, 0.067515, 0.000000, 0.000000 - 0.997683, 0.068038, 0.000000, 0.000000 - 0.997647, 0.068560, 0.000000, 0.000000 - 0.997611, 0.069083, 0.000000, 0.000000 - 0.997575, 0.069606, 0.000000, 0.000000 - 0.997538, 0.070128, 0.000000, 0.000000 - 0.997501, 0.070650, 0.000000, 0.000000 - 0.997464, 0.071173, 0.000000, 0.000000 - 0.997427, 0.071695, 0.000000, 0.000000 - 0.997389, 0.072218, 0.000000, 0.000000 - 0.997351, 0.072740, 0.000000, 0.000000 - 0.997313, 0.073263, 0.000000, 0.000000 - 0.997274, 0.073785, 0.000000, 0.000000 - 0.997235, 0.074307, 0.000000, 0.000000 - 0.997196, 0.074830, 0.000000, 0.000000 - 0.997157, 0.075352, 0.000000, 0.000000 - 0.997117, 0.075874, 0.000000, 0.000000 - 0.997078, 0.076396, 0.000000, 0.000000 - 0.997037, 0.076919, 0.000000, 0.000000 - 0.996997, 0.077441, 0.000000, 0.000000 - 0.996956, 0.077963, 0.000000, 0.000000 - 0.996915, 0.078485, 0.000000, 0.000000 - 0.996874, 0.079007, 0.000000, 0.000000 - 0.996833, 0.079529, 0.000000, 0.000000 - 0.996791, 0.080052, 0.000000, 0.000000 - 0.996749, 0.080574, 0.000000, 0.000000 - 0.996706, 0.081096, 0.000000, 0.000000 - 0.996664, 0.081618, 0.000000, 0.000000 - 0.996621, 0.082140, 0.000000, 0.000000 - 0.996578, 0.082662, 0.000000, 0.000000 - 0.996534, 0.083184, 0.000000, 0.000000 - 0.996491, 0.083706, 0.000000, 0.000000 - 0.996447, 0.084228, 0.000000, 0.000000 - 0.996402, 0.084750, 0.000000, 0.000000 - 0.996358, 0.085271, 0.000000, 0.000000 - 0.996313, 0.085793, 0.000000, 0.000000 - 0.996268, 0.086315, 0.000000, 0.000000 - 0.996223, 0.086837, 0.000000, 0.000000 - 0.996177, 0.087359, 0.000000, 0.000000 - 0.996131, 0.087880, 0.000000, 0.000000 - 0.996085, 0.088402, 0.000000, 0.000000 - 0.996038, 0.088924, 0.000000, 0.000000 - 0.995992, 0.089446, 0.000000, 0.000000 - 0.995945, 0.089967, 0.000000, 0.000000 - 0.995897, 0.090489, 0.000000, 0.000000 - 0.995850, 0.091010, 0.000000, 0.000000 - 0.995802, 0.091532, 0.000000, 0.000000 - 0.995754, 0.092054, 0.000000, 0.000000 - 0.995706, 0.092575, 0.000000, 0.000000 - 0.995657, 0.093097, 0.000000, 0.000000 - 0.995608, 0.093618, 0.000000, 0.000000 - 0.995559, 0.094140, 0.000000, 0.000000 - 0.995510, 0.094661, 0.000000, 0.000000 - 0.995460, 0.095182, 0.000000, 0.000000 - 0.995410, 0.095704, 0.000000, 0.000000 - 0.995360, 0.096225, 0.000000, 0.000000 - 0.995309, 0.096747, 0.000000, 0.000000 - 0.995258, 0.097268, 0.000000, 0.000000 - 0.995207, 0.097789, 0.000000, 0.000000 - 0.995156, 0.098310, 0.000000, 0.000000 - 0.995104, 0.098832, 0.000000, 0.000000 - 0.995052, 0.099353, 0.000000, 0.000000 - 0.995000, 0.099874, 0.000000, 0.000000 - 0.994948, 0.100395, 0.000000, 0.000000 - 0.994895, 0.100916, 0.000000, 0.000000 - 0.994842, 0.101437, 0.000000, 0.000000 - 0.994789, 0.101958, 0.000000, 0.000000 - 0.994735, 0.102479, 0.000000, 0.000000 - 0.994681, 0.103000, 0.000000, 0.000000 - 0.994627, 0.103521, 0.000000, 0.000000 - 0.994573, 0.104042, 0.000000, 0.000000 - 0.994518, 0.104563, 0.000000, 0.000000 - 0.994463, 0.105084, 0.000000, 0.000000 - 0.994408, 0.105605, 0.000000, 0.000000 - 0.994353, 0.106126, 0.000000, 0.000000 - 0.994297, 0.106647, 0.000000, 0.000000 - 0.994241, 0.107167, 0.000000, 0.000000 - 0.994185, 0.107688, 0.000000, 0.000000 - 0.994128, 0.108209, 0.000000, 0.000000 - 0.994071, 0.108729, 0.000000, 0.000000 - 0.994014, 0.109250, 0.000000, 0.000000 - 0.993957, 0.109771, 0.000000, 0.000000 - 0.993899, 0.110291, 0.000000, 0.000000 - 0.993841, 0.110812, 0.000000, 0.000000 - 0.993783, 0.111332, 0.000000, 0.000000 - 0.993725, 0.111853, 0.000000, 0.000000 - 0.993666, 0.112373, 0.000000, 0.000000 - 0.993607, 0.112894, 0.000000, 0.000000 - 0.993548, 0.113414, 0.000000, 0.000000 - 0.993488, 0.113935, 0.000000, 0.000000 - 0.993428, 0.114455, 0.000000, 0.000000 - 0.993368, 0.114975, 0.000000, 0.000000 - 0.993308, 0.115496, 0.000000, 0.000000 - 0.993247, 0.116016, 0.000000, 0.000000 - 0.993186, 0.116536, 0.000000, 0.000000 - 0.993125, 0.117056, 0.000000, 0.000000 - 0.993064, 0.117576, 0.000000, 0.000000 - 0.993002, 0.118097, 0.000000, 0.000000 - 0.992940, 0.118617, 0.000000, 0.000000 - 0.992878, 0.119137, 0.000000, 0.000000 - 0.992815, 0.119657, 0.000000, 0.000000 - 0.992753, 0.120177, 0.000000, 0.000000 - 0.992689, 0.120697, 0.000000, 0.000000 - 0.992626, 0.121217, 0.000000, 0.000000 - 0.992562, 0.121736, 0.000000, 0.000000 - 0.992499, 0.122256, 0.000000, 0.000000 - 0.992434, 0.122776, 0.000000, 0.000000 - 0.992370, 0.123296, 0.000000, 0.000000 - 0.992305, 0.123816, 0.000000, 0.000000 - 0.992240, 0.124335, 0.000000, 0.000000 - 0.992175, 0.124855, 0.000000, 0.000000 - 0.992109, 0.125375, 0.000000, 0.000000 - 0.992044, 0.125894, 0.000000, 0.000000 - 0.991978, 0.126414, 0.000000, 0.000000 - 0.991911, 0.126934, 0.000000, 0.000000 - 0.991845, 0.127453, 0.000000, 0.000000 - 0.991778, 0.127973, 0.000000, 0.000000 - 0.991711, 0.128492, 0.000000, 0.000000 - 0.991643, 0.129011, 0.000000, 0.000000 - 0.991575, 0.129531, 0.000000, 0.000000 - 0.991507, 0.130050, 0.000000, 0.000000 - 0.991439, 0.130569, 0.000000, 0.000000 - 0.991371, 0.131089, 0.000000, 0.000000 - 0.991302, 0.131608, 0.000000, 0.000000 - 0.991233, 0.132127, 0.000000, 0.000000 - 0.991163, 0.132646, 0.000000, 0.000000 - 0.991094, 0.133165, 0.000000, 0.000000 - 0.991024, 0.133685, 0.000000, 0.000000 - 0.990954, 0.134204, 0.000000, 0.000000 - 0.990883, 0.134723, 0.000000, 0.000000 - 0.990813, 0.135242, 0.000000, 0.000000 - 0.990742, 0.135761, 0.000000, 0.000000 - 0.990670, 0.136279, 0.000000, 0.000000 - 0.990599, 0.136798, 0.000000, 0.000000 - 0.990527, 0.137317, 0.000000, 0.000000 - 0.990455, 0.137836, 0.000000, 0.000000 - 0.990383, 0.138355, 0.000000, 0.000000 - 0.990310, 0.138873, 0.000000, 0.000000 - 0.990237, 0.139392, 0.000000, 0.000000 - 0.990164, 0.139911, 0.000000, 0.000000 - 0.990091, 0.140429, 0.000000, 0.000000 - 0.990017, 0.140948, 0.000000, 0.000000 - 0.989943, 0.141466, 0.000000, 0.000000 - 0.989869, 0.141985, 0.000000, 0.000000 - 0.989794, 0.142503, 0.000000, 0.000000 - 0.989720, 0.143022, 0.000000, 0.000000 - 0.989644, 0.143540, 0.000000, 0.000000 - 0.989569, 0.144058, 0.000000, 0.000000 - 0.989494, 0.144577, 0.000000, 0.000000 - 0.989418, 0.145095, 0.000000, 0.000000 - 0.989342, 0.145613, 0.000000, 0.000000 - 0.989265, 0.146131, 0.000000, 0.000000 - 0.989189, 0.146650, 0.000000, 0.000000 - 0.989112, 0.147168, 0.000000, 0.000000 - 0.989034, 0.147686, 0.000000, 0.000000 - 0.988957, 0.148204, 0.000000, 0.000000 - 0.988879, 0.148722, 0.000000, 0.000000 - 0.988801, 0.149240, 0.000000, 0.000000 - 0.988723, 0.149757, 0.000000, 0.000000 - 0.988644, 0.150275, 0.000000, 0.000000 - 0.988565, 0.150793, 0.000000, 0.000000 - 0.988486, 0.151311, 0.000000, 0.000000 - 0.988407, 0.151829, 0.000000, 0.000000 - 0.988327, 0.152346, 0.000000, 0.000000 - 0.988247, 0.152864, 0.000000, 0.000000 - 0.988167, 0.153382, 0.000000, 0.000000 - 0.988087, 0.153899, 0.000000, 0.000000 - 0.988006, 0.154417, 0.000000, 0.000000 - 0.987925, 0.154934, 0.000000, 0.000000 - 0.987844, 0.155451, 0.000000, 0.000000 - 0.987762, 0.155969, 0.000000, 0.000000 - 0.987680, 0.156486, 0.000000, 0.000000 - 0.987598, 0.157003, 0.000000, 0.000000 - 0.987516, 0.157521, 0.000000, 0.000000 - 0.987433, 0.158038, 0.000000, 0.000000 - 0.987350, 0.158555, 0.000000, 0.000000 - 0.987267, 0.159072, 0.000000, 0.000000 - 0.987183, 0.159589, 0.000000, 0.000000 - 0.987100, 0.160106, 0.000000, 0.000000 - 0.987016, 0.160623, 0.000000, 0.000000 - 0.986932, 0.161140, 0.000000, 0.000000 - 0.986847, 0.161657, 0.000000, 0.000000 - 0.986762, 0.162174, 0.000000, 0.000000 - 0.986677, 0.162691, 0.000000, 0.000000 - 0.986592, 0.163208, 0.000000, 0.000000 - 0.986506, 0.163724, 0.000000, 0.000000 - 0.986420, 0.164241, 0.000000, 0.000000 - 0.986334, 0.164758, 0.000000, 0.000000 - 0.986248, 0.165274, 0.000000, 0.000000 - 0.986161, 0.165791, 0.000000, 0.000000 - 0.986074, 0.166307, 0.000000, 0.000000 - 0.985987, 0.166824, 0.000000, 0.000000 - 0.985899, 0.167340, 0.000000, 0.000000 - 0.985811, 0.167857, 0.000000, 0.000000 - 0.985723, 0.168373, 0.000000, 0.000000 - 0.985635, 0.168889, 0.000000, 0.000000 - 0.985546, 0.169405, 0.000000, 0.000000 - 0.985458, 0.169922, 0.000000, 0.000000 - 0.985368, 0.170438, 0.000000, 0.000000 - 0.985279, 0.170954, 0.000000, 0.000000 - 0.985189, 0.171470, 0.000000, 0.000000 - 0.985099, 0.171986, 0.000000, 0.000000 - 0.985009, 0.172502, 0.000000, 0.000000 - 0.984919, 0.173018, 0.000000, 0.000000 - 0.984828, 0.173534, 0.000000, 0.000000 - 0.984737, 0.174049, 0.000000, 0.000000 - 0.984646, 0.174565, 0.000000, 0.000000 - 0.984554, 0.175081, 0.000000, 0.000000 - 0.984462, 0.175596, 0.000000, 0.000000 - 0.984370, 0.176112, 0.000000, 0.000000 - 0.984278, 0.176628, 0.000000, 0.000000 - 0.984185, 0.177143, 0.000000, 0.000000 - 0.984092, 0.177659, 0.000000, 0.000000 - 0.983999, 0.178174, 0.000000, 0.000000 - 0.983906, 0.178689, 0.000000, 0.000000 - 0.983812, 0.179205, 0.000000, 0.000000 - 0.983718, 0.179720, 0.000000, 0.000000 - 0.983624, 0.180235, 0.000000, 0.000000 - 0.983529, 0.180750, 0.000000, 0.000000 - 0.983434, 0.181266, 0.000000, 0.000000 - 0.983339, 0.181781, 0.000000, 0.000000 - 0.983244, 0.182296, 0.000000, 0.000000 - 0.983148, 0.182811, 0.000000, 0.000000 - 0.983052, 0.183326, 0.000000, 0.000000 - 0.982956, 0.183840, 0.000000, 0.000000 - 0.982860, 0.184355, 0.000000, 0.000000 - 0.982763, 0.184870, 0.000000, 0.000000 - 0.982666, 0.185385, 0.000000, 0.000000 - 0.982569, 0.185899, 0.000000, 0.000000 - 0.982471, 0.186414, 0.000000, 0.000000 - 0.982374, 0.186929, 0.000000, 0.000000 - 0.982275, 0.187443, 0.000000, 0.000000 - 0.982177, 0.187958, 0.000000, 0.000000 - 0.982079, 0.188472, 0.000000, 0.000000 - 0.981980, 0.188986, 0.000000, 0.000000 - 0.981881, 0.189501, 0.000000, 0.000000 - 0.981781, 0.190015, 0.000000, 0.000000 - 0.981682, 0.190529, 0.000000, 0.000000 - 0.981582, 0.191043, 0.000000, 0.000000 - 0.981481, 0.191557, 0.000000, 0.000000 - 0.981381, 0.192071, 0.000000, 0.000000 - 0.981280, 0.192585, 0.000000, 0.000000 - 0.981179, 0.193099, 0.000000, 0.000000 - 0.981078, 0.193613, 0.000000, 0.000000 - 0.980976, 0.194127, 0.000000, 0.000000 - 0.980875, 0.194641, 0.000000, 0.000000 - 0.980773, 0.195155, 0.000000, 0.000000 - 0.980670, 0.195668, 0.000000, 0.000000 - 0.980568, 0.196182, 0.000000, 0.000000 - 0.980465, 0.196695, 0.000000, 0.000000 - 0.980361, 0.197209, 0.000000, 0.000000 - 0.980258, 0.197722, 0.000000, 0.000000 - 0.980154, 0.198236, 0.000000, 0.000000 - 0.980050, 0.198749, 0.000000, 0.000000 - 0.979946, 0.199262, 0.000000, 0.000000 - 0.979842, 0.199776, 0.000000, 0.000000 - 0.979737, 0.200289, 0.000000, 0.000000 - 0.979632, 0.200802, 0.000000, 0.000000 - 0.979527, 0.201315, 0.000000, 0.000000 - 0.979421, 0.201828, 0.000000, 0.000000 - 0.979315, 0.202341, 0.000000, 0.000000 - 0.979209, 0.202854, 0.000000, 0.000000 - 0.979103, 0.203367, 0.000000, 0.000000 - 0.978996, 0.203880, 0.000000, 0.000000 - 0.978889, 0.204392, 0.000000, 0.000000 - 0.978782, 0.204905, 0.000000, 0.000000 - 0.978674, 0.205418, 0.000000, 0.000000 - 0.978567, 0.205930, 0.000000, 0.000000 - 0.978459, 0.206443, 0.000000, 0.000000 - 0.978350, 0.206955, 0.000000, 0.000000 - 0.978242, 0.207468, 0.000000, 0.000000 - 0.978133, 0.207980, 0.000000, 0.000000 - 0.978024, 0.208492, 0.000000, 0.000000 - 0.977915, 0.209005, 0.000000, 0.000000 - 0.977805, 0.209517, 0.000000, 0.000000 - 0.977695, 0.210029, 0.000000, 0.000000 - 0.977585, 0.210541, 0.000000, 0.000000 - 0.977475, 0.211053, 0.000000, 0.000000 - 0.977364, 0.211565, 0.000000, 0.000000 - 0.977253, 0.212077, 0.000000, 0.000000 - 0.977142, 0.212589, 0.000000, 0.000000 - 0.977030, 0.213100, 0.000000, 0.000000 - 0.976919, 0.213612, 0.000000, 0.000000 - 0.976807, 0.214124, 0.000000, 0.000000 - 0.976694, 0.214635, 0.000000, 0.000000 - 0.976582, 0.215147, 0.000000, 0.000000 - 0.976469, 0.215658, 0.000000, 0.000000 - 0.976356, 0.216170, 0.000000, 0.000000 - 0.976242, 0.216681, 0.000000, 0.000000 - 0.976129, 0.217192, 0.000000, 0.000000 - 0.976015, 0.217704, 0.000000, 0.000000 - 0.975901, 0.218215, 0.000000, 0.000000 - 0.975786, 0.218726, 0.000000, 0.000000 - 0.975672, 0.219237, 0.000000, 0.000000 - 0.975557, 0.219748, 0.000000, 0.000000 - 0.975441, 0.220259, 0.000000, 0.000000 - 0.975326, 0.220770, 0.000000, 0.000000 - 0.975210, 0.221281, 0.000000, 0.000000 - 0.975094, 0.221791, 0.000000, 0.000000 - 0.974978, 0.222302, 0.000000, 0.000000 - 0.974861, 0.222813, 0.000000, 0.000000 - 0.974744, 0.223323, 0.000000, 0.000000 - 0.974627, 0.223834, 0.000000, 0.000000 - 0.974510, 0.224344, 0.000000, 0.000000 - 0.974392, 0.224855, 0.000000, 0.000000 - 0.974274, 0.225365, 0.000000, 0.000000 - 0.974156, 0.225875, 0.000000, 0.000000 - 0.974038, 0.226385, 0.000000, 0.000000 - 0.973919, 0.226896, 0.000000, 0.000000 - 0.973800, 0.227406, 0.000000, 0.000000 - 0.973681, 0.227916, 0.000000, 0.000000 - 0.973561, 0.228426, 0.000000, 0.000000 - 0.973442, 0.228936, 0.000000, 0.000000 - 0.973322, 0.229445, 0.000000, 0.000000 - 0.973201, 0.229955, 0.000000, 0.000000 - 0.973081, 0.230465, 0.000000, 0.000000 - 0.972960, 0.230975, 0.000000, 0.000000 - 0.972839, 0.231484, 0.000000, 0.000000 - 0.972717, 0.231994, 0.000000, 0.000000 - 0.972596, 0.232503, 0.000000, 0.000000 - 0.972474, 0.233012, 0.000000, 0.000000 - 0.972352, 0.233522, 0.000000, 0.000000 - 0.972229, 0.234031, 0.000000, 0.000000 - 0.972106, 0.234540, 0.000000, 0.000000 - 0.971983, 0.235049, 0.000000, 0.000000 - 0.971860, 0.235558, 0.000000, 0.000000 - 0.971737, 0.236067, 0.000000, 0.000000 - 0.971613, 0.236576, 0.000000, 0.000000 - 0.971489, 0.237085, 0.000000, 0.000000 - 0.971365, 0.237594, 0.000000, 0.000000 - 0.971240, 0.238103, 0.000000, 0.000000 - 0.971115, 0.238611, 0.000000, 0.000000 - 0.970990, 0.239120, 0.000000, 0.000000 - 0.970865, 0.239629, 0.000000, 0.000000 - 0.970739, 0.240137, 0.000000, 0.000000 - 0.970613, 0.240646, 0.000000, 0.000000 - 0.970487, 0.241154, 0.000000, 0.000000 - 0.970360, 0.241662, 0.000000, 0.000000 - 0.970234, 0.242170, 0.000000, 0.000000 - 0.970107, 0.242678, 0.000000, 0.000000 - 0.969980, 0.243187, 0.000000, 0.000000 - 0.969852, 0.243695, 0.000000, 0.000000 - 0.969724, 0.244203, 0.000000, 0.000000 - 0.969596, 0.244710, 0.000000, 0.000000 - 0.969468, 0.245218, 0.000000, 0.000000 - 0.969339, 0.245726, 0.000000, 0.000000 - 0.969210, 0.246234, 0.000000, 0.000000 - 0.969081, 0.246741, 0.000000, 0.000000 - 0.968952, 0.247249, 0.000000, 0.000000 - 0.968822, 0.247756, 0.000000, 0.000000 - 0.968692, 0.248264, 0.000000, 0.000000 - 0.968562, 0.248771, 0.000000, 0.000000 - 0.968432, 0.249278, 0.000000, 0.000000 - 0.968301, 0.249786, 0.000000, 0.000000 - 0.968170, 0.250293, 0.000000, 0.000000 - 0.968039, 0.250800, 0.000000, 0.000000 - 0.967907, 0.251307, 0.000000, 0.000000 - 0.967776, 0.251814, 0.000000, 0.000000 - 0.967644, 0.252321, 0.000000, 0.000000 - 0.967511, 0.252827, 0.000000, 0.000000 - 0.967379, 0.253334, 0.000000, 0.000000 - 0.967246, 0.253841, 0.000000, 0.000000 - 0.967113, 0.254347, 0.000000, 0.000000 - 0.966980, 0.254854, 0.000000, 0.000000 - 0.966846, 0.255360, 0.000000, 0.000000 - 0.966712, 0.255867, 0.000000, 0.000000 - 0.966578, 0.256373, 0.000000, 0.000000 - 0.966444, 0.256879, 0.000000, 0.000000 - 0.966309, 0.257385, 0.000000, 0.000000 - 0.966174, 0.257891, 0.000000, 0.000000 - 0.966039, 0.258397, 0.000000, 0.000000 - 0.965903, 0.258903, 0.000000, 0.000000 - 0.965767, 0.259409, 0.000000, 0.000000 - 0.965631, 0.259915, 0.000000, 0.000000 - 0.965495, 0.260421, 0.000000, 0.000000 - 0.965359, 0.260926, 0.000000, 0.000000 - 0.965222, 0.261432, 0.000000, 0.000000 - 0.965085, 0.261938, 0.000000, 0.000000 - 0.964947, 0.262443, 0.000000, 0.000000 - 0.964810, 0.262948, 0.000000, 0.000000 - 0.964672, 0.263454, 0.000000, 0.000000 - 0.964534, 0.263959, 0.000000, 0.000000 - 0.964396, 0.264464, 0.000000, 0.000000 - 0.964257, 0.264969, 0.000000, 0.000000 - 0.964118, 0.265474, 0.000000, 0.000000 - 0.963979, 0.265979, 0.000000, 0.000000 - 0.963839, 0.266484, 0.000000, 0.000000 - 0.963700, 0.266989, 0.000000, 0.000000 - 0.963560, 0.267494, 0.000000, 0.000000 - 0.963419, 0.267998, 0.000000, 0.000000 - 0.963279, 0.268503, 0.000000, 0.000000 - 0.963138, 0.269007, 0.000000, 0.000000 - 0.962997, 0.269512, 0.000000, 0.000000 - 0.962856, 0.270016, 0.000000, 0.000000 - 0.962714, 0.270520, 0.000000, 0.000000 - 0.962572, 0.271025, 0.000000, 0.000000 - 0.962430, 0.271529, 0.000000, 0.000000 - 0.962288, 0.272033, 0.000000, 0.000000 - 0.962145, 0.272537, 0.000000, 0.000000 - 0.962003, 0.273041, 0.000000, 0.000000 - 0.961859, 0.273544, 0.000000, 0.000000 - 0.961716, 0.274048, 0.000000, 0.000000 - 0.961572, 0.274552, 0.000000, 0.000000 - 0.961428, 0.275056, 0.000000, 0.000000 - 0.961284, 0.275559, 0.000000, 0.000000 - 0.961140, 0.276062, 0.000000, 0.000000 - 0.960995, 0.276566, 0.000000, 0.000000 - 0.960850, 0.277069, 0.000000, 0.000000 - 0.960705, 0.277572, 0.000000, 0.000000 - 0.960559, 0.278076, 0.000000, 0.000000 - 0.960413, 0.278579, 0.000000, 0.000000 - 0.960267, 0.279082, 0.000000, 0.000000 - 0.960121, 0.279585, 0.000000, 0.000000 - 0.959975, 0.280087, 0.000000, 0.000000 - 0.959828, 0.280590, 0.000000, 0.000000 - 0.959681, 0.281093, 0.000000, 0.000000 - 0.959533, 0.281595, 0.000000, 0.000000 - 0.959386, 0.282098, 0.000000, 0.000000 - 0.959238, 0.282600, 0.000000, 0.000000 - 0.959090, 0.283103, 0.000000, 0.000000 - 0.958941, 0.283605, 0.000000, 0.000000 - 0.958792, 0.284107, 0.000000, 0.000000 - 0.958644, 0.284610, 0.000000, 0.000000 - 0.958494, 0.285112, 0.000000, 0.000000 - 0.958345, 0.285614, 0.000000, 0.000000 - 0.958195, 0.286116, 0.000000, 0.000000 - 0.958045, 0.286617, 0.000000, 0.000000 - 0.957895, 0.287119, 0.000000, 0.000000 - 0.957744, 0.287621, 0.000000, 0.000000 - 0.957594, 0.288122, 0.000000, 0.000000 - 0.957443, 0.288624, 0.000000, 0.000000 - 0.957291, 0.289125, 0.000000, 0.000000 - 0.957140, 0.289627, 0.000000, 0.000000 - 0.956988, 0.290128, 0.000000, 0.000000 - 0.956836, 0.290629, 0.000000, 0.000000 - 0.956683, 0.291130, 0.000000, 0.000000 - 0.956531, 0.291631, 0.000000, 0.000000 - 0.956378, 0.292132, 0.000000, 0.000000 - 0.956225, 0.292633, 0.000000, 0.000000 - 0.956071, 0.293134, 0.000000, 0.000000 - 0.955918, 0.293635, 0.000000, 0.000000 - 0.955764, 0.294135, 0.000000, 0.000000 - 0.955610, 0.294636, 0.000000, 0.000000 - 0.955455, 0.295136, 0.000000, 0.000000 - 0.955300, 0.295637, 0.000000, 0.000000 - 0.955145, 0.296137, 0.000000, 0.000000 - 0.954990, 0.296637, 0.000000, 0.000000 - 0.954835, 0.297138, 0.000000, 0.000000 - 0.954679, 0.297638, 0.000000, 0.000000 - 0.954523, 0.298138, 0.000000, 0.000000 - 0.954367, 0.298638, 0.000000, 0.000000 - 0.954210, 0.299137, 0.000000, 0.000000 - 0.954053, 0.299637, 0.000000, 0.000000 - 0.953896, 0.300137, 0.000000, 0.000000 - 0.953739, 0.300636, 0.000000, 0.000000 - 0.953581, 0.301136, 0.000000, 0.000000 - 0.953423, 0.301635, 0.000000, 0.000000 - 0.953265, 0.302135, 0.000000, 0.000000 - 0.953107, 0.302634, 0.000000, 0.000000 - 0.952948, 0.303133, 0.000000, 0.000000 - 0.952789, 0.303632, 0.000000, 0.000000 - 0.952630, 0.304131, 0.000000, 0.000000 - 0.952471, 0.304630, 0.000000, 0.000000 - 0.952311, 0.305129, 0.000000, 0.000000 - 0.952151, 0.305628, 0.000000, 0.000000 - 0.951991, 0.306126, 0.000000, 0.000000 - 0.951830, 0.306625, 0.000000, 0.000000 - 0.951670, 0.307123, 0.000000, 0.000000 - 0.951509, 0.307622, 0.000000, 0.000000 - 0.951347, 0.308120, 0.000000, 0.000000 - 0.951186, 0.308618, 0.000000, 0.000000 - 0.951024, 0.309117, 0.000000, 0.000000 - 0.950862, 0.309615, 0.000000, 0.000000 - 0.950700, 0.310113, 0.000000, 0.000000 - 0.950537, 0.310611, 0.000000, 0.000000 - 0.950374, 0.311108, 0.000000, 0.000000 - 0.950211, 0.311606, 0.000000, 0.000000 - 0.950048, 0.312104, 0.000000, 0.000000 - 0.949884, 0.312601, 0.000000, 0.000000 - 0.949721, 0.313099, 0.000000, 0.000000 - 0.949556, 0.313596, 0.000000, 0.000000 - 0.949392, 0.314094, 0.000000, 0.000000 - 0.949227, 0.314591, 0.000000, 0.000000 - 0.949062, 0.315088, 0.000000, 0.000000 - 0.948897, 0.315585, 0.000000, 0.000000 - 0.948732, 0.316082, 0.000000, 0.000000 - 0.948566, 0.316579, 0.000000, 0.000000 - 0.948400, 0.317076, 0.000000, 0.000000 - 0.948234, 0.317572, 0.000000, 0.000000 - 0.948068, 0.318069, 0.000000, 0.000000 - 0.947901, 0.318565, 0.000000, 0.000000 - 0.947734, 0.319062, 0.000000, 0.000000 - 0.947567, 0.319558, 0.000000, 0.000000 - 0.947399, 0.320055, 0.000000, 0.000000 - 0.947231, 0.320551, 0.000000, 0.000000 - 0.947063, 0.321047, 0.000000, 0.000000 - 0.946895, 0.321543, 0.000000, 0.000000 - 0.946727, 0.322039, 0.000000, 0.000000 - 0.946558, 0.322535, 0.000000, 0.000000 - 0.946389, 0.323030, 0.000000, 0.000000 - 0.946219, 0.323526, 0.000000, 0.000000 - 0.946050, 0.324021, 0.000000, 0.000000 - 0.945880, 0.324517, 0.000000, 0.000000 - 0.945710, 0.325012, 0.000000, 0.000000 - 0.945539, 0.325508, 0.000000, 0.000000 - 0.945369, 0.326003, 0.000000, 0.000000 - 0.945198, 0.326498, 0.000000, 0.000000 - 0.945027, 0.326993, 0.000000, 0.000000 - 0.944855, 0.327488, 0.000000, 0.000000 - 0.944684, 0.327983, 0.000000, 0.000000 - 0.944512, 0.328478, 0.000000, 0.000000 - 0.944340, 0.328972, 0.000000, 0.000000 - 0.944167, 0.329467, 0.000000, 0.000000 - 0.943994, 0.329961, 0.000000, 0.000000 - 0.943822, 0.330456, 0.000000, 0.000000 - 0.943648, 0.330950, 0.000000, 0.000000 - 0.943475, 0.331444, 0.000000, 0.000000 - 0.943301, 0.331938, 0.000000, 0.000000 - 0.943127, 0.332432, 0.000000, 0.000000 - 0.942953, 0.332926, 0.000000, 0.000000 - 0.942778, 0.333420, 0.000000, 0.000000 - 0.942604, 0.333914, 0.000000, 0.000000 - 0.942429, 0.334407, 0.000000, 0.000000 - 0.942253, 0.334901, 0.000000, 0.000000 - 0.942078, 0.335395, 0.000000, 0.000000 - 0.941902, 0.335888, 0.000000, 0.000000 - 0.941726, 0.336381, 0.000000, 0.000000 - 0.941550, 0.336874, 0.000000, 0.000000 - 0.941373, 0.337368, 0.000000, 0.000000 - 0.941196, 0.337861, 0.000000, 0.000000 - 0.941019, 0.338354, 0.000000, 0.000000 - 0.940842, 0.338846, 0.000000, 0.000000 - 0.940664, 0.339339, 0.000000, 0.000000 - 0.940486, 0.339832, 0.000000, 0.000000 - 0.940308, 0.340324, 0.000000, 0.000000 - 0.940130, 0.340817, 0.000000, 0.000000 - 0.939951, 0.341309, 0.000000, 0.000000 - 0.939772, 0.341801, 0.000000, 0.000000 - 0.939593, 0.342294, 0.000000, 0.000000 - 0.939414, 0.342786, 0.000000, 0.000000 - 0.939234, 0.343278, 0.000000, 0.000000 - 0.939054, 0.343770, 0.000000, 0.000000 - 0.938874, 0.344261, 0.000000, 0.000000 - 0.938693, 0.344753, 0.000000, 0.000000 - 0.938513, 0.345245, 0.000000, 0.000000 - 0.938332, 0.345736, 0.000000, 0.000000 - 0.938151, 0.346228, 0.000000, 0.000000 - 0.937969, 0.346719, 0.000000, 0.000000 - 0.937787, 0.347210, 0.000000, 0.000000 - 0.937605, 0.347701, 0.000000, 0.000000 - 0.937423, 0.348192, 0.000000, 0.000000 - 0.937241, 0.348683, 0.000000, 0.000000 - 0.937058, 0.349174, 0.000000, 0.000000 - 0.936875, 0.349665, 0.000000, 0.000000 - 0.936692, 0.350156, 0.000000, 0.000000 - 0.936508, 0.350646, 0.000000, 0.000000 - 0.936324, 0.351137, 0.000000, 0.000000 - 0.936140, 0.351627, 0.000000, 0.000000 - 0.935956, 0.352117, 0.000000, 0.000000 - 0.935771, 0.352607, 0.000000, 0.000000 - 0.935587, 0.353098, 0.000000, 0.000000 - 0.935401, 0.353588, 0.000000, 0.000000 - 0.935216, 0.354077, 0.000000, 0.000000 - 0.935031, 0.354567, 0.000000, 0.000000 - 0.934845, 0.355057, 0.000000, 0.000000 - 0.934659, 0.355547, 0.000000, 0.000000 - 0.934472, 0.356036, 0.000000, 0.000000 - 0.934286, 0.356525, 0.000000, 0.000000 - 0.934099, 0.357015, 0.000000, 0.000000 - 0.933912, 0.357504, 0.000000, 0.000000 - 0.933724, 0.357993, 0.000000, 0.000000 - 0.933537, 0.358482, 0.000000, 0.000000 - 0.933349, 0.358971, 0.000000, 0.000000 - 0.933161, 0.359460, 0.000000, 0.000000 - 0.932972, 0.359948, 0.000000, 0.000000 - 0.932784, 0.360437, 0.000000, 0.000000 - 0.932595, 0.360926, 0.000000, 0.000000 - 0.932405, 0.361414, 0.000000, 0.000000 - 0.932216, 0.361902, 0.000000, 0.000000 - 0.932026, 0.362391, 0.000000, 0.000000 - 0.931836, 0.362879, 0.000000, 0.000000 - 0.931646, 0.363367, 0.000000, 0.000000 - 0.931456, 0.363855, 0.000000, 0.000000 - 0.931265, 0.364342, 0.000000, 0.000000 - 0.931074, 0.364830, 0.000000, 0.000000 - 0.930883, 0.365318, 0.000000, 0.000000 - 0.930691, 0.365805, 0.000000, 0.000000 - 0.930500, 0.366293, 0.000000, 0.000000 - 0.930308, 0.366780, 0.000000, 0.000000 - 0.930115, 0.367267, 0.000000, 0.000000 - 0.929923, 0.367754, 0.000000, 0.000000 - 0.929730, 0.368241, 0.000000, 0.000000 - 0.929537, 0.368728, 0.000000, 0.000000 - 0.929344, 0.369215, 0.000000, 0.000000 - 0.929150, 0.369702, 0.000000, 0.000000 - 0.928957, 0.370188, 0.000000, 0.000000 - 0.928763, 0.370675, 0.000000, 0.000000 - 0.928568, 0.371161, 0.000000, 0.000000 - 0.928374, 0.371648, 0.000000, 0.000000 - 0.928179, 0.372134, 0.000000, 0.000000 - 0.927984, 0.372620, 0.000000, 0.000000 - 0.927789, 0.373106, 0.000000, 0.000000 - 0.927593, 0.373592, 0.000000, 0.000000 - 0.927397, 0.374078, 0.000000, 0.000000 - 0.927201, 0.374563, 0.000000, 0.000000 - 0.927005, 0.375049, 0.000000, 0.000000 - 0.926808, 0.375535, 0.000000, 0.000000 - 0.926612, 0.376020, 0.000000, 0.000000 - 0.926415, 0.376505, 0.000000, 0.000000 - 0.926217, 0.376990, 0.000000, 0.000000 - 0.926020, 0.377475, 0.000000, 0.000000 - 0.925822, 0.377960, 0.000000, 0.000000 - 0.925624, 0.378445, 0.000000, 0.000000 - 0.925425, 0.378930, 0.000000, 0.000000 - 0.925227, 0.379415, 0.000000, 0.000000 - 0.925028, 0.379899, 0.000000, 0.000000 - 0.924829, 0.380384, 0.000000, 0.000000 - 0.924629, 0.380868, 0.000000, 0.000000 - 0.924430, 0.381352, 0.000000, 0.000000 - 0.924230, 0.381836, 0.000000, 0.000000 - 0.924030, 0.382320, 0.000000, 0.000000 - 0.923829, 0.382804, 0.000000, 0.000000 - 0.923629, 0.383288, 0.000000, 0.000000 - 0.923428, 0.383772, 0.000000, 0.000000 - 0.923227, 0.384256, 0.000000, 0.000000 - 0.923025, 0.384739, 0.000000, 0.000000 - 0.922824, 0.385222, 0.000000, 0.000000 - 0.922622, 0.385706, 0.000000, 0.000000 - 0.922420, 0.386189, 0.000000, 0.000000 - 0.922217, 0.386672, 0.000000, 0.000000 - 0.922015, 0.387155, 0.000000, 0.000000 - 0.921812, 0.387638, 0.000000, 0.000000 - 0.921609, 0.388121, 0.000000, 0.000000 - 0.921405, 0.388603, 0.000000, 0.000000 - 0.921201, 0.389086, 0.000000, 0.000000 - 0.920998, 0.389568, 0.000000, 0.000000 - 0.920793, 0.390051, 0.000000, 0.000000 - 0.920589, 0.390533, 0.000000, 0.000000 - 0.920384, 0.391015, 0.000000, 0.000000 - 0.920179, 0.391497, 0.000000, 0.000000 - 0.919974, 0.391979, 0.000000, 0.000000 - 0.919769, 0.392461, 0.000000, 0.000000 - 0.919563, 0.392942, 0.000000, 0.000000 - 0.919357, 0.393424, 0.000000, 0.000000 - 0.919151, 0.393906, 0.000000, 0.000000 - 0.918944, 0.394387, 0.000000, 0.000000 - 0.918738, 0.394868, 0.000000, 0.000000 - 0.918531, 0.395349, 0.000000, 0.000000 - 0.918324, 0.395830, 0.000000, 0.000000 - 0.918116, 0.396311, 0.000000, 0.000000 - 0.917908, 0.396792, 0.000000, 0.000000 - 0.917701, 0.397273, 0.000000, 0.000000 - 0.917492, 0.397753, 0.000000, 0.000000 - 0.917284, 0.398234, 0.000000, 0.000000 - 0.917075, 0.398714, 0.000000, 0.000000 - 0.916866, 0.399195, 0.000000, 0.000000 - 0.916657, 0.399675, 0.000000, 0.000000 - 0.916448, 0.400155, 0.000000, 0.000000 - 0.916238, 0.400635, 0.000000, 0.000000 - 0.916028, 0.401115, 0.000000, 0.000000 - 0.915818, 0.401594, 0.000000, 0.000000 - 0.915607, 0.402074, 0.000000, 0.000000 - 0.915396, 0.402554, 0.000000, 0.000000 - 0.915185, 0.403033, 0.000000, 0.000000 - 0.914974, 0.403512, 0.000000, 0.000000 - 0.914763, 0.403991, 0.000000, 0.000000 - 0.914551, 0.404471, 0.000000, 0.000000 - 0.914339, 0.404950, 0.000000, 0.000000 - 0.914127, 0.405428, 0.000000, 0.000000 - 0.913914, 0.405907, 0.000000, 0.000000 - 0.913702, 0.406386, 0.000000, 0.000000 - 0.913489, 0.406864, 0.000000, 0.000000 - 0.913275, 0.407343, 0.000000, 0.000000 - 0.913062, 0.407821, 0.000000, 0.000000 - 0.912848, 0.408299, 0.000000, 0.000000 - 0.912634, 0.408777, 0.000000, 0.000000 - 0.912420, 0.409255, 0.000000, 0.000000 - 0.912206, 0.409733, 0.000000, 0.000000 - 0.911991, 0.410211, 0.000000, 0.000000 - 0.911776, 0.410688, 0.000000, 0.000000 - 0.911561, 0.411166, 0.000000, 0.000000 - 0.911345, 0.411643, 0.000000, 0.000000 - 0.911129, 0.412121, 0.000000, 0.000000 - 0.910913, 0.412598, 0.000000, 0.000000 - 0.910697, 0.413075, 0.000000, 0.000000 - 0.910481, 0.413552, 0.000000, 0.000000 - 0.910264, 0.414029, 0.000000, 0.000000 - 0.910047, 0.414505, 0.000000, 0.000000 - 0.909830, 0.414982, 0.000000, 0.000000 - 0.909612, 0.415458, 0.000000, 0.000000 - 0.909394, 0.415935, 0.000000, 0.000000 - 0.909177, 0.416411, 0.000000, 0.000000 - 0.908958, 0.416887, 0.000000, 0.000000 - 0.908740, 0.417363, 0.000000, 0.000000 - 0.908521, 0.417839, 0.000000, 0.000000 - 0.908302, 0.418315, 0.000000, 0.000000 - 0.908083, 0.418791, 0.000000, 0.000000 - 0.907863, 0.419266, 0.000000, 0.000000 - 0.907644, 0.419742, 0.000000, 0.000000 - 0.907424, 0.420217, 0.000000, 0.000000 - 0.907203, 0.420692, 0.000000, 0.000000 - 0.906983, 0.421167, 0.000000, 0.000000 - 0.906762, 0.421642, 0.000000, 0.000000 - 0.906541, 0.422117, 0.000000, 0.000000 - 0.906320, 0.422592, 0.000000, 0.000000 - 0.906099, 0.423067, 0.000000, 0.000000 - 0.905877, 0.423541, 0.000000, 0.000000 - 0.905655, 0.424015, 0.000000, 0.000000 - 0.905433, 0.424490, 0.000000, 0.000000 - 0.905210, 0.424964, 0.000000, 0.000000 - 0.904988, 0.425438, 0.000000, 0.000000 - 0.904765, 0.425912, 0.000000, 0.000000 - 0.904541, 0.426386, 0.000000, 0.000000 - 0.904318, 0.426860, 0.000000, 0.000000 - 0.904094, 0.427333, 0.000000, 0.000000 - 0.903870, 0.427807, 0.000000, 0.000000 - 0.903646, 0.428280, 0.000000, 0.000000 - 0.903422, 0.428753, 0.000000, 0.000000 - 0.903197, 0.429226, 0.000000, 0.000000 - 0.902972, 0.429699, 0.000000, 0.000000 - 0.902747, 0.430172, 0.000000, 0.000000 - 0.902521, 0.430645, 0.000000, 0.000000 - 0.902296, 0.431118, 0.000000, 0.000000 - 0.902070, 0.431590, 0.000000, 0.000000 - 0.901844, 0.432063, 0.000000, 0.000000 - 0.901617, 0.432535, 0.000000, 0.000000 - 0.901390, 0.433007, 0.000000, 0.000000 - 0.901164, 0.433479, 0.000000, 0.000000 - 0.900936, 0.433951, 0.000000, 0.000000 - 0.900709, 0.434423, 0.000000, 0.000000 - 0.900481, 0.434895, 0.000000, 0.000000 - 0.900253, 0.435366, 0.000000, 0.000000 - 0.900025, 0.435838, 0.000000, 0.000000 - 0.899797, 0.436309, 0.000000, 0.000000 - 0.899568, 0.436780, 0.000000, 0.000000 - 0.899339, 0.437251, 0.000000, 0.000000 - 0.899110, 0.437722, 0.000000, 0.000000 - 0.898881, 0.438193, 0.000000, 0.000000 - 0.898651, 0.438664, 0.000000, 0.000000 - 0.898421, 0.439135, 0.000000, 0.000000 - 0.898191, 0.439605, 0.000000, 0.000000 - 0.897961, 0.440076, 0.000000, 0.000000 - 0.897730, 0.440546, 0.000000, 0.000000 - 0.897499, 0.441016, 0.000000, 0.000000 - 0.897268, 0.441486, 0.000000, 0.000000 - 0.897037, 0.441956, 0.000000, 0.000000 - 0.896805, 0.442426, 0.000000, 0.000000 - 0.896573, 0.442895, 0.000000, 0.000000 - 0.896341, 0.443365, 0.000000, 0.000000 - 0.896109, 0.443834, 0.000000, 0.000000 - 0.895876, 0.444304, 0.000000, 0.000000 - 0.895643, 0.444773, 0.000000, 0.000000 - 0.895410, 0.445242, 0.000000, 0.000000 - 0.895177, 0.445711, 0.000000, 0.000000 - 0.894943, 0.446180, 0.000000, 0.000000 - 0.894710, 0.446648, 0.000000, 0.000000 - 0.894476, 0.447117, 0.000000, 0.000000 - 0.894241, 0.447585, 0.000000, 0.000000 - 0.894007, 0.448054, 0.000000, 0.000000 - 0.893772, 0.448522, 0.000000, 0.000000 - 0.893537, 0.448990, 0.000000, 0.000000 - 0.893302, 0.449458, 0.000000, 0.000000 - 0.893066, 0.449926, 0.000000, 0.000000 - 0.892830, 0.450393, 0.000000, 0.000000 - 0.892594, 0.450861, 0.000000, 0.000000 - 0.892358, 0.451328, 0.000000, 0.000000 - 0.892121, 0.451796, 0.000000, 0.000000 - 0.891885, 0.452263, 0.000000, 0.000000 - 0.891648, 0.452730, 0.000000, 0.000000 - 0.891410, 0.453197, 0.000000, 0.000000 - 0.891173, 0.453664, 0.000000, 0.000000 - 0.890935, 0.454130, 0.000000, 0.000000 - 0.890697, 0.454597, 0.000000, 0.000000 - 0.890459, 0.455064, 0.000000, 0.000000 - 0.890220, 0.455530, 0.000000, 0.000000 - 0.889982, 0.455996, 0.000000, 0.000000 - 0.889743, 0.456462, 0.000000, 0.000000 - 0.889504, 0.456928, 0.000000, 0.000000 - 0.889264, 0.457394, 0.000000, 0.000000 - 0.889024, 0.457860, 0.000000, 0.000000 - 0.888785, 0.458325, 0.000000, 0.000000 - 0.888544, 0.458791, 0.000000, 0.000000 - 0.888304, 0.459256, 0.000000, 0.000000 - 0.888063, 0.459721, 0.000000, 0.000000 - 0.887822, 0.460186, 0.000000, 0.000000 - 0.887581, 0.460651, 0.000000, 0.000000 - 0.887340, 0.461116, 0.000000, 0.000000 - 0.887098, 0.461581, 0.000000, 0.000000 - 0.886856, 0.462045, 0.000000, 0.000000 - 0.886614, 0.462510, 0.000000, 0.000000 - 0.886372, 0.462974, 0.000000, 0.000000 - 0.886129, 0.463438, 0.000000, 0.000000 - 0.885886, 0.463902, 0.000000, 0.000000 - 0.885643, 0.464366, 0.000000, 0.000000 - 0.885400, 0.464830, 0.000000, 0.000000 - 0.885156, 0.465294, 0.000000, 0.000000 - 0.884912, 0.465757, 0.000000, 0.000000 - 0.884668, 0.466221, 0.000000, 0.000000 - 0.884424, 0.466684, 0.000000, 0.000000 - 0.884179, 0.467147, 0.000000, 0.000000 - 0.883935, 0.467610, 0.000000, 0.000000 - 0.883690, 0.468073, 0.000000, 0.000000 - 0.883444, 0.468536, 0.000000, 0.000000 - 0.883199, 0.468999, 0.000000, 0.000000 - 0.882953, 0.469461, 0.000000, 0.000000 - 0.882707, 0.469924, 0.000000, 0.000000 - 0.882461, 0.470386, 0.000000, 0.000000 - 0.882214, 0.470848, 0.000000, 0.000000 - 0.881968, 0.471310, 0.000000, 0.000000 - 0.881721, 0.471772, 0.000000, 0.000000 - 0.881473, 0.472234, 0.000000, 0.000000 - 0.881226, 0.472695, 0.000000, 0.000000 - 0.880978, 0.473157, 0.000000, 0.000000 - 0.880730, 0.473618, 0.000000, 0.000000 - 0.880482, 0.474079, 0.000000, 0.000000 - 0.880234, 0.474541, 0.000000, 0.000000 - 0.879985, 0.475002, 0.000000, 0.000000 - 0.879736, 0.475462, 0.000000, 0.000000 - 0.879487, 0.475923, 0.000000, 0.000000 - 0.879237, 0.476384, 0.000000, 0.000000 - 0.878988, 0.476844, 0.000000, 0.000000 - 0.878738, 0.477305, 0.000000, 0.000000 - 0.878488, 0.477765, 0.000000, 0.000000 - 0.878237, 0.478225, 0.000000, 0.000000 - 0.877987, 0.478685, 0.000000, 0.000000 - 0.877736, 0.479145, 0.000000, 0.000000 - 0.877485, 0.479604, 0.000000, 0.000000 - 0.877234, 0.480064, 0.000000, 0.000000 - 0.876982, 0.480523, 0.000000, 0.000000 - 0.876730, 0.480982, 0.000000, 0.000000 - 0.876478, 0.481442, 0.000000, 0.000000 - 0.876226, 0.481901, 0.000000, 0.000000 - 0.875973, 0.482359, 0.000000, 0.000000 - 0.875721, 0.482818, 0.000000, 0.000000 - 0.875468, 0.483277, 0.000000, 0.000000 - 0.875214, 0.483735, 0.000000, 0.000000 - 0.874961, 0.484194, 0.000000, 0.000000 - 0.874707, 0.484652, 0.000000, 0.000000 - 0.874453, 0.485110, 0.000000, 0.000000 - 0.874199, 0.485568, 0.000000, 0.000000 - 0.873945, 0.486026, 0.000000, 0.000000 - 0.873690, 0.486483, 0.000000, 0.000000 - 0.873435, 0.486941, 0.000000, 0.000000 - 0.873180, 0.487398, 0.000000, 0.000000 - 0.872924, 0.487856, 0.000000, 0.000000 - 0.872669, 0.488313, 0.000000, 0.000000 - 0.872413, 0.488770, 0.000000, 0.000000 - 0.872157, 0.489227, 0.000000, 0.000000 - 0.871900, 0.489683, 0.000000, 0.000000 - 0.871644, 0.490140, 0.000000, 0.000000 - 0.871387, 0.490596, 0.000000, 0.000000 - 0.871130, 0.491053, 0.000000, 0.000000 - 0.870872, 0.491509, 0.000000, 0.000000 - 0.870615, 0.491965, 0.000000, 0.000000 - 0.870357, 0.492421, 0.000000, 0.000000 - 0.870099, 0.492877, 0.000000, 0.000000 - 0.869841, 0.493332, 0.000000, 0.000000 - 0.869582, 0.493788, 0.000000, 0.000000 - 0.869324, 0.494243, 0.000000, 0.000000 - 0.869065, 0.494699, 0.000000, 0.000000 - 0.868805, 0.495154, 0.000000, 0.000000 - 0.868546, 0.495609, 0.000000, 0.000000 - 0.868286, 0.496064, 0.000000, 0.000000 - 0.868026, 0.496518, 0.000000, 0.000000 - 0.867766, 0.496973, 0.000000, 0.000000 - 0.867506, 0.497427, 0.000000, 0.000000 - 0.867245, 0.497882, 0.000000, 0.000000 - 0.866984, 0.498336, 0.000000, 0.000000 - 0.866723, 0.498790, 0.000000, 0.000000 - 0.866462, 0.499244, 0.000000, 0.000000 - 0.866200, 0.499698, 0.000000, 0.000000 - 0.865938, 0.500151, 0.000000, 0.000000 - 0.865676, 0.500605, 0.000000, 0.000000 - 0.865414, 0.501058, 0.000000, 0.000000 - 0.865151, 0.501511, 0.000000, 0.000000 - 0.864888, 0.501964, 0.000000, 0.000000 - 0.864625, 0.502417, 0.000000, 0.000000 - 0.864362, 0.502870, 0.000000, 0.000000 - 0.864099, 0.503323, 0.000000, 0.000000 - 0.863835, 0.503775, 0.000000, 0.000000 - 0.863571, 0.504228, 0.000000, 0.000000 - 0.863307, 0.504680, 0.000000, 0.000000 - 0.863042, 0.505132, 0.000000, 0.000000 - 0.862777, 0.505584, 0.000000, 0.000000 - 0.862512, 0.506036, 0.000000, 0.000000 - 0.862247, 0.506487, 0.000000, 0.000000 - 0.861982, 0.506939, 0.000000, 0.000000 - 0.861716, 0.507390, 0.000000, 0.000000 - 0.861450, 0.507842, 0.000000, 0.000000 - 0.861184, 0.508293, 0.000000, 0.000000 - 0.860918, 0.508744, 0.000000, 0.000000 - 0.860651, 0.509195, 0.000000, 0.000000 - 0.860385, 0.509645, 0.000000, 0.000000 - 0.860117, 0.510096, 0.000000, 0.000000 - 0.859850, 0.510546, 0.000000, 0.000000 - 0.859583, 0.510997, 0.000000, 0.000000 - 0.859315, 0.511447, 0.000000, 0.000000 - 0.859047, 0.511897, 0.000000, 0.000000 - 0.858779, 0.512347, 0.000000, 0.000000 - 0.858510, 0.512797, 0.000000, 0.000000 - 0.858241, 0.513246, 0.000000, 0.000000 - 0.857973, 0.513696, 0.000000, 0.000000 - 0.857703, 0.514145, 0.000000, 0.000000 - 0.857434, 0.514594, 0.000000, 0.000000 - 0.857164, 0.515043, 0.000000, 0.000000 - 0.856894, 0.515492, 0.000000, 0.000000 - 0.856624, 0.515941, 0.000000, 0.000000 - 0.856354, 0.516389, 0.000000, 0.000000 - 0.856083, 0.516838, 0.000000, 0.000000 - 0.855813, 0.517286, 0.000000, 0.000000 - 0.855541, 0.517734, 0.000000, 0.000000 - 0.855270, 0.518182, 0.000000, 0.000000 - 0.854999, 0.518630, 0.000000, 0.000000 - 0.854727, 0.519078, 0.000000, 0.000000 - 0.854455, 0.519526, 0.000000, 0.000000 - 0.854183, 0.519973, 0.000000, 0.000000 - 0.853910, 0.520420, 0.000000, 0.000000 - 0.853638, 0.520868, 0.000000, 0.000000 - 0.853365, 0.521315, 0.000000, 0.000000 - 0.853091, 0.521761, 0.000000, 0.000000 - 0.852818, 0.522208, 0.000000, 0.000000 - 0.852544, 0.522655, 0.000000, 0.000000 - 0.852270, 0.523101, 0.000000, 0.000000 - 0.851996, 0.523548, 0.000000, 0.000000 - 0.851722, 0.523994, 0.000000, 0.000000 - 0.851447, 0.524440, 0.000000, 0.000000 - 0.851173, 0.524886, 0.000000, 0.000000 - 0.850898, 0.525332, 0.000000, 0.000000 - 0.850622, 0.525777, 0.000000, 0.000000 - 0.850347, 0.526223, 0.000000, 0.000000 - 0.850071, 0.526668, 0.000000, 0.000000 - 0.849795, 0.527113, 0.000000, 0.000000 - 0.849519, 0.527558, 0.000000, 0.000000 - 0.849243, 0.528003, 0.000000, 0.000000 - 0.848966, 0.528448, 0.000000, 0.000000 - 0.848689, 0.528892, 0.000000, 0.000000 - 0.848412, 0.529337, 0.000000, 0.000000 - 0.848134, 0.529781, 0.000000, 0.000000 - 0.847857, 0.530225, 0.000000, 0.000000 - 0.847579, 0.530669, 0.000000, 0.000000 - 0.847301, 0.531113, 0.000000, 0.000000 - 0.847023, 0.531557, 0.000000, 0.000000 - 0.846744, 0.532000, 0.000000, 0.000000 - 0.846465, 0.532444, 0.000000, 0.000000 - 0.846186, 0.532887, 0.000000, 0.000000 - 0.845907, 0.533330, 0.000000, 0.000000 - 0.845628, 0.533773, 0.000000, 0.000000 - 0.845348, 0.534216, 0.000000, 0.000000 - 0.845068, 0.534659, 0.000000, 0.000000 - 0.844788, 0.535101, 0.000000, 0.000000 - 0.844507, 0.535544, 0.000000, 0.000000 - 0.844227, 0.535986, 0.000000, 0.000000 - 0.843946, 0.536428, 0.000000, 0.000000 - 0.843665, 0.536870, 0.000000, 0.000000 - 0.843384, 0.537312, 0.000000, 0.000000 - 0.843102, 0.537754, 0.000000, 0.000000 - 0.842820, 0.538195, 0.000000, 0.000000 - 0.842538, 0.538636, 0.000000, 0.000000 - 0.842256, 0.539078, 0.000000, 0.000000 - 0.841974, 0.539519, 0.000000, 0.000000 - 0.841691, 0.539960, 0.000000, 0.000000 - 0.841408, 0.540400, 0.000000, 0.000000 - 0.841125, 0.540841, 0.000000, 0.000000 - 0.840841, 0.541282, 0.000000, 0.000000 - 0.840558, 0.541722, 0.000000, 0.000000 - 0.840274, 0.542162, 0.000000, 0.000000 - 0.839990, 0.542602, 0.000000, 0.000000 - 0.839706, 0.543042, 0.000000, 0.000000 - 0.839421, 0.543482, 0.000000, 0.000000 - 0.839136, 0.543921, 0.000000, 0.000000 - 0.838851, 0.544361, 0.000000, 0.000000 - 0.838566, 0.544800, 0.000000, 0.000000 - 0.838280, 0.545239, 0.000000, 0.000000 - 0.837995, 0.545678, 0.000000, 0.000000 - 0.837709, 0.546117, 0.000000, 0.000000 - 0.837423, 0.546556, 0.000000, 0.000000 - 0.837136, 0.546994, 0.000000, 0.000000 - 0.836850, 0.547433, 0.000000, 0.000000 - 0.836563, 0.547871, 0.000000, 0.000000 - 0.836276, 0.548309, 0.000000, 0.000000 - 0.835988, 0.548747, 0.000000, 0.000000 - 0.835701, 0.549185, 0.000000, 0.000000 - 0.835413, 0.549622, 0.000000, 0.000000 - 0.835125, 0.550060, 0.000000, 0.000000 - 0.834837, 0.550497, 0.000000, 0.000000 - 0.834549, 0.550934, 0.000000, 0.000000 - 0.834260, 0.551371, 0.000000, 0.000000 - 0.833971, 0.551808, 0.000000, 0.000000 - 0.833682, 0.552245, 0.000000, 0.000000 - 0.833392, 0.552682, 0.000000, 0.000000 - 0.833103, 0.553118, 0.000000, 0.000000 - 0.832813, 0.553554, 0.000000, 0.000000 - 0.832523, 0.553991, 0.000000, 0.000000 - 0.832233, 0.554427, 0.000000, 0.000000 - 0.831942, 0.554862, 0.000000, 0.000000 - 0.831651, 0.555298, 0.000000, 0.000000 - 0.831360, 0.555734, 0.000000, 0.000000 - 0.831069, 0.556169, 0.000000, 0.000000 - 0.830778, 0.556604, 0.000000, 0.000000 - 0.830486, 0.557039, 0.000000, 0.000000 - 0.830194, 0.557474, 0.000000, 0.000000 - 0.829902, 0.557909, 0.000000, 0.000000 - 0.829610, 0.558343, 0.000000, 0.000000 - 0.829317, 0.558778, 0.000000, 0.000000 - 0.829025, 0.559212, 0.000000, 0.000000 - 0.828732, 0.559646, 0.000000, 0.000000 - 0.828438, 0.560080, 0.000000, 0.000000 - 0.828145, 0.560514, 0.000000, 0.000000 - 0.827851, 0.560948, 0.000000, 0.000000 - 0.827557, 0.561381, 0.000000, 0.000000 - 0.827263, 0.561815, 0.000000, 0.000000 - 0.826969, 0.562248, 0.000000, 0.000000 - 0.826674, 0.562681, 0.000000, 0.000000 - 0.826379, 0.563114, 0.000000, 0.000000 - 0.826084, 0.563547, 0.000000, 0.000000 - 0.825789, 0.563979, 0.000000, 0.000000 - 0.825493, 0.564412, 0.000000, 0.000000 - 0.825198, 0.564844, 0.000000, 0.000000 - 0.824902, 0.565276, 0.000000, 0.000000 - 0.824606, 0.565708, 0.000000, 0.000000 - 0.824309, 0.566140, 0.000000, 0.000000 - 0.824012, 0.566572, 0.000000, 0.000000 - 0.823716, 0.567003, 0.000000, 0.000000 - 0.823418, 0.567435, 0.000000, 0.000000 - 0.823121, 0.567866, 0.000000, 0.000000 - 0.822824, 0.568297, 0.000000, 0.000000 - 0.822526, 0.568728, 0.000000, 0.000000 - 0.822228, 0.569158, 0.000000, 0.000000 - 0.821930, 0.569589, 0.000000, 0.000000 - 0.821631, 0.570019, 0.000000, 0.000000 - 0.821333, 0.570450, 0.000000, 0.000000 - 0.821034, 0.570880, 0.000000, 0.000000 - 0.820734, 0.571310, 0.000000, 0.000000 - 0.820435, 0.571740, 0.000000, 0.000000 - 0.820136, 0.572169, 0.000000, 0.000000 - 0.819836, 0.572599, 0.000000, 0.000000 - 0.819536, 0.573028, 0.000000, 0.000000 - 0.819235, 0.573457, 0.000000, 0.000000 - 0.818935, 0.573886, 0.000000, 0.000000 - 0.818634, 0.574315, 0.000000, 0.000000 - 0.818333, 0.574744, 0.000000, 0.000000 - 0.818032, 0.575172, 0.000000, 0.000000 - 0.817731, 0.575601, 0.000000, 0.000000 - 0.817429, 0.576029, 0.000000, 0.000000 - 0.817127, 0.576457, 0.000000, 0.000000 - 0.816825, 0.576885, 0.000000, 0.000000 - 0.816523, 0.577313, 0.000000, 0.000000 - 0.816221, 0.577740, 0.000000, 0.000000 - 0.815918, 0.578168, 0.000000, 0.000000 - 0.815615, 0.578595, 0.000000, 0.000000 - 0.815312, 0.579022, 0.000000, 0.000000 - 0.815008, 0.579449, 0.000000, 0.000000 - 0.814705, 0.579876, 0.000000, 0.000000 - 0.814401, 0.580303, 0.000000, 0.000000 - 0.814097, 0.580729, 0.000000, 0.000000 - 0.813793, 0.581155, 0.000000, 0.000000 - 0.813488, 0.581581, 0.000000, 0.000000 - 0.813183, 0.582008, 0.000000, 0.000000 - 0.812878, 0.582433, 0.000000, 0.000000 - 0.812573, 0.582859, 0.000000, 0.000000 - 0.812268, 0.583285, 0.000000, 0.000000 - 0.811962, 0.583710, 0.000000, 0.000000 - 0.811656, 0.584135, 0.000000, 0.000000 - 0.811350, 0.584560, 0.000000, 0.000000 - 0.811044, 0.584985, 0.000000, 0.000000 - 0.810738, 0.585410, 0.000000, 0.000000 - 0.810431, 0.585834, 0.000000, 0.000000 - 0.810124, 0.586259, 0.000000, 0.000000 - 0.809817, 0.586683, 0.000000, 0.000000 - 0.809509, 0.587107, 0.000000, 0.000000 - 0.809202, 0.587531, 0.000000, 0.000000 - 0.808894, 0.587955, 0.000000, 0.000000 - 0.808586, 0.588378, 0.000000, 0.000000 - 0.808277, 0.588802, 0.000000, 0.000000 - 0.807969, 0.589225, 0.000000, 0.000000 - 0.807660, 0.589648, 0.000000, 0.000000 - 0.807351, 0.590071, 0.000000, 0.000000 - 0.807042, 0.590494, 0.000000, 0.000000 - 0.806733, 0.590917, 0.000000, 0.000000 - 0.806423, 0.591339, 0.000000, 0.000000 - 0.806113, 0.591761, 0.000000, 0.000000 - 0.805803, 0.592183, 0.000000, 0.000000 - 0.805493, 0.592605, 0.000000, 0.000000 - 0.805182, 0.593027, 0.000000, 0.000000 - 0.804872, 0.593449, 0.000000, 0.000000 - 0.804561, 0.593870, 0.000000, 0.000000 - 0.804250, 0.594292, 0.000000, 0.000000 - 0.803938, 0.594713, 0.000000, 0.000000 - 0.803627, 0.595134, 0.000000, 0.000000 - 0.803315, 0.595555, 0.000000, 0.000000 - 0.803003, 0.595975, 0.000000, 0.000000 - 0.802690, 0.596396, 0.000000, 0.000000 - 0.802378, 0.596816, 0.000000, 0.000000 - 0.802065, 0.597236, 0.000000, 0.000000 - 0.801752, 0.597656, 0.000000, 0.000000 - 0.801439, 0.598076, 0.000000, 0.000000 - 0.801126, 0.598496, 0.000000, 0.000000 - 0.800812, 0.598915, 0.000000, 0.000000 - 0.800498, 0.599335, 0.000000, 0.000000 - 0.800184, 0.599754, 0.000000, 0.000000 - 0.799870, 0.600173, 0.000000, 0.000000 - 0.799556, 0.600592, 0.000000, 0.000000 - 0.799241, 0.601011, 0.000000, 0.000000 - 0.798926, 0.601429, 0.000000, 0.000000 - 0.798611, 0.601848, 0.000000, 0.000000 - 0.798296, 0.602266, 0.000000, 0.000000 - 0.797980, 0.602684, 0.000000, 0.000000 - 0.797664, 0.603102, 0.000000, 0.000000 - 0.797348, 0.603519, 0.000000, 0.000000 - 0.797032, 0.603937, 0.000000, 0.000000 - 0.796716, 0.604354, 0.000000, 0.000000 - 0.796399, 0.604772, 0.000000, 0.000000 - 0.796082, 0.605189, 0.000000, 0.000000 - 0.795765, 0.605605, 0.000000, 0.000000 - 0.795448, 0.606022, 0.000000, 0.000000 - 0.795130, 0.606439, 0.000000, 0.000000 - 0.794812, 0.606855, 0.000000, 0.000000 - 0.794494, 0.607271, 0.000000, 0.000000 - 0.794176, 0.607687, 0.000000, 0.000000 - 0.793858, 0.608103, 0.000000, 0.000000 - 0.793539, 0.608519, 0.000000, 0.000000 - 0.793220, 0.608935, 0.000000, 0.000000 - 0.792901, 0.609350, 0.000000, 0.000000 - 0.792582, 0.609765, 0.000000, 0.000000 - 0.792263, 0.610180, 0.000000, 0.000000 - 0.791943, 0.610595, 0.000000, 0.000000 - 0.791623, 0.611010, 0.000000, 0.000000 - 0.791303, 0.611424, 0.000000, 0.000000 - 0.790983, 0.611839, 0.000000, 0.000000 - 0.790662, 0.612253, 0.000000, 0.000000 - 0.790341, 0.612667, 0.000000, 0.000000 - 0.790020, 0.613081, 0.000000, 0.000000 - 0.789699, 0.613495, 0.000000, 0.000000 - 0.789377, 0.613908, 0.000000, 0.000000 - 0.789056, 0.614321, 0.000000, 0.000000 - 0.788734, 0.614735, 0.000000, 0.000000 - 0.788412, 0.615148, 0.000000, 0.000000 - 0.788090, 0.615561, 0.000000, 0.000000 - 0.787767, 0.615973, 0.000000, 0.000000 - 0.787444, 0.616386, 0.000000, 0.000000 - 0.787121, 0.616798, 0.000000, 0.000000 - 0.786798, 0.617210, 0.000000, 0.000000 - 0.786475, 0.617622, 0.000000, 0.000000 - 0.786151, 0.618034, 0.000000, 0.000000 - 0.785827, 0.618446, 0.000000, 0.000000 - 0.785503, 0.618857, 0.000000, 0.000000 - 0.785179, 0.619269, 0.000000, 0.000000 - 0.784855, 0.619680, 0.000000, 0.000000 - 0.784530, 0.620091, 0.000000, 0.000000 - 0.784205, 0.620502, 0.000000, 0.000000 - 0.783880, 0.620912, 0.000000, 0.000000 - 0.783555, 0.621323, 0.000000, 0.000000 - 0.783229, 0.621733, 0.000000, 0.000000 - 0.782903, 0.622143, 0.000000, 0.000000 - 0.782577, 0.622553, 0.000000, 0.000000 - 0.782251, 0.622963, 0.000000, 0.000000 - 0.781925, 0.623373, 0.000000, 0.000000 - 0.781598, 0.623782, 0.000000, 0.000000 - 0.781271, 0.624192, 0.000000, 0.000000 - 0.780944, 0.624601, 0.000000, 0.000000 - 0.780617, 0.625010, 0.000000, 0.000000 - 0.780290, 0.625418, 0.000000, 0.000000 - 0.779962, 0.625827, 0.000000, 0.000000 - 0.779634, 0.626235, 0.000000, 0.000000 - 0.779306, 0.626644, 0.000000, 0.000000 - 0.778978, 0.627052, 0.000000, 0.000000 - 0.778649, 0.627460, 0.000000, 0.000000 - 0.778320, 0.627867, 0.000000, 0.000000 - 0.777991, 0.628275, 0.000000, 0.000000 - 0.777662, 0.628682, 0.000000, 0.000000 - 0.777333, 0.629090, 0.000000, 0.000000 - 0.777003, 0.629497, 0.000000, 0.000000 - 0.776673, 0.629904, 0.000000, 0.000000 - 0.776343, 0.630310, 0.000000, 0.000000 - 0.776013, 0.630717, 0.000000, 0.000000 - 0.775683, 0.631123, 0.000000, 0.000000 - 0.775352, 0.631529, 0.000000, 0.000000 - 0.775021, 0.631935, 0.000000, 0.000000 - 0.774690, 0.632341, 0.000000, 0.000000 - 0.774359, 0.632747, 0.000000, 0.000000 - 0.774027, 0.633153, 0.000000, 0.000000 - 0.773695, 0.633558, 0.000000, 0.000000 - 0.773363, 0.633963, 0.000000, 0.000000 - 0.773031, 0.634368, 0.000000, 0.000000 - 0.772699, 0.634773, 0.000000, 0.000000 - 0.772366, 0.635177, 0.000000, 0.000000 - 0.772033, 0.635582, 0.000000, 0.000000 - 0.771700, 0.635986, 0.000000, 0.000000 - 0.771367, 0.636390, 0.000000, 0.000000 - 0.771034, 0.636794, 0.000000, 0.000000 - 0.770700, 0.637198, 0.000000, 0.000000 - 0.770366, 0.637602, 0.000000, 0.000000 - 0.770032, 0.638005, 0.000000, 0.000000 - 0.769698, 0.638408, 0.000000, 0.000000 - 0.769363, 0.638811, 0.000000, 0.000000 - 0.769029, 0.639214, 0.000000, 0.000000 - 0.768694, 0.639617, 0.000000, 0.000000 - 0.768359, 0.640019, 0.000000, 0.000000 - 0.768023, 0.640422, 0.000000, 0.000000 - 0.767688, 0.640824, 0.000000, 0.000000 - 0.767352, 0.641226, 0.000000, 0.000000 - 0.767016, 0.641628, 0.000000, 0.000000 - 0.766680, 0.642029, 0.000000, 0.000000 - 0.766344, 0.642431, 0.000000, 0.000000 - 0.766007, 0.642832, 0.000000, 0.000000 - 0.765670, 0.643233, 0.000000, 0.000000 - 0.765333, 0.643634, 0.000000, 0.000000 - 0.764996, 0.644035, 0.000000, 0.000000 - 0.764659, 0.644436, 0.000000, 0.000000 - 0.764321, 0.644836, 0.000000, 0.000000 - 0.763983, 0.645236, 0.000000, 0.000000 - 0.763645, 0.645636, 0.000000, 0.000000 - 0.763307, 0.646036, 0.000000, 0.000000 - 0.762968, 0.646436, 0.000000, 0.000000 - 0.762630, 0.646835, 0.000000, 0.000000 - 0.762291, 0.647235, 0.000000, 0.000000 - 0.761952, 0.647634, 0.000000, 0.000000 - 0.761612, 0.648033, 0.000000, 0.000000 - 0.761273, 0.648432, 0.000000, 0.000000 - 0.760933, 0.648830, 0.000000, 0.000000 - 0.760593, 0.649229, 0.000000, 0.000000 - 0.760253, 0.649627, 0.000000, 0.000000 - 0.759913, 0.650025, 0.000000, 0.000000 - 0.759572, 0.650423, 0.000000, 0.000000 - 0.759231, 0.650821, 0.000000, 0.000000 - 0.758890, 0.651219, 0.000000, 0.000000 - 0.758549, 0.651616, 0.000000, 0.000000 - 0.758208, 0.652013, 0.000000, 0.000000 - 0.757866, 0.652410, 0.000000, 0.000000 - 0.757524, 0.652807, 0.000000, 0.000000 - 0.757182, 0.653204, 0.000000, 0.000000 - 0.756840, 0.653600, 0.000000, 0.000000 - 0.756497, 0.653997, 0.000000, 0.000000 - 0.756155, 0.654393, 0.000000, 0.000000 - 0.755812, 0.654789, 0.000000, 0.000000 - 0.755469, 0.655185, 0.000000, 0.000000 - 0.755126, 0.655580, 0.000000, 0.000000 - 0.754782, 0.655976, 0.000000, 0.000000 - 0.754438, 0.656371, 0.000000, 0.000000 - 0.754095, 0.656766, 0.000000, 0.000000 - 0.753750, 0.657161, 0.000000, 0.000000 - 0.753406, 0.657555, 0.000000, 0.000000 - 0.753062, 0.657950, 0.000000, 0.000000 - 0.752717, 0.658344, 0.000000, 0.000000 - 0.752372, 0.658739, 0.000000, 0.000000 - 0.752027, 0.659132, 0.000000, 0.000000 - 0.751682, 0.659526, 0.000000, 0.000000 - 0.751336, 0.659920, 0.000000, 0.000000 - 0.750990, 0.660313, 0.000000, 0.000000 - 0.750644, 0.660707, 0.000000, 0.000000 - 0.750298, 0.661100, 0.000000, 0.000000 - 0.749952, 0.661493, 0.000000, 0.000000 - 0.749605, 0.661885, 0.000000, 0.000000 - 0.749258, 0.662278, 0.000000, 0.000000 - 0.748911, 0.662670, 0.000000, 0.000000 - 0.748564, 0.663062, 0.000000, 0.000000 - 0.748217, 0.663454, 0.000000, 0.000000 - 0.747869, 0.663846, 0.000000, 0.000000 - 0.747521, 0.664238, 0.000000, 0.000000 - 0.747173, 0.664629, 0.000000, 0.000000 - 0.746825, 0.665020, 0.000000, 0.000000 - 0.746477, 0.665412, 0.000000, 0.000000 - 0.746128, 0.665802, 0.000000, 0.000000 - 0.745779, 0.666193, 0.000000, 0.000000 - 0.745430, 0.666584, 0.000000, 0.000000 - 0.745081, 0.666974, 0.000000, 0.000000 - 0.744732, 0.667364, 0.000000, 0.000000 - 0.744382, 0.667754, 0.000000, 0.000000 - 0.744032, 0.668144, 0.000000, 0.000000 - 0.743682, 0.668534, 0.000000, 0.000000 - 0.743332, 0.668923, 0.000000, 0.000000 - 0.742981, 0.669312, 0.000000, 0.000000 - 0.742631, 0.669701, 0.000000, 0.000000 - 0.742280, 0.670090, 0.000000, 0.000000 - 0.741929, 0.670479, 0.000000, 0.000000 - 0.741577, 0.670867, 0.000000, 0.000000 - 0.741226, 0.671256, 0.000000, 0.000000 - 0.740874, 0.671644, 0.000000, 0.000000 - 0.740522, 0.672032, 0.000000, 0.000000 - 0.740170, 0.672420, 0.000000, 0.000000 - 0.739818, 0.672807, 0.000000, 0.000000 - 0.739465, 0.673195, 0.000000, 0.000000 - 0.739113, 0.673582, 0.000000, 0.000000 - 0.738760, 0.673969, 0.000000, 0.000000 - 0.738407, 0.674356, 0.000000, 0.000000 - 0.738053, 0.674742, 0.000000, 0.000000 - 0.737700, 0.675129, 0.000000, 0.000000 - 0.737346, 0.675515, 0.000000, 0.000000 - 0.736992, 0.675901, 0.000000, 0.000000 - 0.736638, 0.676287, 0.000000, 0.000000 - 0.736284, 0.676673, 0.000000, 0.000000 - 0.735929, 0.677058, 0.000000, 0.000000 - 0.735575, 0.677444, 0.000000, 0.000000 - 0.735220, 0.677829, 0.000000, 0.000000 - 0.734864, 0.678214, 0.000000, 0.000000 - 0.734509, 0.678599, 0.000000, 0.000000 - 0.734154, 0.678983, 0.000000, 0.000000 - 0.733798, 0.679368, 0.000000, 0.000000 - 0.733442, 0.679752, 0.000000, 0.000000 - 0.733086, 0.680136, 0.000000, 0.000000 - 0.732729, 0.680520, 0.000000, 0.000000 - 0.732373, 0.680904, 0.000000, 0.000000 - 0.732016, 0.681287, 0.000000, 0.000000 - 0.731659, 0.681671, 0.000000, 0.000000 - 0.731302, 0.682054, 0.000000, 0.000000 - 0.730945, 0.682437, 0.000000, 0.000000 - 0.730587, 0.682819, 0.000000, 0.000000 - 0.730229, 0.683202, 0.000000, 0.000000 - 0.729872, 0.683584, 0.000000, 0.000000 - 0.729513, 0.683967, 0.000000, 0.000000 - 0.729155, 0.684349, 0.000000, 0.000000 - 0.728797, 0.684730, 0.000000, 0.000000 - 0.728438, 0.685112, 0.000000, 0.000000 - 0.728079, 0.685493, 0.000000, 0.000000 - 0.727720, 0.685875, 0.000000, 0.000000 - 0.727360, 0.686256, 0.000000, 0.000000 - 0.727001, 0.686637, 0.000000, 0.000000 - 0.726641, 0.687017, 0.000000, 0.000000 - 0.726281, 0.687398, 0.000000, 0.000000 - 0.725921, 0.687778, 0.000000, 0.000000 - 0.725561, 0.688158, 0.000000, 0.000000 - 0.725200, 0.688538, 0.000000, 0.000000 - 0.724839, 0.688918, 0.000000, 0.000000 - 0.724478, 0.689297, 0.000000, 0.000000 - 0.724117, 0.689677, 0.000000, 0.000000 - 0.723756, 0.690056, 0.000000, 0.000000 - 0.723394, 0.690435, 0.000000, 0.000000 - 0.723033, 0.690814, 0.000000, 0.000000 - 0.722671, 0.691192, 0.000000, 0.000000 - 0.722309, 0.691571, 0.000000, 0.000000 - 0.721946, 0.691949, 0.000000, 0.000000 - 0.721584, 0.692327, 0.000000, 0.000000 - 0.721221, 0.692705, 0.000000, 0.000000 - 0.720858, 0.693083, 0.000000, 0.000000 - 0.720495, 0.693460, 0.000000, 0.000000 - 0.720132, 0.693837, 0.000000, 0.000000 - 0.719768, 0.694214, 0.000000, 0.000000 - 0.719404, 0.694591, 0.000000, 0.000000 - 0.719041, 0.694968, 0.000000, 0.000000 - 0.718676, 0.695345, 0.000000, 0.000000 - 0.718312, 0.695721, 0.000000, 0.000000 - 0.717948, 0.696097, 0.000000, 0.000000 - 0.717583, 0.696473, 0.000000, 0.000000 - 0.717218, 0.696849, 0.000000, 0.000000 - 0.716853, 0.697224, 0.000000, 0.000000 - 0.716488, 0.697600, 0.000000, 0.000000 - 0.716122, 0.697975, 0.000000, 0.000000 - 0.715757, 0.698350, 0.000000, 0.000000 - 0.715391, 0.698725, 0.000000, 0.000000 - 0.715025, 0.699099, 0.000000, 0.000000 - 0.714658, 0.699474, 0.000000, 0.000000 - 0.714292, 0.699848, 0.000000, 0.000000 - 0.713925, 0.700222, 0.000000, 0.000000 - 0.713558, 0.700596, 0.000000, 0.000000 - 0.713191, 0.700969, 0.000000, 0.000000 - 0.712824, 0.701343, 0.000000, 0.000000 - 0.712457, 0.701716, 0.000000, 0.000000 - 0.712089, 0.702089, 0.000000, 0.000000 - 0.711721, 0.702462, 0.000000, 0.000000 - 0.711353, 0.702835, 0.000000, 0.000000 - 0.710985, 0.703207, 0.000000, 0.000000 - 0.710616, 0.703580, 0.000000, 0.000000 - 0.710248, 0.703952, 0.000000, 0.000000 - 0.709879, 0.704324, 0.000000, 0.000000 - 0.709510, 0.704695, 0.000000, 0.000000 - 0.709141, 0.705067, 0.000000, 0.000000 - 0.708771, 0.705438, 0.000000, 0.000000 - 0.708402, 0.705809, 0.000000, 0.000000 - 0.708032, 0.706180, 0.000000, 0.000000 - 0.707662, 0.706551, 0.000000, 0.000000 - 0.707292, 0.706922, 0.000000, 0.000000 - 0.706922, 0.707292, 0.000000, 0.000000 - 0.706551, 0.707662, 0.000000, 0.000000 - 0.706180, 0.708032, 0.000000, 0.000000 - 0.705809, 0.708402, 0.000000, 0.000000 - 0.705438, 0.708771, 0.000000, 0.000000 - 0.705067, 0.709141, 0.000000, 0.000000 - 0.704695, 0.709510, 0.000000, 0.000000 - 0.704324, 0.709879, 0.000000, 0.000000 - 0.703952, 0.710248, 0.000000, 0.000000 - 0.703580, 0.710616, 0.000000, 0.000000 - 0.703207, 0.710985, 0.000000, 0.000000 - 0.702835, 0.711353, 0.000000, 0.000000 - 0.702462, 0.711721, 0.000000, 0.000000 - 0.702089, 0.712089, 0.000000, 0.000000 - 0.701716, 0.712457, 0.000000, 0.000000 - 0.701343, 0.712824, 0.000000, 0.000000 - 0.700969, 0.713191, 0.000000, 0.000000 - 0.700596, 0.713558, 0.000000, 0.000000 - 0.700222, 0.713925, 0.000000, 0.000000 - 0.699848, 0.714292, 0.000000, 0.000000 - 0.699474, 0.714658, 0.000000, 0.000000 - 0.699099, 0.715025, 0.000000, 0.000000 - 0.698725, 0.715391, 0.000000, 0.000000 - 0.698350, 0.715757, 0.000000, 0.000000 - 0.697975, 0.716122, 0.000000, 0.000000 - 0.697600, 0.716488, 0.000000, 0.000000 - 0.697224, 0.716853, 0.000000, 0.000000 - 0.696849, 0.717218, 0.000000, 0.000000 - 0.696473, 0.717583, 0.000000, 0.000000 - 0.696097, 0.717948, 0.000000, 0.000000 - 0.695721, 0.718312, 0.000000, 0.000000 - 0.695345, 0.718676, 0.000000, 0.000000 - 0.694968, 0.719041, 0.000000, 0.000000 - 0.694591, 0.719404, 0.000000, 0.000000 - 0.694214, 0.719768, 0.000000, 0.000000 - 0.693837, 0.720132, 0.000000, 0.000000 - 0.693460, 0.720495, 0.000000, 0.000000 - 0.693083, 0.720858, 0.000000, 0.000000 - 0.692705, 0.721221, 0.000000, 0.000000 - 0.692327, 0.721584, 0.000000, 0.000000 - 0.691949, 0.721946, 0.000000, 0.000000 - 0.691571, 0.722309, 0.000000, 0.000000 - 0.691192, 0.722671, 0.000000, 0.000000 - 0.690814, 0.723033, 0.000000, 0.000000 - 0.690435, 0.723394, 0.000000, 0.000000 - 0.690056, 0.723756, 0.000000, 0.000000 - 0.689677, 0.724117, 0.000000, 0.000000 - 0.689297, 0.724478, 0.000000, 0.000000 - 0.688918, 0.724839, 0.000000, 0.000000 - 0.688538, 0.725200, 0.000000, 0.000000 - 0.688158, 0.725561, 0.000000, 0.000000 - 0.687778, 0.725921, 0.000000, 0.000000 - 0.687398, 0.726281, 0.000000, 0.000000 - 0.687017, 0.726641, 0.000000, 0.000000 - 0.686637, 0.727001, 0.000000, 0.000000 - 0.686256, 0.727360, 0.000000, 0.000000 - 0.685875, 0.727720, 0.000000, 0.000000 - 0.685493, 0.728079, 0.000000, 0.000000 - 0.685112, 0.728438, 0.000000, 0.000000 - 0.684730, 0.728797, 0.000000, 0.000000 - 0.684349, 0.729155, 0.000000, 0.000000 - 0.683967, 0.729513, 0.000000, 0.000000 - 0.683584, 0.729872, 0.000000, 0.000000 - 0.683202, 0.730229, 0.000000, 0.000000 - 0.682819, 0.730587, 0.000000, 0.000000 - 0.682437, 0.730945, 0.000000, 0.000000 - 0.682054, 0.731302, 0.000000, 0.000000 - 0.681671, 0.731659, 0.000000, 0.000000 - 0.681287, 0.732016, 0.000000, 0.000000 - 0.680904, 0.732373, 0.000000, 0.000000 - 0.680520, 0.732729, 0.000000, 0.000000 - 0.680136, 0.733086, 0.000000, 0.000000 - 0.679752, 0.733442, 0.000000, 0.000000 - 0.679368, 0.733798, 0.000000, 0.000000 - 0.678983, 0.734154, 0.000000, 0.000000 - 0.678599, 0.734509, 0.000000, 0.000000 - 0.678214, 0.734864, 0.000000, 0.000000 - 0.677829, 0.735220, 0.000000, 0.000000 - 0.677444, 0.735575, 0.000000, 0.000000 - 0.677058, 0.735929, 0.000000, 0.000000 - 0.676673, 0.736284, 0.000000, 0.000000 - 0.676287, 0.736638, 0.000000, 0.000000 - 0.675901, 0.736992, 0.000000, 0.000000 - 0.675515, 0.737346, 0.000000, 0.000000 - 0.675129, 0.737700, 0.000000, 0.000000 - 0.674742, 0.738053, 0.000000, 0.000000 - 0.674356, 0.738407, 0.000000, 0.000000 - 0.673969, 0.738760, 0.000000, 0.000000 - 0.673582, 0.739113, 0.000000, 0.000000 - 0.673195, 0.739465, 0.000000, 0.000000 - 0.672807, 0.739818, 0.000000, 0.000000 - 0.672420, 0.740170, 0.000000, 0.000000 - 0.672032, 0.740522, 0.000000, 0.000000 - 0.671644, 0.740874, 0.000000, 0.000000 - 0.671256, 0.741226, 0.000000, 0.000000 - 0.670867, 0.741577, 0.000000, 0.000000 - 0.670479, 0.741929, 0.000000, 0.000000 - 0.670090, 0.742280, 0.000000, 0.000000 - 0.669701, 0.742631, 0.000000, 0.000000 - 0.669312, 0.742981, 0.000000, 0.000000 - 0.668923, 0.743332, 0.000000, 0.000000 - 0.668534, 0.743682, 0.000000, 0.000000 - 0.668144, 0.744032, 0.000000, 0.000000 - 0.667754, 0.744382, 0.000000, 0.000000 - 0.667364, 0.744732, 0.000000, 0.000000 - 0.666974, 0.745081, 0.000000, 0.000000 - 0.666584, 0.745430, 0.000000, 0.000000 - 0.666193, 0.745779, 0.000000, 0.000000 - 0.665802, 0.746128, 0.000000, 0.000000 - 0.665412, 0.746477, 0.000000, 0.000000 - 0.665020, 0.746825, 0.000000, 0.000000 - 0.664629, 0.747173, 0.000000, 0.000000 - 0.664238, 0.747521, 0.000000, 0.000000 - 0.663846, 0.747869, 0.000000, 0.000000 - 0.663454, 0.748217, 0.000000, 0.000000 - 0.663062, 0.748564, 0.000000, 0.000000 - 0.662670, 0.748911, 0.000000, 0.000000 - 0.662278, 0.749258, 0.000000, 0.000000 - 0.661885, 0.749605, 0.000000, 0.000000 - 0.661493, 0.749952, 0.000000, 0.000000 - 0.661100, 0.750298, 0.000000, 0.000000 - 0.660707, 0.750644, 0.000000, 0.000000 - 0.660313, 0.750990, 0.000000, 0.000000 - 0.659920, 0.751336, 0.000000, 0.000000 - 0.659526, 0.751682, 0.000000, 0.000000 - 0.659132, 0.752027, 0.000000, 0.000000 - 0.658739, 0.752372, 0.000000, 0.000000 - 0.658344, 0.752717, 0.000000, 0.000000 - 0.657950, 0.753062, 0.000000, 0.000000 - 0.657555, 0.753406, 0.000000, 0.000000 - 0.657161, 0.753750, 0.000000, 0.000000 - 0.656766, 0.754095, 0.000000, 0.000000 - 0.656371, 0.754438, 0.000000, 0.000000 - 0.655976, 0.754782, 0.000000, 0.000000 - 0.655580, 0.755126, 0.000000, 0.000000 - 0.655185, 0.755469, 0.000000, 0.000000 - 0.654789, 0.755812, 0.000000, 0.000000 - 0.654393, 0.756155, 0.000000, 0.000000 - 0.653997, 0.756497, 0.000000, 0.000000 - 0.653600, 0.756840, 0.000000, 0.000000 - 0.653204, 0.757182, 0.000000, 0.000000 - 0.652807, 0.757524, 0.000000, 0.000000 - 0.652410, 0.757866, 0.000000, 0.000000 - 0.652013, 0.758208, 0.000000, 0.000000 - 0.651616, 0.758549, 0.000000, 0.000000 - 0.651219, 0.758890, 0.000000, 0.000000 - 0.650821, 0.759231, 0.000000, 0.000000 - 0.650423, 0.759572, 0.000000, 0.000000 - 0.650025, 0.759913, 0.000000, 0.000000 - 0.649627, 0.760253, 0.000000, 0.000000 - 0.649229, 0.760593, 0.000000, 0.000000 - 0.648830, 0.760933, 0.000000, 0.000000 - 0.648432, 0.761273, 0.000000, 0.000000 - 0.648033, 0.761612, 0.000000, 0.000000 - 0.647634, 0.761952, 0.000000, 0.000000 - 0.647235, 0.762291, 0.000000, 0.000000 - 0.646835, 0.762630, 0.000000, 0.000000 - 0.646436, 0.762968, 0.000000, 0.000000 - 0.646036, 0.763307, 0.000000, 0.000000 - 0.645636, 0.763645, 0.000000, 0.000000 - 0.645236, 0.763983, 0.000000, 0.000000 - 0.644836, 0.764321, 0.000000, 0.000000 - 0.644436, 0.764659, 0.000000, 0.000000 - 0.644035, 0.764996, 0.000000, 0.000000 - 0.643634, 0.765333, 0.000000, 0.000000 - 0.643233, 0.765670, 0.000000, 0.000000 - 0.642832, 0.766007, 0.000000, 0.000000 - 0.642431, 0.766344, 0.000000, 0.000000 - 0.642029, 0.766680, 0.000000, 0.000000 - 0.641628, 0.767016, 0.000000, 0.000000 - 0.641226, 0.767352, 0.000000, 0.000000 - 0.640824, 0.767688, 0.000000, 0.000000 - 0.640422, 0.768023, 0.000000, 0.000000 - 0.640019, 0.768359, 0.000000, 0.000000 - 0.639617, 0.768694, 0.000000, 0.000000 - 0.639214, 0.769029, 0.000000, 0.000000 - 0.638811, 0.769363, 0.000000, 0.000000 - 0.638408, 0.769698, 0.000000, 0.000000 - 0.638005, 0.770032, 0.000000, 0.000000 - 0.637602, 0.770366, 0.000000, 0.000000 - 0.637198, 0.770700, 0.000000, 0.000000 - 0.636794, 0.771034, 0.000000, 0.000000 - 0.636390, 0.771367, 0.000000, 0.000000 - 0.635986, 0.771700, 0.000000, 0.000000 - 0.635582, 0.772033, 0.000000, 0.000000 - 0.635177, 0.772366, 0.000000, 0.000000 - 0.634773, 0.772699, 0.000000, 0.000000 - 0.634368, 0.773031, 0.000000, 0.000000 - 0.633963, 0.773363, 0.000000, 0.000000 - 0.633558, 0.773695, 0.000000, 0.000000 - 0.633153, 0.774027, 0.000000, 0.000000 - 0.632747, 0.774359, 0.000000, 0.000000 - 0.632341, 0.774690, 0.000000, 0.000000 - 0.631935, 0.775021, 0.000000, 0.000000 - 0.631529, 0.775352, 0.000000, 0.000000 - 0.631123, 0.775683, 0.000000, 0.000000 - 0.630717, 0.776013, 0.000000, 0.000000 - 0.630310, 0.776343, 0.000000, 0.000000 - 0.629904, 0.776673, 0.000000, 0.000000 - 0.629497, 0.777003, 0.000000, 0.000000 - 0.629090, 0.777333, 0.000000, 0.000000 - 0.628682, 0.777662, 0.000000, 0.000000 - 0.628275, 0.777991, 0.000000, 0.000000 - 0.627867, 0.778320, 0.000000, 0.000000 - 0.627460, 0.778649, 0.000000, 0.000000 - 0.627052, 0.778978, 0.000000, 0.000000 - 0.626644, 0.779306, 0.000000, 0.000000 - 0.626235, 0.779634, 0.000000, 0.000000 - 0.625827, 0.779962, 0.000000, 0.000000 - 0.625418, 0.780290, 0.000000, 0.000000 - 0.625010, 0.780617, 0.000000, 0.000000 - 0.624601, 0.780944, 0.000000, 0.000000 - 0.624192, 0.781271, 0.000000, 0.000000 - 0.623782, 0.781598, 0.000000, 0.000000 - 0.623373, 0.781925, 0.000000, 0.000000 - 0.622963, 0.782251, 0.000000, 0.000000 - 0.622553, 0.782577, 0.000000, 0.000000 - 0.622143, 0.782903, 0.000000, 0.000000 - 0.621733, 0.783229, 0.000000, 0.000000 - 0.621323, 0.783555, 0.000000, 0.000000 - 0.620912, 0.783880, 0.000000, 0.000000 - 0.620502, 0.784205, 0.000000, 0.000000 - 0.620091, 0.784530, 0.000000, 0.000000 - 0.619680, 0.784855, 0.000000, 0.000000 - 0.619269, 0.785179, 0.000000, 0.000000 - 0.618857, 0.785503, 0.000000, 0.000000 - 0.618446, 0.785827, 0.000000, 0.000000 - 0.618034, 0.786151, 0.000000, 0.000000 - 0.617622, 0.786475, 0.000000, 0.000000 - 0.617210, 0.786798, 0.000000, 0.000000 - 0.616798, 0.787121, 0.000000, 0.000000 - 0.616386, 0.787444, 0.000000, 0.000000 - 0.615973, 0.787767, 0.000000, 0.000000 - 0.615561, 0.788090, 0.000000, 0.000000 - 0.615148, 0.788412, 0.000000, 0.000000 - 0.614735, 0.788734, 0.000000, 0.000000 - 0.614321, 0.789056, 0.000000, 0.000000 - 0.613908, 0.789377, 0.000000, 0.000000 - 0.613495, 0.789699, 0.000000, 0.000000 - 0.613081, 0.790020, 0.000000, 0.000000 - 0.612667, 0.790341, 0.000000, 0.000000 - 0.612253, 0.790662, 0.000000, 0.000000 - 0.611839, 0.790983, 0.000000, 0.000000 - 0.611424, 0.791303, 0.000000, 0.000000 - 0.611010, 0.791623, 0.000000, 0.000000 - 0.610595, 0.791943, 0.000000, 0.000000 - 0.610180, 0.792263, 0.000000, 0.000000 - 0.609765, 0.792582, 0.000000, 0.000000 - 0.609350, 0.792901, 0.000000, 0.000000 - 0.608935, 0.793220, 0.000000, 0.000000 - 0.608519, 0.793539, 0.000000, 0.000000 - 0.608103, 0.793858, 0.000000, 0.000000 - 0.607687, 0.794176, 0.000000, 0.000000 - 0.607271, 0.794494, 0.000000, 0.000000 - 0.606855, 0.794812, 0.000000, 0.000000 - 0.606439, 0.795130, 0.000000, 0.000000 - 0.606022, 0.795448, 0.000000, 0.000000 - 0.605605, 0.795765, 0.000000, 0.000000 - 0.605189, 0.796082, 0.000000, 0.000000 - 0.604772, 0.796399, 0.000000, 0.000000 - 0.604354, 0.796716, 0.000000, 0.000000 - 0.603937, 0.797032, 0.000000, 0.000000 - 0.603519, 0.797348, 0.000000, 0.000000 - 0.603102, 0.797664, 0.000000, 0.000000 - 0.602684, 0.797980, 0.000000, 0.000000 - 0.602266, 0.798296, 0.000000, 0.000000 - 0.601848, 0.798611, 0.000000, 0.000000 - 0.601429, 0.798926, 0.000000, 0.000000 - 0.601011, 0.799241, 0.000000, 0.000000 - 0.600592, 0.799556, 0.000000, 0.000000 - 0.600173, 0.799870, 0.000000, 0.000000 - 0.599754, 0.800184, 0.000000, 0.000000 - 0.599335, 0.800498, 0.000000, 0.000000 - 0.598915, 0.800812, 0.000000, 0.000000 - 0.598496, 0.801126, 0.000000, 0.000000 - 0.598076, 0.801439, 0.000000, 0.000000 - 0.597656, 0.801752, 0.000000, 0.000000 - 0.597236, 0.802065, 0.000000, 0.000000 - 0.596816, 0.802378, 0.000000, 0.000000 - 0.596396, 0.802690, 0.000000, 0.000000 - 0.595975, 0.803003, 0.000000, 0.000000 - 0.595555, 0.803315, 0.000000, 0.000000 - 0.595134, 0.803627, 0.000000, 0.000000 - 0.594713, 0.803938, 0.000000, 0.000000 - 0.594292, 0.804250, 0.000000, 0.000000 - 0.593870, 0.804561, 0.000000, 0.000000 - 0.593449, 0.804872, 0.000000, 0.000000 - 0.593027, 0.805182, 0.000000, 0.000000 - 0.592605, 0.805493, 0.000000, 0.000000 - 0.592183, 0.805803, 0.000000, 0.000000 - 0.591761, 0.806113, 0.000000, 0.000000 - 0.591339, 0.806423, 0.000000, 0.000000 - 0.590917, 0.806733, 0.000000, 0.000000 - 0.590494, 0.807042, 0.000000, 0.000000 - 0.590071, 0.807351, 0.000000, 0.000000 - 0.589648, 0.807660, 0.000000, 0.000000 - 0.589225, 0.807969, 0.000000, 0.000000 - 0.588802, 0.808277, 0.000000, 0.000000 - 0.588378, 0.808586, 0.000000, 0.000000 - 0.587955, 0.808894, 0.000000, 0.000000 - 0.587531, 0.809202, 0.000000, 0.000000 - 0.587107, 0.809509, 0.000000, 0.000000 - 0.586683, 0.809817, 0.000000, 0.000000 - 0.586259, 0.810124, 0.000000, 0.000000 - 0.585834, 0.810431, 0.000000, 0.000000 - 0.585410, 0.810738, 0.000000, 0.000000 - 0.584985, 0.811044, 0.000000, 0.000000 - 0.584560, 0.811350, 0.000000, 0.000000 - 0.584135, 0.811656, 0.000000, 0.000000 - 0.583710, 0.811962, 0.000000, 0.000000 - 0.583285, 0.812268, 0.000000, 0.000000 - 0.582859, 0.812573, 0.000000, 0.000000 - 0.582433, 0.812878, 0.000000, 0.000000 - 0.582008, 0.813183, 0.000000, 0.000000 - 0.581581, 0.813488, 0.000000, 0.000000 - 0.581155, 0.813793, 0.000000, 0.000000 - 0.580729, 0.814097, 0.000000, 0.000000 - 0.580303, 0.814401, 0.000000, 0.000000 - 0.579876, 0.814705, 0.000000, 0.000000 - 0.579449, 0.815008, 0.000000, 0.000000 - 0.579022, 0.815312, 0.000000, 0.000000 - 0.578595, 0.815615, 0.000000, 0.000000 - 0.578168, 0.815918, 0.000000, 0.000000 - 0.577740, 0.816221, 0.000000, 0.000000 - 0.577313, 0.816523, 0.000000, 0.000000 - 0.576885, 0.816825, 0.000000, 0.000000 - 0.576457, 0.817127, 0.000000, 0.000000 - 0.576029, 0.817429, 0.000000, 0.000000 - 0.575601, 0.817731, 0.000000, 0.000000 - 0.575172, 0.818032, 0.000000, 0.000000 - 0.574744, 0.818333, 0.000000, 0.000000 - 0.574315, 0.818634, 0.000000, 0.000000 - 0.573886, 0.818935, 0.000000, 0.000000 - 0.573457, 0.819235, 0.000000, 0.000000 - 0.573028, 0.819536, 0.000000, 0.000000 - 0.572599, 0.819836, 0.000000, 0.000000 - 0.572169, 0.820136, 0.000000, 0.000000 - 0.571740, 0.820435, 0.000000, 0.000000 - 0.571310, 0.820734, 0.000000, 0.000000 - 0.570880, 0.821034, 0.000000, 0.000000 - 0.570450, 0.821333, 0.000000, 0.000000 - 0.570019, 0.821631, 0.000000, 0.000000 - 0.569589, 0.821930, 0.000000, 0.000000 - 0.569158, 0.822228, 0.000000, 0.000000 - 0.568728, 0.822526, 0.000000, 0.000000 - 0.568297, 0.822824, 0.000000, 0.000000 - 0.567866, 0.823121, 0.000000, 0.000000 - 0.567435, 0.823418, 0.000000, 0.000000 - 0.567003, 0.823716, 0.000000, 0.000000 - 0.566572, 0.824012, 0.000000, 0.000000 - 0.566140, 0.824309, 0.000000, 0.000000 - 0.565708, 0.824606, 0.000000, 0.000000 - 0.565276, 0.824902, 0.000000, 0.000000 - 0.564844, 0.825198, 0.000000, 0.000000 - 0.564412, 0.825493, 0.000000, 0.000000 - 0.563979, 0.825789, 0.000000, 0.000000 - 0.563547, 0.826084, 0.000000, 0.000000 - 0.563114, 0.826379, 0.000000, 0.000000 - 0.562681, 0.826674, 0.000000, 0.000000 - 0.562248, 0.826969, 0.000000, 0.000000 - 0.561815, 0.827263, 0.000000, 0.000000 - 0.561381, 0.827557, 0.000000, 0.000000 - 0.560948, 0.827851, 0.000000, 0.000000 - 0.560514, 0.828145, 0.000000, 0.000000 - 0.560080, 0.828438, 0.000000, 0.000000 - 0.559646, 0.828732, 0.000000, 0.000000 - 0.559212, 0.829025, 0.000000, 0.000000 - 0.558778, 0.829317, 0.000000, 0.000000 - 0.558343, 0.829610, 0.000000, 0.000000 - 0.557909, 0.829902, 0.000000, 0.000000 - 0.557474, 0.830194, 0.000000, 0.000000 - 0.557039, 0.830486, 0.000000, 0.000000 - 0.556604, 0.830778, 0.000000, 0.000000 - 0.556169, 0.831069, 0.000000, 0.000000 - 0.555734, 0.831360, 0.000000, 0.000000 - 0.555298, 0.831651, 0.000000, 0.000000 - 0.554862, 0.831942, 0.000000, 0.000000 - 0.554427, 0.832233, 0.000000, 0.000000 - 0.553991, 0.832523, 0.000000, 0.000000 - 0.553554, 0.832813, 0.000000, 0.000000 - 0.553118, 0.833103, 0.000000, 0.000000 - 0.552682, 0.833392, 0.000000, 0.000000 - 0.552245, 0.833682, 0.000000, 0.000000 - 0.551808, 0.833971, 0.000000, 0.000000 - 0.551371, 0.834260, 0.000000, 0.000000 - 0.550934, 0.834549, 0.000000, 0.000000 - 0.550497, 0.834837, 0.000000, 0.000000 - 0.550060, 0.835125, 0.000000, 0.000000 - 0.549622, 0.835413, 0.000000, 0.000000 - 0.549185, 0.835701, 0.000000, 0.000000 - 0.548747, 0.835988, 0.000000, 0.000000 - 0.548309, 0.836276, 0.000000, 0.000000 - 0.547871, 0.836563, 0.000000, 0.000000 - 0.547433, 0.836850, 0.000000, 0.000000 - 0.546994, 0.837136, 0.000000, 0.000000 - 0.546556, 0.837423, 0.000000, 0.000000 - 0.546117, 0.837709, 0.000000, 0.000000 - 0.545678, 0.837995, 0.000000, 0.000000 - 0.545239, 0.838280, 0.000000, 0.000000 - 0.544800, 0.838566, 0.000000, 0.000000 - 0.544361, 0.838851, 0.000000, 0.000000 - 0.543921, 0.839136, 0.000000, 0.000000 - 0.543482, 0.839421, 0.000000, 0.000000 - 0.543042, 0.839706, 0.000000, 0.000000 - 0.542602, 0.839990, 0.000000, 0.000000 - 0.542162, 0.840274, 0.000000, 0.000000 - 0.541722, 0.840558, 0.000000, 0.000000 - 0.541282, 0.840841, 0.000000, 0.000000 - 0.540841, 0.841125, 0.000000, 0.000000 - 0.540400, 0.841408, 0.000000, 0.000000 - 0.539960, 0.841691, 0.000000, 0.000000 - 0.539519, 0.841974, 0.000000, 0.000000 - 0.539078, 0.842256, 0.000000, 0.000000 - 0.538636, 0.842538, 0.000000, 0.000000 - 0.538195, 0.842820, 0.000000, 0.000000 - 0.537754, 0.843102, 0.000000, 0.000000 - 0.537312, 0.843384, 0.000000, 0.000000 - 0.536870, 0.843665, 0.000000, 0.000000 - 0.536428, 0.843946, 0.000000, 0.000000 - 0.535986, 0.844227, 0.000000, 0.000000 - 0.535544, 0.844507, 0.000000, 0.000000 - 0.535101, 0.844788, 0.000000, 0.000000 - 0.534659, 0.845068, 0.000000, 0.000000 - 0.534216, 0.845348, 0.000000, 0.000000 - 0.533773, 0.845628, 0.000000, 0.000000 - 0.533330, 0.845907, 0.000000, 0.000000 - 0.532887, 0.846186, 0.000000, 0.000000 - 0.532444, 0.846465, 0.000000, 0.000000 - 0.532000, 0.846744, 0.000000, 0.000000 - 0.531557, 0.847023, 0.000000, 0.000000 - 0.531113, 0.847301, 0.000000, 0.000000 - 0.530669, 0.847579, 0.000000, 0.000000 - 0.530225, 0.847857, 0.000000, 0.000000 - 0.529781, 0.848134, 0.000000, 0.000000 - 0.529337, 0.848412, 0.000000, 0.000000 - 0.528892, 0.848689, 0.000000, 0.000000 - 0.528448, 0.848966, 0.000000, 0.000000 - 0.528003, 0.849243, 0.000000, 0.000000 - 0.527558, 0.849519, 0.000000, 0.000000 - 0.527113, 0.849795, 0.000000, 0.000000 - 0.526668, 0.850071, 0.000000, 0.000000 - 0.526223, 0.850347, 0.000000, 0.000000 - 0.525777, 0.850622, 0.000000, 0.000000 - 0.525332, 0.850898, 0.000000, 0.000000 - 0.524886, 0.851173, 0.000000, 0.000000 - 0.524440, 0.851447, 0.000000, 0.000000 - 0.523994, 0.851722, 0.000000, 0.000000 - 0.523548, 0.851996, 0.000000, 0.000000 - 0.523101, 0.852270, 0.000000, 0.000000 - 0.522655, 0.852544, 0.000000, 0.000000 - 0.522208, 0.852818, 0.000000, 0.000000 - 0.521761, 0.853091, 0.000000, 0.000000 - 0.521315, 0.853365, 0.000000, 0.000000 - 0.520868, 0.853638, 0.000000, 0.000000 - 0.520420, 0.853910, 0.000000, 0.000000 - 0.519973, 0.854183, 0.000000, 0.000000 - 0.519526, 0.854455, 0.000000, 0.000000 - 0.519078, 0.854727, 0.000000, 0.000000 - 0.518630, 0.854999, 0.000000, 0.000000 - 0.518182, 0.855270, 0.000000, 0.000000 - 0.517734, 0.855541, 0.000000, 0.000000 - 0.517286, 0.855813, 0.000000, 0.000000 - 0.516838, 0.856083, 0.000000, 0.000000 - 0.516389, 0.856354, 0.000000, 0.000000 - 0.515941, 0.856624, 0.000000, 0.000000 - 0.515492, 0.856894, 0.000000, 0.000000 - 0.515043, 0.857164, 0.000000, 0.000000 - 0.514594, 0.857434, 0.000000, 0.000000 - 0.514145, 0.857703, 0.000000, 0.000000 - 0.513696, 0.857973, 0.000000, 0.000000 - 0.513246, 0.858241, 0.000000, 0.000000 - 0.512797, 0.858510, 0.000000, 0.000000 - 0.512347, 0.858779, 0.000000, 0.000000 - 0.511897, 0.859047, 0.000000, 0.000000 - 0.511447, 0.859315, 0.000000, 0.000000 - 0.510997, 0.859583, 0.000000, 0.000000 - 0.510546, 0.859850, 0.000000, 0.000000 - 0.510096, 0.860117, 0.000000, 0.000000 - 0.509645, 0.860385, 0.000000, 0.000000 - 0.509195, 0.860651, 0.000000, 0.000000 - 0.508744, 0.860918, 0.000000, 0.000000 - 0.508293, 0.861184, 0.000000, 0.000000 - 0.507842, 0.861450, 0.000000, 0.000000 - 0.507390, 0.861716, 0.000000, 0.000000 - 0.506939, 0.861982, 0.000000, 0.000000 - 0.506487, 0.862247, 0.000000, 0.000000 - 0.506036, 0.862512, 0.000000, 0.000000 - 0.505584, 0.862777, 0.000000, 0.000000 - 0.505132, 0.863042, 0.000000, 0.000000 - 0.504680, 0.863307, 0.000000, 0.000000 - 0.504228, 0.863571, 0.000000, 0.000000 - 0.503775, 0.863835, 0.000000, 0.000000 - 0.503323, 0.864099, 0.000000, 0.000000 - 0.502870, 0.864362, 0.000000, 0.000000 - 0.502417, 0.864625, 0.000000, 0.000000 - 0.501964, 0.864888, 0.000000, 0.000000 - 0.501511, 0.865151, 0.000000, 0.000000 - 0.501058, 0.865414, 0.000000, 0.000000 - 0.500605, 0.865676, 0.000000, 0.000000 - 0.500151, 0.865938, 0.000000, 0.000000 - 0.499698, 0.866200, 0.000000, 0.000000 - 0.499244, 0.866462, 0.000000, 0.000000 - 0.498790, 0.866723, 0.000000, 0.000000 - 0.498336, 0.866984, 0.000000, 0.000000 - 0.497882, 0.867245, 0.000000, 0.000000 - 0.497427, 0.867506, 0.000000, 0.000000 - 0.496973, 0.867766, 0.000000, 0.000000 - 0.496518, 0.868026, 0.000000, 0.000000 - 0.496064, 0.868286, 0.000000, 0.000000 - 0.495609, 0.868546, 0.000000, 0.000000 - 0.495154, 0.868805, 0.000000, 0.000000 - 0.494699, 0.869065, 0.000000, 0.000000 - 0.494243, 0.869324, 0.000000, 0.000000 - 0.493788, 0.869582, 0.000000, 0.000000 - 0.493332, 0.869841, 0.000000, 0.000000 - 0.492877, 0.870099, 0.000000, 0.000000 - 0.492421, 0.870357, 0.000000, 0.000000 - 0.491965, 0.870615, 0.000000, 0.000000 - 0.491509, 0.870872, 0.000000, 0.000000 - 0.491053, 0.871130, 0.000000, 0.000000 - 0.490596, 0.871387, 0.000000, 0.000000 - 0.490140, 0.871644, 0.000000, 0.000000 - 0.489683, 0.871900, 0.000000, 0.000000 - 0.489227, 0.872157, 0.000000, 0.000000 - 0.488770, 0.872413, 0.000000, 0.000000 - 0.488313, 0.872669, 0.000000, 0.000000 - 0.487856, 0.872924, 0.000000, 0.000000 - 0.487398, 0.873180, 0.000000, 0.000000 - 0.486941, 0.873435, 0.000000, 0.000000 - 0.486483, 0.873690, 0.000000, 0.000000 - 0.486026, 0.873945, 0.000000, 0.000000 - 0.485568, 0.874199, 0.000000, 0.000000 - 0.485110, 0.874453, 0.000000, 0.000000 - 0.484652, 0.874707, 0.000000, 0.000000 - 0.484194, 0.874961, 0.000000, 0.000000 - 0.483735, 0.875214, 0.000000, 0.000000 - 0.483277, 0.875468, 0.000000, 0.000000 - 0.482818, 0.875721, 0.000000, 0.000000 - 0.482359, 0.875973, 0.000000, 0.000000 - 0.481901, 0.876226, 0.000000, 0.000000 - 0.481442, 0.876478, 0.000000, 0.000000 - 0.480982, 0.876730, 0.000000, 0.000000 - 0.480523, 0.876982, 0.000000, 0.000000 - 0.480064, 0.877234, 0.000000, 0.000000 - 0.479604, 0.877485, 0.000000, 0.000000 - 0.479145, 0.877736, 0.000000, 0.000000 - 0.478685, 0.877987, 0.000000, 0.000000 - 0.478225, 0.878237, 0.000000, 0.000000 - 0.477765, 0.878488, 0.000000, 0.000000 - 0.477305, 0.878738, 0.000000, 0.000000 - 0.476844, 0.878988, 0.000000, 0.000000 - 0.476384, 0.879237, 0.000000, 0.000000 - 0.475923, 0.879487, 0.000000, 0.000000 - 0.475462, 0.879736, 0.000000, 0.000000 - 0.475002, 0.879985, 0.000000, 0.000000 - 0.474541, 0.880234, 0.000000, 0.000000 - 0.474079, 0.880482, 0.000000, 0.000000 - 0.473618, 0.880730, 0.000000, 0.000000 - 0.473157, 0.880978, 0.000000, 0.000000 - 0.472695, 0.881226, 0.000000, 0.000000 - 0.472234, 0.881473, 0.000000, 0.000000 - 0.471772, 0.881721, 0.000000, 0.000000 - 0.471310, 0.881968, 0.000000, 0.000000 - 0.470848, 0.882214, 0.000000, 0.000000 - 0.470386, 0.882461, 0.000000, 0.000000 - 0.469924, 0.882707, 0.000000, 0.000000 - 0.469461, 0.882953, 0.000000, 0.000000 - 0.468999, 0.883199, 0.000000, 0.000000 - 0.468536, 0.883444, 0.000000, 0.000000 - 0.468073, 0.883690, 0.000000, 0.000000 - 0.467610, 0.883935, 0.000000, 0.000000 - 0.467147, 0.884179, 0.000000, 0.000000 - 0.466684, 0.884424, 0.000000, 0.000000 - 0.466221, 0.884668, 0.000000, 0.000000 - 0.465757, 0.884912, 0.000000, 0.000000 - 0.465294, 0.885156, 0.000000, 0.000000 - 0.464830, 0.885400, 0.000000, 0.000000 - 0.464366, 0.885643, 0.000000, 0.000000 - 0.463902, 0.885886, 0.000000, 0.000000 - 0.463438, 0.886129, 0.000000, 0.000000 - 0.462974, 0.886372, 0.000000, 0.000000 - 0.462510, 0.886614, 0.000000, 0.000000 - 0.462045, 0.886856, 0.000000, 0.000000 - 0.461581, 0.887098, 0.000000, 0.000000 - 0.461116, 0.887340, 0.000000, 0.000000 - 0.460651, 0.887581, 0.000000, 0.000000 - 0.460186, 0.887822, 0.000000, 0.000000 - 0.459721, 0.888063, 0.000000, 0.000000 - 0.459256, 0.888304, 0.000000, 0.000000 - 0.458791, 0.888544, 0.000000, 0.000000 - 0.458325, 0.888785, 0.000000, 0.000000 - 0.457860, 0.889024, 0.000000, 0.000000 - 0.457394, 0.889264, 0.000000, 0.000000 - 0.456928, 0.889504, 0.000000, 0.000000 - 0.456462, 0.889743, 0.000000, 0.000000 - 0.455996, 0.889982, 0.000000, 0.000000 - 0.455530, 0.890220, 0.000000, 0.000000 - 0.455064, 0.890459, 0.000000, 0.000000 - 0.454597, 0.890697, 0.000000, 0.000000 - 0.454130, 0.890935, 0.000000, 0.000000 - 0.453664, 0.891173, 0.000000, 0.000000 - 0.453197, 0.891410, 0.000000, 0.000000 - 0.452730, 0.891648, 0.000000, 0.000000 - 0.452263, 0.891885, 0.000000, 0.000000 - 0.451796, 0.892121, 0.000000, 0.000000 - 0.451328, 0.892358, 0.000000, 0.000000 - 0.450861, 0.892594, 0.000000, 0.000000 - 0.450393, 0.892830, 0.000000, 0.000000 - 0.449926, 0.893066, 0.000000, 0.000000 - 0.449458, 0.893302, 0.000000, 0.000000 - 0.448990, 0.893537, 0.000000, 0.000000 - 0.448522, 0.893772, 0.000000, 0.000000 - 0.448054, 0.894007, 0.000000, 0.000000 - 0.447585, 0.894241, 0.000000, 0.000000 - 0.447117, 0.894476, 0.000000, 0.000000 - 0.446648, 0.894710, 0.000000, 0.000000 - 0.446180, 0.894943, 0.000000, 0.000000 - 0.445711, 0.895177, 0.000000, 0.000000 - 0.445242, 0.895410, 0.000000, 0.000000 - 0.444773, 0.895643, 0.000000, 0.000000 - 0.444304, 0.895876, 0.000000, 0.000000 - 0.443834, 0.896109, 0.000000, 0.000000 - 0.443365, 0.896341, 0.000000, 0.000000 - 0.442895, 0.896573, 0.000000, 0.000000 - 0.442426, 0.896805, 0.000000, 0.000000 - 0.441956, 0.897037, 0.000000, 0.000000 - 0.441486, 0.897268, 0.000000, 0.000000 - 0.441016, 0.897499, 0.000000, 0.000000 - 0.440546, 0.897730, 0.000000, 0.000000 - 0.440076, 0.897961, 0.000000, 0.000000 - 0.439605, 0.898191, 0.000000, 0.000000 - 0.439135, 0.898421, 0.000000, 0.000000 - 0.438664, 0.898651, 0.000000, 0.000000 - 0.438193, 0.898881, 0.000000, 0.000000 - 0.437722, 0.899110, 0.000000, 0.000000 - 0.437251, 0.899339, 0.000000, 0.000000 - 0.436780, 0.899568, 0.000000, 0.000000 - 0.436309, 0.899797, 0.000000, 0.000000 - 0.435838, 0.900025, 0.000000, 0.000000 - 0.435366, 0.900253, 0.000000, 0.000000 - 0.434895, 0.900481, 0.000000, 0.000000 - 0.434423, 0.900709, 0.000000, 0.000000 - 0.433951, 0.900936, 0.000000, 0.000000 - 0.433479, 0.901164, 0.000000, 0.000000 - 0.433007, 0.901390, 0.000000, 0.000000 - 0.432535, 0.901617, 0.000000, 0.000000 - 0.432063, 0.901844, 0.000000, 0.000000 - 0.431590, 0.902070, 0.000000, 0.000000 - 0.431118, 0.902296, 0.000000, 0.000000 - 0.430645, 0.902521, 0.000000, 0.000000 - 0.430172, 0.902747, 0.000000, 0.000000 - 0.429699, 0.902972, 0.000000, 0.000000 - 0.429226, 0.903197, 0.000000, 0.000000 - 0.428753, 0.903422, 0.000000, 0.000000 - 0.428280, 0.903646, 0.000000, 0.000000 - 0.427807, 0.903870, 0.000000, 0.000000 - 0.427333, 0.904094, 0.000000, 0.000000 - 0.426860, 0.904318, 0.000000, 0.000000 - 0.426386, 0.904541, 0.000000, 0.000000 - 0.425912, 0.904765, 0.000000, 0.000000 - 0.425438, 0.904988, 0.000000, 0.000000 - 0.424964, 0.905210, 0.000000, 0.000000 - 0.424490, 0.905433, 0.000000, 0.000000 - 0.424015, 0.905655, 0.000000, 0.000000 - 0.423541, 0.905877, 0.000000, 0.000000 - 0.423067, 0.906099, 0.000000, 0.000000 - 0.422592, 0.906320, 0.000000, 0.000000 - 0.422117, 0.906541, 0.000000, 0.000000 - 0.421642, 0.906762, 0.000000, 0.000000 - 0.421167, 0.906983, 0.000000, 0.000000 - 0.420692, 0.907203, 0.000000, 0.000000 - 0.420217, 0.907424, 0.000000, 0.000000 - 0.419742, 0.907644, 0.000000, 0.000000 - 0.419266, 0.907863, 0.000000, 0.000000 - 0.418791, 0.908083, 0.000000, 0.000000 - 0.418315, 0.908302, 0.000000, 0.000000 - 0.417839, 0.908521, 0.000000, 0.000000 - 0.417363, 0.908740, 0.000000, 0.000000 - 0.416887, 0.908958, 0.000000, 0.000000 - 0.416411, 0.909177, 0.000000, 0.000000 - 0.415935, 0.909394, 0.000000, 0.000000 - 0.415458, 0.909612, 0.000000, 0.000000 - 0.414982, 0.909830, 0.000000, 0.000000 - 0.414505, 0.910047, 0.000000, 0.000000 - 0.414029, 0.910264, 0.000000, 0.000000 - 0.413552, 0.910481, 0.000000, 0.000000 - 0.413075, 0.910697, 0.000000, 0.000000 - 0.412598, 0.910913, 0.000000, 0.000000 - 0.412121, 0.911129, 0.000000, 0.000000 - 0.411643, 0.911345, 0.000000, 0.000000 - 0.411166, 0.911561, 0.000000, 0.000000 - 0.410688, 0.911776, 0.000000, 0.000000 - 0.410211, 0.911991, 0.000000, 0.000000 - 0.409733, 0.912206, 0.000000, 0.000000 - 0.409255, 0.912420, 0.000000, 0.000000 - 0.408777, 0.912634, 0.000000, 0.000000 - 0.408299, 0.912848, 0.000000, 0.000000 - 0.407821, 0.913062, 0.000000, 0.000000 - 0.407343, 0.913275, 0.000000, 0.000000 - 0.406864, 0.913489, 0.000000, 0.000000 - 0.406386, 0.913702, 0.000000, 0.000000 - 0.405907, 0.913914, 0.000000, 0.000000 - 0.405428, 0.914127, 0.000000, 0.000000 - 0.404950, 0.914339, 0.000000, 0.000000 - 0.404471, 0.914551, 0.000000, 0.000000 - 0.403991, 0.914763, 0.000000, 0.000000 - 0.403512, 0.914974, 0.000000, 0.000000 - 0.403033, 0.915185, 0.000000, 0.000000 - 0.402554, 0.915396, 0.000000, 0.000000 - 0.402074, 0.915607, 0.000000, 0.000000 - 0.401594, 0.915818, 0.000000, 0.000000 - 0.401115, 0.916028, 0.000000, 0.000000 - 0.400635, 0.916238, 0.000000, 0.000000 - 0.400155, 0.916448, 0.000000, 0.000000 - 0.399675, 0.916657, 0.000000, 0.000000 - 0.399195, 0.916866, 0.000000, 0.000000 - 0.398714, 0.917075, 0.000000, 0.000000 - 0.398234, 0.917284, 0.000000, 0.000000 - 0.397753, 0.917492, 0.000000, 0.000000 - 0.397273, 0.917701, 0.000000, 0.000000 - 0.396792, 0.917908, 0.000000, 0.000000 - 0.396311, 0.918116, 0.000000, 0.000000 - 0.395830, 0.918324, 0.000000, 0.000000 - 0.395349, 0.918531, 0.000000, 0.000000 - 0.394868, 0.918738, 0.000000, 0.000000 - 0.394387, 0.918944, 0.000000, 0.000000 - 0.393906, 0.919151, 0.000000, 0.000000 - 0.393424, 0.919357, 0.000000, 0.000000 - 0.392942, 0.919563, 0.000000, 0.000000 - 0.392461, 0.919769, 0.000000, 0.000000 - 0.391979, 0.919974, 0.000000, 0.000000 - 0.391497, 0.920179, 0.000000, 0.000000 - 0.391015, 0.920384, 0.000000, 0.000000 - 0.390533, 0.920589, 0.000000, 0.000000 - 0.390051, 0.920793, 0.000000, 0.000000 - 0.389568, 0.920998, 0.000000, 0.000000 - 0.389086, 0.921201, 0.000000, 0.000000 - 0.388603, 0.921405, 0.000000, 0.000000 - 0.388121, 0.921609, 0.000000, 0.000000 - 0.387638, 0.921812, 0.000000, 0.000000 - 0.387155, 0.922015, 0.000000, 0.000000 - 0.386672, 0.922217, 0.000000, 0.000000 - 0.386189, 0.922420, 0.000000, 0.000000 - 0.385706, 0.922622, 0.000000, 0.000000 - 0.385222, 0.922824, 0.000000, 0.000000 - 0.384739, 0.923025, 0.000000, 0.000000 - 0.384256, 0.923227, 0.000000, 0.000000 - 0.383772, 0.923428, 0.000000, 0.000000 - 0.383288, 0.923629, 0.000000, 0.000000 - 0.382804, 0.923829, 0.000000, 0.000000 - 0.382320, 0.924030, 0.000000, 0.000000 - 0.381836, 0.924230, 0.000000, 0.000000 - 0.381352, 0.924430, 0.000000, 0.000000 - 0.380868, 0.924629, 0.000000, 0.000000 - 0.380384, 0.924829, 0.000000, 0.000000 - 0.379899, 0.925028, 0.000000, 0.000000 - 0.379415, 0.925227, 0.000000, 0.000000 - 0.378930, 0.925425, 0.000000, 0.000000 - 0.378445, 0.925624, 0.000000, 0.000000 - 0.377960, 0.925822, 0.000000, 0.000000 - 0.377475, 0.926020, 0.000000, 0.000000 - 0.376990, 0.926217, 0.000000, 0.000000 - 0.376505, 0.926415, 0.000000, 0.000000 - 0.376020, 0.926612, 0.000000, 0.000000 - 0.375535, 0.926808, 0.000000, 0.000000 - 0.375049, 0.927005, 0.000000, 0.000000 - 0.374563, 0.927201, 0.000000, 0.000000 - 0.374078, 0.927397, 0.000000, 0.000000 - 0.373592, 0.927593, 0.000000, 0.000000 - 0.373106, 0.927789, 0.000000, 0.000000 - 0.372620, 0.927984, 0.000000, 0.000000 - 0.372134, 0.928179, 0.000000, 0.000000 - 0.371648, 0.928374, 0.000000, 0.000000 - 0.371161, 0.928568, 0.000000, 0.000000 - 0.370675, 0.928763, 0.000000, 0.000000 - 0.370188, 0.928957, 0.000000, 0.000000 - 0.369702, 0.929150, 0.000000, 0.000000 - 0.369215, 0.929344, 0.000000, 0.000000 - 0.368728, 0.929537, 0.000000, 0.000000 - 0.368241, 0.929730, 0.000000, 0.000000 - 0.367754, 0.929923, 0.000000, 0.000000 - 0.367267, 0.930115, 0.000000, 0.000000 - 0.366780, 0.930308, 0.000000, 0.000000 - 0.366293, 0.930500, 0.000000, 0.000000 - 0.365805, 0.930691, 0.000000, 0.000000 - 0.365318, 0.930883, 0.000000, 0.000000 - 0.364830, 0.931074, 0.000000, 0.000000 - 0.364342, 0.931265, 0.000000, 0.000000 - 0.363855, 0.931456, 0.000000, 0.000000 - 0.363367, 0.931646, 0.000000, 0.000000 - 0.362879, 0.931836, 0.000000, 0.000000 - 0.362391, 0.932026, 0.000000, 0.000000 - 0.361902, 0.932216, 0.000000, 0.000000 - 0.361414, 0.932405, 0.000000, 0.000000 - 0.360926, 0.932595, 0.000000, 0.000000 - 0.360437, 0.932784, 0.000000, 0.000000 - 0.359948, 0.932972, 0.000000, 0.000000 - 0.359460, 0.933161, 0.000000, 0.000000 - 0.358971, 0.933349, 0.000000, 0.000000 - 0.358482, 0.933537, 0.000000, 0.000000 - 0.357993, 0.933724, 0.000000, 0.000000 - 0.357504, 0.933912, 0.000000, 0.000000 - 0.357015, 0.934099, 0.000000, 0.000000 - 0.356525, 0.934286, 0.000000, 0.000000 - 0.356036, 0.934472, 0.000000, 0.000000 - 0.355547, 0.934659, 0.000000, 0.000000 - 0.355057, 0.934845, 0.000000, 0.000000 - 0.354567, 0.935031, 0.000000, 0.000000 - 0.354077, 0.935216, 0.000000, 0.000000 - 0.353588, 0.935401, 0.000000, 0.000000 - 0.353098, 0.935587, 0.000000, 0.000000 - 0.352607, 0.935771, 0.000000, 0.000000 - 0.352117, 0.935956, 0.000000, 0.000000 - 0.351627, 0.936140, 0.000000, 0.000000 - 0.351137, 0.936324, 0.000000, 0.000000 - 0.350646, 0.936508, 0.000000, 0.000000 - 0.350156, 0.936692, 0.000000, 0.000000 - 0.349665, 0.936875, 0.000000, 0.000000 - 0.349174, 0.937058, 0.000000, 0.000000 - 0.348683, 0.937241, 0.000000, 0.000000 - 0.348192, 0.937423, 0.000000, 0.000000 - 0.347701, 0.937605, 0.000000, 0.000000 - 0.347210, 0.937787, 0.000000, 0.000000 - 0.346719, 0.937969, 0.000000, 0.000000 - 0.346228, 0.938151, 0.000000, 0.000000 - 0.345736, 0.938332, 0.000000, 0.000000 - 0.345245, 0.938513, 0.000000, 0.000000 - 0.344753, 0.938693, 0.000000, 0.000000 - 0.344261, 0.938874, 0.000000, 0.000000 - 0.343770, 0.939054, 0.000000, 0.000000 - 0.343278, 0.939234, 0.000000, 0.000000 - 0.342786, 0.939414, 0.000000, 0.000000 - 0.342294, 0.939593, 0.000000, 0.000000 - 0.341801, 0.939772, 0.000000, 0.000000 - 0.341309, 0.939951, 0.000000, 0.000000 - 0.340817, 0.940130, 0.000000, 0.000000 - 0.340324, 0.940308, 0.000000, 0.000000 - 0.339832, 0.940486, 0.000000, 0.000000 - 0.339339, 0.940664, 0.000000, 0.000000 - 0.338846, 0.940842, 0.000000, 0.000000 - 0.338354, 0.941019, 0.000000, 0.000000 - 0.337861, 0.941196, 0.000000, 0.000000 - 0.337368, 0.941373, 0.000000, 0.000000 - 0.336874, 0.941550, 0.000000, 0.000000 - 0.336381, 0.941726, 0.000000, 0.000000 - 0.335888, 0.941902, 0.000000, 0.000000 - 0.335395, 0.942078, 0.000000, 0.000000 - 0.334901, 0.942253, 0.000000, 0.000000 - 0.334407, 0.942429, 0.000000, 0.000000 - 0.333914, 0.942604, 0.000000, 0.000000 - 0.333420, 0.942778, 0.000000, 0.000000 - 0.332926, 0.942953, 0.000000, 0.000000 - 0.332432, 0.943127, 0.000000, 0.000000 - 0.331938, 0.943301, 0.000000, 0.000000 - 0.331444, 0.943475, 0.000000, 0.000000 - 0.330950, 0.943648, 0.000000, 0.000000 - 0.330456, 0.943822, 0.000000, 0.000000 - 0.329961, 0.943994, 0.000000, 0.000000 - 0.329467, 0.944167, 0.000000, 0.000000 - 0.328972, 0.944340, 0.000000, 0.000000 - 0.328478, 0.944512, 0.000000, 0.000000 - 0.327983, 0.944684, 0.000000, 0.000000 - 0.327488, 0.944855, 0.000000, 0.000000 - 0.326993, 0.945027, 0.000000, 0.000000 - 0.326498, 0.945198, 0.000000, 0.000000 - 0.326003, 0.945369, 0.000000, 0.000000 - 0.325508, 0.945539, 0.000000, 0.000000 - 0.325012, 0.945710, 0.000000, 0.000000 - 0.324517, 0.945880, 0.000000, 0.000000 - 0.324021, 0.946050, 0.000000, 0.000000 - 0.323526, 0.946219, 0.000000, 0.000000 - 0.323030, 0.946389, 0.000000, 0.000000 - 0.322535, 0.946558, 0.000000, 0.000000 - 0.322039, 0.946727, 0.000000, 0.000000 - 0.321543, 0.946895, 0.000000, 0.000000 - 0.321047, 0.947063, 0.000000, 0.000000 - 0.320551, 0.947231, 0.000000, 0.000000 - 0.320055, 0.947399, 0.000000, 0.000000 - 0.319558, 0.947567, 0.000000, 0.000000 - 0.319062, 0.947734, 0.000000, 0.000000 - 0.318565, 0.947901, 0.000000, 0.000000 - 0.318069, 0.948068, 0.000000, 0.000000 - 0.317572, 0.948234, 0.000000, 0.000000 - 0.317076, 0.948400, 0.000000, 0.000000 - 0.316579, 0.948566, 0.000000, 0.000000 - 0.316082, 0.948732, 0.000000, 0.000000 - 0.315585, 0.948897, 0.000000, 0.000000 - 0.315088, 0.949062, 0.000000, 0.000000 - 0.314591, 0.949227, 0.000000, 0.000000 - 0.314094, 0.949392, 0.000000, 0.000000 - 0.313596, 0.949556, 0.000000, 0.000000 - 0.313099, 0.949721, 0.000000, 0.000000 - 0.312601, 0.949884, 0.000000, 0.000000 - 0.312104, 0.950048, 0.000000, 0.000000 - 0.311606, 0.950211, 0.000000, 0.000000 - 0.311108, 0.950374, 0.000000, 0.000000 - 0.310611, 0.950537, 0.000000, 0.000000 - 0.310113, 0.950700, 0.000000, 0.000000 - 0.309615, 0.950862, 0.000000, 0.000000 - 0.309117, 0.951024, 0.000000, 0.000000 - 0.308618, 0.951186, 0.000000, 0.000000 - 0.308120, 0.951347, 0.000000, 0.000000 - 0.307622, 0.951509, 0.000000, 0.000000 - 0.307123, 0.951670, 0.000000, 0.000000 - 0.306625, 0.951830, 0.000000, 0.000000 - 0.306126, 0.951991, 0.000000, 0.000000 - 0.305628, 0.952151, 0.000000, 0.000000 - 0.305129, 0.952311, 0.000000, 0.000000 - 0.304630, 0.952471, 0.000000, 0.000000 - 0.304131, 0.952630, 0.000000, 0.000000 - 0.303632, 0.952789, 0.000000, 0.000000 - 0.303133, 0.952948, 0.000000, 0.000000 - 0.302634, 0.953107, 0.000000, 0.000000 - 0.302135, 0.953265, 0.000000, 0.000000 - 0.301635, 0.953423, 0.000000, 0.000000 - 0.301136, 0.953581, 0.000000, 0.000000 - 0.300636, 0.953739, 0.000000, 0.000000 - 0.300137, 0.953896, 0.000000, 0.000000 - 0.299637, 0.954053, 0.000000, 0.000000 - 0.299137, 0.954210, 0.000000, 0.000000 - 0.298638, 0.954367, 0.000000, 0.000000 - 0.298138, 0.954523, 0.000000, 0.000000 - 0.297638, 0.954679, 0.000000, 0.000000 - 0.297138, 0.954835, 0.000000, 0.000000 - 0.296637, 0.954990, 0.000000, 0.000000 - 0.296137, 0.955145, 0.000000, 0.000000 - 0.295637, 0.955300, 0.000000, 0.000000 - 0.295136, 0.955455, 0.000000, 0.000000 - 0.294636, 0.955610, 0.000000, 0.000000 - 0.294135, 0.955764, 0.000000, 0.000000 - 0.293635, 0.955918, 0.000000, 0.000000 - 0.293134, 0.956071, 0.000000, 0.000000 - 0.292633, 0.956225, 0.000000, 0.000000 - 0.292132, 0.956378, 0.000000, 0.000000 - 0.291631, 0.956531, 0.000000, 0.000000 - 0.291130, 0.956683, 0.000000, 0.000000 - 0.290629, 0.956836, 0.000000, 0.000000 - 0.290128, 0.956988, 0.000000, 0.000000 - 0.289627, 0.957140, 0.000000, 0.000000 - 0.289125, 0.957291, 0.000000, 0.000000 - 0.288624, 0.957443, 0.000000, 0.000000 - 0.288122, 0.957594, 0.000000, 0.000000 - 0.287621, 0.957744, 0.000000, 0.000000 - 0.287119, 0.957895, 0.000000, 0.000000 - 0.286617, 0.958045, 0.000000, 0.000000 - 0.286116, 0.958195, 0.000000, 0.000000 - 0.285614, 0.958345, 0.000000, 0.000000 - 0.285112, 0.958494, 0.000000, 0.000000 - 0.284610, 0.958644, 0.000000, 0.000000 - 0.284107, 0.958792, 0.000000, 0.000000 - 0.283605, 0.958941, 0.000000, 0.000000 - 0.283103, 0.959090, 0.000000, 0.000000 - 0.282600, 0.959238, 0.000000, 0.000000 - 0.282098, 0.959386, 0.000000, 0.000000 - 0.281595, 0.959533, 0.000000, 0.000000 - 0.281093, 0.959681, 0.000000, 0.000000 - 0.280590, 0.959828, 0.000000, 0.000000 - 0.280087, 0.959975, 0.000000, 0.000000 - 0.279585, 0.960121, 0.000000, 0.000000 - 0.279082, 0.960267, 0.000000, 0.000000 - 0.278579, 0.960413, 0.000000, 0.000000 - 0.278076, 0.960559, 0.000000, 0.000000 - 0.277572, 0.960705, 0.000000, 0.000000 - 0.277069, 0.960850, 0.000000, 0.000000 - 0.276566, 0.960995, 0.000000, 0.000000 - 0.276062, 0.961140, 0.000000, 0.000000 - 0.275559, 0.961284, 0.000000, 0.000000 - 0.275056, 0.961428, 0.000000, 0.000000 - 0.274552, 0.961572, 0.000000, 0.000000 - 0.274048, 0.961716, 0.000000, 0.000000 - 0.273544, 0.961859, 0.000000, 0.000000 - 0.273041, 0.962003, 0.000000, 0.000000 - 0.272537, 0.962145, 0.000000, 0.000000 - 0.272033, 0.962288, 0.000000, 0.000000 - 0.271529, 0.962430, 0.000000, 0.000000 - 0.271025, 0.962572, 0.000000, 0.000000 - 0.270520, 0.962714, 0.000000, 0.000000 - 0.270016, 0.962856, 0.000000, 0.000000 - 0.269512, 0.962997, 0.000000, 0.000000 - 0.269007, 0.963138, 0.000000, 0.000000 - 0.268503, 0.963279, 0.000000, 0.000000 - 0.267998, 0.963419, 0.000000, 0.000000 - 0.267494, 0.963560, 0.000000, 0.000000 - 0.266989, 0.963700, 0.000000, 0.000000 - 0.266484, 0.963839, 0.000000, 0.000000 - 0.265979, 0.963979, 0.000000, 0.000000 - 0.265474, 0.964118, 0.000000, 0.000000 - 0.264969, 0.964257, 0.000000, 0.000000 - 0.264464, 0.964396, 0.000000, 0.000000 - 0.263959, 0.964534, 0.000000, 0.000000 - 0.263454, 0.964672, 0.000000, 0.000000 - 0.262948, 0.964810, 0.000000, 0.000000 - 0.262443, 0.964947, 0.000000, 0.000000 - 0.261938, 0.965085, 0.000000, 0.000000 - 0.261432, 0.965222, 0.000000, 0.000000 - 0.260926, 0.965359, 0.000000, 0.000000 - 0.260421, 0.965495, 0.000000, 0.000000 - 0.259915, 0.965631, 0.000000, 0.000000 - 0.259409, 0.965767, 0.000000, 0.000000 - 0.258903, 0.965903, 0.000000, 0.000000 - 0.258397, 0.966039, 0.000000, 0.000000 - 0.257891, 0.966174, 0.000000, 0.000000 - 0.257385, 0.966309, 0.000000, 0.000000 - 0.256879, 0.966444, 0.000000, 0.000000 - 0.256373, 0.966578, 0.000000, 0.000000 - 0.255867, 0.966712, 0.000000, 0.000000 - 0.255360, 0.966846, 0.000000, 0.000000 - 0.254854, 0.966980, 0.000000, 0.000000 - 0.254347, 0.967113, 0.000000, 0.000000 - 0.253841, 0.967246, 0.000000, 0.000000 - 0.253334, 0.967379, 0.000000, 0.000000 - 0.252827, 0.967511, 0.000000, 0.000000 - 0.252321, 0.967644, 0.000000, 0.000000 - 0.251814, 0.967776, 0.000000, 0.000000 - 0.251307, 0.967907, 0.000000, 0.000000 - 0.250800, 0.968039, 0.000000, 0.000000 - 0.250293, 0.968170, 0.000000, 0.000000 - 0.249786, 0.968301, 0.000000, 0.000000 - 0.249278, 0.968432, 0.000000, 0.000000 - 0.248771, 0.968562, 0.000000, 0.000000 - 0.248264, 0.968692, 0.000000, 0.000000 - 0.247756, 0.968822, 0.000000, 0.000000 - 0.247249, 0.968952, 0.000000, 0.000000 - 0.246741, 0.969081, 0.000000, 0.000000 - 0.246234, 0.969210, 0.000000, 0.000000 - 0.245726, 0.969339, 0.000000, 0.000000 - 0.245218, 0.969468, 0.000000, 0.000000 - 0.244710, 0.969596, 0.000000, 0.000000 - 0.244203, 0.969724, 0.000000, 0.000000 - 0.243695, 0.969852, 0.000000, 0.000000 - 0.243187, 0.969980, 0.000000, 0.000000 - 0.242678, 0.970107, 0.000000, 0.000000 - 0.242170, 0.970234, 0.000000, 0.000000 - 0.241662, 0.970360, 0.000000, 0.000000 - 0.241154, 0.970487, 0.000000, 0.000000 - 0.240646, 0.970613, 0.000000, 0.000000 - 0.240137, 0.970739, 0.000000, 0.000000 - 0.239629, 0.970865, 0.000000, 0.000000 - 0.239120, 0.970990, 0.000000, 0.000000 - 0.238611, 0.971115, 0.000000, 0.000000 - 0.238103, 0.971240, 0.000000, 0.000000 - 0.237594, 0.971365, 0.000000, 0.000000 - 0.237085, 0.971489, 0.000000, 0.000000 - 0.236576, 0.971613, 0.000000, 0.000000 - 0.236067, 0.971737, 0.000000, 0.000000 - 0.235558, 0.971860, 0.000000, 0.000000 - 0.235049, 0.971983, 0.000000, 0.000000 - 0.234540, 0.972106, 0.000000, 0.000000 - 0.234031, 0.972229, 0.000000, 0.000000 - 0.233522, 0.972352, 0.000000, 0.000000 - 0.233012, 0.972474, 0.000000, 0.000000 - 0.232503, 0.972596, 0.000000, 0.000000 - 0.231994, 0.972717, 0.000000, 0.000000 - 0.231484, 0.972839, 0.000000, 0.000000 - 0.230975, 0.972960, 0.000000, 0.000000 - 0.230465, 0.973081, 0.000000, 0.000000 - 0.229955, 0.973201, 0.000000, 0.000000 - 0.229445, 0.973322, 0.000000, 0.000000 - 0.228936, 0.973442, 0.000000, 0.000000 - 0.228426, 0.973561, 0.000000, 0.000000 - 0.227916, 0.973681, 0.000000, 0.000000 - 0.227406, 0.973800, 0.000000, 0.000000 - 0.226896, 0.973919, 0.000000, 0.000000 - 0.226385, 0.974038, 0.000000, 0.000000 - 0.225875, 0.974156, 0.000000, 0.000000 - 0.225365, 0.974274, 0.000000, 0.000000 - 0.224855, 0.974392, 0.000000, 0.000000 - 0.224344, 0.974510, 0.000000, 0.000000 - 0.223834, 0.974627, 0.000000, 0.000000 - 0.223323, 0.974744, 0.000000, 0.000000 - 0.222813, 0.974861, 0.000000, 0.000000 - 0.222302, 0.974978, 0.000000, 0.000000 - 0.221791, 0.975094, 0.000000, 0.000000 - 0.221281, 0.975210, 0.000000, 0.000000 - 0.220770, 0.975326, 0.000000, 0.000000 - 0.220259, 0.975441, 0.000000, 0.000000 - 0.219748, 0.975557, 0.000000, 0.000000 - 0.219237, 0.975672, 0.000000, 0.000000 - 0.218726, 0.975786, 0.000000, 0.000000 - 0.218215, 0.975901, 0.000000, 0.000000 - 0.217704, 0.976015, 0.000000, 0.000000 - 0.217192, 0.976129, 0.000000, 0.000000 - 0.216681, 0.976242, 0.000000, 0.000000 - 0.216170, 0.976356, 0.000000, 0.000000 - 0.215658, 0.976469, 0.000000, 0.000000 - 0.215147, 0.976582, 0.000000, 0.000000 - 0.214635, 0.976694, 0.000000, 0.000000 - 0.214124, 0.976807, 0.000000, 0.000000 - 0.213612, 0.976919, 0.000000, 0.000000 - 0.213100, 0.977030, 0.000000, 0.000000 - 0.212589, 0.977142, 0.000000, 0.000000 - 0.212077, 0.977253, 0.000000, 0.000000 - 0.211565, 0.977364, 0.000000, 0.000000 - 0.211053, 0.977475, 0.000000, 0.000000 - 0.210541, 0.977585, 0.000000, 0.000000 - 0.210029, 0.977695, 0.000000, 0.000000 - 0.209517, 0.977805, 0.000000, 0.000000 - 0.209005, 0.977915, 0.000000, 0.000000 - 0.208492, 0.978024, 0.000000, 0.000000 - 0.207980, 0.978133, 0.000000, 0.000000 - 0.207468, 0.978242, 0.000000, 0.000000 - 0.206955, 0.978350, 0.000000, 0.000000 - 0.206443, 0.978459, 0.000000, 0.000000 - 0.205930, 0.978567, 0.000000, 0.000000 - 0.205418, 0.978674, 0.000000, 0.000000 - 0.204905, 0.978782, 0.000000, 0.000000 - 0.204392, 0.978889, 0.000000, 0.000000 - 0.203880, 0.978996, 0.000000, 0.000000 - 0.203367, 0.979103, 0.000000, 0.000000 - 0.202854, 0.979209, 0.000000, 0.000000 - 0.202341, 0.979315, 0.000000, 0.000000 - 0.201828, 0.979421, 0.000000, 0.000000 - 0.201315, 0.979527, 0.000000, 0.000000 - 0.200802, 0.979632, 0.000000, 0.000000 - 0.200289, 0.979737, 0.000000, 0.000000 - 0.199776, 0.979842, 0.000000, 0.000000 - 0.199262, 0.979946, 0.000000, 0.000000 - 0.198749, 0.980050, 0.000000, 0.000000 - 0.198236, 0.980154, 0.000000, 0.000000 - 0.197722, 0.980258, 0.000000, 0.000000 - 0.197209, 0.980361, 0.000000, 0.000000 - 0.196695, 0.980465, 0.000000, 0.000000 - 0.196182, 0.980568, 0.000000, 0.000000 - 0.195668, 0.980670, 0.000000, 0.000000 - 0.195155, 0.980773, 0.000000, 0.000000 - 0.194641, 0.980875, 0.000000, 0.000000 - 0.194127, 0.980976, 0.000000, 0.000000 - 0.193613, 0.981078, 0.000000, 0.000000 - 0.193099, 0.981179, 0.000000, 0.000000 - 0.192585, 0.981280, 0.000000, 0.000000 - 0.192071, 0.981381, 0.000000, 0.000000 - 0.191557, 0.981481, 0.000000, 0.000000 - 0.191043, 0.981582, 0.000000, 0.000000 - 0.190529, 0.981682, 0.000000, 0.000000 - 0.190015, 0.981781, 0.000000, 0.000000 - 0.189501, 0.981881, 0.000000, 0.000000 - 0.188986, 0.981980, 0.000000, 0.000000 - 0.188472, 0.982079, 0.000000, 0.000000 - 0.187958, 0.982177, 0.000000, 0.000000 - 0.187443, 0.982275, 0.000000, 0.000000 - 0.186929, 0.982374, 0.000000, 0.000000 - 0.186414, 0.982471, 0.000000, 0.000000 - 0.185899, 0.982569, 0.000000, 0.000000 - 0.185385, 0.982666, 0.000000, 0.000000 - 0.184870, 0.982763, 0.000000, 0.000000 - 0.184355, 0.982860, 0.000000, 0.000000 - 0.183840, 0.982956, 0.000000, 0.000000 - 0.183326, 0.983052, 0.000000, 0.000000 - 0.182811, 0.983148, 0.000000, 0.000000 - 0.182296, 0.983244, 0.000000, 0.000000 - 0.181781, 0.983339, 0.000000, 0.000000 - 0.181266, 0.983434, 0.000000, 0.000000 - 0.180750, 0.983529, 0.000000, 0.000000 - 0.180235, 0.983624, 0.000000, 0.000000 - 0.179720, 0.983718, 0.000000, 0.000000 - 0.179205, 0.983812, 0.000000, 0.000000 - 0.178689, 0.983906, 0.000000, 0.000000 - 0.178174, 0.983999, 0.000000, 0.000000 - 0.177659, 0.984092, 0.000000, 0.000000 - 0.177143, 0.984185, 0.000000, 0.000000 - 0.176628, 0.984278, 0.000000, 0.000000 - 0.176112, 0.984370, 0.000000, 0.000000 - 0.175596, 0.984462, 0.000000, 0.000000 - 0.175081, 0.984554, 0.000000, 0.000000 - 0.174565, 0.984646, 0.000000, 0.000000 - 0.174049, 0.984737, 0.000000, 0.000000 - 0.173534, 0.984828, 0.000000, 0.000000 - 0.173018, 0.984919, 0.000000, 0.000000 - 0.172502, 0.985009, 0.000000, 0.000000 - 0.171986, 0.985099, 0.000000, 0.000000 - 0.171470, 0.985189, 0.000000, 0.000000 - 0.170954, 0.985279, 0.000000, 0.000000 - 0.170438, 0.985368, 0.000000, 0.000000 - 0.169922, 0.985458, 0.000000, 0.000000 - 0.169405, 0.985546, 0.000000, 0.000000 - 0.168889, 0.985635, 0.000000, 0.000000 - 0.168373, 0.985723, 0.000000, 0.000000 - 0.167857, 0.985811, 0.000000, 0.000000 - 0.167340, 0.985899, 0.000000, 0.000000 - 0.166824, 0.985987, 0.000000, 0.000000 - 0.166307, 0.986074, 0.000000, 0.000000 - 0.165791, 0.986161, 0.000000, 0.000000 - 0.165274, 0.986248, 0.000000, 0.000000 - 0.164758, 0.986334, 0.000000, 0.000000 - 0.164241, 0.986420, 0.000000, 0.000000 - 0.163724, 0.986506, 0.000000, 0.000000 - 0.163208, 0.986592, 0.000000, 0.000000 - 0.162691, 0.986677, 0.000000, 0.000000 - 0.162174, 0.986762, 0.000000, 0.000000 - 0.161657, 0.986847, 0.000000, 0.000000 - 0.161140, 0.986932, 0.000000, 0.000000 - 0.160623, 0.987016, 0.000000, 0.000000 - 0.160106, 0.987100, 0.000000, 0.000000 - 0.159589, 0.987183, 0.000000, 0.000000 - 0.159072, 0.987267, 0.000000, 0.000000 - 0.158555, 0.987350, 0.000000, 0.000000 - 0.158038, 0.987433, 0.000000, 0.000000 - 0.157521, 0.987516, 0.000000, 0.000000 - 0.157003, 0.987598, 0.000000, 0.000000 - 0.156486, 0.987680, 0.000000, 0.000000 - 0.155969, 0.987762, 0.000000, 0.000000 - 0.155451, 0.987844, 0.000000, 0.000000 - 0.154934, 0.987925, 0.000000, 0.000000 - 0.154417, 0.988006, 0.000000, 0.000000 - 0.153899, 0.988087, 0.000000, 0.000000 - 0.153382, 0.988167, 0.000000, 0.000000 - 0.152864, 0.988247, 0.000000, 0.000000 - 0.152346, 0.988327, 0.000000, 0.000000 - 0.151829, 0.988407, 0.000000, 0.000000 - 0.151311, 0.988486, 0.000000, 0.000000 - 0.150793, 0.988565, 0.000000, 0.000000 - 0.150275, 0.988644, 0.000000, 0.000000 - 0.149757, 0.988723, 0.000000, 0.000000 - 0.149240, 0.988801, 0.000000, 0.000000 - 0.148722, 0.988879, 0.000000, 0.000000 - 0.148204, 0.988957, 0.000000, 0.000000 - 0.147686, 0.989034, 0.000000, 0.000000 - 0.147168, 0.989112, 0.000000, 0.000000 - 0.146650, 0.989189, 0.000000, 0.000000 - 0.146131, 0.989265, 0.000000, 0.000000 - 0.145613, 0.989342, 0.000000, 0.000000 - 0.145095, 0.989418, 0.000000, 0.000000 - 0.144577, 0.989494, 0.000000, 0.000000 - 0.144058, 0.989569, 0.000000, 0.000000 - 0.143540, 0.989644, 0.000000, 0.000000 - 0.143022, 0.989720, 0.000000, 0.000000 - 0.142503, 0.989794, 0.000000, 0.000000 - 0.141985, 0.989869, 0.000000, 0.000000 - 0.141466, 0.989943, 0.000000, 0.000000 - 0.140948, 0.990017, 0.000000, 0.000000 - 0.140429, 0.990091, 0.000000, 0.000000 - 0.139911, 0.990164, 0.000000, 0.000000 - 0.139392, 0.990237, 0.000000, 0.000000 - 0.138873, 0.990310, 0.000000, 0.000000 - 0.138355, 0.990383, 0.000000, 0.000000 - 0.137836, 0.990455, 0.000000, 0.000000 - 0.137317, 0.990527, 0.000000, 0.000000 - 0.136798, 0.990599, 0.000000, 0.000000 - 0.136279, 0.990670, 0.000000, 0.000000 - 0.135761, 0.990742, 0.000000, 0.000000 - 0.135242, 0.990813, 0.000000, 0.000000 - 0.134723, 0.990883, 0.000000, 0.000000 - 0.134204, 0.990954, 0.000000, 0.000000 - 0.133685, 0.991024, 0.000000, 0.000000 - 0.133165, 0.991094, 0.000000, 0.000000 - 0.132646, 0.991163, 0.000000, 0.000000 - 0.132127, 0.991233, 0.000000, 0.000000 - 0.131608, 0.991302, 0.000000, 0.000000 - 0.131089, 0.991371, 0.000000, 0.000000 - 0.130569, 0.991439, 0.000000, 0.000000 - 0.130050, 0.991507, 0.000000, 0.000000 - 0.129531, 0.991575, 0.000000, 0.000000 - 0.129011, 0.991643, 0.000000, 0.000000 - 0.128492, 0.991711, 0.000000, 0.000000 - 0.127973, 0.991778, 0.000000, 0.000000 - 0.127453, 0.991845, 0.000000, 0.000000 - 0.126934, 0.991911, 0.000000, 0.000000 - 0.126414, 0.991978, 0.000000, 0.000000 - 0.125894, 0.992044, 0.000000, 0.000000 - 0.125375, 0.992109, 0.000000, 0.000000 - 0.124855, 0.992175, 0.000000, 0.000000 - 0.124335, 0.992240, 0.000000, 0.000000 - 0.123816, 0.992305, 0.000000, 0.000000 - 0.123296, 0.992370, 0.000000, 0.000000 - 0.122776, 0.992434, 0.000000, 0.000000 - 0.122256, 0.992499, 0.000000, 0.000000 - 0.121736, 0.992562, 0.000000, 0.000000 - 0.121217, 0.992626, 0.000000, 0.000000 - 0.120697, 0.992689, 0.000000, 0.000000 - 0.120177, 0.992753, 0.000000, 0.000000 - 0.119657, 0.992815, 0.000000, 0.000000 - 0.119137, 0.992878, 0.000000, 0.000000 - 0.118617, 0.992940, 0.000000, 0.000000 - 0.118097, 0.993002, 0.000000, 0.000000 - 0.117576, 0.993064, 0.000000, 0.000000 - 0.117056, 0.993125, 0.000000, 0.000000 - 0.116536, 0.993186, 0.000000, 0.000000 - 0.116016, 0.993247, 0.000000, 0.000000 - 0.115496, 0.993308, 0.000000, 0.000000 - 0.114975, 0.993368, 0.000000, 0.000000 - 0.114455, 0.993428, 0.000000, 0.000000 - 0.113935, 0.993488, 0.000000, 0.000000 - 0.113414, 0.993548, 0.000000, 0.000000 - 0.112894, 0.993607, 0.000000, 0.000000 - 0.112373, 0.993666, 0.000000, 0.000000 - 0.111853, 0.993725, 0.000000, 0.000000 - 0.111332, 0.993783, 0.000000, 0.000000 - 0.110812, 0.993841, 0.000000, 0.000000 - 0.110291, 0.993899, 0.000000, 0.000000 - 0.109771, 0.993957, 0.000000, 0.000000 - 0.109250, 0.994014, 0.000000, 0.000000 - 0.108729, 0.994071, 0.000000, 0.000000 - 0.108209, 0.994128, 0.000000, 0.000000 - 0.107688, 0.994185, 0.000000, 0.000000 - 0.107167, 0.994241, 0.000000, 0.000000 - 0.106647, 0.994297, 0.000000, 0.000000 - 0.106126, 0.994353, 0.000000, 0.000000 - 0.105605, 0.994408, 0.000000, 0.000000 - 0.105084, 0.994463, 0.000000, 0.000000 - 0.104563, 0.994518, 0.000000, 0.000000 - 0.104042, 0.994573, 0.000000, 0.000000 - 0.103521, 0.994627, 0.000000, 0.000000 - 0.103000, 0.994681, 0.000000, 0.000000 - 0.102479, 0.994735, 0.000000, 0.000000 - 0.101958, 0.994789, 0.000000, 0.000000 - 0.101437, 0.994842, 0.000000, 0.000000 - 0.100916, 0.994895, 0.000000, 0.000000 - 0.100395, 0.994948, 0.000000, 0.000000 - 0.099874, 0.995000, 0.000000, 0.000000 - 0.099353, 0.995052, 0.000000, 0.000000 - 0.098832, 0.995104, 0.000000, 0.000000 - 0.098310, 0.995156, 0.000000, 0.000000 - 0.097789, 0.995207, 0.000000, 0.000000 - 0.097268, 0.995258, 0.000000, 0.000000 - 0.096747, 0.995309, 0.000000, 0.000000 - 0.096225, 0.995360, 0.000000, 0.000000 - 0.095704, 0.995410, 0.000000, 0.000000 - 0.095182, 0.995460, 0.000000, 0.000000 - 0.094661, 0.995510, 0.000000, 0.000000 - 0.094140, 0.995559, 0.000000, 0.000000 - 0.093618, 0.995608, 0.000000, 0.000000 - 0.093097, 0.995657, 0.000000, 0.000000 - 0.092575, 0.995706, 0.000000, 0.000000 - 0.092054, 0.995754, 0.000000, 0.000000 - 0.091532, 0.995802, 0.000000, 0.000000 - 0.091010, 0.995850, 0.000000, 0.000000 - 0.090489, 0.995897, 0.000000, 0.000000 - 0.089967, 0.995945, 0.000000, 0.000000 - 0.089446, 0.995992, 0.000000, 0.000000 - 0.088924, 0.996038, 0.000000, 0.000000 - 0.088402, 0.996085, 0.000000, 0.000000 - 0.087880, 0.996131, 0.000000, 0.000000 - 0.087359, 0.996177, 0.000000, 0.000000 - 0.086837, 0.996223, 0.000000, 0.000000 - 0.086315, 0.996268, 0.000000, 0.000000 - 0.085793, 0.996313, 0.000000, 0.000000 - 0.085271, 0.996358, 0.000000, 0.000000 - 0.084750, 0.996402, 0.000000, 0.000000 - 0.084228, 0.996447, 0.000000, 0.000000 - 0.083706, 0.996491, 0.000000, 0.000000 - 0.083184, 0.996534, 0.000000, 0.000000 - 0.082662, 0.996578, 0.000000, 0.000000 - 0.082140, 0.996621, 0.000000, 0.000000 - 0.081618, 0.996664, 0.000000, 0.000000 - 0.081096, 0.996706, 0.000000, 0.000000 - 0.080574, 0.996749, 0.000000, 0.000000 - 0.080052, 0.996791, 0.000000, 0.000000 - 0.079529, 0.996833, 0.000000, 0.000000 - 0.079007, 0.996874, 0.000000, 0.000000 - 0.078485, 0.996915, 0.000000, 0.000000 - 0.077963, 0.996956, 0.000000, 0.000000 - 0.077441, 0.996997, 0.000000, 0.000000 - 0.076919, 0.997037, 0.000000, 0.000000 - 0.076396, 0.997078, 0.000000, 0.000000 - 0.075874, 0.997117, 0.000000, 0.000000 - 0.075352, 0.997157, 0.000000, 0.000000 - 0.074830, 0.997196, 0.000000, 0.000000 - 0.074307, 0.997235, 0.000000, 0.000000 - 0.073785, 0.997274, 0.000000, 0.000000 - 0.073263, 0.997313, 0.000000, 0.000000 - 0.072740, 0.997351, 0.000000, 0.000000 - 0.072218, 0.997389, 0.000000, 0.000000 - 0.071695, 0.997427, 0.000000, 0.000000 - 0.071173, 0.997464, 0.000000, 0.000000 - 0.070650, 0.997501, 0.000000, 0.000000 - 0.070128, 0.997538, 0.000000, 0.000000 - 0.069606, 0.997575, 0.000000, 0.000000 - 0.069083, 0.997611, 0.000000, 0.000000 - 0.068560, 0.997647, 0.000000, 0.000000 - 0.068038, 0.997683, 0.000000, 0.000000 - 0.067515, 0.997718, 0.000000, 0.000000 - 0.066993, 0.997753, 0.000000, 0.000000 - 0.066470, 0.997788, 0.000000, 0.000000 - 0.065948, 0.997823, 0.000000, 0.000000 - 0.065425, 0.997857, 0.000000, 0.000000 - 0.064902, 0.997892, 0.000000, 0.000000 - 0.064380, 0.997925, 0.000000, 0.000000 - 0.063857, 0.997959, 0.000000, 0.000000 - 0.063334, 0.997992, 0.000000, 0.000000 - 0.062811, 0.998025, 0.000000, 0.000000 - 0.062289, 0.998058, 0.000000, 0.000000 - 0.061766, 0.998091, 0.000000, 0.000000 - 0.061243, 0.998123, 0.000000, 0.000000 - 0.060720, 0.998155, 0.000000, 0.000000 - 0.060198, 0.998186, 0.000000, 0.000000 - 0.059675, 0.998218, 0.000000, 0.000000 - 0.059152, 0.998249, 0.000000, 0.000000 - 0.058629, 0.998280, 0.000000, 0.000000 - 0.058106, 0.998310, 0.000000, 0.000000 - 0.057583, 0.998341, 0.000000, 0.000000 - 0.057060, 0.998371, 0.000000, 0.000000 - 0.056537, 0.998400, 0.000000, 0.000000 - 0.056014, 0.998430, 0.000000, 0.000000 - 0.055491, 0.998459, 0.000000, 0.000000 - 0.054968, 0.998488, 0.000000, 0.000000 - 0.054445, 0.998517, 0.000000, 0.000000 - 0.053922, 0.998545, 0.000000, 0.000000 - 0.053399, 0.998573, 0.000000, 0.000000 - 0.052876, 0.998601, 0.000000, 0.000000 - 0.052353, 0.998629, 0.000000, 0.000000 - 0.051830, 0.998656, 0.000000, 0.000000 - 0.051307, 0.998683, 0.000000, 0.000000 - 0.050784, 0.998710, 0.000000, 0.000000 - 0.050261, 0.998736, 0.000000, 0.000000 - 0.049738, 0.998762, 0.000000, 0.000000 - 0.049215, 0.998788, 0.000000, 0.000000 - 0.048692, 0.998814, 0.000000, 0.000000 - 0.048169, 0.998839, 0.000000, 0.000000 - 0.047645, 0.998864, 0.000000, 0.000000 - 0.047122, 0.998889, 0.000000, 0.000000 - 0.046599, 0.998914, 0.000000, 0.000000 - 0.046076, 0.998938, 0.000000, 0.000000 - 0.045553, 0.998962, 0.000000, 0.000000 - 0.045029, 0.998986, 0.000000, 0.000000 - 0.044506, 0.999009, 0.000000, 0.000000 - 0.043983, 0.999032, 0.000000, 0.000000 - 0.043459, 0.999055, 0.000000, 0.000000 - 0.042936, 0.999078, 0.000000, 0.000000 - 0.042413, 0.999100, 0.000000, 0.000000 - 0.041890, 0.999122, 0.000000, 0.000000 - 0.041366, 0.999144, 0.000000, 0.000000 - 0.040843, 0.999166, 0.000000, 0.000000 - 0.040320, 0.999187, 0.000000, 0.000000 - 0.039796, 0.999208, 0.000000, 0.000000 - 0.039273, 0.999229, 0.000000, 0.000000 - 0.038750, 0.999249, 0.000000, 0.000000 - 0.038226, 0.999269, 0.000000, 0.000000 - 0.037703, 0.999289, 0.000000, 0.000000 - 0.037179, 0.999309, 0.000000, 0.000000 - 0.036656, 0.999328, 0.000000, 0.000000 - 0.036132, 0.999347, 0.000000, 0.000000 - 0.035609, 0.999366, 0.000000, 0.000000 - 0.035086, 0.999384, 0.000000, 0.000000 - 0.034562, 0.999403, 0.000000, 0.000000 - 0.034039, 0.999421, 0.000000, 0.000000 - 0.033515, 0.999438, 0.000000, 0.000000 - 0.032992, 0.999456, 0.000000, 0.000000 - 0.032468, 0.999473, 0.000000, 0.000000 - 0.031945, 0.999490, 0.000000, 0.000000 - 0.031421, 0.999506, 0.000000, 0.000000 - 0.030898, 0.999523, 0.000000, 0.000000 - 0.030374, 0.999539, 0.000000, 0.000000 - 0.029851, 0.999554, 0.000000, 0.000000 - 0.029327, 0.999570, 0.000000, 0.000000 - 0.028804, 0.999585, 0.000000, 0.000000 - 0.028280, 0.999600, 0.000000, 0.000000 - 0.027756, 0.999615, 0.000000, 0.000000 - 0.027233, 0.999629, 0.000000, 0.000000 - 0.026709, 0.999643, 0.000000, 0.000000 - 0.026186, 0.999657, 0.000000, 0.000000 - 0.025662, 0.999671, 0.000000, 0.000000 - 0.025138, 0.999684, 0.000000, 0.000000 - 0.024615, 0.999697, 0.000000, 0.000000 - 0.024091, 0.999710, 0.000000, 0.000000 - 0.023568, 0.999722, 0.000000, 0.000000 - 0.023044, 0.999734, 0.000000, 0.000000 - 0.022520, 0.999746, 0.000000, 0.000000 - 0.021997, 0.999758, 0.000000, 0.000000 - 0.021473, 0.999769, 0.000000, 0.000000 - 0.020949, 0.999781, 0.000000, 0.000000 - 0.020426, 0.999791, 0.000000, 0.000000 - 0.019902, 0.999802, 0.000000, 0.000000 - 0.019378, 0.999812, 0.000000, 0.000000 - 0.018855, 0.999822, 0.000000, 0.000000 - 0.018331, 0.999832, 0.000000, 0.000000 - 0.017807, 0.999841, 0.000000, 0.000000 - 0.017284, 0.999851, 0.000000, 0.000000 - 0.016760, 0.999860, 0.000000, 0.000000 - 0.016236, 0.999868, 0.000000, 0.000000 - 0.015713, 0.999877, 0.000000, 0.000000 - 0.015189, 0.999885, 0.000000, 0.000000 - 0.014665, 0.999892, 0.000000, 0.000000 - 0.014141, 0.999900, 0.000000, 0.000000 - 0.013618, 0.999907, 0.000000, 0.000000 - 0.013094, 0.999914, 0.000000, 0.000000 - 0.012570, 0.999921, 0.000000, 0.000000 - 0.012046, 0.999927, 0.000000, 0.000000 - 0.011523, 0.999934, 0.000000, 0.000000 - 0.010999, 0.999940, 0.000000, 0.000000 - 0.010475, 0.999945, 0.000000, 0.000000 - 0.009952, 0.999950, 0.000000, 0.000000 - 0.009428, 0.999956, 0.000000, 0.000000 - 0.008904, 0.999960, 0.000000, 0.000000 - 0.008380, 0.999965, 0.000000, 0.000000 - 0.007857, 0.999969, 0.000000, 0.000000 - 0.007333, 0.999973, 0.000000, 0.000000 - 0.006809, 0.999977, 0.000000, 0.000000 - 0.006285, 0.999980, 0.000000, 0.000000 - 0.005761, 0.999983, 0.000000, 0.000000 - 0.005238, 0.999986, 0.000000, 0.000000 - 0.004714, 0.999989, 0.000000, 0.000000 - 0.004190, 0.999991, 0.000000, 0.000000 - 0.003666, 0.999993, 0.000000, 0.000000 - 0.003143, 0.999995, 0.000000, 0.000000 - 0.002619, 0.999997, 0.000000, 0.000000 - 0.002095, 0.999998, 0.000000, 0.000000 - 0.001571, 0.999999, 0.000000, 0.000000 - 0.001048, 0.999999, 0.000000, 0.000000 - 0.000524, 1.000000, 0.000000, 0.000000 - 0.000000, 1.000000, 0.000000, 0.000000 diff --git a/scripts/trajectories/half-circle-over-top-15s.csv b/scripts/trajectories/half-circle-over-top-15s.csv deleted file mode 100644 index 1d763950f5c497d895fd974df63f789dae5354e5..0000000000000000000000000000000000000000 --- a/scripts/trajectories/half-circle-over-top-15s.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 1.000000, 0.000524, 0.000000, 0.000000 - 0.999999, 0.001048, 0.000000, 0.000000 - 0.999999, 0.001571, 0.000000, 0.000000 - 0.999998, 0.002095, 0.000000, 0.000000 - 0.999997, 0.002619, 0.000000, 0.000000 - 0.999995, 0.003143, 0.000000, 0.000000 - 0.999993, 0.003666, 0.000000, 0.000000 - 0.999991, 0.004190, 0.000000, 0.000000 - 0.999989, 0.004714, 0.000000, 0.000000 - 0.999986, 0.005238, 0.000000, 0.000000 - 0.999983, 0.005761, 0.000000, 0.000000 - 0.999980, 0.006285, 0.000000, 0.000000 - 0.999977, 0.006809, 0.000000, 0.000000 - 0.999973, 0.007333, 0.000000, 0.000000 - 0.999969, 0.007857, 0.000000, 0.000000 - 0.999965, 0.008380, 0.000000, 0.000000 - 0.999960, 0.008904, 0.000000, 0.000000 - 0.999956, 0.009428, 0.000000, 0.000000 - 0.999950, 0.009952, 0.000000, 0.000000 - 0.999945, 0.010475, 0.000000, 0.000000 - 0.999940, 0.010999, 0.000000, 0.000000 - 0.999934, 0.011523, 0.000000, 0.000000 - 0.999927, 0.012046, 0.000000, 0.000000 - 0.999921, 0.012570, 0.000000, 0.000000 - 0.999914, 0.013094, 0.000000, 0.000000 - 0.999907, 0.013618, 0.000000, 0.000000 - 0.999900, 0.014141, 0.000000, 0.000000 - 0.999892, 0.014665, 0.000000, 0.000000 - 0.999885, 0.015189, 0.000000, 0.000000 - 0.999877, 0.015713, 0.000000, 0.000000 - 0.999868, 0.016236, 0.000000, 0.000000 - 0.999860, 0.016760, 0.000000, 0.000000 - 0.999851, 0.017284, 0.000000, 0.000000 - 0.999841, 0.017807, 0.000000, 0.000000 - 0.999832, 0.018331, 0.000000, 0.000000 - 0.999822, 0.018855, 0.000000, 0.000000 - 0.999812, 0.019378, 0.000000, 0.000000 - 0.999802, 0.019902, 0.000000, 0.000000 - 0.999791, 0.020426, 0.000000, 0.000000 - 0.999781, 0.020949, 0.000000, 0.000000 - 0.999769, 0.021473, 0.000000, 0.000000 - 0.999758, 0.021997, 0.000000, 0.000000 - 0.999746, 0.022520, 0.000000, 0.000000 - 0.999734, 0.023044, 0.000000, 0.000000 - 0.999722, 0.023568, 0.000000, 0.000000 - 0.999710, 0.024091, 0.000000, 0.000000 - 0.999697, 0.024615, 0.000000, 0.000000 - 0.999684, 0.025138, 0.000000, 0.000000 - 0.999671, 0.025662, 0.000000, 0.000000 - 0.999657, 0.026186, 0.000000, 0.000000 - 0.999643, 0.026709, 0.000000, 0.000000 - 0.999629, 0.027233, 0.000000, 0.000000 - 0.999615, 0.027756, 0.000000, 0.000000 - 0.999600, 0.028280, 0.000000, 0.000000 - 0.999585, 0.028804, 0.000000, 0.000000 - 0.999570, 0.029327, 0.000000, 0.000000 - 0.999554, 0.029851, 0.000000, 0.000000 - 0.999539, 0.030374, 0.000000, 0.000000 - 0.999523, 0.030898, 0.000000, 0.000000 - 0.999506, 0.031421, 0.000000, 0.000000 - 0.999490, 0.031945, 0.000000, 0.000000 - 0.999473, 0.032468, 0.000000, 0.000000 - 0.999456, 0.032992, 0.000000, 0.000000 - 0.999438, 0.033515, 0.000000, 0.000000 - 0.999421, 0.034039, 0.000000, 0.000000 - 0.999403, 0.034562, 0.000000, 0.000000 - 0.999384, 0.035086, 0.000000, 0.000000 - 0.999366, 0.035609, 0.000000, 0.000000 - 0.999347, 0.036132, 0.000000, 0.000000 - 0.999328, 0.036656, 0.000000, 0.000000 - 0.999309, 0.037179, 0.000000, 0.000000 - 0.999289, 0.037703, 0.000000, 0.000000 - 0.999269, 0.038226, 0.000000, 0.000000 - 0.999249, 0.038750, 0.000000, 0.000000 - 0.999229, 0.039273, 0.000000, 0.000000 - 0.999208, 0.039796, 0.000000, 0.000000 - 0.999187, 0.040320, 0.000000, 0.000000 - 0.999166, 0.040843, 0.000000, 0.000000 - 0.999144, 0.041366, 0.000000, 0.000000 - 0.999122, 0.041890, 0.000000, 0.000000 - 0.999100, 0.042413, 0.000000, 0.000000 - 0.999078, 0.042936, 0.000000, 0.000000 - 0.999055, 0.043459, 0.000000, 0.000000 - 0.999032, 0.043983, 0.000000, 0.000000 - 0.999009, 0.044506, 0.000000, 0.000000 - 0.998986, 0.045029, 0.000000, 0.000000 - 0.998962, 0.045553, 0.000000, 0.000000 - 0.998938, 0.046076, 0.000000, 0.000000 - 0.998914, 0.046599, 0.000000, 0.000000 - 0.998889, 0.047122, 0.000000, 0.000000 - 0.998864, 0.047645, 0.000000, 0.000000 - 0.998839, 0.048169, 0.000000, 0.000000 - 0.998814, 0.048692, 0.000000, 0.000000 - 0.998788, 0.049215, 0.000000, 0.000000 - 0.998762, 0.049738, 0.000000, 0.000000 - 0.998736, 0.050261, 0.000000, 0.000000 - 0.998710, 0.050784, 0.000000, 0.000000 - 0.998683, 0.051307, 0.000000, 0.000000 - 0.998656, 0.051830, 0.000000, 0.000000 - 0.998629, 0.052353, 0.000000, 0.000000 - 0.998601, 0.052876, 0.000000, 0.000000 - 0.998573, 0.053399, 0.000000, 0.000000 - 0.998545, 0.053922, 0.000000, 0.000000 - 0.998517, 0.054445, 0.000000, 0.000000 - 0.998488, 0.054968, 0.000000, 0.000000 - 0.998459, 0.055491, 0.000000, 0.000000 - 0.998430, 0.056014, 0.000000, 0.000000 - 0.998400, 0.056537, 0.000000, 0.000000 - 0.998371, 0.057060, 0.000000, 0.000000 - 0.998341, 0.057583, 0.000000, 0.000000 - 0.998310, 0.058106, 0.000000, 0.000000 - 0.998280, 0.058629, 0.000000, 0.000000 - 0.998249, 0.059152, 0.000000, 0.000000 - 0.998218, 0.059675, 0.000000, 0.000000 - 0.998186, 0.060198, 0.000000, 0.000000 - 0.998155, 0.060720, 0.000000, 0.000000 - 0.998123, 0.061243, 0.000000, 0.000000 - 0.998091, 0.061766, 0.000000, 0.000000 - 0.998058, 0.062289, 0.000000, 0.000000 - 0.998025, 0.062811, 0.000000, 0.000000 - 0.997992, 0.063334, 0.000000, 0.000000 - 0.997959, 0.063857, 0.000000, 0.000000 - 0.997925, 0.064380, 0.000000, 0.000000 - 0.997892, 0.064902, 0.000000, 0.000000 - 0.997857, 0.065425, 0.000000, 0.000000 - 0.997823, 0.065948, 0.000000, 0.000000 - 0.997788, 0.066470, 0.000000, 0.000000 - 0.997753, 0.066993, 0.000000, 0.000000 - 0.997718, 0.067515, 0.000000, 0.000000 - 0.997683, 0.068038, 0.000000, 0.000000 - 0.997647, 0.068560, 0.000000, 0.000000 - 0.997611, 0.069083, 0.000000, 0.000000 - 0.997575, 0.069606, 0.000000, 0.000000 - 0.997538, 0.070128, 0.000000, 0.000000 - 0.997501, 0.070650, 0.000000, 0.000000 - 0.997464, 0.071173, 0.000000, 0.000000 - 0.997427, 0.071695, 0.000000, 0.000000 - 0.997389, 0.072218, 0.000000, 0.000000 - 0.997351, 0.072740, 0.000000, 0.000000 - 0.997313, 0.073263, 0.000000, 0.000000 - 0.997274, 0.073785, 0.000000, 0.000000 - 0.997235, 0.074307, 0.000000, 0.000000 - 0.997196, 0.074830, 0.000000, 0.000000 - 0.997157, 0.075352, 0.000000, 0.000000 - 0.997117, 0.075874, 0.000000, 0.000000 - 0.997078, 0.076396, 0.000000, 0.000000 - 0.997037, 0.076919, 0.000000, 0.000000 - 0.996997, 0.077441, 0.000000, 0.000000 - 0.996956, 0.077963, 0.000000, 0.000000 - 0.996915, 0.078485, 0.000000, 0.000000 - 0.996874, 0.079007, 0.000000, 0.000000 - 0.996833, 0.079529, 0.000000, 0.000000 - 0.996791, 0.080052, 0.000000, 0.000000 - 0.996749, 0.080574, 0.000000, 0.000000 - 0.996706, 0.081096, 0.000000, 0.000000 - 0.996664, 0.081618, 0.000000, 0.000000 - 0.996621, 0.082140, 0.000000, 0.000000 - 0.996578, 0.082662, 0.000000, 0.000000 - 0.996534, 0.083184, 0.000000, 0.000000 - 0.996491, 0.083706, 0.000000, 0.000000 - 0.996447, 0.084228, 0.000000, 0.000000 - 0.996402, 0.084750, 0.000000, 0.000000 - 0.996358, 0.085271, 0.000000, 0.000000 - 0.996313, 0.085793, 0.000000, 0.000000 - 0.996268, 0.086315, 0.000000, 0.000000 - 0.996223, 0.086837, 0.000000, 0.000000 - 0.996177, 0.087359, 0.000000, 0.000000 - 0.996131, 0.087880, 0.000000, 0.000000 - 0.996085, 0.088402, 0.000000, 0.000000 - 0.996038, 0.088924, 0.000000, 0.000000 - 0.995992, 0.089446, 0.000000, 0.000000 - 0.995945, 0.089967, 0.000000, 0.000000 - 0.995897, 0.090489, 0.000000, 0.000000 - 0.995850, 0.091010, 0.000000, 0.000000 - 0.995802, 0.091532, 0.000000, 0.000000 - 0.995754, 0.092054, 0.000000, 0.000000 - 0.995706, 0.092575, 0.000000, 0.000000 - 0.995657, 0.093097, 0.000000, 0.000000 - 0.995608, 0.093618, 0.000000, 0.000000 - 0.995559, 0.094140, 0.000000, 0.000000 - 0.995510, 0.094661, 0.000000, 0.000000 - 0.995460, 0.095182, 0.000000, 0.000000 - 0.995410, 0.095704, 0.000000, 0.000000 - 0.995360, 0.096225, 0.000000, 0.000000 - 0.995309, 0.096747, 0.000000, 0.000000 - 0.995258, 0.097268, 0.000000, 0.000000 - 0.995207, 0.097789, 0.000000, 0.000000 - 0.995156, 0.098310, 0.000000, 0.000000 - 0.995104, 0.098832, 0.000000, 0.000000 - 0.995052, 0.099353, 0.000000, 0.000000 - 0.995000, 0.099874, 0.000000, 0.000000 - 0.994948, 0.100395, 0.000000, 0.000000 - 0.994895, 0.100916, 0.000000, 0.000000 - 0.994842, 0.101437, 0.000000, 0.000000 - 0.994789, 0.101958, 0.000000, 0.000000 - 0.994735, 0.102479, 0.000000, 0.000000 - 0.994681, 0.103000, 0.000000, 0.000000 - 0.994627, 0.103521, 0.000000, 0.000000 - 0.994573, 0.104042, 0.000000, 0.000000 - 0.994518, 0.104563, 0.000000, 0.000000 - 0.994463, 0.105084, 0.000000, 0.000000 - 0.994408, 0.105605, 0.000000, 0.000000 - 0.994353, 0.106126, 0.000000, 0.000000 - 0.994297, 0.106647, 0.000000, 0.000000 - 0.994241, 0.107167, 0.000000, 0.000000 - 0.994185, 0.107688, 0.000000, 0.000000 - 0.994128, 0.108209, 0.000000, 0.000000 - 0.994071, 0.108729, 0.000000, 0.000000 - 0.994014, 0.109250, 0.000000, 0.000000 - 0.993957, 0.109771, 0.000000, 0.000000 - 0.993899, 0.110291, 0.000000, 0.000000 - 0.993841, 0.110812, 0.000000, 0.000000 - 0.993783, 0.111332, 0.000000, 0.000000 - 0.993725, 0.111853, 0.000000, 0.000000 - 0.993666, 0.112373, 0.000000, 0.000000 - 0.993607, 0.112894, 0.000000, 0.000000 - 0.993548, 0.113414, 0.000000, 0.000000 - 0.993488, 0.113935, 0.000000, 0.000000 - 0.993428, 0.114455, 0.000000, 0.000000 - 0.993368, 0.114975, 0.000000, 0.000000 - 0.993308, 0.115496, 0.000000, 0.000000 - 0.993247, 0.116016, 0.000000, 0.000000 - 0.993186, 0.116536, 0.000000, 0.000000 - 0.993125, 0.117056, 0.000000, 0.000000 - 0.993064, 0.117576, 0.000000, 0.000000 - 0.993002, 0.118097, 0.000000, 0.000000 - 0.992940, 0.118617, 0.000000, 0.000000 - 0.992878, 0.119137, 0.000000, 0.000000 - 0.992815, 0.119657, 0.000000, 0.000000 - 0.992753, 0.120177, 0.000000, 0.000000 - 0.992689, 0.120697, 0.000000, 0.000000 - 0.992626, 0.121217, 0.000000, 0.000000 - 0.992562, 0.121736, 0.000000, 0.000000 - 0.992499, 0.122256, 0.000000, 0.000000 - 0.992434, 0.122776, 0.000000, 0.000000 - 0.992370, 0.123296, 0.000000, 0.000000 - 0.992305, 0.123816, 0.000000, 0.000000 - 0.992240, 0.124335, 0.000000, 0.000000 - 0.992175, 0.124855, 0.000000, 0.000000 - 0.992109, 0.125375, 0.000000, 0.000000 - 0.992044, 0.125894, 0.000000, 0.000000 - 0.991978, 0.126414, 0.000000, 0.000000 - 0.991911, 0.126934, 0.000000, 0.000000 - 0.991845, 0.127453, 0.000000, 0.000000 - 0.991778, 0.127973, 0.000000, 0.000000 - 0.991711, 0.128492, 0.000000, 0.000000 - 0.991643, 0.129011, 0.000000, 0.000000 - 0.991575, 0.129531, 0.000000, 0.000000 - 0.991507, 0.130050, 0.000000, 0.000000 - 0.991439, 0.130569, 0.000000, 0.000000 - 0.991371, 0.131089, 0.000000, 0.000000 - 0.991302, 0.131608, 0.000000, 0.000000 - 0.991233, 0.132127, 0.000000, 0.000000 - 0.991163, 0.132646, 0.000000, 0.000000 - 0.991094, 0.133165, 0.000000, 0.000000 - 0.991024, 0.133685, 0.000000, 0.000000 - 0.990954, 0.134204, 0.000000, 0.000000 - 0.990883, 0.134723, 0.000000, 0.000000 - 0.990813, 0.135242, 0.000000, 0.000000 - 0.990742, 0.135761, 0.000000, 0.000000 - 0.990670, 0.136279, 0.000000, 0.000000 - 0.990599, 0.136798, 0.000000, 0.000000 - 0.990527, 0.137317, 0.000000, 0.000000 - 0.990455, 0.137836, 0.000000, 0.000000 - 0.990383, 0.138355, 0.000000, 0.000000 - 0.990310, 0.138873, 0.000000, 0.000000 - 0.990237, 0.139392, 0.000000, 0.000000 - 0.990164, 0.139911, 0.000000, 0.000000 - 0.990091, 0.140429, 0.000000, 0.000000 - 0.990017, 0.140948, 0.000000, 0.000000 - 0.989943, 0.141466, 0.000000, 0.000000 - 0.989869, 0.141985, 0.000000, 0.000000 - 0.989794, 0.142503, 0.000000, 0.000000 - 0.989720, 0.143022, 0.000000, 0.000000 - 0.989644, 0.143540, 0.000000, 0.000000 - 0.989569, 0.144058, 0.000000, 0.000000 - 0.989494, 0.144577, 0.000000, 0.000000 - 0.989418, 0.145095, 0.000000, 0.000000 - 0.989342, 0.145613, 0.000000, 0.000000 - 0.989265, 0.146131, 0.000000, 0.000000 - 0.989189, 0.146650, 0.000000, 0.000000 - 0.989112, 0.147168, 0.000000, 0.000000 - 0.989034, 0.147686, 0.000000, 0.000000 - 0.988957, 0.148204, 0.000000, 0.000000 - 0.988879, 0.148722, 0.000000, 0.000000 - 0.988801, 0.149240, 0.000000, 0.000000 - 0.988723, 0.149757, 0.000000, 0.000000 - 0.988644, 0.150275, 0.000000, 0.000000 - 0.988565, 0.150793, 0.000000, 0.000000 - 0.988486, 0.151311, 0.000000, 0.000000 - 0.988407, 0.151829, 0.000000, 0.000000 - 0.988327, 0.152346, 0.000000, 0.000000 - 0.988247, 0.152864, 0.000000, 0.000000 - 0.988167, 0.153382, 0.000000, 0.000000 - 0.988087, 0.153899, 0.000000, 0.000000 - 0.988006, 0.154417, 0.000000, 0.000000 - 0.987925, 0.154934, 0.000000, 0.000000 - 0.987844, 0.155451, 0.000000, 0.000000 - 0.987762, 0.155969, 0.000000, 0.000000 - 0.987680, 0.156486, 0.000000, 0.000000 - 0.987598, 0.157003, 0.000000, 0.000000 - 0.987516, 0.157521, 0.000000, 0.000000 - 0.987433, 0.158038, 0.000000, 0.000000 - 0.987350, 0.158555, 0.000000, 0.000000 - 0.987267, 0.159072, 0.000000, 0.000000 - 0.987183, 0.159589, 0.000000, 0.000000 - 0.987100, 0.160106, 0.000000, 0.000000 - 0.987016, 0.160623, 0.000000, 0.000000 - 0.986932, 0.161140, 0.000000, 0.000000 - 0.986847, 0.161657, 0.000000, 0.000000 - 0.986762, 0.162174, 0.000000, 0.000000 - 0.986677, 0.162691, 0.000000, 0.000000 - 0.986592, 0.163208, 0.000000, 0.000000 - 0.986506, 0.163724, 0.000000, 0.000000 - 0.986420, 0.164241, 0.000000, 0.000000 - 0.986334, 0.164758, 0.000000, 0.000000 - 0.986248, 0.165274, 0.000000, 0.000000 - 0.986161, 0.165791, 0.000000, 0.000000 - 0.986074, 0.166307, 0.000000, 0.000000 - 0.985987, 0.166824, 0.000000, 0.000000 - 0.985899, 0.167340, 0.000000, 0.000000 - 0.985811, 0.167857, 0.000000, 0.000000 - 0.985723, 0.168373, 0.000000, 0.000000 - 0.985635, 0.168889, 0.000000, 0.000000 - 0.985546, 0.169405, 0.000000, 0.000000 - 0.985458, 0.169922, 0.000000, 0.000000 - 0.985368, 0.170438, 0.000000, 0.000000 - 0.985279, 0.170954, 0.000000, 0.000000 - 0.985189, 0.171470, 0.000000, 0.000000 - 0.985099, 0.171986, 0.000000, 0.000000 - 0.985009, 0.172502, 0.000000, 0.000000 - 0.984919, 0.173018, 0.000000, 0.000000 - 0.984828, 0.173534, 0.000000, 0.000000 - 0.984737, 0.174049, 0.000000, 0.000000 - 0.984646, 0.174565, 0.000000, 0.000000 - 0.984554, 0.175081, 0.000000, 0.000000 - 0.984462, 0.175596, 0.000000, 0.000000 - 0.984370, 0.176112, 0.000000, 0.000000 - 0.984278, 0.176628, 0.000000, 0.000000 - 0.984185, 0.177143, 0.000000, 0.000000 - 0.984092, 0.177659, 0.000000, 0.000000 - 0.983999, 0.178174, 0.000000, 0.000000 - 0.983906, 0.178689, 0.000000, 0.000000 - 0.983812, 0.179205, 0.000000, 0.000000 - 0.983718, 0.179720, 0.000000, 0.000000 - 0.983624, 0.180235, 0.000000, 0.000000 - 0.983529, 0.180750, 0.000000, 0.000000 - 0.983434, 0.181266, 0.000000, 0.000000 - 0.983339, 0.181781, 0.000000, 0.000000 - 0.983244, 0.182296, 0.000000, 0.000000 - 0.983148, 0.182811, 0.000000, 0.000000 - 0.983052, 0.183326, 0.000000, 0.000000 - 0.982956, 0.183840, 0.000000, 0.000000 - 0.982860, 0.184355, 0.000000, 0.000000 - 0.982763, 0.184870, 0.000000, 0.000000 - 0.982666, 0.185385, 0.000000, 0.000000 - 0.982569, 0.185899, 0.000000, 0.000000 - 0.982471, 0.186414, 0.000000, 0.000000 - 0.982374, 0.186929, 0.000000, 0.000000 - 0.982275, 0.187443, 0.000000, 0.000000 - 0.982177, 0.187958, 0.000000, 0.000000 - 0.982079, 0.188472, 0.000000, 0.000000 - 0.981980, 0.188986, 0.000000, 0.000000 - 0.981881, 0.189501, 0.000000, 0.000000 - 0.981781, 0.190015, 0.000000, 0.000000 - 0.981682, 0.190529, 0.000000, 0.000000 - 0.981582, 0.191043, 0.000000, 0.000000 - 0.981481, 0.191557, 0.000000, 0.000000 - 0.981381, 0.192071, 0.000000, 0.000000 - 0.981280, 0.192585, 0.000000, 0.000000 - 0.981179, 0.193099, 0.000000, 0.000000 - 0.981078, 0.193613, 0.000000, 0.000000 - 0.980976, 0.194127, 0.000000, 0.000000 - 0.980875, 0.194641, 0.000000, 0.000000 - 0.980773, 0.195155, 0.000000, 0.000000 - 0.980670, 0.195668, 0.000000, 0.000000 - 0.980568, 0.196182, 0.000000, 0.000000 - 0.980465, 0.196695, 0.000000, 0.000000 - 0.980361, 0.197209, 0.000000, 0.000000 - 0.980258, 0.197722, 0.000000, 0.000000 - 0.980154, 0.198236, 0.000000, 0.000000 - 0.980050, 0.198749, 0.000000, 0.000000 - 0.979946, 0.199262, 0.000000, 0.000000 - 0.979842, 0.199776, 0.000000, 0.000000 - 0.979737, 0.200289, 0.000000, 0.000000 - 0.979632, 0.200802, 0.000000, 0.000000 - 0.979527, 0.201315, 0.000000, 0.000000 - 0.979421, 0.201828, 0.000000, 0.000000 - 0.979315, 0.202341, 0.000000, 0.000000 - 0.979209, 0.202854, 0.000000, 0.000000 - 0.979103, 0.203367, 0.000000, 0.000000 - 0.978996, 0.203880, 0.000000, 0.000000 - 0.978889, 0.204392, 0.000000, 0.000000 - 0.978782, 0.204905, 0.000000, 0.000000 - 0.978674, 0.205418, 0.000000, 0.000000 - 0.978567, 0.205930, 0.000000, 0.000000 - 0.978459, 0.206443, 0.000000, 0.000000 - 0.978350, 0.206955, 0.000000, 0.000000 - 0.978242, 0.207468, 0.000000, 0.000000 - 0.978133, 0.207980, 0.000000, 0.000000 - 0.978024, 0.208492, 0.000000, 0.000000 - 0.977915, 0.209005, 0.000000, 0.000000 - 0.977805, 0.209517, 0.000000, 0.000000 - 0.977695, 0.210029, 0.000000, 0.000000 - 0.977585, 0.210541, 0.000000, 0.000000 - 0.977475, 0.211053, 0.000000, 0.000000 - 0.977364, 0.211565, 0.000000, 0.000000 - 0.977253, 0.212077, 0.000000, 0.000000 - 0.977142, 0.212589, 0.000000, 0.000000 - 0.977030, 0.213100, 0.000000, 0.000000 - 0.976919, 0.213612, 0.000000, 0.000000 - 0.976807, 0.214124, 0.000000, 0.000000 - 0.976694, 0.214635, 0.000000, 0.000000 - 0.976582, 0.215147, 0.000000, 0.000000 - 0.976469, 0.215658, 0.000000, 0.000000 - 0.976356, 0.216170, 0.000000, 0.000000 - 0.976242, 0.216681, 0.000000, 0.000000 - 0.976129, 0.217192, 0.000000, 0.000000 - 0.976015, 0.217704, 0.000000, 0.000000 - 0.975901, 0.218215, 0.000000, 0.000000 - 0.975786, 0.218726, 0.000000, 0.000000 - 0.975672, 0.219237, 0.000000, 0.000000 - 0.975557, 0.219748, 0.000000, 0.000000 - 0.975441, 0.220259, 0.000000, 0.000000 - 0.975326, 0.220770, 0.000000, 0.000000 - 0.975210, 0.221281, 0.000000, 0.000000 - 0.975094, 0.221791, 0.000000, 0.000000 - 0.974978, 0.222302, 0.000000, 0.000000 - 0.974861, 0.222813, 0.000000, 0.000000 - 0.974744, 0.223323, 0.000000, 0.000000 - 0.974627, 0.223834, 0.000000, 0.000000 - 0.974510, 0.224344, 0.000000, 0.000000 - 0.974392, 0.224855, 0.000000, 0.000000 - 0.974274, 0.225365, 0.000000, 0.000000 - 0.974156, 0.225875, 0.000000, 0.000000 - 0.974038, 0.226385, 0.000000, 0.000000 - 0.973919, 0.226896, 0.000000, 0.000000 - 0.973800, 0.227406, 0.000000, 0.000000 - 0.973681, 0.227916, 0.000000, 0.000000 - 0.973561, 0.228426, 0.000000, 0.000000 - 0.973442, 0.228936, 0.000000, 0.000000 - 0.973322, 0.229445, 0.000000, 0.000000 - 0.973201, 0.229955, 0.000000, 0.000000 - 0.973081, 0.230465, 0.000000, 0.000000 - 0.972960, 0.230975, 0.000000, 0.000000 - 0.972839, 0.231484, 0.000000, 0.000000 - 0.972717, 0.231994, 0.000000, 0.000000 - 0.972596, 0.232503, 0.000000, 0.000000 - 0.972474, 0.233012, 0.000000, 0.000000 - 0.972352, 0.233522, 0.000000, 0.000000 - 0.972229, 0.234031, 0.000000, 0.000000 - 0.972106, 0.234540, 0.000000, 0.000000 - 0.971983, 0.235049, 0.000000, 0.000000 - 0.971860, 0.235558, 0.000000, 0.000000 - 0.971737, 0.236067, 0.000000, 0.000000 - 0.971613, 0.236576, 0.000000, 0.000000 - 0.971489, 0.237085, 0.000000, 0.000000 - 0.971365, 0.237594, 0.000000, 0.000000 - 0.971240, 0.238103, 0.000000, 0.000000 - 0.971115, 0.238611, 0.000000, 0.000000 - 0.970990, 0.239120, 0.000000, 0.000000 - 0.970865, 0.239629, 0.000000, 0.000000 - 0.970739, 0.240137, 0.000000, 0.000000 - 0.970613, 0.240646, 0.000000, 0.000000 - 0.970487, 0.241154, 0.000000, 0.000000 - 0.970360, 0.241662, 0.000000, 0.000000 - 0.970234, 0.242170, 0.000000, 0.000000 - 0.970107, 0.242678, 0.000000, 0.000000 - 0.969980, 0.243187, 0.000000, 0.000000 - 0.969852, 0.243695, 0.000000, 0.000000 - 0.969724, 0.244203, 0.000000, 0.000000 - 0.969596, 0.244710, 0.000000, 0.000000 - 0.969468, 0.245218, 0.000000, 0.000000 - 0.969339, 0.245726, 0.000000, 0.000000 - 0.969210, 0.246234, 0.000000, 0.000000 - 0.969081, 0.246741, 0.000000, 0.000000 - 0.968952, 0.247249, 0.000000, 0.000000 - 0.968822, 0.247756, 0.000000, 0.000000 - 0.968692, 0.248264, 0.000000, 0.000000 - 0.968562, 0.248771, 0.000000, 0.000000 - 0.968432, 0.249278, 0.000000, 0.000000 - 0.968301, 0.249786, 0.000000, 0.000000 - 0.968170, 0.250293, 0.000000, 0.000000 - 0.968039, 0.250800, 0.000000, 0.000000 - 0.967907, 0.251307, 0.000000, 0.000000 - 0.967776, 0.251814, 0.000000, 0.000000 - 0.967644, 0.252321, 0.000000, 0.000000 - 0.967511, 0.252827, 0.000000, 0.000000 - 0.967379, 0.253334, 0.000000, 0.000000 - 0.967246, 0.253841, 0.000000, 0.000000 - 0.967113, 0.254347, 0.000000, 0.000000 - 0.966980, 0.254854, 0.000000, 0.000000 - 0.966846, 0.255360, 0.000000, 0.000000 - 0.966712, 0.255867, 0.000000, 0.000000 - 0.966578, 0.256373, 0.000000, 0.000000 - 0.966444, 0.256879, 0.000000, 0.000000 - 0.966309, 0.257385, 0.000000, 0.000000 - 0.966174, 0.257891, 0.000000, 0.000000 - 0.966039, 0.258397, 0.000000, 0.000000 - 0.965903, 0.258903, 0.000000, 0.000000 - 0.965767, 0.259409, 0.000000, 0.000000 - 0.965631, 0.259915, 0.000000, 0.000000 - 0.965495, 0.260421, 0.000000, 0.000000 - 0.965359, 0.260926, 0.000000, 0.000000 - 0.965222, 0.261432, 0.000000, 0.000000 - 0.965085, 0.261938, 0.000000, 0.000000 - 0.964947, 0.262443, 0.000000, 0.000000 - 0.964810, 0.262948, 0.000000, 0.000000 - 0.964672, 0.263454, 0.000000, 0.000000 - 0.964534, 0.263959, 0.000000, 0.000000 - 0.964396, 0.264464, 0.000000, 0.000000 - 0.964257, 0.264969, 0.000000, 0.000000 - 0.964118, 0.265474, 0.000000, 0.000000 - 0.963979, 0.265979, 0.000000, 0.000000 - 0.963839, 0.266484, 0.000000, 0.000000 - 0.963700, 0.266989, 0.000000, 0.000000 - 0.963560, 0.267494, 0.000000, 0.000000 - 0.963419, 0.267998, 0.000000, 0.000000 - 0.963279, 0.268503, 0.000000, 0.000000 - 0.963138, 0.269007, 0.000000, 0.000000 - 0.962997, 0.269512, 0.000000, 0.000000 - 0.962856, 0.270016, 0.000000, 0.000000 - 0.962714, 0.270520, 0.000000, 0.000000 - 0.962572, 0.271025, 0.000000, 0.000000 - 0.962430, 0.271529, 0.000000, 0.000000 - 0.962288, 0.272033, 0.000000, 0.000000 - 0.962145, 0.272537, 0.000000, 0.000000 - 0.962003, 0.273041, 0.000000, 0.000000 - 0.961859, 0.273544, 0.000000, 0.000000 - 0.961716, 0.274048, 0.000000, 0.000000 - 0.961572, 0.274552, 0.000000, 0.000000 - 0.961428, 0.275056, 0.000000, 0.000000 - 0.961284, 0.275559, 0.000000, 0.000000 - 0.961140, 0.276062, 0.000000, 0.000000 - 0.960995, 0.276566, 0.000000, 0.000000 - 0.960850, 0.277069, 0.000000, 0.000000 - 0.960705, 0.277572, 0.000000, 0.000000 - 0.960559, 0.278076, 0.000000, 0.000000 - 0.960413, 0.278579, 0.000000, 0.000000 - 0.960267, 0.279082, 0.000000, 0.000000 - 0.960121, 0.279585, 0.000000, 0.000000 - 0.959975, 0.280087, 0.000000, 0.000000 - 0.959828, 0.280590, 0.000000, 0.000000 - 0.959681, 0.281093, 0.000000, 0.000000 - 0.959533, 0.281595, 0.000000, 0.000000 - 0.959386, 0.282098, 0.000000, 0.000000 - 0.959238, 0.282600, 0.000000, 0.000000 - 0.959090, 0.283103, 0.000000, 0.000000 - 0.958941, 0.283605, 0.000000, 0.000000 - 0.958792, 0.284107, 0.000000, 0.000000 - 0.958644, 0.284610, 0.000000, 0.000000 - 0.958494, 0.285112, 0.000000, 0.000000 - 0.958345, 0.285614, 0.000000, 0.000000 - 0.958195, 0.286116, 0.000000, 0.000000 - 0.958045, 0.286617, 0.000000, 0.000000 - 0.957895, 0.287119, 0.000000, 0.000000 - 0.957744, 0.287621, 0.000000, 0.000000 - 0.957594, 0.288122, 0.000000, 0.000000 - 0.957443, 0.288624, 0.000000, 0.000000 - 0.957291, 0.289125, 0.000000, 0.000000 - 0.957140, 0.289627, 0.000000, 0.000000 - 0.956988, 0.290128, 0.000000, 0.000000 - 0.956836, 0.290629, 0.000000, 0.000000 - 0.956683, 0.291130, 0.000000, 0.000000 - 0.956531, 0.291631, 0.000000, 0.000000 - 0.956378, 0.292132, 0.000000, 0.000000 - 0.956225, 0.292633, 0.000000, 0.000000 - 0.956071, 0.293134, 0.000000, 0.000000 - 0.955918, 0.293635, 0.000000, 0.000000 - 0.955764, 0.294135, 0.000000, 0.000000 - 0.955610, 0.294636, 0.000000, 0.000000 - 0.955455, 0.295136, 0.000000, 0.000000 - 0.955300, 0.295637, 0.000000, 0.000000 - 0.955145, 0.296137, 0.000000, 0.000000 - 0.954990, 0.296637, 0.000000, 0.000000 - 0.954835, 0.297138, 0.000000, 0.000000 - 0.954679, 0.297638, 0.000000, 0.000000 - 0.954523, 0.298138, 0.000000, 0.000000 - 0.954367, 0.298638, 0.000000, 0.000000 - 0.954210, 0.299137, 0.000000, 0.000000 - 0.954053, 0.299637, 0.000000, 0.000000 - 0.953896, 0.300137, 0.000000, 0.000000 - 0.953739, 0.300636, 0.000000, 0.000000 - 0.953581, 0.301136, 0.000000, 0.000000 - 0.953423, 0.301635, 0.000000, 0.000000 - 0.953265, 0.302135, 0.000000, 0.000000 - 0.953107, 0.302634, 0.000000, 0.000000 - 0.952948, 0.303133, 0.000000, 0.000000 - 0.952789, 0.303632, 0.000000, 0.000000 - 0.952630, 0.304131, 0.000000, 0.000000 - 0.952471, 0.304630, 0.000000, 0.000000 - 0.952311, 0.305129, 0.000000, 0.000000 - 0.952151, 0.305628, 0.000000, 0.000000 - 0.951991, 0.306126, 0.000000, 0.000000 - 0.951830, 0.306625, 0.000000, 0.000000 - 0.951670, 0.307123, 0.000000, 0.000000 - 0.951509, 0.307622, 0.000000, 0.000000 - 0.951347, 0.308120, 0.000000, 0.000000 - 0.951186, 0.308618, 0.000000, 0.000000 - 0.951024, 0.309117, 0.000000, 0.000000 - 0.950862, 0.309615, 0.000000, 0.000000 - 0.950700, 0.310113, 0.000000, 0.000000 - 0.950537, 0.310611, 0.000000, 0.000000 - 0.950374, 0.311108, 0.000000, 0.000000 - 0.950211, 0.311606, 0.000000, 0.000000 - 0.950048, 0.312104, 0.000000, 0.000000 - 0.949884, 0.312601, 0.000000, 0.000000 - 0.949721, 0.313099, 0.000000, 0.000000 - 0.949556, 0.313596, 0.000000, 0.000000 - 0.949392, 0.314094, 0.000000, 0.000000 - 0.949227, 0.314591, 0.000000, 0.000000 - 0.949062, 0.315088, 0.000000, 0.000000 - 0.948897, 0.315585, 0.000000, 0.000000 - 0.948732, 0.316082, 0.000000, 0.000000 - 0.948566, 0.316579, 0.000000, 0.000000 - 0.948400, 0.317076, 0.000000, 0.000000 - 0.948234, 0.317572, 0.000000, 0.000000 - 0.948068, 0.318069, 0.000000, 0.000000 - 0.947901, 0.318565, 0.000000, 0.000000 - 0.947734, 0.319062, 0.000000, 0.000000 - 0.947567, 0.319558, 0.000000, 0.000000 - 0.947399, 0.320055, 0.000000, 0.000000 - 0.947231, 0.320551, 0.000000, 0.000000 - 0.947063, 0.321047, 0.000000, 0.000000 - 0.946895, 0.321543, 0.000000, 0.000000 - 0.946727, 0.322039, 0.000000, 0.000000 - 0.946558, 0.322535, 0.000000, 0.000000 - 0.946389, 0.323030, 0.000000, 0.000000 - 0.946219, 0.323526, 0.000000, 0.000000 - 0.946050, 0.324021, 0.000000, 0.000000 - 0.945880, 0.324517, 0.000000, 0.000000 - 0.945710, 0.325012, 0.000000, 0.000000 - 0.945539, 0.325508, 0.000000, 0.000000 - 0.945369, 0.326003, 0.000000, 0.000000 - 0.945198, 0.326498, 0.000000, 0.000000 - 0.945027, 0.326993, 0.000000, 0.000000 - 0.944855, 0.327488, 0.000000, 0.000000 - 0.944684, 0.327983, 0.000000, 0.000000 - 0.944512, 0.328478, 0.000000, 0.000000 - 0.944340, 0.328972, 0.000000, 0.000000 - 0.944167, 0.329467, 0.000000, 0.000000 - 0.943994, 0.329961, 0.000000, 0.000000 - 0.943822, 0.330456, 0.000000, 0.000000 - 0.943648, 0.330950, 0.000000, 0.000000 - 0.943475, 0.331444, 0.000000, 0.000000 - 0.943301, 0.331938, 0.000000, 0.000000 - 0.943127, 0.332432, 0.000000, 0.000000 - 0.942953, 0.332926, 0.000000, 0.000000 - 0.942778, 0.333420, 0.000000, 0.000000 - 0.942604, 0.333914, 0.000000, 0.000000 - 0.942429, 0.334407, 0.000000, 0.000000 - 0.942253, 0.334901, 0.000000, 0.000000 - 0.942078, 0.335395, 0.000000, 0.000000 - 0.941902, 0.335888, 0.000000, 0.000000 - 0.941726, 0.336381, 0.000000, 0.000000 - 0.941550, 0.336874, 0.000000, 0.000000 - 0.941373, 0.337368, 0.000000, 0.000000 - 0.941196, 0.337861, 0.000000, 0.000000 - 0.941019, 0.338354, 0.000000, 0.000000 - 0.940842, 0.338846, 0.000000, 0.000000 - 0.940664, 0.339339, 0.000000, 0.000000 - 0.940486, 0.339832, 0.000000, 0.000000 - 0.940308, 0.340324, 0.000000, 0.000000 - 0.940130, 0.340817, 0.000000, 0.000000 - 0.939951, 0.341309, 0.000000, 0.000000 - 0.939772, 0.341801, 0.000000, 0.000000 - 0.939593, 0.342294, 0.000000, 0.000000 - 0.939414, 0.342786, 0.000000, 0.000000 - 0.939234, 0.343278, 0.000000, 0.000000 - 0.939054, 0.343770, 0.000000, 0.000000 - 0.938874, 0.344261, 0.000000, 0.000000 - 0.938693, 0.344753, 0.000000, 0.000000 - 0.938513, 0.345245, 0.000000, 0.000000 - 0.938332, 0.345736, 0.000000, 0.000000 - 0.938151, 0.346228, 0.000000, 0.000000 - 0.937969, 0.346719, 0.000000, 0.000000 - 0.937787, 0.347210, 0.000000, 0.000000 - 0.937605, 0.347701, 0.000000, 0.000000 - 0.937423, 0.348192, 0.000000, 0.000000 - 0.937241, 0.348683, 0.000000, 0.000000 - 0.937058, 0.349174, 0.000000, 0.000000 - 0.936875, 0.349665, 0.000000, 0.000000 - 0.936692, 0.350156, 0.000000, 0.000000 - 0.936508, 0.350646, 0.000000, 0.000000 - 0.936324, 0.351137, 0.000000, 0.000000 - 0.936140, 0.351627, 0.000000, 0.000000 - 0.935956, 0.352117, 0.000000, 0.000000 - 0.935771, 0.352607, 0.000000, 0.000000 - 0.935587, 0.353098, 0.000000, 0.000000 - 0.935401, 0.353588, 0.000000, 0.000000 - 0.935216, 0.354077, 0.000000, 0.000000 - 0.935031, 0.354567, 0.000000, 0.000000 - 0.934845, 0.355057, 0.000000, 0.000000 - 0.934659, 0.355547, 0.000000, 0.000000 - 0.934472, 0.356036, 0.000000, 0.000000 - 0.934286, 0.356525, 0.000000, 0.000000 - 0.934099, 0.357015, 0.000000, 0.000000 - 0.933912, 0.357504, 0.000000, 0.000000 - 0.933724, 0.357993, 0.000000, 0.000000 - 0.933537, 0.358482, 0.000000, 0.000000 - 0.933349, 0.358971, 0.000000, 0.000000 - 0.933161, 0.359460, 0.000000, 0.000000 - 0.932972, 0.359948, 0.000000, 0.000000 - 0.932784, 0.360437, 0.000000, 0.000000 - 0.932595, 0.360926, 0.000000, 0.000000 - 0.932405, 0.361414, 0.000000, 0.000000 - 0.932216, 0.361902, 0.000000, 0.000000 - 0.932026, 0.362391, 0.000000, 0.000000 - 0.931836, 0.362879, 0.000000, 0.000000 - 0.931646, 0.363367, 0.000000, 0.000000 - 0.931456, 0.363855, 0.000000, 0.000000 - 0.931265, 0.364342, 0.000000, 0.000000 - 0.931074, 0.364830, 0.000000, 0.000000 - 0.930883, 0.365318, 0.000000, 0.000000 - 0.930691, 0.365805, 0.000000, 0.000000 - 0.930500, 0.366293, 0.000000, 0.000000 - 0.930308, 0.366780, 0.000000, 0.000000 - 0.930115, 0.367267, 0.000000, 0.000000 - 0.929923, 0.367754, 0.000000, 0.000000 - 0.929730, 0.368241, 0.000000, 0.000000 - 0.929537, 0.368728, 0.000000, 0.000000 - 0.929344, 0.369215, 0.000000, 0.000000 - 0.929150, 0.369702, 0.000000, 0.000000 - 0.928957, 0.370188, 0.000000, 0.000000 - 0.928763, 0.370675, 0.000000, 0.000000 - 0.928568, 0.371161, 0.000000, 0.000000 - 0.928374, 0.371648, 0.000000, 0.000000 - 0.928179, 0.372134, 0.000000, 0.000000 - 0.927984, 0.372620, 0.000000, 0.000000 - 0.927789, 0.373106, 0.000000, 0.000000 - 0.927593, 0.373592, 0.000000, 0.000000 - 0.927397, 0.374078, 0.000000, 0.000000 - 0.927201, 0.374563, 0.000000, 0.000000 - 0.927005, 0.375049, 0.000000, 0.000000 - 0.926808, 0.375535, 0.000000, 0.000000 - 0.926612, 0.376020, 0.000000, 0.000000 - 0.926415, 0.376505, 0.000000, 0.000000 - 0.926217, 0.376990, 0.000000, 0.000000 - 0.926020, 0.377475, 0.000000, 0.000000 - 0.925822, 0.377960, 0.000000, 0.000000 - 0.925624, 0.378445, 0.000000, 0.000000 - 0.925425, 0.378930, 0.000000, 0.000000 - 0.925227, 0.379415, 0.000000, 0.000000 - 0.925028, 0.379899, 0.000000, 0.000000 - 0.924829, 0.380384, 0.000000, 0.000000 - 0.924629, 0.380868, 0.000000, 0.000000 - 0.924430, 0.381352, 0.000000, 0.000000 - 0.924230, 0.381836, 0.000000, 0.000000 - 0.924030, 0.382320, 0.000000, 0.000000 - 0.923829, 0.382804, 0.000000, 0.000000 - 0.923629, 0.383288, 0.000000, 0.000000 - 0.923428, 0.383772, 0.000000, 0.000000 - 0.923227, 0.384256, 0.000000, 0.000000 - 0.923025, 0.384739, 0.000000, 0.000000 - 0.922824, 0.385222, 0.000000, 0.000000 - 0.922622, 0.385706, 0.000000, 0.000000 - 0.922420, 0.386189, 0.000000, 0.000000 - 0.922217, 0.386672, 0.000000, 0.000000 - 0.922015, 0.387155, 0.000000, 0.000000 - 0.921812, 0.387638, 0.000000, 0.000000 - 0.921609, 0.388121, 0.000000, 0.000000 - 0.921405, 0.388603, 0.000000, 0.000000 - 0.921201, 0.389086, 0.000000, 0.000000 - 0.920998, 0.389568, 0.000000, 0.000000 - 0.920793, 0.390051, 0.000000, 0.000000 - 0.920589, 0.390533, 0.000000, 0.000000 - 0.920384, 0.391015, 0.000000, 0.000000 - 0.920179, 0.391497, 0.000000, 0.000000 - 0.919974, 0.391979, 0.000000, 0.000000 - 0.919769, 0.392461, 0.000000, 0.000000 - 0.919563, 0.392942, 0.000000, 0.000000 - 0.919357, 0.393424, 0.000000, 0.000000 - 0.919151, 0.393906, 0.000000, 0.000000 - 0.918944, 0.394387, 0.000000, 0.000000 - 0.918738, 0.394868, 0.000000, 0.000000 - 0.918531, 0.395349, 0.000000, 0.000000 - 0.918324, 0.395830, 0.000000, 0.000000 - 0.918116, 0.396311, 0.000000, 0.000000 - 0.917908, 0.396792, 0.000000, 0.000000 - 0.917701, 0.397273, 0.000000, 0.000000 - 0.917492, 0.397753, 0.000000, 0.000000 - 0.917284, 0.398234, 0.000000, 0.000000 - 0.917075, 0.398714, 0.000000, 0.000000 - 0.916866, 0.399195, 0.000000, 0.000000 - 0.916657, 0.399675, 0.000000, 0.000000 - 0.916448, 0.400155, 0.000000, 0.000000 - 0.916238, 0.400635, 0.000000, 0.000000 - 0.916028, 0.401115, 0.000000, 0.000000 - 0.915818, 0.401594, 0.000000, 0.000000 - 0.915607, 0.402074, 0.000000, 0.000000 - 0.915396, 0.402554, 0.000000, 0.000000 - 0.915185, 0.403033, 0.000000, 0.000000 - 0.914974, 0.403512, 0.000000, 0.000000 - 0.914763, 0.403991, 0.000000, 0.000000 - 0.914551, 0.404471, 0.000000, 0.000000 - 0.914339, 0.404950, 0.000000, 0.000000 - 0.914127, 0.405428, 0.000000, 0.000000 - 0.913914, 0.405907, 0.000000, 0.000000 - 0.913702, 0.406386, 0.000000, 0.000000 - 0.913489, 0.406864, 0.000000, 0.000000 - 0.913275, 0.407343, 0.000000, 0.000000 - 0.913062, 0.407821, 0.000000, 0.000000 - 0.912848, 0.408299, 0.000000, 0.000000 - 0.912634, 0.408777, 0.000000, 0.000000 - 0.912420, 0.409255, 0.000000, 0.000000 - 0.912206, 0.409733, 0.000000, 0.000000 - 0.911991, 0.410211, 0.000000, 0.000000 - 0.911776, 0.410688, 0.000000, 0.000000 - 0.911561, 0.411166, 0.000000, 0.000000 - 0.911345, 0.411643, 0.000000, 0.000000 - 0.911129, 0.412121, 0.000000, 0.000000 - 0.910913, 0.412598, 0.000000, 0.000000 - 0.910697, 0.413075, 0.000000, 0.000000 - 0.910481, 0.413552, 0.000000, 0.000000 - 0.910264, 0.414029, 0.000000, 0.000000 - 0.910047, 0.414505, 0.000000, 0.000000 - 0.909830, 0.414982, 0.000000, 0.000000 - 0.909612, 0.415458, 0.000000, 0.000000 - 0.909394, 0.415935, 0.000000, 0.000000 - 0.909177, 0.416411, 0.000000, 0.000000 - 0.908958, 0.416887, 0.000000, 0.000000 - 0.908740, 0.417363, 0.000000, 0.000000 - 0.908521, 0.417839, 0.000000, 0.000000 - 0.908302, 0.418315, 0.000000, 0.000000 - 0.908083, 0.418791, 0.000000, 0.000000 - 0.907863, 0.419266, 0.000000, 0.000000 - 0.907644, 0.419742, 0.000000, 0.000000 - 0.907424, 0.420217, 0.000000, 0.000000 - 0.907203, 0.420692, 0.000000, 0.000000 - 0.906983, 0.421167, 0.000000, 0.000000 - 0.906762, 0.421642, 0.000000, 0.000000 - 0.906541, 0.422117, 0.000000, 0.000000 - 0.906320, 0.422592, 0.000000, 0.000000 - 0.906099, 0.423067, 0.000000, 0.000000 - 0.905877, 0.423541, 0.000000, 0.000000 - 0.905655, 0.424015, 0.000000, 0.000000 - 0.905433, 0.424490, 0.000000, 0.000000 - 0.905210, 0.424964, 0.000000, 0.000000 - 0.904988, 0.425438, 0.000000, 0.000000 - 0.904765, 0.425912, 0.000000, 0.000000 - 0.904541, 0.426386, 0.000000, 0.000000 - 0.904318, 0.426860, 0.000000, 0.000000 - 0.904094, 0.427333, 0.000000, 0.000000 - 0.903870, 0.427807, 0.000000, 0.000000 - 0.903646, 0.428280, 0.000000, 0.000000 - 0.903422, 0.428753, 0.000000, 0.000000 - 0.903197, 0.429226, 0.000000, 0.000000 - 0.902972, 0.429699, 0.000000, 0.000000 - 0.902747, 0.430172, 0.000000, 0.000000 - 0.902521, 0.430645, 0.000000, 0.000000 - 0.902296, 0.431118, 0.000000, 0.000000 - 0.902070, 0.431590, 0.000000, 0.000000 - 0.901844, 0.432063, 0.000000, 0.000000 - 0.901617, 0.432535, 0.000000, 0.000000 - 0.901390, 0.433007, 0.000000, 0.000000 - 0.901164, 0.433479, 0.000000, 0.000000 - 0.900936, 0.433951, 0.000000, 0.000000 - 0.900709, 0.434423, 0.000000, 0.000000 - 0.900481, 0.434895, 0.000000, 0.000000 - 0.900253, 0.435366, 0.000000, 0.000000 - 0.900025, 0.435838, 0.000000, 0.000000 - 0.899797, 0.436309, 0.000000, 0.000000 - 0.899568, 0.436780, 0.000000, 0.000000 - 0.899339, 0.437251, 0.000000, 0.000000 - 0.899110, 0.437722, 0.000000, 0.000000 - 0.898881, 0.438193, 0.000000, 0.000000 - 0.898651, 0.438664, 0.000000, 0.000000 - 0.898421, 0.439135, 0.000000, 0.000000 - 0.898191, 0.439605, 0.000000, 0.000000 - 0.897961, 0.440076, 0.000000, 0.000000 - 0.897730, 0.440546, 0.000000, 0.000000 - 0.897499, 0.441016, 0.000000, 0.000000 - 0.897268, 0.441486, 0.000000, 0.000000 - 0.897037, 0.441956, 0.000000, 0.000000 - 0.896805, 0.442426, 0.000000, 0.000000 - 0.896573, 0.442895, 0.000000, 0.000000 - 0.896341, 0.443365, 0.000000, 0.000000 - 0.896109, 0.443834, 0.000000, 0.000000 - 0.895876, 0.444304, 0.000000, 0.000000 - 0.895643, 0.444773, 0.000000, 0.000000 - 0.895410, 0.445242, 0.000000, 0.000000 - 0.895177, 0.445711, 0.000000, 0.000000 - 0.894943, 0.446180, 0.000000, 0.000000 - 0.894710, 0.446648, 0.000000, 0.000000 - 0.894476, 0.447117, 0.000000, 0.000000 - 0.894241, 0.447585, 0.000000, 0.000000 - 0.894007, 0.448054, 0.000000, 0.000000 - 0.893772, 0.448522, 0.000000, 0.000000 - 0.893537, 0.448990, 0.000000, 0.000000 - 0.893302, 0.449458, 0.000000, 0.000000 - 0.893066, 0.449926, 0.000000, 0.000000 - 0.892830, 0.450393, 0.000000, 0.000000 - 0.892594, 0.450861, 0.000000, 0.000000 - 0.892358, 0.451328, 0.000000, 0.000000 - 0.892121, 0.451796, 0.000000, 0.000000 - 0.891885, 0.452263, 0.000000, 0.000000 - 0.891648, 0.452730, 0.000000, 0.000000 - 0.891410, 0.453197, 0.000000, 0.000000 - 0.891173, 0.453664, 0.000000, 0.000000 - 0.890935, 0.454130, 0.000000, 0.000000 - 0.890697, 0.454597, 0.000000, 0.000000 - 0.890459, 0.455064, 0.000000, 0.000000 - 0.890220, 0.455530, 0.000000, 0.000000 - 0.889982, 0.455996, 0.000000, 0.000000 - 0.889743, 0.456462, 0.000000, 0.000000 - 0.889504, 0.456928, 0.000000, 0.000000 - 0.889264, 0.457394, 0.000000, 0.000000 - 0.889024, 0.457860, 0.000000, 0.000000 - 0.888785, 0.458325, 0.000000, 0.000000 - 0.888544, 0.458791, 0.000000, 0.000000 - 0.888304, 0.459256, 0.000000, 0.000000 - 0.888063, 0.459721, 0.000000, 0.000000 - 0.887822, 0.460186, 0.000000, 0.000000 - 0.887581, 0.460651, 0.000000, 0.000000 - 0.887340, 0.461116, 0.000000, 0.000000 - 0.887098, 0.461581, 0.000000, 0.000000 - 0.886856, 0.462045, 0.000000, 0.000000 - 0.886614, 0.462510, 0.000000, 0.000000 - 0.886372, 0.462974, 0.000000, 0.000000 - 0.886129, 0.463438, 0.000000, 0.000000 - 0.885886, 0.463902, 0.000000, 0.000000 - 0.885643, 0.464366, 0.000000, 0.000000 - 0.885400, 0.464830, 0.000000, 0.000000 - 0.885156, 0.465294, 0.000000, 0.000000 - 0.884912, 0.465757, 0.000000, 0.000000 - 0.884668, 0.466221, 0.000000, 0.000000 - 0.884424, 0.466684, 0.000000, 0.000000 - 0.884179, 0.467147, 0.000000, 0.000000 - 0.883935, 0.467610, 0.000000, 0.000000 - 0.883690, 0.468073, 0.000000, 0.000000 - 0.883444, 0.468536, 0.000000, 0.000000 - 0.883199, 0.468999, 0.000000, 0.000000 - 0.882953, 0.469461, 0.000000, 0.000000 - 0.882707, 0.469924, 0.000000, 0.000000 - 0.882461, 0.470386, 0.000000, 0.000000 - 0.882214, 0.470848, 0.000000, 0.000000 - 0.881968, 0.471310, 0.000000, 0.000000 - 0.881721, 0.471772, 0.000000, 0.000000 - 0.881473, 0.472234, 0.000000, 0.000000 - 0.881226, 0.472695, 0.000000, 0.000000 - 0.880978, 0.473157, 0.000000, 0.000000 - 0.880730, 0.473618, 0.000000, 0.000000 - 0.880482, 0.474079, 0.000000, 0.000000 - 0.880234, 0.474541, 0.000000, 0.000000 - 0.879985, 0.475002, 0.000000, 0.000000 - 0.879736, 0.475462, 0.000000, 0.000000 - 0.879487, 0.475923, 0.000000, 0.000000 - 0.879237, 0.476384, 0.000000, 0.000000 - 0.878988, 0.476844, 0.000000, 0.000000 - 0.878738, 0.477305, 0.000000, 0.000000 - 0.878488, 0.477765, 0.000000, 0.000000 - 0.878237, 0.478225, 0.000000, 0.000000 - 0.877987, 0.478685, 0.000000, 0.000000 - 0.877736, 0.479145, 0.000000, 0.000000 - 0.877485, 0.479604, 0.000000, 0.000000 - 0.877234, 0.480064, 0.000000, 0.000000 - 0.876982, 0.480523, 0.000000, 0.000000 - 0.876730, 0.480982, 0.000000, 0.000000 - 0.876478, 0.481442, 0.000000, 0.000000 - 0.876226, 0.481901, 0.000000, 0.000000 - 0.875973, 0.482359, 0.000000, 0.000000 - 0.875721, 0.482818, 0.000000, 0.000000 - 0.875468, 0.483277, 0.000000, 0.000000 - 0.875214, 0.483735, 0.000000, 0.000000 - 0.874961, 0.484194, 0.000000, 0.000000 - 0.874707, 0.484652, 0.000000, 0.000000 - 0.874453, 0.485110, 0.000000, 0.000000 - 0.874199, 0.485568, 0.000000, 0.000000 - 0.873945, 0.486026, 0.000000, 0.000000 - 0.873690, 0.486483, 0.000000, 0.000000 - 0.873435, 0.486941, 0.000000, 0.000000 - 0.873180, 0.487398, 0.000000, 0.000000 - 0.872924, 0.487856, 0.000000, 0.000000 - 0.872669, 0.488313, 0.000000, 0.000000 - 0.872413, 0.488770, 0.000000, 0.000000 - 0.872157, 0.489227, 0.000000, 0.000000 - 0.871900, 0.489683, 0.000000, 0.000000 - 0.871644, 0.490140, 0.000000, 0.000000 - 0.871387, 0.490596, 0.000000, 0.000000 - 0.871130, 0.491053, 0.000000, 0.000000 - 0.870872, 0.491509, 0.000000, 0.000000 - 0.870615, 0.491965, 0.000000, 0.000000 - 0.870357, 0.492421, 0.000000, 0.000000 - 0.870099, 0.492877, 0.000000, 0.000000 - 0.869841, 0.493332, 0.000000, 0.000000 - 0.869582, 0.493788, 0.000000, 0.000000 - 0.869324, 0.494243, 0.000000, 0.000000 - 0.869065, 0.494699, 0.000000, 0.000000 - 0.868805, 0.495154, 0.000000, 0.000000 - 0.868546, 0.495609, 0.000000, 0.000000 - 0.868286, 0.496064, 0.000000, 0.000000 - 0.868026, 0.496518, 0.000000, 0.000000 - 0.867766, 0.496973, 0.000000, 0.000000 - 0.867506, 0.497427, 0.000000, 0.000000 - 0.867245, 0.497882, 0.000000, 0.000000 - 0.866984, 0.498336, 0.000000, 0.000000 - 0.866723, 0.498790, 0.000000, 0.000000 - 0.866462, 0.499244, 0.000000, 0.000000 - 0.866200, 0.499698, 0.000000, 0.000000 - 0.865938, 0.500151, 0.000000, 0.000000 - 0.865676, 0.500605, 0.000000, 0.000000 - 0.865414, 0.501058, 0.000000, 0.000000 - 0.865151, 0.501511, 0.000000, 0.000000 - 0.864888, 0.501964, 0.000000, 0.000000 - 0.864625, 0.502417, 0.000000, 0.000000 - 0.864362, 0.502870, 0.000000, 0.000000 - 0.864099, 0.503323, 0.000000, 0.000000 - 0.863835, 0.503775, 0.000000, 0.000000 - 0.863571, 0.504228, 0.000000, 0.000000 - 0.863307, 0.504680, 0.000000, 0.000000 - 0.863042, 0.505132, 0.000000, 0.000000 - 0.862777, 0.505584, 0.000000, 0.000000 - 0.862512, 0.506036, 0.000000, 0.000000 - 0.862247, 0.506487, 0.000000, 0.000000 - 0.861982, 0.506939, 0.000000, 0.000000 - 0.861716, 0.507390, 0.000000, 0.000000 - 0.861450, 0.507842, 0.000000, 0.000000 - 0.861184, 0.508293, 0.000000, 0.000000 - 0.860918, 0.508744, 0.000000, 0.000000 - 0.860651, 0.509195, 0.000000, 0.000000 - 0.860385, 0.509645, 0.000000, 0.000000 - 0.860117, 0.510096, 0.000000, 0.000000 - 0.859850, 0.510546, 0.000000, 0.000000 - 0.859583, 0.510997, 0.000000, 0.000000 - 0.859315, 0.511447, 0.000000, 0.000000 - 0.859047, 0.511897, 0.000000, 0.000000 - 0.858779, 0.512347, 0.000000, 0.000000 - 0.858510, 0.512797, 0.000000, 0.000000 - 0.858241, 0.513246, 0.000000, 0.000000 - 0.857973, 0.513696, 0.000000, 0.000000 - 0.857703, 0.514145, 0.000000, 0.000000 - 0.857434, 0.514594, 0.000000, 0.000000 - 0.857164, 0.515043, 0.000000, 0.000000 - 0.856894, 0.515492, 0.000000, 0.000000 - 0.856624, 0.515941, 0.000000, 0.000000 - 0.856354, 0.516389, 0.000000, 0.000000 - 0.856083, 0.516838, 0.000000, 0.000000 - 0.855813, 0.517286, 0.000000, 0.000000 - 0.855541, 0.517734, 0.000000, 0.000000 - 0.855270, 0.518182, 0.000000, 0.000000 - 0.854999, 0.518630, 0.000000, 0.000000 - 0.854727, 0.519078, 0.000000, 0.000000 - 0.854455, 0.519526, 0.000000, 0.000000 - 0.854183, 0.519973, 0.000000, 0.000000 - 0.853910, 0.520420, 0.000000, 0.000000 - 0.853638, 0.520868, 0.000000, 0.000000 - 0.853365, 0.521315, 0.000000, 0.000000 - 0.853091, 0.521761, 0.000000, 0.000000 - 0.852818, 0.522208, 0.000000, 0.000000 - 0.852544, 0.522655, 0.000000, 0.000000 - 0.852270, 0.523101, 0.000000, 0.000000 - 0.851996, 0.523548, 0.000000, 0.000000 - 0.851722, 0.523994, 0.000000, 0.000000 - 0.851447, 0.524440, 0.000000, 0.000000 - 0.851173, 0.524886, 0.000000, 0.000000 - 0.850898, 0.525332, 0.000000, 0.000000 - 0.850622, 0.525777, 0.000000, 0.000000 - 0.850347, 0.526223, 0.000000, 0.000000 - 0.850071, 0.526668, 0.000000, 0.000000 - 0.849795, 0.527113, 0.000000, 0.000000 - 0.849519, 0.527558, 0.000000, 0.000000 - 0.849243, 0.528003, 0.000000, 0.000000 - 0.848966, 0.528448, 0.000000, 0.000000 - 0.848689, 0.528892, 0.000000, 0.000000 - 0.848412, 0.529337, 0.000000, 0.000000 - 0.848134, 0.529781, 0.000000, 0.000000 - 0.847857, 0.530225, 0.000000, 0.000000 - 0.847579, 0.530669, 0.000000, 0.000000 - 0.847301, 0.531113, 0.000000, 0.000000 - 0.847023, 0.531557, 0.000000, 0.000000 - 0.846744, 0.532000, 0.000000, 0.000000 - 0.846465, 0.532444, 0.000000, 0.000000 - 0.846186, 0.532887, 0.000000, 0.000000 - 0.845907, 0.533330, 0.000000, 0.000000 - 0.845628, 0.533773, 0.000000, 0.000000 - 0.845348, 0.534216, 0.000000, 0.000000 - 0.845068, 0.534659, 0.000000, 0.000000 - 0.844788, 0.535101, 0.000000, 0.000000 - 0.844507, 0.535544, 0.000000, 0.000000 - 0.844227, 0.535986, 0.000000, 0.000000 - 0.843946, 0.536428, 0.000000, 0.000000 - 0.843665, 0.536870, 0.000000, 0.000000 - 0.843384, 0.537312, 0.000000, 0.000000 - 0.843102, 0.537754, 0.000000, 0.000000 - 0.842820, 0.538195, 0.000000, 0.000000 - 0.842538, 0.538636, 0.000000, 0.000000 - 0.842256, 0.539078, 0.000000, 0.000000 - 0.841974, 0.539519, 0.000000, 0.000000 - 0.841691, 0.539960, 0.000000, 0.000000 - 0.841408, 0.540400, 0.000000, 0.000000 - 0.841125, 0.540841, 0.000000, 0.000000 - 0.840841, 0.541282, 0.000000, 0.000000 - 0.840558, 0.541722, 0.000000, 0.000000 - 0.840274, 0.542162, 0.000000, 0.000000 - 0.839990, 0.542602, 0.000000, 0.000000 - 0.839706, 0.543042, 0.000000, 0.000000 - 0.839421, 0.543482, 0.000000, 0.000000 - 0.839136, 0.543921, 0.000000, 0.000000 - 0.838851, 0.544361, 0.000000, 0.000000 - 0.838566, 0.544800, 0.000000, 0.000000 - 0.838280, 0.545239, 0.000000, 0.000000 - 0.837995, 0.545678, 0.000000, 0.000000 - 0.837709, 0.546117, 0.000000, 0.000000 - 0.837423, 0.546556, 0.000000, 0.000000 - 0.837136, 0.546994, 0.000000, 0.000000 - 0.836850, 0.547433, 0.000000, 0.000000 - 0.836563, 0.547871, 0.000000, 0.000000 - 0.836276, 0.548309, 0.000000, 0.000000 - 0.835988, 0.548747, 0.000000, 0.000000 - 0.835701, 0.549185, 0.000000, 0.000000 - 0.835413, 0.549622, 0.000000, 0.000000 - 0.835125, 0.550060, 0.000000, 0.000000 - 0.834837, 0.550497, 0.000000, 0.000000 - 0.834549, 0.550934, 0.000000, 0.000000 - 0.834260, 0.551371, 0.000000, 0.000000 - 0.833971, 0.551808, 0.000000, 0.000000 - 0.833682, 0.552245, 0.000000, 0.000000 - 0.833392, 0.552682, 0.000000, 0.000000 - 0.833103, 0.553118, 0.000000, 0.000000 - 0.832813, 0.553554, 0.000000, 0.000000 - 0.832523, 0.553991, 0.000000, 0.000000 - 0.832233, 0.554427, 0.000000, 0.000000 - 0.831942, 0.554862, 0.000000, 0.000000 - 0.831651, 0.555298, 0.000000, 0.000000 - 0.831360, 0.555734, 0.000000, 0.000000 - 0.831069, 0.556169, 0.000000, 0.000000 - 0.830778, 0.556604, 0.000000, 0.000000 - 0.830486, 0.557039, 0.000000, 0.000000 - 0.830194, 0.557474, 0.000000, 0.000000 - 0.829902, 0.557909, 0.000000, 0.000000 - 0.829610, 0.558343, 0.000000, 0.000000 - 0.829317, 0.558778, 0.000000, 0.000000 - 0.829025, 0.559212, 0.000000, 0.000000 - 0.828732, 0.559646, 0.000000, 0.000000 - 0.828438, 0.560080, 0.000000, 0.000000 - 0.828145, 0.560514, 0.000000, 0.000000 - 0.827851, 0.560948, 0.000000, 0.000000 - 0.827557, 0.561381, 0.000000, 0.000000 - 0.827263, 0.561815, 0.000000, 0.000000 - 0.826969, 0.562248, 0.000000, 0.000000 - 0.826674, 0.562681, 0.000000, 0.000000 - 0.826379, 0.563114, 0.000000, 0.000000 - 0.826084, 0.563547, 0.000000, 0.000000 - 0.825789, 0.563979, 0.000000, 0.000000 - 0.825493, 0.564412, 0.000000, 0.000000 - 0.825198, 0.564844, 0.000000, 0.000000 - 0.824902, 0.565276, 0.000000, 0.000000 - 0.824606, 0.565708, 0.000000, 0.000000 - 0.824309, 0.566140, 0.000000, 0.000000 - 0.824012, 0.566572, 0.000000, 0.000000 - 0.823716, 0.567003, 0.000000, 0.000000 - 0.823418, 0.567435, 0.000000, 0.000000 - 0.823121, 0.567866, 0.000000, 0.000000 - 0.822824, 0.568297, 0.000000, 0.000000 - 0.822526, 0.568728, 0.000000, 0.000000 - 0.822228, 0.569158, 0.000000, 0.000000 - 0.821930, 0.569589, 0.000000, 0.000000 - 0.821631, 0.570019, 0.000000, 0.000000 - 0.821333, 0.570450, 0.000000, 0.000000 - 0.821034, 0.570880, 0.000000, 0.000000 - 0.820734, 0.571310, 0.000000, 0.000000 - 0.820435, 0.571740, 0.000000, 0.000000 - 0.820136, 0.572169, 0.000000, 0.000000 - 0.819836, 0.572599, 0.000000, 0.000000 - 0.819536, 0.573028, 0.000000, 0.000000 - 0.819235, 0.573457, 0.000000, 0.000000 - 0.818935, 0.573886, 0.000000, 0.000000 - 0.818634, 0.574315, 0.000000, 0.000000 - 0.818333, 0.574744, 0.000000, 0.000000 - 0.818032, 0.575172, 0.000000, 0.000000 - 0.817731, 0.575601, 0.000000, 0.000000 - 0.817429, 0.576029, 0.000000, 0.000000 - 0.817127, 0.576457, 0.000000, 0.000000 - 0.816825, 0.576885, 0.000000, 0.000000 - 0.816523, 0.577313, 0.000000, 0.000000 - 0.816221, 0.577740, 0.000000, 0.000000 - 0.815918, 0.578168, 0.000000, 0.000000 - 0.815615, 0.578595, 0.000000, 0.000000 - 0.815312, 0.579022, 0.000000, 0.000000 - 0.815008, 0.579449, 0.000000, 0.000000 - 0.814705, 0.579876, 0.000000, 0.000000 - 0.814401, 0.580303, 0.000000, 0.000000 - 0.814097, 0.580729, 0.000000, 0.000000 - 0.813793, 0.581155, 0.000000, 0.000000 - 0.813488, 0.581581, 0.000000, 0.000000 - 0.813183, 0.582008, 0.000000, 0.000000 - 0.812878, 0.582433, 0.000000, 0.000000 - 0.812573, 0.582859, 0.000000, 0.000000 - 0.812268, 0.583285, 0.000000, 0.000000 - 0.811962, 0.583710, 0.000000, 0.000000 - 0.811656, 0.584135, 0.000000, 0.000000 - 0.811350, 0.584560, 0.000000, 0.000000 - 0.811044, 0.584985, 0.000000, 0.000000 - 0.810738, 0.585410, 0.000000, 0.000000 - 0.810431, 0.585834, 0.000000, 0.000000 - 0.810124, 0.586259, 0.000000, 0.000000 - 0.809817, 0.586683, 0.000000, 0.000000 - 0.809509, 0.587107, 0.000000, 0.000000 - 0.809202, 0.587531, 0.000000, 0.000000 - 0.808894, 0.587955, 0.000000, 0.000000 - 0.808586, 0.588378, 0.000000, 0.000000 - 0.808277, 0.588802, 0.000000, 0.000000 - 0.807969, 0.589225, 0.000000, 0.000000 - 0.807660, 0.589648, 0.000000, 0.000000 - 0.807351, 0.590071, 0.000000, 0.000000 - 0.807042, 0.590494, 0.000000, 0.000000 - 0.806733, 0.590917, 0.000000, 0.000000 - 0.806423, 0.591339, 0.000000, 0.000000 - 0.806113, 0.591761, 0.000000, 0.000000 - 0.805803, 0.592183, 0.000000, 0.000000 - 0.805493, 0.592605, 0.000000, 0.000000 - 0.805182, 0.593027, 0.000000, 0.000000 - 0.804872, 0.593449, 0.000000, 0.000000 - 0.804561, 0.593870, 0.000000, 0.000000 - 0.804250, 0.594292, 0.000000, 0.000000 - 0.803938, 0.594713, 0.000000, 0.000000 - 0.803627, 0.595134, 0.000000, 0.000000 - 0.803315, 0.595555, 0.000000, 0.000000 - 0.803003, 0.595975, 0.000000, 0.000000 - 0.802690, 0.596396, 0.000000, 0.000000 - 0.802378, 0.596816, 0.000000, 0.000000 - 0.802065, 0.597236, 0.000000, 0.000000 - 0.801752, 0.597656, 0.000000, 0.000000 - 0.801439, 0.598076, 0.000000, 0.000000 - 0.801126, 0.598496, 0.000000, 0.000000 - 0.800812, 0.598915, 0.000000, 0.000000 - 0.800498, 0.599335, 0.000000, 0.000000 - 0.800184, 0.599754, 0.000000, 0.000000 - 0.799870, 0.600173, 0.000000, 0.000000 - 0.799556, 0.600592, 0.000000, 0.000000 - 0.799241, 0.601011, 0.000000, 0.000000 - 0.798926, 0.601429, 0.000000, 0.000000 - 0.798611, 0.601848, 0.000000, 0.000000 - 0.798296, 0.602266, 0.000000, 0.000000 - 0.797980, 0.602684, 0.000000, 0.000000 - 0.797664, 0.603102, 0.000000, 0.000000 - 0.797348, 0.603519, 0.000000, 0.000000 - 0.797032, 0.603937, 0.000000, 0.000000 - 0.796716, 0.604354, 0.000000, 0.000000 - 0.796399, 0.604772, 0.000000, 0.000000 - 0.796082, 0.605189, 0.000000, 0.000000 - 0.795765, 0.605605, 0.000000, 0.000000 - 0.795448, 0.606022, 0.000000, 0.000000 - 0.795130, 0.606439, 0.000000, 0.000000 - 0.794812, 0.606855, 0.000000, 0.000000 - 0.794494, 0.607271, 0.000000, 0.000000 - 0.794176, 0.607687, 0.000000, 0.000000 - 0.793858, 0.608103, 0.000000, 0.000000 - 0.793539, 0.608519, 0.000000, 0.000000 - 0.793220, 0.608935, 0.000000, 0.000000 - 0.792901, 0.609350, 0.000000, 0.000000 - 0.792582, 0.609765, 0.000000, 0.000000 - 0.792263, 0.610180, 0.000000, 0.000000 - 0.791943, 0.610595, 0.000000, 0.000000 - 0.791623, 0.611010, 0.000000, 0.000000 - 0.791303, 0.611424, 0.000000, 0.000000 - 0.790983, 0.611839, 0.000000, 0.000000 - 0.790662, 0.612253, 0.000000, 0.000000 - 0.790341, 0.612667, 0.000000, 0.000000 - 0.790020, 0.613081, 0.000000, 0.000000 - 0.789699, 0.613495, 0.000000, 0.000000 - 0.789377, 0.613908, 0.000000, 0.000000 - 0.789056, 0.614321, 0.000000, 0.000000 - 0.788734, 0.614735, 0.000000, 0.000000 - 0.788412, 0.615148, 0.000000, 0.000000 - 0.788090, 0.615561, 0.000000, 0.000000 - 0.787767, 0.615973, 0.000000, 0.000000 - 0.787444, 0.616386, 0.000000, 0.000000 - 0.787121, 0.616798, 0.000000, 0.000000 - 0.786798, 0.617210, 0.000000, 0.000000 - 0.786475, 0.617622, 0.000000, 0.000000 - 0.786151, 0.618034, 0.000000, 0.000000 - 0.785827, 0.618446, 0.000000, 0.000000 - 0.785503, 0.618857, 0.000000, 0.000000 - 0.785179, 0.619269, 0.000000, 0.000000 - 0.784855, 0.619680, 0.000000, 0.000000 - 0.784530, 0.620091, 0.000000, 0.000000 - 0.784205, 0.620502, 0.000000, 0.000000 - 0.783880, 0.620912, 0.000000, 0.000000 - 0.783555, 0.621323, 0.000000, 0.000000 - 0.783229, 0.621733, 0.000000, 0.000000 - 0.782903, 0.622143, 0.000000, 0.000000 - 0.782577, 0.622553, 0.000000, 0.000000 - 0.782251, 0.622963, 0.000000, 0.000000 - 0.781925, 0.623373, 0.000000, 0.000000 - 0.781598, 0.623782, 0.000000, 0.000000 - 0.781271, 0.624192, 0.000000, 0.000000 - 0.780944, 0.624601, 0.000000, 0.000000 - 0.780617, 0.625010, 0.000000, 0.000000 - 0.780290, 0.625418, 0.000000, 0.000000 - 0.779962, 0.625827, 0.000000, 0.000000 - 0.779634, 0.626235, 0.000000, 0.000000 - 0.779306, 0.626644, 0.000000, 0.000000 - 0.778978, 0.627052, 0.000000, 0.000000 - 0.778649, 0.627460, 0.000000, 0.000000 - 0.778320, 0.627867, 0.000000, 0.000000 - 0.777991, 0.628275, 0.000000, 0.000000 - 0.777662, 0.628682, 0.000000, 0.000000 - 0.777333, 0.629090, 0.000000, 0.000000 - 0.777003, 0.629497, 0.000000, 0.000000 - 0.776673, 0.629904, 0.000000, 0.000000 - 0.776343, 0.630310, 0.000000, 0.000000 - 0.776013, 0.630717, 0.000000, 0.000000 - 0.775683, 0.631123, 0.000000, 0.000000 - 0.775352, 0.631529, 0.000000, 0.000000 - 0.775021, 0.631935, 0.000000, 0.000000 - 0.774690, 0.632341, 0.000000, 0.000000 - 0.774359, 0.632747, 0.000000, 0.000000 - 0.774027, 0.633153, 0.000000, 0.000000 - 0.773695, 0.633558, 0.000000, 0.000000 - 0.773363, 0.633963, 0.000000, 0.000000 - 0.773031, 0.634368, 0.000000, 0.000000 - 0.772699, 0.634773, 0.000000, 0.000000 - 0.772366, 0.635177, 0.000000, 0.000000 - 0.772033, 0.635582, 0.000000, 0.000000 - 0.771700, 0.635986, 0.000000, 0.000000 - 0.771367, 0.636390, 0.000000, 0.000000 - 0.771034, 0.636794, 0.000000, 0.000000 - 0.770700, 0.637198, 0.000000, 0.000000 - 0.770366, 0.637602, 0.000000, 0.000000 - 0.770032, 0.638005, 0.000000, 0.000000 - 0.769698, 0.638408, 0.000000, 0.000000 - 0.769363, 0.638811, 0.000000, 0.000000 - 0.769029, 0.639214, 0.000000, 0.000000 - 0.768694, 0.639617, 0.000000, 0.000000 - 0.768359, 0.640019, 0.000000, 0.000000 - 0.768023, 0.640422, 0.000000, 0.000000 - 0.767688, 0.640824, 0.000000, 0.000000 - 0.767352, 0.641226, 0.000000, 0.000000 - 0.767016, 0.641628, 0.000000, 0.000000 - 0.766680, 0.642029, 0.000000, 0.000000 - 0.766344, 0.642431, 0.000000, 0.000000 - 0.766007, 0.642832, 0.000000, 0.000000 - 0.765670, 0.643233, 0.000000, 0.000000 - 0.765333, 0.643634, 0.000000, 0.000000 - 0.764996, 0.644035, 0.000000, 0.000000 - 0.764659, 0.644436, 0.000000, 0.000000 - 0.764321, 0.644836, 0.000000, 0.000000 - 0.763983, 0.645236, 0.000000, 0.000000 - 0.763645, 0.645636, 0.000000, 0.000000 - 0.763307, 0.646036, 0.000000, 0.000000 - 0.762968, 0.646436, 0.000000, 0.000000 - 0.762630, 0.646835, 0.000000, 0.000000 - 0.762291, 0.647235, 0.000000, 0.000000 - 0.761952, 0.647634, 0.000000, 0.000000 - 0.761612, 0.648033, 0.000000, 0.000000 - 0.761273, 0.648432, 0.000000, 0.000000 - 0.760933, 0.648830, 0.000000, 0.000000 - 0.760593, 0.649229, 0.000000, 0.000000 - 0.760253, 0.649627, 0.000000, 0.000000 - 0.759913, 0.650025, 0.000000, 0.000000 - 0.759572, 0.650423, 0.000000, 0.000000 - 0.759231, 0.650821, 0.000000, 0.000000 - 0.758890, 0.651219, 0.000000, 0.000000 - 0.758549, 0.651616, 0.000000, 0.000000 - 0.758208, 0.652013, 0.000000, 0.000000 - 0.757866, 0.652410, 0.000000, 0.000000 - 0.757524, 0.652807, 0.000000, 0.000000 - 0.757182, 0.653204, 0.000000, 0.000000 - 0.756840, 0.653600, 0.000000, 0.000000 - 0.756497, 0.653997, 0.000000, 0.000000 - 0.756155, 0.654393, 0.000000, 0.000000 - 0.755812, 0.654789, 0.000000, 0.000000 - 0.755469, 0.655185, 0.000000, 0.000000 - 0.755126, 0.655580, 0.000000, 0.000000 - 0.754782, 0.655976, 0.000000, 0.000000 - 0.754438, 0.656371, 0.000000, 0.000000 - 0.754095, 0.656766, 0.000000, 0.000000 - 0.753750, 0.657161, 0.000000, 0.000000 - 0.753406, 0.657555, 0.000000, 0.000000 - 0.753062, 0.657950, 0.000000, 0.000000 - 0.752717, 0.658344, 0.000000, 0.000000 - 0.752372, 0.658739, 0.000000, 0.000000 - 0.752027, 0.659132, 0.000000, 0.000000 - 0.751682, 0.659526, 0.000000, 0.000000 - 0.751336, 0.659920, 0.000000, 0.000000 - 0.750990, 0.660313, 0.000000, 0.000000 - 0.750644, 0.660707, 0.000000, 0.000000 - 0.750298, 0.661100, 0.000000, 0.000000 - 0.749952, 0.661493, 0.000000, 0.000000 - 0.749605, 0.661885, 0.000000, 0.000000 - 0.749258, 0.662278, 0.000000, 0.000000 - 0.748911, 0.662670, 0.000000, 0.000000 - 0.748564, 0.663062, 0.000000, 0.000000 - 0.748217, 0.663454, 0.000000, 0.000000 - 0.747869, 0.663846, 0.000000, 0.000000 - 0.747521, 0.664238, 0.000000, 0.000000 - 0.747173, 0.664629, 0.000000, 0.000000 - 0.746825, 0.665020, 0.000000, 0.000000 - 0.746477, 0.665412, 0.000000, 0.000000 - 0.746128, 0.665802, 0.000000, 0.000000 - 0.745779, 0.666193, 0.000000, 0.000000 - 0.745430, 0.666584, 0.000000, 0.000000 - 0.745081, 0.666974, 0.000000, 0.000000 - 0.744732, 0.667364, 0.000000, 0.000000 - 0.744382, 0.667754, 0.000000, 0.000000 - 0.744032, 0.668144, 0.000000, 0.000000 - 0.743682, 0.668534, 0.000000, 0.000000 - 0.743332, 0.668923, 0.000000, 0.000000 - 0.742981, 0.669312, 0.000000, 0.000000 - 0.742631, 0.669701, 0.000000, 0.000000 - 0.742280, 0.670090, 0.000000, 0.000000 - 0.741929, 0.670479, 0.000000, 0.000000 - 0.741577, 0.670867, 0.000000, 0.000000 - 0.741226, 0.671256, 0.000000, 0.000000 - 0.740874, 0.671644, 0.000000, 0.000000 - 0.740522, 0.672032, 0.000000, 0.000000 - 0.740170, 0.672420, 0.000000, 0.000000 - 0.739818, 0.672807, 0.000000, 0.000000 - 0.739465, 0.673195, 0.000000, 0.000000 - 0.739113, 0.673582, 0.000000, 0.000000 - 0.738760, 0.673969, 0.000000, 0.000000 - 0.738407, 0.674356, 0.000000, 0.000000 - 0.738053, 0.674742, 0.000000, 0.000000 - 0.737700, 0.675129, 0.000000, 0.000000 - 0.737346, 0.675515, 0.000000, 0.000000 - 0.736992, 0.675901, 0.000000, 0.000000 - 0.736638, 0.676287, 0.000000, 0.000000 - 0.736284, 0.676673, 0.000000, 0.000000 - 0.735929, 0.677058, 0.000000, 0.000000 - 0.735575, 0.677444, 0.000000, 0.000000 - 0.735220, 0.677829, 0.000000, 0.000000 - 0.734864, 0.678214, 0.000000, 0.000000 - 0.734509, 0.678599, 0.000000, 0.000000 - 0.734154, 0.678983, 0.000000, 0.000000 - 0.733798, 0.679368, 0.000000, 0.000000 - 0.733442, 0.679752, 0.000000, 0.000000 - 0.733086, 0.680136, 0.000000, 0.000000 - 0.732729, 0.680520, 0.000000, 0.000000 - 0.732373, 0.680904, 0.000000, 0.000000 - 0.732016, 0.681287, 0.000000, 0.000000 - 0.731659, 0.681671, 0.000000, 0.000000 - 0.731302, 0.682054, 0.000000, 0.000000 - 0.730945, 0.682437, 0.000000, 0.000000 - 0.730587, 0.682819, 0.000000, 0.000000 - 0.730229, 0.683202, 0.000000, 0.000000 - 0.729872, 0.683584, 0.000000, 0.000000 - 0.729513, 0.683967, 0.000000, 0.000000 - 0.729155, 0.684349, 0.000000, 0.000000 - 0.728797, 0.684730, 0.000000, 0.000000 - 0.728438, 0.685112, 0.000000, 0.000000 - 0.728079, 0.685493, 0.000000, 0.000000 - 0.727720, 0.685875, 0.000000, 0.000000 - 0.727360, 0.686256, 0.000000, 0.000000 - 0.727001, 0.686637, 0.000000, 0.000000 - 0.726641, 0.687017, 0.000000, 0.000000 - 0.726281, 0.687398, 0.000000, 0.000000 - 0.725921, 0.687778, 0.000000, 0.000000 - 0.725561, 0.688158, 0.000000, 0.000000 - 0.725200, 0.688538, 0.000000, 0.000000 - 0.724839, 0.688918, 0.000000, 0.000000 - 0.724478, 0.689297, 0.000000, 0.000000 - 0.724117, 0.689677, 0.000000, 0.000000 - 0.723756, 0.690056, 0.000000, 0.000000 - 0.723394, 0.690435, 0.000000, 0.000000 - 0.723033, 0.690814, 0.000000, 0.000000 - 0.722671, 0.691192, 0.000000, 0.000000 - 0.722309, 0.691571, 0.000000, 0.000000 - 0.721946, 0.691949, 0.000000, 0.000000 - 0.721584, 0.692327, 0.000000, 0.000000 - 0.721221, 0.692705, 0.000000, 0.000000 - 0.720858, 0.693083, 0.000000, 0.000000 - 0.720495, 0.693460, 0.000000, 0.000000 - 0.720132, 0.693837, 0.000000, 0.000000 - 0.719768, 0.694214, 0.000000, 0.000000 - 0.719404, 0.694591, 0.000000, 0.000000 - 0.719041, 0.694968, 0.000000, 0.000000 - 0.718676, 0.695345, 0.000000, 0.000000 - 0.718312, 0.695721, 0.000000, 0.000000 - 0.717948, 0.696097, 0.000000, 0.000000 - 0.717583, 0.696473, 0.000000, 0.000000 - 0.717218, 0.696849, 0.000000, 0.000000 - 0.716853, 0.697224, 0.000000, 0.000000 - 0.716488, 0.697600, 0.000000, 0.000000 - 0.716122, 0.697975, 0.000000, 0.000000 - 0.715757, 0.698350, 0.000000, 0.000000 - 0.715391, 0.698725, 0.000000, 0.000000 - 0.715025, 0.699099, 0.000000, 0.000000 - 0.714658, 0.699474, 0.000000, 0.000000 - 0.714292, 0.699848, 0.000000, 0.000000 - 0.713925, 0.700222, 0.000000, 0.000000 - 0.713558, 0.700596, 0.000000, 0.000000 - 0.713191, 0.700969, 0.000000, 0.000000 - 0.712824, 0.701343, 0.000000, 0.000000 - 0.712457, 0.701716, 0.000000, 0.000000 - 0.712089, 0.702089, 0.000000, 0.000000 - 0.711721, 0.702462, 0.000000, 0.000000 - 0.711353, 0.702835, 0.000000, 0.000000 - 0.710985, 0.703207, 0.000000, 0.000000 - 0.710616, 0.703580, 0.000000, 0.000000 - 0.710248, 0.703952, 0.000000, 0.000000 - 0.709879, 0.704324, 0.000000, 0.000000 - 0.709510, 0.704695, 0.000000, 0.000000 - 0.709141, 0.705067, 0.000000, 0.000000 - 0.708771, 0.705438, 0.000000, 0.000000 - 0.708402, 0.705809, 0.000000, 0.000000 - 0.708032, 0.706180, 0.000000, 0.000000 - 0.707662, 0.706551, 0.000000, 0.000000 - 0.707292, 0.706922, 0.000000, 0.000000 - 0.706922, 0.707292, 0.000000, 0.000000 - 0.706551, 0.707662, 0.000000, 0.000000 - 0.706180, 0.708032, 0.000000, 0.000000 - 0.705809, 0.708402, 0.000000, 0.000000 - 0.705438, 0.708771, 0.000000, 0.000000 - 0.705067, 0.709141, 0.000000, 0.000000 - 0.704695, 0.709510, 0.000000, 0.000000 - 0.704324, 0.709879, 0.000000, 0.000000 - 0.703952, 0.710248, 0.000000, 0.000000 - 0.703580, 0.710616, 0.000000, 0.000000 - 0.703207, 0.710985, 0.000000, 0.000000 - 0.702835, 0.711353, 0.000000, 0.000000 - 0.702462, 0.711721, 0.000000, 0.000000 - 0.702089, 0.712089, 0.000000, 0.000000 - 0.701716, 0.712457, 0.000000, 0.000000 - 0.701343, 0.712824, 0.000000, 0.000000 - 0.700969, 0.713191, 0.000000, 0.000000 - 0.700596, 0.713558, 0.000000, 0.000000 - 0.700222, 0.713925, 0.000000, 0.000000 - 0.699848, 0.714292, 0.000000, 0.000000 - 0.699474, 0.714658, 0.000000, 0.000000 - 0.699099, 0.715025, 0.000000, 0.000000 - 0.698725, 0.715391, 0.000000, 0.000000 - 0.698350, 0.715757, 0.000000, 0.000000 - 0.697975, 0.716122, 0.000000, 0.000000 - 0.697600, 0.716488, 0.000000, 0.000000 - 0.697224, 0.716853, 0.000000, 0.000000 - 0.696849, 0.717218, 0.000000, 0.000000 - 0.696473, 0.717583, 0.000000, 0.000000 - 0.696097, 0.717948, 0.000000, 0.000000 - 0.695721, 0.718312, 0.000000, 0.000000 - 0.695345, 0.718676, 0.000000, 0.000000 - 0.694968, 0.719041, 0.000000, 0.000000 - 0.694591, 0.719404, 0.000000, 0.000000 - 0.694214, 0.719768, 0.000000, 0.000000 - 0.693837, 0.720132, 0.000000, 0.000000 - 0.693460, 0.720495, 0.000000, 0.000000 - 0.693083, 0.720858, 0.000000, 0.000000 - 0.692705, 0.721221, 0.000000, 0.000000 - 0.692327, 0.721584, 0.000000, 0.000000 - 0.691949, 0.721946, 0.000000, 0.000000 - 0.691571, 0.722309, 0.000000, 0.000000 - 0.691192, 0.722671, 0.000000, 0.000000 - 0.690814, 0.723033, 0.000000, 0.000000 - 0.690435, 0.723394, 0.000000, 0.000000 - 0.690056, 0.723756, 0.000000, 0.000000 - 0.689677, 0.724117, 0.000000, 0.000000 - 0.689297, 0.724478, 0.000000, 0.000000 - 0.688918, 0.724839, 0.000000, 0.000000 - 0.688538, 0.725200, 0.000000, 0.000000 - 0.688158, 0.725561, 0.000000, 0.000000 - 0.687778, 0.725921, 0.000000, 0.000000 - 0.687398, 0.726281, 0.000000, 0.000000 - 0.687017, 0.726641, 0.000000, 0.000000 - 0.686637, 0.727001, 0.000000, 0.000000 - 0.686256, 0.727360, 0.000000, 0.000000 - 0.685875, 0.727720, 0.000000, 0.000000 - 0.685493, 0.728079, 0.000000, 0.000000 - 0.685112, 0.728438, 0.000000, 0.000000 - 0.684730, 0.728797, 0.000000, 0.000000 - 0.684349, 0.729155, 0.000000, 0.000000 - 0.683967, 0.729513, 0.000000, 0.000000 - 0.683584, 0.729872, 0.000000, 0.000000 - 0.683202, 0.730229, 0.000000, 0.000000 - 0.682819, 0.730587, 0.000000, 0.000000 - 0.682437, 0.730945, 0.000000, 0.000000 - 0.682054, 0.731302, 0.000000, 0.000000 - 0.681671, 0.731659, 0.000000, 0.000000 - 0.681287, 0.732016, 0.000000, 0.000000 - 0.680904, 0.732373, 0.000000, 0.000000 - 0.680520, 0.732729, 0.000000, 0.000000 - 0.680136, 0.733086, 0.000000, 0.000000 - 0.679752, 0.733442, 0.000000, 0.000000 - 0.679368, 0.733798, 0.000000, 0.000000 - 0.678983, 0.734154, 0.000000, 0.000000 - 0.678599, 0.734509, 0.000000, 0.000000 - 0.678214, 0.734864, 0.000000, 0.000000 - 0.677829, 0.735220, 0.000000, 0.000000 - 0.677444, 0.735575, 0.000000, 0.000000 - 0.677058, 0.735929, 0.000000, 0.000000 - 0.676673, 0.736284, 0.000000, 0.000000 - 0.676287, 0.736638, 0.000000, 0.000000 - 0.675901, 0.736992, 0.000000, 0.000000 - 0.675515, 0.737346, 0.000000, 0.000000 - 0.675129, 0.737700, 0.000000, 0.000000 - 0.674742, 0.738053, 0.000000, 0.000000 - 0.674356, 0.738407, 0.000000, 0.000000 - 0.673969, 0.738760, 0.000000, 0.000000 - 0.673582, 0.739113, 0.000000, 0.000000 - 0.673195, 0.739465, 0.000000, 0.000000 - 0.672807, 0.739818, 0.000000, 0.000000 - 0.672420, 0.740170, 0.000000, 0.000000 - 0.672032, 0.740522, 0.000000, 0.000000 - 0.671644, 0.740874, 0.000000, 0.000000 - 0.671256, 0.741226, 0.000000, 0.000000 - 0.670867, 0.741577, 0.000000, 0.000000 - 0.670479, 0.741929, 0.000000, 0.000000 - 0.670090, 0.742280, 0.000000, 0.000000 - 0.669701, 0.742631, 0.000000, 0.000000 - 0.669312, 0.742981, 0.000000, 0.000000 - 0.668923, 0.743332, 0.000000, 0.000000 - 0.668534, 0.743682, 0.000000, 0.000000 - 0.668144, 0.744032, 0.000000, 0.000000 - 0.667754, 0.744382, 0.000000, 0.000000 - 0.667364, 0.744732, 0.000000, 0.000000 - 0.666974, 0.745081, 0.000000, 0.000000 - 0.666584, 0.745430, 0.000000, 0.000000 - 0.666193, 0.745779, 0.000000, 0.000000 - 0.665802, 0.746128, 0.000000, 0.000000 - 0.665412, 0.746477, 0.000000, 0.000000 - 0.665020, 0.746825, 0.000000, 0.000000 - 0.664629, 0.747173, 0.000000, 0.000000 - 0.664238, 0.747521, 0.000000, 0.000000 - 0.663846, 0.747869, 0.000000, 0.000000 - 0.663454, 0.748217, 0.000000, 0.000000 - 0.663062, 0.748564, 0.000000, 0.000000 - 0.662670, 0.748911, 0.000000, 0.000000 - 0.662278, 0.749258, 0.000000, 0.000000 - 0.661885, 0.749605, 0.000000, 0.000000 - 0.661493, 0.749952, 0.000000, 0.000000 - 0.661100, 0.750298, 0.000000, 0.000000 - 0.660707, 0.750644, 0.000000, 0.000000 - 0.660313, 0.750990, 0.000000, 0.000000 - 0.659920, 0.751336, 0.000000, 0.000000 - 0.659526, 0.751682, 0.000000, 0.000000 - 0.659132, 0.752027, 0.000000, 0.000000 - 0.658739, 0.752372, 0.000000, 0.000000 - 0.658344, 0.752717, 0.000000, 0.000000 - 0.657950, 0.753062, 0.000000, 0.000000 - 0.657555, 0.753406, 0.000000, 0.000000 - 0.657161, 0.753750, 0.000000, 0.000000 - 0.656766, 0.754095, 0.000000, 0.000000 - 0.656371, 0.754438, 0.000000, 0.000000 - 0.655976, 0.754782, 0.000000, 0.000000 - 0.655580, 0.755126, 0.000000, 0.000000 - 0.655185, 0.755469, 0.000000, 0.000000 - 0.654789, 0.755812, 0.000000, 0.000000 - 0.654393, 0.756155, 0.000000, 0.000000 - 0.653997, 0.756497, 0.000000, 0.000000 - 0.653600, 0.756840, 0.000000, 0.000000 - 0.653204, 0.757182, 0.000000, 0.000000 - 0.652807, 0.757524, 0.000000, 0.000000 - 0.652410, 0.757866, 0.000000, 0.000000 - 0.652013, 0.758208, 0.000000, 0.000000 - 0.651616, 0.758549, 0.000000, 0.000000 - 0.651219, 0.758890, 0.000000, 0.000000 - 0.650821, 0.759231, 0.000000, 0.000000 - 0.650423, 0.759572, 0.000000, 0.000000 - 0.650025, 0.759913, 0.000000, 0.000000 - 0.649627, 0.760253, 0.000000, 0.000000 - 0.649229, 0.760593, 0.000000, 0.000000 - 0.648830, 0.760933, 0.000000, 0.000000 - 0.648432, 0.761273, 0.000000, 0.000000 - 0.648033, 0.761612, 0.000000, 0.000000 - 0.647634, 0.761952, 0.000000, 0.000000 - 0.647235, 0.762291, 0.000000, 0.000000 - 0.646835, 0.762630, 0.000000, 0.000000 - 0.646436, 0.762968, 0.000000, 0.000000 - 0.646036, 0.763307, 0.000000, 0.000000 - 0.645636, 0.763645, 0.000000, 0.000000 - 0.645236, 0.763983, 0.000000, 0.000000 - 0.644836, 0.764321, 0.000000, 0.000000 - 0.644436, 0.764659, 0.000000, 0.000000 - 0.644035, 0.764996, 0.000000, 0.000000 - 0.643634, 0.765333, 0.000000, 0.000000 - 0.643233, 0.765670, 0.000000, 0.000000 - 0.642832, 0.766007, 0.000000, 0.000000 - 0.642431, 0.766344, 0.000000, 0.000000 - 0.642029, 0.766680, 0.000000, 0.000000 - 0.641628, 0.767016, 0.000000, 0.000000 - 0.641226, 0.767352, 0.000000, 0.000000 - 0.640824, 0.767688, 0.000000, 0.000000 - 0.640422, 0.768023, 0.000000, 0.000000 - 0.640019, 0.768359, 0.000000, 0.000000 - 0.639617, 0.768694, 0.000000, 0.000000 - 0.639214, 0.769029, 0.000000, 0.000000 - 0.638811, 0.769363, 0.000000, 0.000000 - 0.638408, 0.769698, 0.000000, 0.000000 - 0.638005, 0.770032, 0.000000, 0.000000 - 0.637602, 0.770366, 0.000000, 0.000000 - 0.637198, 0.770700, 0.000000, 0.000000 - 0.636794, 0.771034, 0.000000, 0.000000 - 0.636390, 0.771367, 0.000000, 0.000000 - 0.635986, 0.771700, 0.000000, 0.000000 - 0.635582, 0.772033, 0.000000, 0.000000 - 0.635177, 0.772366, 0.000000, 0.000000 - 0.634773, 0.772699, 0.000000, 0.000000 - 0.634368, 0.773031, 0.000000, 0.000000 - 0.633963, 0.773363, 0.000000, 0.000000 - 0.633558, 0.773695, 0.000000, 0.000000 - 0.633153, 0.774027, 0.000000, 0.000000 - 0.632747, 0.774359, 0.000000, 0.000000 - 0.632341, 0.774690, 0.000000, 0.000000 - 0.631935, 0.775021, 0.000000, 0.000000 - 0.631529, 0.775352, 0.000000, 0.000000 - 0.631123, 0.775683, 0.000000, 0.000000 - 0.630717, 0.776013, 0.000000, 0.000000 - 0.630310, 0.776343, 0.000000, 0.000000 - 0.629904, 0.776673, 0.000000, 0.000000 - 0.629497, 0.777003, 0.000000, 0.000000 - 0.629090, 0.777333, 0.000000, 0.000000 - 0.628682, 0.777662, 0.000000, 0.000000 - 0.628275, 0.777991, 0.000000, 0.000000 - 0.627867, 0.778320, 0.000000, 0.000000 - 0.627460, 0.778649, 0.000000, 0.000000 - 0.627052, 0.778978, 0.000000, 0.000000 - 0.626644, 0.779306, 0.000000, 0.000000 - 0.626235, 0.779634, 0.000000, 0.000000 - 0.625827, 0.779962, 0.000000, 0.000000 - 0.625418, 0.780290, 0.000000, 0.000000 - 0.625010, 0.780617, 0.000000, 0.000000 - 0.624601, 0.780944, 0.000000, 0.000000 - 0.624192, 0.781271, 0.000000, 0.000000 - 0.623782, 0.781598, 0.000000, 0.000000 - 0.623373, 0.781925, 0.000000, 0.000000 - 0.622963, 0.782251, 0.000000, 0.000000 - 0.622553, 0.782577, 0.000000, 0.000000 - 0.622143, 0.782903, 0.000000, 0.000000 - 0.621733, 0.783229, 0.000000, 0.000000 - 0.621323, 0.783555, 0.000000, 0.000000 - 0.620912, 0.783880, 0.000000, 0.000000 - 0.620502, 0.784205, 0.000000, 0.000000 - 0.620091, 0.784530, 0.000000, 0.000000 - 0.619680, 0.784855, 0.000000, 0.000000 - 0.619269, 0.785179, 0.000000, 0.000000 - 0.618857, 0.785503, 0.000000, 0.000000 - 0.618446, 0.785827, 0.000000, 0.000000 - 0.618034, 0.786151, 0.000000, 0.000000 - 0.617622, 0.786475, 0.000000, 0.000000 - 0.617210, 0.786798, 0.000000, 0.000000 - 0.616798, 0.787121, 0.000000, 0.000000 - 0.616386, 0.787444, 0.000000, 0.000000 - 0.615973, 0.787767, 0.000000, 0.000000 - 0.615561, 0.788090, 0.000000, 0.000000 - 0.615148, 0.788412, 0.000000, 0.000000 - 0.614735, 0.788734, 0.000000, 0.000000 - 0.614321, 0.789056, 0.000000, 0.000000 - 0.613908, 0.789377, 0.000000, 0.000000 - 0.613495, 0.789699, 0.000000, 0.000000 - 0.613081, 0.790020, 0.000000, 0.000000 - 0.612667, 0.790341, 0.000000, 0.000000 - 0.612253, 0.790662, 0.000000, 0.000000 - 0.611839, 0.790983, 0.000000, 0.000000 - 0.611424, 0.791303, 0.000000, 0.000000 - 0.611010, 0.791623, 0.000000, 0.000000 - 0.610595, 0.791943, 0.000000, 0.000000 - 0.610180, 0.792263, 0.000000, 0.000000 - 0.609765, 0.792582, 0.000000, 0.000000 - 0.609350, 0.792901, 0.000000, 0.000000 - 0.608935, 0.793220, 0.000000, 0.000000 - 0.608519, 0.793539, 0.000000, 0.000000 - 0.608103, 0.793858, 0.000000, 0.000000 - 0.607687, 0.794176, 0.000000, 0.000000 - 0.607271, 0.794494, 0.000000, 0.000000 - 0.606855, 0.794812, 0.000000, 0.000000 - 0.606439, 0.795130, 0.000000, 0.000000 - 0.606022, 0.795448, 0.000000, 0.000000 - 0.605605, 0.795765, 0.000000, 0.000000 - 0.605189, 0.796082, 0.000000, 0.000000 - 0.604772, 0.796399, 0.000000, 0.000000 - 0.604354, 0.796716, 0.000000, 0.000000 - 0.603937, 0.797032, 0.000000, 0.000000 - 0.603519, 0.797348, 0.000000, 0.000000 - 0.603102, 0.797664, 0.000000, 0.000000 - 0.602684, 0.797980, 0.000000, 0.000000 - 0.602266, 0.798296, 0.000000, 0.000000 - 0.601848, 0.798611, 0.000000, 0.000000 - 0.601429, 0.798926, 0.000000, 0.000000 - 0.601011, 0.799241, 0.000000, 0.000000 - 0.600592, 0.799556, 0.000000, 0.000000 - 0.600173, 0.799870, 0.000000, 0.000000 - 0.599754, 0.800184, 0.000000, 0.000000 - 0.599335, 0.800498, 0.000000, 0.000000 - 0.598915, 0.800812, 0.000000, 0.000000 - 0.598496, 0.801126, 0.000000, 0.000000 - 0.598076, 0.801439, 0.000000, 0.000000 - 0.597656, 0.801752, 0.000000, 0.000000 - 0.597236, 0.802065, 0.000000, 0.000000 - 0.596816, 0.802378, 0.000000, 0.000000 - 0.596396, 0.802690, 0.000000, 0.000000 - 0.595975, 0.803003, 0.000000, 0.000000 - 0.595555, 0.803315, 0.000000, 0.000000 - 0.595134, 0.803627, 0.000000, 0.000000 - 0.594713, 0.803938, 0.000000, 0.000000 - 0.594292, 0.804250, 0.000000, 0.000000 - 0.593870, 0.804561, 0.000000, 0.000000 - 0.593449, 0.804872, 0.000000, 0.000000 - 0.593027, 0.805182, 0.000000, 0.000000 - 0.592605, 0.805493, 0.000000, 0.000000 - 0.592183, 0.805803, 0.000000, 0.000000 - 0.591761, 0.806113, 0.000000, 0.000000 - 0.591339, 0.806423, 0.000000, 0.000000 - 0.590917, 0.806733, 0.000000, 0.000000 - 0.590494, 0.807042, 0.000000, 0.000000 - 0.590071, 0.807351, 0.000000, 0.000000 - 0.589648, 0.807660, 0.000000, 0.000000 - 0.589225, 0.807969, 0.000000, 0.000000 - 0.588802, 0.808277, 0.000000, 0.000000 - 0.588378, 0.808586, 0.000000, 0.000000 - 0.587955, 0.808894, 0.000000, 0.000000 - 0.587531, 0.809202, 0.000000, 0.000000 - 0.587107, 0.809509, 0.000000, 0.000000 - 0.586683, 0.809817, 0.000000, 0.000000 - 0.586259, 0.810124, 0.000000, 0.000000 - 0.585834, 0.810431, 0.000000, 0.000000 - 0.585410, 0.810738, 0.000000, 0.000000 - 0.584985, 0.811044, 0.000000, 0.000000 - 0.584560, 0.811350, 0.000000, 0.000000 - 0.584135, 0.811656, 0.000000, 0.000000 - 0.583710, 0.811962, 0.000000, 0.000000 - 0.583285, 0.812268, 0.000000, 0.000000 - 0.582859, 0.812573, 0.000000, 0.000000 - 0.582433, 0.812878, 0.000000, 0.000000 - 0.582008, 0.813183, 0.000000, 0.000000 - 0.581581, 0.813488, 0.000000, 0.000000 - 0.581155, 0.813793, 0.000000, 0.000000 - 0.580729, 0.814097, 0.000000, 0.000000 - 0.580303, 0.814401, 0.000000, 0.000000 - 0.579876, 0.814705, 0.000000, 0.000000 - 0.579449, 0.815008, 0.000000, 0.000000 - 0.579022, 0.815312, 0.000000, 0.000000 - 0.578595, 0.815615, 0.000000, 0.000000 - 0.578168, 0.815918, 0.000000, 0.000000 - 0.577740, 0.816221, 0.000000, 0.000000 - 0.577313, 0.816523, 0.000000, 0.000000 - 0.576885, 0.816825, 0.000000, 0.000000 - 0.576457, 0.817127, 0.000000, 0.000000 - 0.576029, 0.817429, 0.000000, 0.000000 - 0.575601, 0.817731, 0.000000, 0.000000 - 0.575172, 0.818032, 0.000000, 0.000000 - 0.574744, 0.818333, 0.000000, 0.000000 - 0.574315, 0.818634, 0.000000, 0.000000 - 0.573886, 0.818935, 0.000000, 0.000000 - 0.573457, 0.819235, 0.000000, 0.000000 - 0.573028, 0.819536, 0.000000, 0.000000 - 0.572599, 0.819836, 0.000000, 0.000000 - 0.572169, 0.820136, 0.000000, 0.000000 - 0.571740, 0.820435, 0.000000, 0.000000 - 0.571310, 0.820734, 0.000000, 0.000000 - 0.570880, 0.821034, 0.000000, 0.000000 - 0.570450, 0.821333, 0.000000, 0.000000 - 0.570019, 0.821631, 0.000000, 0.000000 - 0.569589, 0.821930, 0.000000, 0.000000 - 0.569158, 0.822228, 0.000000, 0.000000 - 0.568728, 0.822526, 0.000000, 0.000000 - 0.568297, 0.822824, 0.000000, 0.000000 - 0.567866, 0.823121, 0.000000, 0.000000 - 0.567435, 0.823418, 0.000000, 0.000000 - 0.567003, 0.823716, 0.000000, 0.000000 - 0.566572, 0.824012, 0.000000, 0.000000 - 0.566140, 0.824309, 0.000000, 0.000000 - 0.565708, 0.824606, 0.000000, 0.000000 - 0.565276, 0.824902, 0.000000, 0.000000 - 0.564844, 0.825198, 0.000000, 0.000000 - 0.564412, 0.825493, 0.000000, 0.000000 - 0.563979, 0.825789, 0.000000, 0.000000 - 0.563547, 0.826084, 0.000000, 0.000000 - 0.563114, 0.826379, 0.000000, 0.000000 - 0.562681, 0.826674, 0.000000, 0.000000 - 0.562248, 0.826969, 0.000000, 0.000000 - 0.561815, 0.827263, 0.000000, 0.000000 - 0.561381, 0.827557, 0.000000, 0.000000 - 0.560948, 0.827851, 0.000000, 0.000000 - 0.560514, 0.828145, 0.000000, 0.000000 - 0.560080, 0.828438, 0.000000, 0.000000 - 0.559646, 0.828732, 0.000000, 0.000000 - 0.559212, 0.829025, 0.000000, 0.000000 - 0.558778, 0.829317, 0.000000, 0.000000 - 0.558343, 0.829610, 0.000000, 0.000000 - 0.557909, 0.829902, 0.000000, 0.000000 - 0.557474, 0.830194, 0.000000, 0.000000 - 0.557039, 0.830486, 0.000000, 0.000000 - 0.556604, 0.830778, 0.000000, 0.000000 - 0.556169, 0.831069, 0.000000, 0.000000 - 0.555734, 0.831360, 0.000000, 0.000000 - 0.555298, 0.831651, 0.000000, 0.000000 - 0.554862, 0.831942, 0.000000, 0.000000 - 0.554427, 0.832233, 0.000000, 0.000000 - 0.553991, 0.832523, 0.000000, 0.000000 - 0.553554, 0.832813, 0.000000, 0.000000 - 0.553118, 0.833103, 0.000000, 0.000000 - 0.552682, 0.833392, 0.000000, 0.000000 - 0.552245, 0.833682, 0.000000, 0.000000 - 0.551808, 0.833971, 0.000000, 0.000000 - 0.551371, 0.834260, 0.000000, 0.000000 - 0.550934, 0.834549, 0.000000, 0.000000 - 0.550497, 0.834837, 0.000000, 0.000000 - 0.550060, 0.835125, 0.000000, 0.000000 - 0.549622, 0.835413, 0.000000, 0.000000 - 0.549185, 0.835701, 0.000000, 0.000000 - 0.548747, 0.835988, 0.000000, 0.000000 - 0.548309, 0.836276, 0.000000, 0.000000 - 0.547871, 0.836563, 0.000000, 0.000000 - 0.547433, 0.836850, 0.000000, 0.000000 - 0.546994, 0.837136, 0.000000, 0.000000 - 0.546556, 0.837423, 0.000000, 0.000000 - 0.546117, 0.837709, 0.000000, 0.000000 - 0.545678, 0.837995, 0.000000, 0.000000 - 0.545239, 0.838280, 0.000000, 0.000000 - 0.544800, 0.838566, 0.000000, 0.000000 - 0.544361, 0.838851, 0.000000, 0.000000 - 0.543921, 0.839136, 0.000000, 0.000000 - 0.543482, 0.839421, 0.000000, 0.000000 - 0.543042, 0.839706, 0.000000, 0.000000 - 0.542602, 0.839990, 0.000000, 0.000000 - 0.542162, 0.840274, 0.000000, 0.000000 - 0.541722, 0.840558, 0.000000, 0.000000 - 0.541282, 0.840841, 0.000000, 0.000000 - 0.540841, 0.841125, 0.000000, 0.000000 - 0.540400, 0.841408, 0.000000, 0.000000 - 0.539960, 0.841691, 0.000000, 0.000000 - 0.539519, 0.841974, 0.000000, 0.000000 - 0.539078, 0.842256, 0.000000, 0.000000 - 0.538636, 0.842538, 0.000000, 0.000000 - 0.538195, 0.842820, 0.000000, 0.000000 - 0.537754, 0.843102, 0.000000, 0.000000 - 0.537312, 0.843384, 0.000000, 0.000000 - 0.536870, 0.843665, 0.000000, 0.000000 - 0.536428, 0.843946, 0.000000, 0.000000 - 0.535986, 0.844227, 0.000000, 0.000000 - 0.535544, 0.844507, 0.000000, 0.000000 - 0.535101, 0.844788, 0.000000, 0.000000 - 0.534659, 0.845068, 0.000000, 0.000000 - 0.534216, 0.845348, 0.000000, 0.000000 - 0.533773, 0.845628, 0.000000, 0.000000 - 0.533330, 0.845907, 0.000000, 0.000000 - 0.532887, 0.846186, 0.000000, 0.000000 - 0.532444, 0.846465, 0.000000, 0.000000 - 0.532000, 0.846744, 0.000000, 0.000000 - 0.531557, 0.847023, 0.000000, 0.000000 - 0.531113, 0.847301, 0.000000, 0.000000 - 0.530669, 0.847579, 0.000000, 0.000000 - 0.530225, 0.847857, 0.000000, 0.000000 - 0.529781, 0.848134, 0.000000, 0.000000 - 0.529337, 0.848412, 0.000000, 0.000000 - 0.528892, 0.848689, 0.000000, 0.000000 - 0.528448, 0.848966, 0.000000, 0.000000 - 0.528003, 0.849243, 0.000000, 0.000000 - 0.527558, 0.849519, 0.000000, 0.000000 - 0.527113, 0.849795, 0.000000, 0.000000 - 0.526668, 0.850071, 0.000000, 0.000000 - 0.526223, 0.850347, 0.000000, 0.000000 - 0.525777, 0.850622, 0.000000, 0.000000 - 0.525332, 0.850898, 0.000000, 0.000000 - 0.524886, 0.851173, 0.000000, 0.000000 - 0.524440, 0.851447, 0.000000, 0.000000 - 0.523994, 0.851722, 0.000000, 0.000000 - 0.523548, 0.851996, 0.000000, 0.000000 - 0.523101, 0.852270, 0.000000, 0.000000 - 0.522655, 0.852544, 0.000000, 0.000000 - 0.522208, 0.852818, 0.000000, 0.000000 - 0.521761, 0.853091, 0.000000, 0.000000 - 0.521315, 0.853365, 0.000000, 0.000000 - 0.520868, 0.853638, 0.000000, 0.000000 - 0.520420, 0.853910, 0.000000, 0.000000 - 0.519973, 0.854183, 0.000000, 0.000000 - 0.519526, 0.854455, 0.000000, 0.000000 - 0.519078, 0.854727, 0.000000, 0.000000 - 0.518630, 0.854999, 0.000000, 0.000000 - 0.518182, 0.855270, 0.000000, 0.000000 - 0.517734, 0.855541, 0.000000, 0.000000 - 0.517286, 0.855813, 0.000000, 0.000000 - 0.516838, 0.856083, 0.000000, 0.000000 - 0.516389, 0.856354, 0.000000, 0.000000 - 0.515941, 0.856624, 0.000000, 0.000000 - 0.515492, 0.856894, 0.000000, 0.000000 - 0.515043, 0.857164, 0.000000, 0.000000 - 0.514594, 0.857434, 0.000000, 0.000000 - 0.514145, 0.857703, 0.000000, 0.000000 - 0.513696, 0.857973, 0.000000, 0.000000 - 0.513246, 0.858241, 0.000000, 0.000000 - 0.512797, 0.858510, 0.000000, 0.000000 - 0.512347, 0.858779, 0.000000, 0.000000 - 0.511897, 0.859047, 0.000000, 0.000000 - 0.511447, 0.859315, 0.000000, 0.000000 - 0.510997, 0.859583, 0.000000, 0.000000 - 0.510546, 0.859850, 0.000000, 0.000000 - 0.510096, 0.860117, 0.000000, 0.000000 - 0.509645, 0.860385, 0.000000, 0.000000 - 0.509195, 0.860651, 0.000000, 0.000000 - 0.508744, 0.860918, 0.000000, 0.000000 - 0.508293, 0.861184, 0.000000, 0.000000 - 0.507842, 0.861450, 0.000000, 0.000000 - 0.507390, 0.861716, 0.000000, 0.000000 - 0.506939, 0.861982, 0.000000, 0.000000 - 0.506487, 0.862247, 0.000000, 0.000000 - 0.506036, 0.862512, 0.000000, 0.000000 - 0.505584, 0.862777, 0.000000, 0.000000 - 0.505132, 0.863042, 0.000000, 0.000000 - 0.504680, 0.863307, 0.000000, 0.000000 - 0.504228, 0.863571, 0.000000, 0.000000 - 0.503775, 0.863835, 0.000000, 0.000000 - 0.503323, 0.864099, 0.000000, 0.000000 - 0.502870, 0.864362, 0.000000, 0.000000 - 0.502417, 0.864625, 0.000000, 0.000000 - 0.501964, 0.864888, 0.000000, 0.000000 - 0.501511, 0.865151, 0.000000, 0.000000 - 0.501058, 0.865414, 0.000000, 0.000000 - 0.500605, 0.865676, 0.000000, 0.000000 - 0.500151, 0.865938, 0.000000, 0.000000 - 0.499698, 0.866200, 0.000000, 0.000000 - 0.499244, 0.866462, 0.000000, 0.000000 - 0.498790, 0.866723, 0.000000, 0.000000 - 0.498336, 0.866984, 0.000000, 0.000000 - 0.497882, 0.867245, 0.000000, 0.000000 - 0.497427, 0.867506, 0.000000, 0.000000 - 0.496973, 0.867766, 0.000000, 0.000000 - 0.496518, 0.868026, 0.000000, 0.000000 - 0.496064, 0.868286, 0.000000, 0.000000 - 0.495609, 0.868546, 0.000000, 0.000000 - 0.495154, 0.868805, 0.000000, 0.000000 - 0.494699, 0.869065, 0.000000, 0.000000 - 0.494243, 0.869324, 0.000000, 0.000000 - 0.493788, 0.869582, 0.000000, 0.000000 - 0.493332, 0.869841, 0.000000, 0.000000 - 0.492877, 0.870099, 0.000000, 0.000000 - 0.492421, 0.870357, 0.000000, 0.000000 - 0.491965, 0.870615, 0.000000, 0.000000 - 0.491509, 0.870872, 0.000000, 0.000000 - 0.491053, 0.871130, 0.000000, 0.000000 - 0.490596, 0.871387, 0.000000, 0.000000 - 0.490140, 0.871644, 0.000000, 0.000000 - 0.489683, 0.871900, 0.000000, 0.000000 - 0.489227, 0.872157, 0.000000, 0.000000 - 0.488770, 0.872413, 0.000000, 0.000000 - 0.488313, 0.872669, 0.000000, 0.000000 - 0.487856, 0.872924, 0.000000, 0.000000 - 0.487398, 0.873180, 0.000000, 0.000000 - 0.486941, 0.873435, 0.000000, 0.000000 - 0.486483, 0.873690, 0.000000, 0.000000 - 0.486026, 0.873945, 0.000000, 0.000000 - 0.485568, 0.874199, 0.000000, 0.000000 - 0.485110, 0.874453, 0.000000, 0.000000 - 0.484652, 0.874707, 0.000000, 0.000000 - 0.484194, 0.874961, 0.000000, 0.000000 - 0.483735, 0.875214, 0.000000, 0.000000 - 0.483277, 0.875468, 0.000000, 0.000000 - 0.482818, 0.875721, 0.000000, 0.000000 - 0.482359, 0.875973, 0.000000, 0.000000 - 0.481901, 0.876226, 0.000000, 0.000000 - 0.481442, 0.876478, 0.000000, 0.000000 - 0.480982, 0.876730, 0.000000, 0.000000 - 0.480523, 0.876982, 0.000000, 0.000000 - 0.480064, 0.877234, 0.000000, 0.000000 - 0.479604, 0.877485, 0.000000, 0.000000 - 0.479145, 0.877736, 0.000000, 0.000000 - 0.478685, 0.877987, 0.000000, 0.000000 - 0.478225, 0.878237, 0.000000, 0.000000 - 0.477765, 0.878488, 0.000000, 0.000000 - 0.477305, 0.878738, 0.000000, 0.000000 - 0.476844, 0.878988, 0.000000, 0.000000 - 0.476384, 0.879237, 0.000000, 0.000000 - 0.475923, 0.879487, 0.000000, 0.000000 - 0.475462, 0.879736, 0.000000, 0.000000 - 0.475002, 0.879985, 0.000000, 0.000000 - 0.474541, 0.880234, 0.000000, 0.000000 - 0.474079, 0.880482, 0.000000, 0.000000 - 0.473618, 0.880730, 0.000000, 0.000000 - 0.473157, 0.880978, 0.000000, 0.000000 - 0.472695, 0.881226, 0.000000, 0.000000 - 0.472234, 0.881473, 0.000000, 0.000000 - 0.471772, 0.881721, 0.000000, 0.000000 - 0.471310, 0.881968, 0.000000, 0.000000 - 0.470848, 0.882214, 0.000000, 0.000000 - 0.470386, 0.882461, 0.000000, 0.000000 - 0.469924, 0.882707, 0.000000, 0.000000 - 0.469461, 0.882953, 0.000000, 0.000000 - 0.468999, 0.883199, 0.000000, 0.000000 - 0.468536, 0.883444, 0.000000, 0.000000 - 0.468073, 0.883690, 0.000000, 0.000000 - 0.467610, 0.883935, 0.000000, 0.000000 - 0.467147, 0.884179, 0.000000, 0.000000 - 0.466684, 0.884424, 0.000000, 0.000000 - 0.466221, 0.884668, 0.000000, 0.000000 - 0.465757, 0.884912, 0.000000, 0.000000 - 0.465294, 0.885156, 0.000000, 0.000000 - 0.464830, 0.885400, 0.000000, 0.000000 - 0.464366, 0.885643, 0.000000, 0.000000 - 0.463902, 0.885886, 0.000000, 0.000000 - 0.463438, 0.886129, 0.000000, 0.000000 - 0.462974, 0.886372, 0.000000, 0.000000 - 0.462510, 0.886614, 0.000000, 0.000000 - 0.462045, 0.886856, 0.000000, 0.000000 - 0.461581, 0.887098, 0.000000, 0.000000 - 0.461116, 0.887340, 0.000000, 0.000000 - 0.460651, 0.887581, 0.000000, 0.000000 - 0.460186, 0.887822, 0.000000, 0.000000 - 0.459721, 0.888063, 0.000000, 0.000000 - 0.459256, 0.888304, 0.000000, 0.000000 - 0.458791, 0.888544, 0.000000, 0.000000 - 0.458325, 0.888785, 0.000000, 0.000000 - 0.457860, 0.889024, 0.000000, 0.000000 - 0.457394, 0.889264, 0.000000, 0.000000 - 0.456928, 0.889504, 0.000000, 0.000000 - 0.456462, 0.889743, 0.000000, 0.000000 - 0.455996, 0.889982, 0.000000, 0.000000 - 0.455530, 0.890220, 0.000000, 0.000000 - 0.455064, 0.890459, 0.000000, 0.000000 - 0.454597, 0.890697, 0.000000, 0.000000 - 0.454130, 0.890935, 0.000000, 0.000000 - 0.453664, 0.891173, 0.000000, 0.000000 - 0.453197, 0.891410, 0.000000, 0.000000 - 0.452730, 0.891648, 0.000000, 0.000000 - 0.452263, 0.891885, 0.000000, 0.000000 - 0.451796, 0.892121, 0.000000, 0.000000 - 0.451328, 0.892358, 0.000000, 0.000000 - 0.450861, 0.892594, 0.000000, 0.000000 - 0.450393, 0.892830, 0.000000, 0.000000 - 0.449926, 0.893066, 0.000000, 0.000000 - 0.449458, 0.893302, 0.000000, 0.000000 - 0.448990, 0.893537, 0.000000, 0.000000 - 0.448522, 0.893772, 0.000000, 0.000000 - 0.448054, 0.894007, 0.000000, 0.000000 - 0.447585, 0.894241, 0.000000, 0.000000 - 0.447117, 0.894476, 0.000000, 0.000000 - 0.446648, 0.894710, 0.000000, 0.000000 - 0.446180, 0.894943, 0.000000, 0.000000 - 0.445711, 0.895177, 0.000000, 0.000000 - 0.445242, 0.895410, 0.000000, 0.000000 - 0.444773, 0.895643, 0.000000, 0.000000 - 0.444304, 0.895876, 0.000000, 0.000000 - 0.443834, 0.896109, 0.000000, 0.000000 - 0.443365, 0.896341, 0.000000, 0.000000 - 0.442895, 0.896573, 0.000000, 0.000000 - 0.442426, 0.896805, 0.000000, 0.000000 - 0.441956, 0.897037, 0.000000, 0.000000 - 0.441486, 0.897268, 0.000000, 0.000000 - 0.441016, 0.897499, 0.000000, 0.000000 - 0.440546, 0.897730, 0.000000, 0.000000 - 0.440076, 0.897961, 0.000000, 0.000000 - 0.439605, 0.898191, 0.000000, 0.000000 - 0.439135, 0.898421, 0.000000, 0.000000 - 0.438664, 0.898651, 0.000000, 0.000000 - 0.438193, 0.898881, 0.000000, 0.000000 - 0.437722, 0.899110, 0.000000, 0.000000 - 0.437251, 0.899339, 0.000000, 0.000000 - 0.436780, 0.899568, 0.000000, 0.000000 - 0.436309, 0.899797, 0.000000, 0.000000 - 0.435838, 0.900025, 0.000000, 0.000000 - 0.435366, 0.900253, 0.000000, 0.000000 - 0.434895, 0.900481, 0.000000, 0.000000 - 0.434423, 0.900709, 0.000000, 0.000000 - 0.433951, 0.900936, 0.000000, 0.000000 - 0.433479, 0.901164, 0.000000, 0.000000 - 0.433007, 0.901390, 0.000000, 0.000000 - 0.432535, 0.901617, 0.000000, 0.000000 - 0.432063, 0.901844, 0.000000, 0.000000 - 0.431590, 0.902070, 0.000000, 0.000000 - 0.431118, 0.902296, 0.000000, 0.000000 - 0.430645, 0.902521, 0.000000, 0.000000 - 0.430172, 0.902747, 0.000000, 0.000000 - 0.429699, 0.902972, 0.000000, 0.000000 - 0.429226, 0.903197, 0.000000, 0.000000 - 0.428753, 0.903422, 0.000000, 0.000000 - 0.428280, 0.903646, 0.000000, 0.000000 - 0.427807, 0.903870, 0.000000, 0.000000 - 0.427333, 0.904094, 0.000000, 0.000000 - 0.426860, 0.904318, 0.000000, 0.000000 - 0.426386, 0.904541, 0.000000, 0.000000 - 0.425912, 0.904765, 0.000000, 0.000000 - 0.425438, 0.904988, 0.000000, 0.000000 - 0.424964, 0.905210, 0.000000, 0.000000 - 0.424490, 0.905433, 0.000000, 0.000000 - 0.424015, 0.905655, 0.000000, 0.000000 - 0.423541, 0.905877, 0.000000, 0.000000 - 0.423067, 0.906099, 0.000000, 0.000000 - 0.422592, 0.906320, 0.000000, 0.000000 - 0.422117, 0.906541, 0.000000, 0.000000 - 0.421642, 0.906762, 0.000000, 0.000000 - 0.421167, 0.906983, 0.000000, 0.000000 - 0.420692, 0.907203, 0.000000, 0.000000 - 0.420217, 0.907424, 0.000000, 0.000000 - 0.419742, 0.907644, 0.000000, 0.000000 - 0.419266, 0.907863, 0.000000, 0.000000 - 0.418791, 0.908083, 0.000000, 0.000000 - 0.418315, 0.908302, 0.000000, 0.000000 - 0.417839, 0.908521, 0.000000, 0.000000 - 0.417363, 0.908740, 0.000000, 0.000000 - 0.416887, 0.908958, 0.000000, 0.000000 - 0.416411, 0.909177, 0.000000, 0.000000 - 0.415935, 0.909394, 0.000000, 0.000000 - 0.415458, 0.909612, 0.000000, 0.000000 - 0.414982, 0.909830, 0.000000, 0.000000 - 0.414505, 0.910047, 0.000000, 0.000000 - 0.414029, 0.910264, 0.000000, 0.000000 - 0.413552, 0.910481, 0.000000, 0.000000 - 0.413075, 0.910697, 0.000000, 0.000000 - 0.412598, 0.910913, 0.000000, 0.000000 - 0.412121, 0.911129, 0.000000, 0.000000 - 0.411643, 0.911345, 0.000000, 0.000000 - 0.411166, 0.911561, 0.000000, 0.000000 - 0.410688, 0.911776, 0.000000, 0.000000 - 0.410211, 0.911991, 0.000000, 0.000000 - 0.409733, 0.912206, 0.000000, 0.000000 - 0.409255, 0.912420, 0.000000, 0.000000 - 0.408777, 0.912634, 0.000000, 0.000000 - 0.408299, 0.912848, 0.000000, 0.000000 - 0.407821, 0.913062, 0.000000, 0.000000 - 0.407343, 0.913275, 0.000000, 0.000000 - 0.406864, 0.913489, 0.000000, 0.000000 - 0.406386, 0.913702, 0.000000, 0.000000 - 0.405907, 0.913914, 0.000000, 0.000000 - 0.405428, 0.914127, 0.000000, 0.000000 - 0.404950, 0.914339, 0.000000, 0.000000 - 0.404471, 0.914551, 0.000000, 0.000000 - 0.403991, 0.914763, 0.000000, 0.000000 - 0.403512, 0.914974, 0.000000, 0.000000 - 0.403033, 0.915185, 0.000000, 0.000000 - 0.402554, 0.915396, 0.000000, 0.000000 - 0.402074, 0.915607, 0.000000, 0.000000 - 0.401594, 0.915818, 0.000000, 0.000000 - 0.401115, 0.916028, 0.000000, 0.000000 - 0.400635, 0.916238, 0.000000, 0.000000 - 0.400155, 0.916448, 0.000000, 0.000000 - 0.399675, 0.916657, 0.000000, 0.000000 - 0.399195, 0.916866, 0.000000, 0.000000 - 0.398714, 0.917075, 0.000000, 0.000000 - 0.398234, 0.917284, 0.000000, 0.000000 - 0.397753, 0.917492, 0.000000, 0.000000 - 0.397273, 0.917701, 0.000000, 0.000000 - 0.396792, 0.917908, 0.000000, 0.000000 - 0.396311, 0.918116, 0.000000, 0.000000 - 0.395830, 0.918324, 0.000000, 0.000000 - 0.395349, 0.918531, 0.000000, 0.000000 - 0.394868, 0.918738, 0.000000, 0.000000 - 0.394387, 0.918944, 0.000000, 0.000000 - 0.393906, 0.919151, 0.000000, 0.000000 - 0.393424, 0.919357, 0.000000, 0.000000 - 0.392942, 0.919563, 0.000000, 0.000000 - 0.392461, 0.919769, 0.000000, 0.000000 - 0.391979, 0.919974, 0.000000, 0.000000 - 0.391497, 0.920179, 0.000000, 0.000000 - 0.391015, 0.920384, 0.000000, 0.000000 - 0.390533, 0.920589, 0.000000, 0.000000 - 0.390051, 0.920793, 0.000000, 0.000000 - 0.389568, 0.920998, 0.000000, 0.000000 - 0.389086, 0.921201, 0.000000, 0.000000 - 0.388603, 0.921405, 0.000000, 0.000000 - 0.388121, 0.921609, 0.000000, 0.000000 - 0.387638, 0.921812, 0.000000, 0.000000 - 0.387155, 0.922015, 0.000000, 0.000000 - 0.386672, 0.922217, 0.000000, 0.000000 - 0.386189, 0.922420, 0.000000, 0.000000 - 0.385706, 0.922622, 0.000000, 0.000000 - 0.385222, 0.922824, 0.000000, 0.000000 - 0.384739, 0.923025, 0.000000, 0.000000 - 0.384256, 0.923227, 0.000000, 0.000000 - 0.383772, 0.923428, 0.000000, 0.000000 - 0.383288, 0.923629, 0.000000, 0.000000 - 0.382804, 0.923829, 0.000000, 0.000000 - 0.382320, 0.924030, 0.000000, 0.000000 - 0.381836, 0.924230, 0.000000, 0.000000 - 0.381352, 0.924430, 0.000000, 0.000000 - 0.380868, 0.924629, 0.000000, 0.000000 - 0.380384, 0.924829, 0.000000, 0.000000 - 0.379899, 0.925028, 0.000000, 0.000000 - 0.379415, 0.925227, 0.000000, 0.000000 - 0.378930, 0.925425, 0.000000, 0.000000 - 0.378445, 0.925624, 0.000000, 0.000000 - 0.377960, 0.925822, 0.000000, 0.000000 - 0.377475, 0.926020, 0.000000, 0.000000 - 0.376990, 0.926217, 0.000000, 0.000000 - 0.376505, 0.926415, 0.000000, 0.000000 - 0.376020, 0.926612, 0.000000, 0.000000 - 0.375535, 0.926808, 0.000000, 0.000000 - 0.375049, 0.927005, 0.000000, 0.000000 - 0.374563, 0.927201, 0.000000, 0.000000 - 0.374078, 0.927397, 0.000000, 0.000000 - 0.373592, 0.927593, 0.000000, 0.000000 - 0.373106, 0.927789, 0.000000, 0.000000 - 0.372620, 0.927984, 0.000000, 0.000000 - 0.372134, 0.928179, 0.000000, 0.000000 - 0.371648, 0.928374, 0.000000, 0.000000 - 0.371161, 0.928568, 0.000000, 0.000000 - 0.370675, 0.928763, 0.000000, 0.000000 - 0.370188, 0.928957, 0.000000, 0.000000 - 0.369702, 0.929150, 0.000000, 0.000000 - 0.369215, 0.929344, 0.000000, 0.000000 - 0.368728, 0.929537, 0.000000, 0.000000 - 0.368241, 0.929730, 0.000000, 0.000000 - 0.367754, 0.929923, 0.000000, 0.000000 - 0.367267, 0.930115, 0.000000, 0.000000 - 0.366780, 0.930308, 0.000000, 0.000000 - 0.366293, 0.930500, 0.000000, 0.000000 - 0.365805, 0.930691, 0.000000, 0.000000 - 0.365318, 0.930883, 0.000000, 0.000000 - 0.364830, 0.931074, 0.000000, 0.000000 - 0.364342, 0.931265, 0.000000, 0.000000 - 0.363855, 0.931456, 0.000000, 0.000000 - 0.363367, 0.931646, 0.000000, 0.000000 - 0.362879, 0.931836, 0.000000, 0.000000 - 0.362391, 0.932026, 0.000000, 0.000000 - 0.361902, 0.932216, 0.000000, 0.000000 - 0.361414, 0.932405, 0.000000, 0.000000 - 0.360926, 0.932595, 0.000000, 0.000000 - 0.360437, 0.932784, 0.000000, 0.000000 - 0.359948, 0.932972, 0.000000, 0.000000 - 0.359460, 0.933161, 0.000000, 0.000000 - 0.358971, 0.933349, 0.000000, 0.000000 - 0.358482, 0.933537, 0.000000, 0.000000 - 0.357993, 0.933724, 0.000000, 0.000000 - 0.357504, 0.933912, 0.000000, 0.000000 - 0.357015, 0.934099, 0.000000, 0.000000 - 0.356525, 0.934286, 0.000000, 0.000000 - 0.356036, 0.934472, 0.000000, 0.000000 - 0.355547, 0.934659, 0.000000, 0.000000 - 0.355057, 0.934845, 0.000000, 0.000000 - 0.354567, 0.935031, 0.000000, 0.000000 - 0.354077, 0.935216, 0.000000, 0.000000 - 0.353588, 0.935401, 0.000000, 0.000000 - 0.353098, 0.935587, 0.000000, 0.000000 - 0.352607, 0.935771, 0.000000, 0.000000 - 0.352117, 0.935956, 0.000000, 0.000000 - 0.351627, 0.936140, 0.000000, 0.000000 - 0.351137, 0.936324, 0.000000, 0.000000 - 0.350646, 0.936508, 0.000000, 0.000000 - 0.350156, 0.936692, 0.000000, 0.000000 - 0.349665, 0.936875, 0.000000, 0.000000 - 0.349174, 0.937058, 0.000000, 0.000000 - 0.348683, 0.937241, 0.000000, 0.000000 - 0.348192, 0.937423, 0.000000, 0.000000 - 0.347701, 0.937605, 0.000000, 0.000000 - 0.347210, 0.937787, 0.000000, 0.000000 - 0.346719, 0.937969, 0.000000, 0.000000 - 0.346228, 0.938151, 0.000000, 0.000000 - 0.345736, 0.938332, 0.000000, 0.000000 - 0.345245, 0.938513, 0.000000, 0.000000 - 0.344753, 0.938693, 0.000000, 0.000000 - 0.344261, 0.938874, 0.000000, 0.000000 - 0.343770, 0.939054, 0.000000, 0.000000 - 0.343278, 0.939234, 0.000000, 0.000000 - 0.342786, 0.939414, 0.000000, 0.000000 - 0.342294, 0.939593, 0.000000, 0.000000 - 0.341801, 0.939772, 0.000000, 0.000000 - 0.341309, 0.939951, 0.000000, 0.000000 - 0.340817, 0.940130, 0.000000, 0.000000 - 0.340324, 0.940308, 0.000000, 0.000000 - 0.339832, 0.940486, 0.000000, 0.000000 - 0.339339, 0.940664, 0.000000, 0.000000 - 0.338846, 0.940842, 0.000000, 0.000000 - 0.338354, 0.941019, 0.000000, 0.000000 - 0.337861, 0.941196, 0.000000, 0.000000 - 0.337368, 0.941373, 0.000000, 0.000000 - 0.336874, 0.941550, 0.000000, 0.000000 - 0.336381, 0.941726, 0.000000, 0.000000 - 0.335888, 0.941902, 0.000000, 0.000000 - 0.335395, 0.942078, 0.000000, 0.000000 - 0.334901, 0.942253, 0.000000, 0.000000 - 0.334407, 0.942429, 0.000000, 0.000000 - 0.333914, 0.942604, 0.000000, 0.000000 - 0.333420, 0.942778, 0.000000, 0.000000 - 0.332926, 0.942953, 0.000000, 0.000000 - 0.332432, 0.943127, 0.000000, 0.000000 - 0.331938, 0.943301, 0.000000, 0.000000 - 0.331444, 0.943475, 0.000000, 0.000000 - 0.330950, 0.943648, 0.000000, 0.000000 - 0.330456, 0.943822, 0.000000, 0.000000 - 0.329961, 0.943994, 0.000000, 0.000000 - 0.329467, 0.944167, 0.000000, 0.000000 - 0.328972, 0.944340, 0.000000, 0.000000 - 0.328478, 0.944512, 0.000000, 0.000000 - 0.327983, 0.944684, 0.000000, 0.000000 - 0.327488, 0.944855, 0.000000, 0.000000 - 0.326993, 0.945027, 0.000000, 0.000000 - 0.326498, 0.945198, 0.000000, 0.000000 - 0.326003, 0.945369, 0.000000, 0.000000 - 0.325508, 0.945539, 0.000000, 0.000000 - 0.325012, 0.945710, 0.000000, 0.000000 - 0.324517, 0.945880, 0.000000, 0.000000 - 0.324021, 0.946050, 0.000000, 0.000000 - 0.323526, 0.946219, 0.000000, 0.000000 - 0.323030, 0.946389, 0.000000, 0.000000 - 0.322535, 0.946558, 0.000000, 0.000000 - 0.322039, 0.946727, 0.000000, 0.000000 - 0.321543, 0.946895, 0.000000, 0.000000 - 0.321047, 0.947063, 0.000000, 0.000000 - 0.320551, 0.947231, 0.000000, 0.000000 - 0.320055, 0.947399, 0.000000, 0.000000 - 0.319558, 0.947567, 0.000000, 0.000000 - 0.319062, 0.947734, 0.000000, 0.000000 - 0.318565, 0.947901, 0.000000, 0.000000 - 0.318069, 0.948068, 0.000000, 0.000000 - 0.317572, 0.948234, 0.000000, 0.000000 - 0.317076, 0.948400, 0.000000, 0.000000 - 0.316579, 0.948566, 0.000000, 0.000000 - 0.316082, 0.948732, 0.000000, 0.000000 - 0.315585, 0.948897, 0.000000, 0.000000 - 0.315088, 0.949062, 0.000000, 0.000000 - 0.314591, 0.949227, 0.000000, 0.000000 - 0.314094, 0.949392, 0.000000, 0.000000 - 0.313596, 0.949556, 0.000000, 0.000000 - 0.313099, 0.949721, 0.000000, 0.000000 - 0.312601, 0.949884, 0.000000, 0.000000 - 0.312104, 0.950048, 0.000000, 0.000000 - 0.311606, 0.950211, 0.000000, 0.000000 - 0.311108, 0.950374, 0.000000, 0.000000 - 0.310611, 0.950537, 0.000000, 0.000000 - 0.310113, 0.950700, 0.000000, 0.000000 - 0.309615, 0.950862, 0.000000, 0.000000 - 0.309117, 0.951024, 0.000000, 0.000000 - 0.308618, 0.951186, 0.000000, 0.000000 - 0.308120, 0.951347, 0.000000, 0.000000 - 0.307622, 0.951509, 0.000000, 0.000000 - 0.307123, 0.951670, 0.000000, 0.000000 - 0.306625, 0.951830, 0.000000, 0.000000 - 0.306126, 0.951991, 0.000000, 0.000000 - 0.305628, 0.952151, 0.000000, 0.000000 - 0.305129, 0.952311, 0.000000, 0.000000 - 0.304630, 0.952471, 0.000000, 0.000000 - 0.304131, 0.952630, 0.000000, 0.000000 - 0.303632, 0.952789, 0.000000, 0.000000 - 0.303133, 0.952948, 0.000000, 0.000000 - 0.302634, 0.953107, 0.000000, 0.000000 - 0.302135, 0.953265, 0.000000, 0.000000 - 0.301635, 0.953423, 0.000000, 0.000000 - 0.301136, 0.953581, 0.000000, 0.000000 - 0.300636, 0.953739, 0.000000, 0.000000 - 0.300137, 0.953896, 0.000000, 0.000000 - 0.299637, 0.954053, 0.000000, 0.000000 - 0.299137, 0.954210, 0.000000, 0.000000 - 0.298638, 0.954367, 0.000000, 0.000000 - 0.298138, 0.954523, 0.000000, 0.000000 - 0.297638, 0.954679, 0.000000, 0.000000 - 0.297138, 0.954835, 0.000000, 0.000000 - 0.296637, 0.954990, 0.000000, 0.000000 - 0.296137, 0.955145, 0.000000, 0.000000 - 0.295637, 0.955300, 0.000000, 0.000000 - 0.295136, 0.955455, 0.000000, 0.000000 - 0.294636, 0.955610, 0.000000, 0.000000 - 0.294135, 0.955764, 0.000000, 0.000000 - 0.293635, 0.955918, 0.000000, 0.000000 - 0.293134, 0.956071, 0.000000, 0.000000 - 0.292633, 0.956225, 0.000000, 0.000000 - 0.292132, 0.956378, 0.000000, 0.000000 - 0.291631, 0.956531, 0.000000, 0.000000 - 0.291130, 0.956683, 0.000000, 0.000000 - 0.290629, 0.956836, 0.000000, 0.000000 - 0.290128, 0.956988, 0.000000, 0.000000 - 0.289627, 0.957140, 0.000000, 0.000000 - 0.289125, 0.957291, 0.000000, 0.000000 - 0.288624, 0.957443, 0.000000, 0.000000 - 0.288122, 0.957594, 0.000000, 0.000000 - 0.287621, 0.957744, 0.000000, 0.000000 - 0.287119, 0.957895, 0.000000, 0.000000 - 0.286617, 0.958045, 0.000000, 0.000000 - 0.286116, 0.958195, 0.000000, 0.000000 - 0.285614, 0.958345, 0.000000, 0.000000 - 0.285112, 0.958494, 0.000000, 0.000000 - 0.284610, 0.958644, 0.000000, 0.000000 - 0.284107, 0.958792, 0.000000, 0.000000 - 0.283605, 0.958941, 0.000000, 0.000000 - 0.283103, 0.959090, 0.000000, 0.000000 - 0.282600, 0.959238, 0.000000, 0.000000 - 0.282098, 0.959386, 0.000000, 0.000000 - 0.281595, 0.959533, 0.000000, 0.000000 - 0.281093, 0.959681, 0.000000, 0.000000 - 0.280590, 0.959828, 0.000000, 0.000000 - 0.280087, 0.959975, 0.000000, 0.000000 - 0.279585, 0.960121, 0.000000, 0.000000 - 0.279082, 0.960267, 0.000000, 0.000000 - 0.278579, 0.960413, 0.000000, 0.000000 - 0.278076, 0.960559, 0.000000, 0.000000 - 0.277572, 0.960705, 0.000000, 0.000000 - 0.277069, 0.960850, 0.000000, 0.000000 - 0.276566, 0.960995, 0.000000, 0.000000 - 0.276062, 0.961140, 0.000000, 0.000000 - 0.275559, 0.961284, 0.000000, 0.000000 - 0.275056, 0.961428, 0.000000, 0.000000 - 0.274552, 0.961572, 0.000000, 0.000000 - 0.274048, 0.961716, 0.000000, 0.000000 - 0.273544, 0.961859, 0.000000, 0.000000 - 0.273041, 0.962003, 0.000000, 0.000000 - 0.272537, 0.962145, 0.000000, 0.000000 - 0.272033, 0.962288, 0.000000, 0.000000 - 0.271529, 0.962430, 0.000000, 0.000000 - 0.271025, 0.962572, 0.000000, 0.000000 - 0.270520, 0.962714, 0.000000, 0.000000 - 0.270016, 0.962856, 0.000000, 0.000000 - 0.269512, 0.962997, 0.000000, 0.000000 - 0.269007, 0.963138, 0.000000, 0.000000 - 0.268503, 0.963279, 0.000000, 0.000000 - 0.267998, 0.963419, 0.000000, 0.000000 - 0.267494, 0.963560, 0.000000, 0.000000 - 0.266989, 0.963700, 0.000000, 0.000000 - 0.266484, 0.963839, 0.000000, 0.000000 - 0.265979, 0.963979, 0.000000, 0.000000 - 0.265474, 0.964118, 0.000000, 0.000000 - 0.264969, 0.964257, 0.000000, 0.000000 - 0.264464, 0.964396, 0.000000, 0.000000 - 0.263959, 0.964534, 0.000000, 0.000000 - 0.263454, 0.964672, 0.000000, 0.000000 - 0.262948, 0.964810, 0.000000, 0.000000 - 0.262443, 0.964947, 0.000000, 0.000000 - 0.261938, 0.965085, 0.000000, 0.000000 - 0.261432, 0.965222, 0.000000, 0.000000 - 0.260926, 0.965359, 0.000000, 0.000000 - 0.260421, 0.965495, 0.000000, 0.000000 - 0.259915, 0.965631, 0.000000, 0.000000 - 0.259409, 0.965767, 0.000000, 0.000000 - 0.258903, 0.965903, 0.000000, 0.000000 - 0.258397, 0.966039, 0.000000, 0.000000 - 0.257891, 0.966174, 0.000000, 0.000000 - 0.257385, 0.966309, 0.000000, 0.000000 - 0.256879, 0.966444, 0.000000, 0.000000 - 0.256373, 0.966578, 0.000000, 0.000000 - 0.255867, 0.966712, 0.000000, 0.000000 - 0.255360, 0.966846, 0.000000, 0.000000 - 0.254854, 0.966980, 0.000000, 0.000000 - 0.254347, 0.967113, 0.000000, 0.000000 - 0.253841, 0.967246, 0.000000, 0.000000 - 0.253334, 0.967379, 0.000000, 0.000000 - 0.252827, 0.967511, 0.000000, 0.000000 - 0.252321, 0.967644, 0.000000, 0.000000 - 0.251814, 0.967776, 0.000000, 0.000000 - 0.251307, 0.967907, 0.000000, 0.000000 - 0.250800, 0.968039, 0.000000, 0.000000 - 0.250293, 0.968170, 0.000000, 0.000000 - 0.249786, 0.968301, 0.000000, 0.000000 - 0.249278, 0.968432, 0.000000, 0.000000 - 0.248771, 0.968562, 0.000000, 0.000000 - 0.248264, 0.968692, 0.000000, 0.000000 - 0.247756, 0.968822, 0.000000, 0.000000 - 0.247249, 0.968952, 0.000000, 0.000000 - 0.246741, 0.969081, 0.000000, 0.000000 - 0.246234, 0.969210, 0.000000, 0.000000 - 0.245726, 0.969339, 0.000000, 0.000000 - 0.245218, 0.969468, 0.000000, 0.000000 - 0.244710, 0.969596, 0.000000, 0.000000 - 0.244203, 0.969724, 0.000000, 0.000000 - 0.243695, 0.969852, 0.000000, 0.000000 - 0.243187, 0.969980, 0.000000, 0.000000 - 0.242678, 0.970107, 0.000000, 0.000000 - 0.242170, 0.970234, 0.000000, 0.000000 - 0.241662, 0.970360, 0.000000, 0.000000 - 0.241154, 0.970487, 0.000000, 0.000000 - 0.240646, 0.970613, 0.000000, 0.000000 - 0.240137, 0.970739, 0.000000, 0.000000 - 0.239629, 0.970865, 0.000000, 0.000000 - 0.239120, 0.970990, 0.000000, 0.000000 - 0.238611, 0.971115, 0.000000, 0.000000 - 0.238103, 0.971240, 0.000000, 0.000000 - 0.237594, 0.971365, 0.000000, 0.000000 - 0.237085, 0.971489, 0.000000, 0.000000 - 0.236576, 0.971613, 0.000000, 0.000000 - 0.236067, 0.971737, 0.000000, 0.000000 - 0.235558, 0.971860, 0.000000, 0.000000 - 0.235049, 0.971983, 0.000000, 0.000000 - 0.234540, 0.972106, 0.000000, 0.000000 - 0.234031, 0.972229, 0.000000, 0.000000 - 0.233522, 0.972352, 0.000000, 0.000000 - 0.233012, 0.972474, 0.000000, 0.000000 - 0.232503, 0.972596, 0.000000, 0.000000 - 0.231994, 0.972717, 0.000000, 0.000000 - 0.231484, 0.972839, 0.000000, 0.000000 - 0.230975, 0.972960, 0.000000, 0.000000 - 0.230465, 0.973081, 0.000000, 0.000000 - 0.229955, 0.973201, 0.000000, 0.000000 - 0.229445, 0.973322, 0.000000, 0.000000 - 0.228936, 0.973442, 0.000000, 0.000000 - 0.228426, 0.973561, 0.000000, 0.000000 - 0.227916, 0.973681, 0.000000, 0.000000 - 0.227406, 0.973800, 0.000000, 0.000000 - 0.226896, 0.973919, 0.000000, 0.000000 - 0.226385, 0.974038, 0.000000, 0.000000 - 0.225875, 0.974156, 0.000000, 0.000000 - 0.225365, 0.974274, 0.000000, 0.000000 - 0.224855, 0.974392, 0.000000, 0.000000 - 0.224344, 0.974510, 0.000000, 0.000000 - 0.223834, 0.974627, 0.000000, 0.000000 - 0.223323, 0.974744, 0.000000, 0.000000 - 0.222813, 0.974861, 0.000000, 0.000000 - 0.222302, 0.974978, 0.000000, 0.000000 - 0.221791, 0.975094, 0.000000, 0.000000 - 0.221281, 0.975210, 0.000000, 0.000000 - 0.220770, 0.975326, 0.000000, 0.000000 - 0.220259, 0.975441, 0.000000, 0.000000 - 0.219748, 0.975557, 0.000000, 0.000000 - 0.219237, 0.975672, 0.000000, 0.000000 - 0.218726, 0.975786, 0.000000, 0.000000 - 0.218215, 0.975901, 0.000000, 0.000000 - 0.217704, 0.976015, 0.000000, 0.000000 - 0.217192, 0.976129, 0.000000, 0.000000 - 0.216681, 0.976242, 0.000000, 0.000000 - 0.216170, 0.976356, 0.000000, 0.000000 - 0.215658, 0.976469, 0.000000, 0.000000 - 0.215147, 0.976582, 0.000000, 0.000000 - 0.214635, 0.976694, 0.000000, 0.000000 - 0.214124, 0.976807, 0.000000, 0.000000 - 0.213612, 0.976919, 0.000000, 0.000000 - 0.213100, 0.977030, 0.000000, 0.000000 - 0.212589, 0.977142, 0.000000, 0.000000 - 0.212077, 0.977253, 0.000000, 0.000000 - 0.211565, 0.977364, 0.000000, 0.000000 - 0.211053, 0.977475, 0.000000, 0.000000 - 0.210541, 0.977585, 0.000000, 0.000000 - 0.210029, 0.977695, 0.000000, 0.000000 - 0.209517, 0.977805, 0.000000, 0.000000 - 0.209005, 0.977915, 0.000000, 0.000000 - 0.208492, 0.978024, 0.000000, 0.000000 - 0.207980, 0.978133, 0.000000, 0.000000 - 0.207468, 0.978242, 0.000000, 0.000000 - 0.206955, 0.978350, 0.000000, 0.000000 - 0.206443, 0.978459, 0.000000, 0.000000 - 0.205930, 0.978567, 0.000000, 0.000000 - 0.205418, 0.978674, 0.000000, 0.000000 - 0.204905, 0.978782, 0.000000, 0.000000 - 0.204392, 0.978889, 0.000000, 0.000000 - 0.203880, 0.978996, 0.000000, 0.000000 - 0.203367, 0.979103, 0.000000, 0.000000 - 0.202854, 0.979209, 0.000000, 0.000000 - 0.202341, 0.979315, 0.000000, 0.000000 - 0.201828, 0.979421, 0.000000, 0.000000 - 0.201315, 0.979527, 0.000000, 0.000000 - 0.200802, 0.979632, 0.000000, 0.000000 - 0.200289, 0.979737, 0.000000, 0.000000 - 0.199776, 0.979842, 0.000000, 0.000000 - 0.199262, 0.979946, 0.000000, 0.000000 - 0.198749, 0.980050, 0.000000, 0.000000 - 0.198236, 0.980154, 0.000000, 0.000000 - 0.197722, 0.980258, 0.000000, 0.000000 - 0.197209, 0.980361, 0.000000, 0.000000 - 0.196695, 0.980465, 0.000000, 0.000000 - 0.196182, 0.980568, 0.000000, 0.000000 - 0.195668, 0.980670, 0.000000, 0.000000 - 0.195155, 0.980773, 0.000000, 0.000000 - 0.194641, 0.980875, 0.000000, 0.000000 - 0.194127, 0.980976, 0.000000, 0.000000 - 0.193613, 0.981078, 0.000000, 0.000000 - 0.193099, 0.981179, 0.000000, 0.000000 - 0.192585, 0.981280, 0.000000, 0.000000 - 0.192071, 0.981381, 0.000000, 0.000000 - 0.191557, 0.981481, 0.000000, 0.000000 - 0.191043, 0.981582, 0.000000, 0.000000 - 0.190529, 0.981682, 0.000000, 0.000000 - 0.190015, 0.981781, 0.000000, 0.000000 - 0.189501, 0.981881, 0.000000, 0.000000 - 0.188986, 0.981980, 0.000000, 0.000000 - 0.188472, 0.982079, 0.000000, 0.000000 - 0.187958, 0.982177, 0.000000, 0.000000 - 0.187443, 0.982275, 0.000000, 0.000000 - 0.186929, 0.982374, 0.000000, 0.000000 - 0.186414, 0.982471, 0.000000, 0.000000 - 0.185899, 0.982569, 0.000000, 0.000000 - 0.185385, 0.982666, 0.000000, 0.000000 - 0.184870, 0.982763, 0.000000, 0.000000 - 0.184355, 0.982860, 0.000000, 0.000000 - 0.183840, 0.982956, 0.000000, 0.000000 - 0.183326, 0.983052, 0.000000, 0.000000 - 0.182811, 0.983148, 0.000000, 0.000000 - 0.182296, 0.983244, 0.000000, 0.000000 - 0.181781, 0.983339, 0.000000, 0.000000 - 0.181266, 0.983434, 0.000000, 0.000000 - 0.180750, 0.983529, 0.000000, 0.000000 - 0.180235, 0.983624, 0.000000, 0.000000 - 0.179720, 0.983718, 0.000000, 0.000000 - 0.179205, 0.983812, 0.000000, 0.000000 - 0.178689, 0.983906, 0.000000, 0.000000 - 0.178174, 0.983999, 0.000000, 0.000000 - 0.177659, 0.984092, 0.000000, 0.000000 - 0.177143, 0.984185, 0.000000, 0.000000 - 0.176628, 0.984278, 0.000000, 0.000000 - 0.176112, 0.984370, 0.000000, 0.000000 - 0.175596, 0.984462, 0.000000, 0.000000 - 0.175081, 0.984554, 0.000000, 0.000000 - 0.174565, 0.984646, 0.000000, 0.000000 - 0.174049, 0.984737, 0.000000, 0.000000 - 0.173534, 0.984828, 0.000000, 0.000000 - 0.173018, 0.984919, 0.000000, 0.000000 - 0.172502, 0.985009, 0.000000, 0.000000 - 0.171986, 0.985099, 0.000000, 0.000000 - 0.171470, 0.985189, 0.000000, 0.000000 - 0.170954, 0.985279, 0.000000, 0.000000 - 0.170438, 0.985368, 0.000000, 0.000000 - 0.169922, 0.985458, 0.000000, 0.000000 - 0.169405, 0.985546, 0.000000, 0.000000 - 0.168889, 0.985635, 0.000000, 0.000000 - 0.168373, 0.985723, 0.000000, 0.000000 - 0.167857, 0.985811, 0.000000, 0.000000 - 0.167340, 0.985899, 0.000000, 0.000000 - 0.166824, 0.985987, 0.000000, 0.000000 - 0.166307, 0.986074, 0.000000, 0.000000 - 0.165791, 0.986161, 0.000000, 0.000000 - 0.165274, 0.986248, 0.000000, 0.000000 - 0.164758, 0.986334, 0.000000, 0.000000 - 0.164241, 0.986420, 0.000000, 0.000000 - 0.163724, 0.986506, 0.000000, 0.000000 - 0.163208, 0.986592, 0.000000, 0.000000 - 0.162691, 0.986677, 0.000000, 0.000000 - 0.162174, 0.986762, 0.000000, 0.000000 - 0.161657, 0.986847, 0.000000, 0.000000 - 0.161140, 0.986932, 0.000000, 0.000000 - 0.160623, 0.987016, 0.000000, 0.000000 - 0.160106, 0.987100, 0.000000, 0.000000 - 0.159589, 0.987183, 0.000000, 0.000000 - 0.159072, 0.987267, 0.000000, 0.000000 - 0.158555, 0.987350, 0.000000, 0.000000 - 0.158038, 0.987433, 0.000000, 0.000000 - 0.157521, 0.987516, 0.000000, 0.000000 - 0.157003, 0.987598, 0.000000, 0.000000 - 0.156486, 0.987680, 0.000000, 0.000000 - 0.155969, 0.987762, 0.000000, 0.000000 - 0.155451, 0.987844, 0.000000, 0.000000 - 0.154934, 0.987925, 0.000000, 0.000000 - 0.154417, 0.988006, 0.000000, 0.000000 - 0.153899, 0.988087, 0.000000, 0.000000 - 0.153382, 0.988167, 0.000000, 0.000000 - 0.152864, 0.988247, 0.000000, 0.000000 - 0.152346, 0.988327, 0.000000, 0.000000 - 0.151829, 0.988407, 0.000000, 0.000000 - 0.151311, 0.988486, 0.000000, 0.000000 - 0.150793, 0.988565, 0.000000, 0.000000 - 0.150275, 0.988644, 0.000000, 0.000000 - 0.149757, 0.988723, 0.000000, 0.000000 - 0.149240, 0.988801, 0.000000, 0.000000 - 0.148722, 0.988879, 0.000000, 0.000000 - 0.148204, 0.988957, 0.000000, 0.000000 - 0.147686, 0.989034, 0.000000, 0.000000 - 0.147168, 0.989112, 0.000000, 0.000000 - 0.146650, 0.989189, 0.000000, 0.000000 - 0.146131, 0.989265, 0.000000, 0.000000 - 0.145613, 0.989342, 0.000000, 0.000000 - 0.145095, 0.989418, 0.000000, 0.000000 - 0.144577, 0.989494, 0.000000, 0.000000 - 0.144058, 0.989569, 0.000000, 0.000000 - 0.143540, 0.989644, 0.000000, 0.000000 - 0.143022, 0.989720, 0.000000, 0.000000 - 0.142503, 0.989794, 0.000000, 0.000000 - 0.141985, 0.989869, 0.000000, 0.000000 - 0.141466, 0.989943, 0.000000, 0.000000 - 0.140948, 0.990017, 0.000000, 0.000000 - 0.140429, 0.990091, 0.000000, 0.000000 - 0.139911, 0.990164, 0.000000, 0.000000 - 0.139392, 0.990237, 0.000000, 0.000000 - 0.138873, 0.990310, 0.000000, 0.000000 - 0.138355, 0.990383, 0.000000, 0.000000 - 0.137836, 0.990455, 0.000000, 0.000000 - 0.137317, 0.990527, 0.000000, 0.000000 - 0.136798, 0.990599, 0.000000, 0.000000 - 0.136279, 0.990670, 0.000000, 0.000000 - 0.135761, 0.990742, 0.000000, 0.000000 - 0.135242, 0.990813, 0.000000, 0.000000 - 0.134723, 0.990883, 0.000000, 0.000000 - 0.134204, 0.990954, 0.000000, 0.000000 - 0.133685, 0.991024, 0.000000, 0.000000 - 0.133165, 0.991094, 0.000000, 0.000000 - 0.132646, 0.991163, 0.000000, 0.000000 - 0.132127, 0.991233, 0.000000, 0.000000 - 0.131608, 0.991302, 0.000000, 0.000000 - 0.131089, 0.991371, 0.000000, 0.000000 - 0.130569, 0.991439, 0.000000, 0.000000 - 0.130050, 0.991507, 0.000000, 0.000000 - 0.129531, 0.991575, 0.000000, 0.000000 - 0.129011, 0.991643, 0.000000, 0.000000 - 0.128492, 0.991711, 0.000000, 0.000000 - 0.127973, 0.991778, 0.000000, 0.000000 - 0.127453, 0.991845, 0.000000, 0.000000 - 0.126934, 0.991911, 0.000000, 0.000000 - 0.126414, 0.991978, 0.000000, 0.000000 - 0.125894, 0.992044, 0.000000, 0.000000 - 0.125375, 0.992109, 0.000000, 0.000000 - 0.124855, 0.992175, 0.000000, 0.000000 - 0.124335, 0.992240, 0.000000, 0.000000 - 0.123816, 0.992305, 0.000000, 0.000000 - 0.123296, 0.992370, 0.000000, 0.000000 - 0.122776, 0.992434, 0.000000, 0.000000 - 0.122256, 0.992499, 0.000000, 0.000000 - 0.121736, 0.992562, 0.000000, 0.000000 - 0.121217, 0.992626, 0.000000, 0.000000 - 0.120697, 0.992689, 0.000000, 0.000000 - 0.120177, 0.992753, 0.000000, 0.000000 - 0.119657, 0.992815, 0.000000, 0.000000 - 0.119137, 0.992878, 0.000000, 0.000000 - 0.118617, 0.992940, 0.000000, 0.000000 - 0.118097, 0.993002, 0.000000, 0.000000 - 0.117576, 0.993064, 0.000000, 0.000000 - 0.117056, 0.993125, 0.000000, 0.000000 - 0.116536, 0.993186, 0.000000, 0.000000 - 0.116016, 0.993247, 0.000000, 0.000000 - 0.115496, 0.993308, 0.000000, 0.000000 - 0.114975, 0.993368, 0.000000, 0.000000 - 0.114455, 0.993428, 0.000000, 0.000000 - 0.113935, 0.993488, 0.000000, 0.000000 - 0.113414, 0.993548, 0.000000, 0.000000 - 0.112894, 0.993607, 0.000000, 0.000000 - 0.112373, 0.993666, 0.000000, 0.000000 - 0.111853, 0.993725, 0.000000, 0.000000 - 0.111332, 0.993783, 0.000000, 0.000000 - 0.110812, 0.993841, 0.000000, 0.000000 - 0.110291, 0.993899, 0.000000, 0.000000 - 0.109771, 0.993957, 0.000000, 0.000000 - 0.109250, 0.994014, 0.000000, 0.000000 - 0.108729, 0.994071, 0.000000, 0.000000 - 0.108209, 0.994128, 0.000000, 0.000000 - 0.107688, 0.994185, 0.000000, 0.000000 - 0.107167, 0.994241, 0.000000, 0.000000 - 0.106647, 0.994297, 0.000000, 0.000000 - 0.106126, 0.994353, 0.000000, 0.000000 - 0.105605, 0.994408, 0.000000, 0.000000 - 0.105084, 0.994463, 0.000000, 0.000000 - 0.104563, 0.994518, 0.000000, 0.000000 - 0.104042, 0.994573, 0.000000, 0.000000 - 0.103521, 0.994627, 0.000000, 0.000000 - 0.103000, 0.994681, 0.000000, 0.000000 - 0.102479, 0.994735, 0.000000, 0.000000 - 0.101958, 0.994789, 0.000000, 0.000000 - 0.101437, 0.994842, 0.000000, 0.000000 - 0.100916, 0.994895, 0.000000, 0.000000 - 0.100395, 0.994948, 0.000000, 0.000000 - 0.099874, 0.995000, 0.000000, 0.000000 - 0.099353, 0.995052, 0.000000, 0.000000 - 0.098832, 0.995104, 0.000000, 0.000000 - 0.098310, 0.995156, 0.000000, 0.000000 - 0.097789, 0.995207, 0.000000, 0.000000 - 0.097268, 0.995258, 0.000000, 0.000000 - 0.096747, 0.995309, 0.000000, 0.000000 - 0.096225, 0.995360, 0.000000, 0.000000 - 0.095704, 0.995410, 0.000000, 0.000000 - 0.095182, 0.995460, 0.000000, 0.000000 - 0.094661, 0.995510, 0.000000, 0.000000 - 0.094140, 0.995559, 0.000000, 0.000000 - 0.093618, 0.995608, 0.000000, 0.000000 - 0.093097, 0.995657, 0.000000, 0.000000 - 0.092575, 0.995706, 0.000000, 0.000000 - 0.092054, 0.995754, 0.000000, 0.000000 - 0.091532, 0.995802, 0.000000, 0.000000 - 0.091010, 0.995850, 0.000000, 0.000000 - 0.090489, 0.995897, 0.000000, 0.000000 - 0.089967, 0.995945, 0.000000, 0.000000 - 0.089446, 0.995992, 0.000000, 0.000000 - 0.088924, 0.996038, 0.000000, 0.000000 - 0.088402, 0.996085, 0.000000, 0.000000 - 0.087880, 0.996131, 0.000000, 0.000000 - 0.087359, 0.996177, 0.000000, 0.000000 - 0.086837, 0.996223, 0.000000, 0.000000 - 0.086315, 0.996268, 0.000000, 0.000000 - 0.085793, 0.996313, 0.000000, 0.000000 - 0.085271, 0.996358, 0.000000, 0.000000 - 0.084750, 0.996402, 0.000000, 0.000000 - 0.084228, 0.996447, 0.000000, 0.000000 - 0.083706, 0.996491, 0.000000, 0.000000 - 0.083184, 0.996534, 0.000000, 0.000000 - 0.082662, 0.996578, 0.000000, 0.000000 - 0.082140, 0.996621, 0.000000, 0.000000 - 0.081618, 0.996664, 0.000000, 0.000000 - 0.081096, 0.996706, 0.000000, 0.000000 - 0.080574, 0.996749, 0.000000, 0.000000 - 0.080052, 0.996791, 0.000000, 0.000000 - 0.079529, 0.996833, 0.000000, 0.000000 - 0.079007, 0.996874, 0.000000, 0.000000 - 0.078485, 0.996915, 0.000000, 0.000000 - 0.077963, 0.996956, 0.000000, 0.000000 - 0.077441, 0.996997, 0.000000, 0.000000 - 0.076919, 0.997037, 0.000000, 0.000000 - 0.076396, 0.997078, 0.000000, 0.000000 - 0.075874, 0.997117, 0.000000, 0.000000 - 0.075352, 0.997157, 0.000000, 0.000000 - 0.074830, 0.997196, 0.000000, 0.000000 - 0.074307, 0.997235, 0.000000, 0.000000 - 0.073785, 0.997274, 0.000000, 0.000000 - 0.073263, 0.997313, 0.000000, 0.000000 - 0.072740, 0.997351, 0.000000, 0.000000 - 0.072218, 0.997389, 0.000000, 0.000000 - 0.071695, 0.997427, 0.000000, 0.000000 - 0.071173, 0.997464, 0.000000, 0.000000 - 0.070650, 0.997501, 0.000000, 0.000000 - 0.070128, 0.997538, 0.000000, 0.000000 - 0.069606, 0.997575, 0.000000, 0.000000 - 0.069083, 0.997611, 0.000000, 0.000000 - 0.068560, 0.997647, 0.000000, 0.000000 - 0.068038, 0.997683, 0.000000, 0.000000 - 0.067515, 0.997718, 0.000000, 0.000000 - 0.066993, 0.997753, 0.000000, 0.000000 - 0.066470, 0.997788, 0.000000, 0.000000 - 0.065948, 0.997823, 0.000000, 0.000000 - 0.065425, 0.997857, 0.000000, 0.000000 - 0.064902, 0.997892, 0.000000, 0.000000 - 0.064380, 0.997925, 0.000000, 0.000000 - 0.063857, 0.997959, 0.000000, 0.000000 - 0.063334, 0.997992, 0.000000, 0.000000 - 0.062811, 0.998025, 0.000000, 0.000000 - 0.062289, 0.998058, 0.000000, 0.000000 - 0.061766, 0.998091, 0.000000, 0.000000 - 0.061243, 0.998123, 0.000000, 0.000000 - 0.060720, 0.998155, 0.000000, 0.000000 - 0.060198, 0.998186, 0.000000, 0.000000 - 0.059675, 0.998218, 0.000000, 0.000000 - 0.059152, 0.998249, 0.000000, 0.000000 - 0.058629, 0.998280, 0.000000, 0.000000 - 0.058106, 0.998310, 0.000000, 0.000000 - 0.057583, 0.998341, 0.000000, 0.000000 - 0.057060, 0.998371, 0.000000, 0.000000 - 0.056537, 0.998400, 0.000000, 0.000000 - 0.056014, 0.998430, 0.000000, 0.000000 - 0.055491, 0.998459, 0.000000, 0.000000 - 0.054968, 0.998488, 0.000000, 0.000000 - 0.054445, 0.998517, 0.000000, 0.000000 - 0.053922, 0.998545, 0.000000, 0.000000 - 0.053399, 0.998573, 0.000000, 0.000000 - 0.052876, 0.998601, 0.000000, 0.000000 - 0.052353, 0.998629, 0.000000, 0.000000 - 0.051830, 0.998656, 0.000000, 0.000000 - 0.051307, 0.998683, 0.000000, 0.000000 - 0.050784, 0.998710, 0.000000, 0.000000 - 0.050261, 0.998736, 0.000000, 0.000000 - 0.049738, 0.998762, 0.000000, 0.000000 - 0.049215, 0.998788, 0.000000, 0.000000 - 0.048692, 0.998814, 0.000000, 0.000000 - 0.048169, 0.998839, 0.000000, 0.000000 - 0.047645, 0.998864, 0.000000, 0.000000 - 0.047122, 0.998889, 0.000000, 0.000000 - 0.046599, 0.998914, 0.000000, 0.000000 - 0.046076, 0.998938, 0.000000, 0.000000 - 0.045553, 0.998962, 0.000000, 0.000000 - 0.045029, 0.998986, 0.000000, 0.000000 - 0.044506, 0.999009, 0.000000, 0.000000 - 0.043983, 0.999032, 0.000000, 0.000000 - 0.043459, 0.999055, 0.000000, 0.000000 - 0.042936, 0.999078, 0.000000, 0.000000 - 0.042413, 0.999100, 0.000000, 0.000000 - 0.041890, 0.999122, 0.000000, 0.000000 - 0.041366, 0.999144, 0.000000, 0.000000 - 0.040843, 0.999166, 0.000000, 0.000000 - 0.040320, 0.999187, 0.000000, 0.000000 - 0.039796, 0.999208, 0.000000, 0.000000 - 0.039273, 0.999229, 0.000000, 0.000000 - 0.038750, 0.999249, 0.000000, 0.000000 - 0.038226, 0.999269, 0.000000, 0.000000 - 0.037703, 0.999289, 0.000000, 0.000000 - 0.037179, 0.999309, 0.000000, 0.000000 - 0.036656, 0.999328, 0.000000, 0.000000 - 0.036132, 0.999347, 0.000000, 0.000000 - 0.035609, 0.999366, 0.000000, 0.000000 - 0.035086, 0.999384, 0.000000, 0.000000 - 0.034562, 0.999403, 0.000000, 0.000000 - 0.034039, 0.999421, 0.000000, 0.000000 - 0.033515, 0.999438, 0.000000, 0.000000 - 0.032992, 0.999456, 0.000000, 0.000000 - 0.032468, 0.999473, 0.000000, 0.000000 - 0.031945, 0.999490, 0.000000, 0.000000 - 0.031421, 0.999506, 0.000000, 0.000000 - 0.030898, 0.999523, 0.000000, 0.000000 - 0.030374, 0.999539, 0.000000, 0.000000 - 0.029851, 0.999554, 0.000000, 0.000000 - 0.029327, 0.999570, 0.000000, 0.000000 - 0.028804, 0.999585, 0.000000, 0.000000 - 0.028280, 0.999600, 0.000000, 0.000000 - 0.027756, 0.999615, 0.000000, 0.000000 - 0.027233, 0.999629, 0.000000, 0.000000 - 0.026709, 0.999643, 0.000000, 0.000000 - 0.026186, 0.999657, 0.000000, 0.000000 - 0.025662, 0.999671, 0.000000, 0.000000 - 0.025138, 0.999684, 0.000000, 0.000000 - 0.024615, 0.999697, 0.000000, 0.000000 - 0.024091, 0.999710, 0.000000, 0.000000 - 0.023568, 0.999722, 0.000000, 0.000000 - 0.023044, 0.999734, 0.000000, 0.000000 - 0.022520, 0.999746, 0.000000, 0.000000 - 0.021997, 0.999758, 0.000000, 0.000000 - 0.021473, 0.999769, 0.000000, 0.000000 - 0.020949, 0.999781, 0.000000, 0.000000 - 0.020426, 0.999791, 0.000000, 0.000000 - 0.019902, 0.999802, 0.000000, 0.000000 - 0.019378, 0.999812, 0.000000, 0.000000 - 0.018855, 0.999822, 0.000000, 0.000000 - 0.018331, 0.999832, 0.000000, 0.000000 - 0.017807, 0.999841, 0.000000, 0.000000 - 0.017284, 0.999851, 0.000000, 0.000000 - 0.016760, 0.999860, 0.000000, 0.000000 - 0.016236, 0.999868, 0.000000, 0.000000 - 0.015713, 0.999877, 0.000000, 0.000000 - 0.015189, 0.999885, 0.000000, 0.000000 - 0.014665, 0.999892, 0.000000, 0.000000 - 0.014141, 0.999900, 0.000000, 0.000000 - 0.013618, 0.999907, 0.000000, 0.000000 - 0.013094, 0.999914, 0.000000, 0.000000 - 0.012570, 0.999921, 0.000000, 0.000000 - 0.012046, 0.999927, 0.000000, 0.000000 - 0.011523, 0.999934, 0.000000, 0.000000 - 0.010999, 0.999940, 0.000000, 0.000000 - 0.010475, 0.999945, 0.000000, 0.000000 - 0.009952, 0.999950, 0.000000, 0.000000 - 0.009428, 0.999956, 0.000000, 0.000000 - 0.008904, 0.999960, 0.000000, 0.000000 - 0.008380, 0.999965, 0.000000, 0.000000 - 0.007857, 0.999969, 0.000000, 0.000000 - 0.007333, 0.999973, 0.000000, 0.000000 - 0.006809, 0.999977, 0.000000, 0.000000 - 0.006285, 0.999980, 0.000000, 0.000000 - 0.005761, 0.999983, 0.000000, 0.000000 - 0.005238, 0.999986, 0.000000, 0.000000 - 0.004714, 0.999989, 0.000000, 0.000000 - 0.004190, 0.999991, 0.000000, 0.000000 - 0.003666, 0.999993, 0.000000, 0.000000 - 0.003143, 0.999995, 0.000000, 0.000000 - 0.002619, 0.999997, 0.000000, 0.000000 - 0.002095, 0.999998, 0.000000, 0.000000 - 0.001571, 0.999999, 0.000000, 0.000000 - 0.001048, 0.999999, 0.000000, 0.000000 - 0.000524, 1.000000, 0.000000, 0.000000 - 0.000000, 1.000000, 0.000000, 0.000000 diff --git a/scripts/trajectories/headrot-1.5s-Euler.csv b/scripts/trajectories/headrot-1.5s-Euler.csv deleted file mode 100644 index 6b861833094a01eda330bffde7c0a40d06892220..0000000000000000000000000000000000000000 --- a/scripts/trajectories/headrot-1.5s-Euler.csv +++ /dev/null @@ -1,8100 +0,0 @@ --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.000033,0.000000,0.000000 --3.0,10.266693,0.000000,0.000000 --3.0,10.533298,0.000000,0.000000 --3.0,10.799964,0.000000,0.000000 --3.0,11.066683,0.000000,0.000000 --3.0,11.333351,0.000000,0.000000 --3.0,11.599969,0.000000,0.000000 --3.0,11.866644,0.000000,0.000000 --3.0,12.133388,0.000000,0.000000 --3.0,12.399959,0.000000,0.000000 --3.0,12.666719,0.000000,0.000000 --3.0,12.933321,0.000000,0.000000 --3.0,13.199985,0.000000,0.000000 --3.0,13.466728,0.000000,0.000000 --3.0,13.733303,0.000000,0.000000 --3.0,13.999958,0.000000,0.000000 --3.0,14.266695,0.000000,0.000000 --3.0,14.533386,0.000000,0.000000 --3.0,14.800045,0.000000,0.000000 --3.0,15.066674,0.000000,0.000000 --3.0,15.333377,0.000000,0.000000 --3.0,15.600053,0.000000,0.000000 --3.0,15.866688,0.000000,0.000000 --3.0,16.133298,0.000000,0.000000 --3.0,16.400004,0.000000,0.000000 --3.0,16.666689,0.000000,0.000000 --3.0,16.933338,0.000000,0.000000 --3.0,17.199953,0.000000,0.000000 --3.0,17.466686,0.000000,0.000000 --3.0,17.733387,0.000000,0.000000 --3.0,17.999939,0.000000,0.000000 --3.0,18.266614,0.000000,0.000000 --3.0,18.533381,0.000000,0.000000 --3.0,18.800002,0.000000,0.000000 --3.0,19.066614,0.000000,0.000000 --3.0,19.333340,0.000000,0.000000 --3.0,19.599942,0.000000,0.000000 --3.0,19.866642,0.000000,0.000000 --3.0,20.133340,0.000000,0.000000 --3.0,20.400039,0.000000,0.000000 --3.0,20.666719,0.000000,0.000000 --3.0,20.933283,0.000000,0.000000 --3.0,21.199951,0.000000,0.000000 --3.0,21.466645,0.000000,0.000000 --3.0,21.733326,0.000000,0.000000 --3.0,21.999997,0.000000,0.000000 --3.0,22.266677,0.000000,0.000000 --3.0,22.533370,0.000000,0.000000 --3.0,22.799955,0.000000,0.000000 --3.0,23.066676,0.000000,0.000000 --3.0,23.333393,0.000000,0.000000 --3.0,23.599985,0.000000,0.000000 --3.0,23.866618,0.000000,0.000000 --3.0,24.133372,0.000000,0.000000 --3.0,24.400027,0.000000,0.000000 --3.0,24.666684,0.000000,0.000000 --3.0,24.933389,0.000000,0.000000 --3.0,25.199976,0.000000,0.000000 --3.0,25.466691,0.000000,0.000000 --3.0,25.733337,0.000000,0.000000 --3.0,25.999992,0.000000,0.000000 --3.0,26.266680,0.000000,0.000000 --3.0,26.533402,0.000000,0.000000 --3.0,26.800015,0.000000,0.000000 --3.0,27.066665,0.000000,0.000000 --3.0,27.333354,0.000000,0.000000 --3.0,27.599937,0.000000,0.000000 --3.0,27.866709,0.000000,0.000000 --3.0,28.133378,0.000000,0.000000 --3.0,28.399943,0.000000,0.000000 --3.0,28.666705,0.000000,0.000000 --3.0,28.933365,0.000000,0.000000 --3.0,29.199951,0.000000,0.000000 --3.0,29.466713,0.000000,0.000000 --3.0,29.733404,0.000000,0.000000 --3.0,29.999999,0.000000,0.000000 --3.0,30.266650,0.000000,0.000000 --3.0,30.533358,0.000000,0.000000 --3.0,30.799975,0.000000,0.000000 --3.0,31.066678,0.000000,0.000000 --3.0,31.333291,0.000000,0.000000 --3.0,31.599969,0.000000,0.000000 --3.0,31.866712,0.000000,0.000000 --3.0,32.133369,0.000000,0.000000 --3.0,32.399995,0.000000,0.000000 --3.0,32.666664,0.000000,0.000000 --3.0,32.933278,0.000000,0.000000 --3.0,33.199965,0.000000,0.000000 --3.0,33.466700,0.000000,0.000000 --3.0,33.733283,0.000000,0.000000 --3.0,34.000045,0.000000,0.000000 --3.0,34.266630,0.000000,0.000000 --3.0,34.533296,0.000000,0.000000 --3.0,34.800018,0.000000,0.000000 --3.0,35.066723,0.000000,0.000000 --3.0,35.333357,0.000000,0.000000 --3.0,35.599949,0.000000,0.000000 --3.0,35.866631,0.000000,0.000000 --3.0,36.133274,0.000000,0.000000 --3.0,36.400009,0.000000,0.000000 --3.0,36.666709,0.000000,0.000000 --3.0,36.933345,0.000000,0.000000 --3.0,37.199948,0.000000,0.000000 --3.0,37.466678,0.000000,0.000000 --3.0,37.733350,0.000000,0.000000 --3.0,37.999992,0.000000,0.000000 --3.0,38.266709,0.000000,0.000000 --3.0,38.533297,0.000000,0.000000 --3.0,38.799993,0.000000,0.000000 --3.0,39.066635,0.000000,0.000000 --3.0,39.333285,0.000000,0.000000 --3.0,39.600017,0.000000,0.000000 --3.0,39.866731,0.000000,0.000000 --3.0,40.133294,0.000000,0.000000 --3.0,40.399973,0.000000,0.000000 --3.0,40.666637,0.000000,0.000000 --3.0,40.933288,0.000000,0.000000 --3.0,41.200061,0.000000,0.000000 --3.0,41.466659,0.000000,0.000000 --3.0,41.733278,0.000000,0.000000 --3.0,41.999994,0.000000,0.000000 --3.0,42.266733,0.000000,0.000000 --3.0,42.533303,0.000000,0.000000 --3.0,42.800035,0.000000,0.000000 --3.0,43.066599,0.000000,0.000000 --3.0,43.333328,0.000000,0.000000 --3.0,43.600028,0.000000,0.000000 --3.0,43.866730,0.000000,0.000000 --3.0,44.133300,0.000000,0.000000 --3.0,44.400042,0.000000,0.000000 --3.0,44.666624,0.000000,0.000000 --3.0,44.933350,0.000000,0.000000 --3.0,45.199949,0.000000,0.000000 --3.0,45.466696,0.000000,0.000000 --3.0,45.733350,0.000000,0.000000 --3.0,45.999987,0.000000,0.000000 --3.0,46.266639,0.000000,0.000000 --3.0,46.533308,0.000000,0.000000 --3.0,46.800027,0.000000,0.000000 --3.0,47.066734,0.000000,0.000000 --3.0,47.333325,0.000000,0.000000 --3.0,47.599969,0.000000,0.000000 --3.0,47.866607,0.000000,0.000000 --3.0,48.133301,0.000000,0.000000 --3.0,48.399992,0.000000,0.000000 --3.0,48.666742,0.000000,0.000000 --3.0,48.933353,0.000000,0.000000 --3.0,49.200026,0.000000,0.000000 --3.0,49.466732,0.000000,0.000000 --3.0,49.733333,0.000000,0.000000 --3.0,49.999970,0.000000,0.000000 --3.0,50.266644,0.000000,0.000000 --3.0,50.533358,0.000000,0.000000 --3.0,50.799972,0.000000,0.000000 --3.0,51.066659,0.000000,0.000000 --3.0,51.333359,0.000000,0.000000 --3.0,51.599993,0.000000,0.000000 --3.0,51.866674,0.000000,0.000000 --3.0,52.133373,0.000000,0.000000 --3.0,52.400010,0.000000,0.000000 --3.0,52.666729,0.000000,0.000000 --3.0,52.933327,0.000000,0.000000 --3.0,53.199980,0.000000,0.000000 --3.0,53.466720,0.000000,0.000000 --3.0,53.733374,0.000000,0.000000 --3.0,53.999942,0.000000,0.000000 --3.0,54.266716,0.000000,0.000000 --3.0,54.533264,0.000000,0.000000 --3.0,54.800019,0.000000,0.000000 --3.0,55.066727,0.000000,0.000000 --3.0,55.333356,0.000000,0.000000 --3.0,55.600053,0.000000,0.000000 --3.0,55.866675,0.000000,0.000000 --3.0,56.133399,0.000000,0.000000 --3.0,56.400021,0.000000,0.000000 --3.0,56.666601,0.000000,0.000000 --3.0,56.933287,0.000000,0.000000 --3.0,57.200022,0.000000,0.000000 --3.0,57.466719,0.000000,0.000000 --3.0,57.733350,0.000000,0.000000 --3.0,58.000065,0.000000,0.000000 --3.0,58.266716,0.000000,0.000000 --3.0,58.533335,0.000000,0.000000 --3.0,58.800042,0.000000,0.000000 --3.0,59.066690,0.000000,0.000000 --3.0,59.333310,0.000000,0.000000 --3.0,59.599993,0.000000,0.000000 --3.0,59.866679,0.000000,0.000000 --3.0,60.133283,0.000000,0.000000 --3.0,60.400014,0.000000,0.000000 --3.0,60.666694,0.000000,0.000000 --3.0,60.933325,0.000000,0.000000 --3.0,61.199937,0.000000,0.000000 --3.0,61.466653,0.000000,0.000000 --3.0,61.733352,0.000000,0.000000 --3.0,61.999980,0.000000,0.000000 --3.0,62.266595,0.000000,0.000000 --3.0,62.533347,0.000000,0.000000 --3.0,62.800061,0.000000,0.000000 --3.0,63.066738,0.000000,0.000000 --3.0,63.333406,0.000000,0.000000 --3.0,63.600039,0.000000,0.000000 --3.0,63.866640,0.000000,0.000000 --3.0,64.133388,0.000000,0.000000 --3.0,64.399954,0.000000,0.000000 --3.0,64.666670,0.000000,0.000000 --3.0,64.933359,0.000000,0.000000 --3.0,65.200023,0.000000,0.000000 --3.0,65.466688,0.000000,0.000000 --3.0,65.733358,0.000000,0.000000 --3.0,66.000006,0.000000,0.000000 --3.0,66.266634,0.000000,0.000000 --3.0,66.533270,0.000000,0.000000 --3.0,66.800043,0.000000,0.000000 --3.0,67.066673,0.000000,0.000000 --3.0,67.333289,0.000000,0.000000 --3.0,67.600048,0.000000,0.000000 --3.0,67.866691,0.000000,0.000000 --3.0,68.133301,0.000000,0.000000 --3.0,68.399952,0.000000,0.000000 --3.0,68.666728,0.000000,0.000000 --3.0,68.933392,0.000000,0.000000 --3.0,69.200031,0.000000,0.000000 --3.0,69.466715,0.000000,0.000000 --3.0,69.733400,0.000000,0.000000 --3.0,69.999931,0.000000,0.000000 --3.0,70.266644,0.000000,0.000000 --3.0,70.533385,0.000000,0.000000 --3.0,70.799978,0.000000,0.000000 --3.0,71.066600,0.000000,0.000000 --3.0,71.333389,0.000000,0.000000 --3.0,71.600055,0.000000,0.000000 --3.0,71.866734,0.000000,0.000000 --3.0,72.133314,0.000000,0.000000 --3.0,72.400046,0.000000,0.000000 --3.0,72.666680,0.000000,0.000000 --3.0,72.933334,0.000000,0.000000 --3.0,73.200010,0.000000,0.000000 --3.0,73.466749,0.000000,0.000000 --3.0,73.733355,0.000000,0.000000 --3.0,74.000006,0.000000,0.000000 --3.0,74.266685,0.000000,0.000000 --3.0,74.533413,0.000000,0.000000 --3.0,74.800032,0.000000,0.000000 --3.0,75.066685,0.000000,0.000000 --3.0,75.333390,0.000000,0.000000 --3.0,75.599991,0.000000,0.000000 --3.0,75.866648,0.000000,0.000000 --3.0,76.133343,0.000000,0.000000 --3.0,76.399939,0.000000,0.000000 --3.0,76.666594,0.000000,0.000000 --3.0,76.933294,0.000000,0.000000 --3.0,77.200057,0.000000,0.000000 --3.0,77.466740,0.000000,0.000000 --3.0,77.733298,0.000000,0.000000 --3.0,77.999938,0.000000,0.000000 --3.0,78.266632,0.000000,0.000000 --3.0,78.533409,0.000000,0.000000 --3.0,78.800084,0.000000,0.000000 --3.0,79.066657,0.000000,0.000000 --3.0,79.333318,0.000000,0.000000 --3.0,79.600054,0.000000,0.000000 --3.0,79.866694,0.000000,0.000000 --3.0,80.133412,0.000000,0.000000 --3.0,80.400050,0.000000,0.000000 --3.0,80.666608,0.000000,0.000000 --3.0,80.933409,0.000000,0.000000 --3.0,81.199962,0.000000,0.000000 --3.0,81.466611,0.000000,0.000000 --3.0,81.733336,0.000000,0.000000 --3.0,82.000000,0.000000,0.000000 --3.0,82.266743,0.000000,0.000000 --3.0,82.533255,0.000000,0.000000 --3.0,82.800021,0.000000,0.000000 --3.0,83.066720,0.000000,0.000000 --3.0,83.333354,0.000000,0.000000 --3.0,83.599924,0.000000,0.000000 --3.0,83.866592,0.000000,0.000000 --3.0,84.133361,0.000000,0.000000 --3.0,84.400069,0.000000,0.000000 --3.0,84.666712,0.000000,0.000000 --3.0,84.933305,0.000000,0.000000 --3.0,85.200004,0.000000,0.000000 --3.0,85.466649,0.000000,0.000000 --3.0,85.733403,0.000000,0.000000 --3.0,85.999943,0.000000,0.000000 --3.0,86.266596,0.000000,0.000000 --3.0,86.533362,0.000000,0.000000 --3.0,86.800081,0.000000,0.000000 --3.0,87.066592,0.000000,0.000000 --3.0,87.333384,0.000000,0.000000 --3.0,87.599971,0.000000,0.000000 --3.0,87.866682,0.000000,0.000000 --3.0,88.133351,0.000000,0.000000 --3.0,88.399984,0.000000,0.000000 --3.0,88.666741,0.000000,0.000000 --3.0,88.933302,0.000000,0.000000 --3.0,89.199991,0.000000,0.000000 --3.0,89.466649,0.000000,0.000000 --3.0,89.733276,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 --3.0,90.000035,0.000000,0.000000 diff --git a/scripts/trajectories/headrot-1.5s.csv b/scripts/trajectories/headrot-1.5s.csv deleted file mode 100644 index b298d22c891706dd8736f12e6372fb4f7a0f4ca7..0000000000000000000000000000000000000000 --- a/scripts/trajectories/headrot-1.5s.csv +++ /dev/null @@ -1,8100 +0,0 @@ -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.995989,0.000000,0.000000,0.089474 -0.995778,0.000000,0.000000,0.091791 -0.995562,0.000000,0.000000,0.094108 -0.995340,0.000000,0.000000,0.096425 -0.995113,0.000000,0.000000,0.098741 -0.994881,0.000000,0.000000,0.101056 -0.994643,0.000000,0.000000,0.103371 -0.994400,0.000000,0.000000,0.105686 -0.994151,0.000000,0.000000,0.107999 -0.993897,0.000000,0.000000,0.110313 -0.993638,0.000000,0.000000,0.112625 -0.993373,0.000000,0.000000,0.114937 -0.993103,0.000000,0.000000,0.117249 -0.992827,0.000000,0.000000,0.119559 -0.992546,0.000000,0.000000,0.121869 -0.992260,0.000000,0.000000,0.124179 -0.991968,0.000000,0.000000,0.126488 -0.991671,0.000000,0.000000,0.128796 -0.991369,0.000000,0.000000,0.131103 -0.991061,0.000000,0.000000,0.133410 -0.990748,0.000000,0.000000,0.135716 -0.990429,0.000000,0.000000,0.138021 -0.990105,0.000000,0.000000,0.140325 -0.989776,0.000000,0.000000,0.142629 -0.989442,0.000000,0.000000,0.144932 -0.989102,0.000000,0.000000,0.147234 -0.988756,0.000000,0.000000,0.149535 -0.988406,0.000000,0.000000,0.151836 -0.988050,0.000000,0.000000,0.154136 -0.987688,0.000000,0.000000,0.156434 -0.987322,0.000000,0.000000,0.158732 -0.986950,0.000000,0.000000,0.161030 -0.986572,0.000000,0.000000,0.163326 -0.986189,0.000000,0.000000,0.165621 -0.985801,0.000000,0.000000,0.167916 -0.985408,0.000000,0.000000,0.170209 -0.985009,0.000000,0.000000,0.172502 -0.984605,0.000000,0.000000,0.174794 -0.984196,0.000000,0.000000,0.177085 -0.983781,0.000000,0.000000,0.179375 -0.983361,0.000000,0.000000,0.181663 -0.982935,0.000000,0.000000,0.183951 -0.982505,0.000000,0.000000,0.186238 -0.982069,0.000000,0.000000,0.188524 -0.981627,0.000000,0.000000,0.190809 -0.981180,0.000000,0.000000,0.193093 -0.980728,0.000000,0.000000,0.195376 -0.980271,0.000000,0.000000,0.197657 -0.979809,0.000000,0.000000,0.199938 -0.979341,0.000000,0.000000,0.202218 -0.978867,0.000000,0.000000,0.204496 -0.978389,0.000000,0.000000,0.206773 -0.977905,0.000000,0.000000,0.209050 -0.977416,0.000000,0.000000,0.211325 -0.976921,0.000000,0.000000,0.213599 -0.976422,0.000000,0.000000,0.215872 -0.975917,0.000000,0.000000,0.218143 -0.975406,0.000000,0.000000,0.220414 -0.974891,0.000000,0.000000,0.222683 -0.974370,0.000000,0.000000,0.224951 -0.973844,0.000000,0.000000,0.227218 -0.973313,0.000000,0.000000,0.229484 -0.972776,0.000000,0.000000,0.231748 -0.972234,0.000000,0.000000,0.234011 -0.971687,0.000000,0.000000,0.236273 -0.971134,0.000000,0.000000,0.238533 -0.970577,0.000000,0.000000,0.240793 -0.970014,0.000000,0.000000,0.243051 -0.969445,0.000000,0.000000,0.245307 -0.968872,0.000000,0.000000,0.247563 -0.968293,0.000000,0.000000,0.249817 -0.967709,0.000000,0.000000,0.252069 -0.967120,0.000000,0.000000,0.254321 -0.966526,0.000000,0.000000,0.256571 -0.965926,0.000000,0.000000,0.258819 -0.965321,0.000000,0.000000,0.261066 -0.964711,0.000000,0.000000,0.263312 -0.964095,0.000000,0.000000,0.265556 -0.963475,0.000000,0.000000,0.267799 -0.962849,0.000000,0.000000,0.270040 -0.962218,0.000000,0.000000,0.272280 -0.961582,0.000000,0.000000,0.274519 -0.960940,0.000000,0.000000,0.276756 -0.960294,0.000000,0.000000,0.278991 -0.959642,0.000000,0.000000,0.281225 -0.958985,0.000000,0.000000,0.283457 -0.958323,0.000000,0.000000,0.285688 -0.957655,0.000000,0.000000,0.287918 -0.956983,0.000000,0.000000,0.290145 -0.956305,0.000000,0.000000,0.292372 -0.955622,0.000000,0.000000,0.294596 -0.954934,0.000000,0.000000,0.296819 -0.954240,0.000000,0.000000,0.299041 -0.953542,0.000000,0.000000,0.301261 -0.952838,0.000000,0.000000,0.303479 -0.952129,0.000000,0.000000,0.305695 -0.951415,0.000000,0.000000,0.307910 -0.950696,0.000000,0.000000,0.310123 -0.949972,0.000000,0.000000,0.312335 -0.949243,0.000000,0.000000,0.314545 -0.948508,0.000000,0.000000,0.316753 -0.947768,0.000000,0.000000,0.318959 -0.947024,0.000000,0.000000,0.321164 -0.946274,0.000000,0.000000,0.323367 -0.945519,0.000000,0.000000,0.325568 -0.944758,0.000000,0.000000,0.327768 -0.943993,0.000000,0.000000,0.329965 -0.943223,0.000000,0.000000,0.332161 -0.942447,0.000000,0.000000,0.334355 -0.941667,0.000000,0.000000,0.336547 -0.940881,0.000000,0.000000,0.338738 -0.940090,0.000000,0.000000,0.340927 -0.939294,0.000000,0.000000,0.343113 -0.938493,0.000000,0.000000,0.345298 -0.937687,0.000000,0.000000,0.347481 -0.936876,0.000000,0.000000,0.349662 -0.936060,0.000000,0.000000,0.351842 -0.935238,0.000000,0.000000,0.354019 -0.934412,0.000000,0.000000,0.356194 -0.933580,0.000000,0.000000,0.358368 -0.932744,0.000000,0.000000,0.360540 -0.931902,0.000000,0.000000,0.362709 -0.931056,0.000000,0.000000,0.364877 -0.930204,0.000000,0.000000,0.367042 -0.929348,0.000000,0.000000,0.369206 -0.928486,0.000000,0.000000,0.371368 -0.927619,0.000000,0.000000,0.373528 -0.926747,0.000000,0.000000,0.375685 -0.925871,0.000000,0.000000,0.377841 -0.924989,0.000000,0.000000,0.379994 -0.924102,0.000000,0.000000,0.382146 -0.923210,0.000000,0.000000,0.384295 -0.922313,0.000000,0.000000,0.386443 -0.921412,0.000000,0.000000,0.388588 -0.920505,0.000000,0.000000,0.390731 -0.919593,0.000000,0.000000,0.392872 -0.918676,0.000000,0.000000,0.395011 -0.917755,0.000000,0.000000,0.397148 -0.916828,0.000000,0.000000,0.399283 -0.915896,0.000000,0.000000,0.401415 -0.914960,0.000000,0.000000,0.403545 -0.914018,0.000000,0.000000,0.405673 -0.913072,0.000000,0.000000,0.407799 -0.912120,0.000000,0.000000,0.409923 -0.911164,0.000000,0.000000,0.412045 -0.910202,0.000000,0.000000,0.414164 -0.909236,0.000000,0.000000,0.416281 -0.908265,0.000000,0.000000,0.418396 -0.907289,0.000000,0.000000,0.420508 -0.906308,0.000000,0.000000,0.422618 -0.905322,0.000000,0.000000,0.424726 -0.904331,0.000000,0.000000,0.426832 -0.903335,0.000000,0.000000,0.428935 -0.902335,0.000000,0.000000,0.431036 -0.901329,0.000000,0.000000,0.433135 -0.900319,0.000000,0.000000,0.435231 -0.899304,0.000000,0.000000,0.437325 -0.898283,0.000000,0.000000,0.439417 -0.897258,0.000000,0.000000,0.441506 -0.896229,0.000000,0.000000,0.443593 -0.895194,0.000000,0.000000,0.445677 -0.894154,0.000000,0.000000,0.447759 -0.893110,0.000000,0.000000,0.449839 -0.892061,0.000000,0.000000,0.451916 -0.891007,0.000000,0.000000,0.453990 -0.889948,0.000000,0.000000,0.456063 -0.888884,0.000000,0.000000,0.458132 -0.887815,0.000000,0.000000,0.460200 -0.886742,0.000000,0.000000,0.462265 -0.885664,0.000000,0.000000,0.464327 -0.884581,0.000000,0.000000,0.466387 -0.883493,0.000000,0.000000,0.468444 -0.882401,0.000000,0.000000,0.470499 -0.881303,0.000000,0.000000,0.472551 -0.880201,0.000000,0.000000,0.474600 -0.879095,0.000000,0.000000,0.476647 -0.877983,0.000000,0.000000,0.478692 -0.876867,0.000000,0.000000,0.480734 -0.875746,0.000000,0.000000,0.482773 -0.874620,0.000000,0.000000,0.484810 -0.873489,0.000000,0.000000,0.486844 -0.872354,0.000000,0.000000,0.488875 -0.871214,0.000000,0.000000,0.490904 -0.870069,0.000000,0.000000,0.492930 -0.868920,0.000000,0.000000,0.494953 -0.867765,0.000000,0.000000,0.496974 -0.866607,0.000000,0.000000,0.498992 -0.865443,0.000000,0.000000,0.501007 -0.864275,0.000000,0.000000,0.503020 -0.863102,0.000000,0.000000,0.505030 -0.861924,0.000000,0.000000,0.507037 -0.860742,0.000000,0.000000,0.509041 -0.859555,0.000000,0.000000,0.511043 -0.858364,0.000000,0.000000,0.513042 -0.857167,0.000000,0.000000,0.515038 -0.855966,0.000000,0.000000,0.517031 -0.854761,0.000000,0.000000,0.519022 -0.853551,0.000000,0.000000,0.521010 -0.852336,0.000000,0.000000,0.522995 -0.851117,0.000000,0.000000,0.524977 -0.849893,0.000000,0.000000,0.526956 -0.848664,0.000000,0.000000,0.528932 -0.847431,0.000000,0.000000,0.530906 -0.846193,0.000000,0.000000,0.532876 -0.844951,0.000000,0.000000,0.534844 -0.843704,0.000000,0.000000,0.536809 -0.842452,0.000000,0.000000,0.538771 -0.841196,0.000000,0.000000,0.540730 -0.839936,0.000000,0.000000,0.542686 -0.838671,0.000000,0.000000,0.544639 -0.837401,0.000000,0.000000,0.546589 -0.836127,0.000000,0.000000,0.548536 -0.834848,0.000000,0.000000,0.550481 -0.833565,0.000000,0.000000,0.552422 -0.832277,0.000000,0.000000,0.554360 -0.830984,0.000000,0.000000,0.556296 -0.829688,0.000000,0.000000,0.558228 -0.828386,0.000000,0.000000,0.560157 -0.827081,0.000000,0.000000,0.562083 -0.825770,0.000000,0.000000,0.564007 -0.824456,0.000000,0.000000,0.565927 -0.823136,0.000000,0.000000,0.567844 -0.821813,0.000000,0.000000,0.569758 -0.820485,0.000000,0.000000,0.571669 -0.819152,0.000000,0.000000,0.573576 -0.817815,0.000000,0.000000,0.575481 -0.816474,0.000000,0.000000,0.577383 -0.815128,0.000000,0.000000,0.579281 -0.813778,0.000000,0.000000,0.581176 -0.812423,0.000000,0.000000,0.583069 -0.811064,0.000000,0.000000,0.584958 -0.809700,0.000000,0.000000,0.586844 -0.808333,0.000000,0.000000,0.588726 -0.806960,0.000000,0.000000,0.590606 -0.805584,0.000000,0.000000,0.592482 -0.804203,0.000000,0.000000,0.594355 -0.802817,0.000000,0.000000,0.596225 -0.801428,0.000000,0.000000,0.598092 -0.800034,0.000000,0.000000,0.599955 -0.798636,0.000000,0.000000,0.601815 -0.797233,0.000000,0.000000,0.603672 -0.795826,0.000000,0.000000,0.605526 -0.794415,0.000000,0.000000,0.607376 -0.792999,0.000000,0.000000,0.609223 -0.791579,0.000000,0.000000,0.611067 -0.790155,0.000000,0.000000,0.612907 -0.788727,0.000000,0.000000,0.614744 -0.787294,0.000000,0.000000,0.616578 -0.785857,0.000000,0.000000,0.618408 -0.784416,0.000000,0.000000,0.620235 -0.782970,0.000000,0.000000,0.622059 -0.781520,0.000000,0.000000,0.623880 -0.780067,0.000000,0.000000,0.625697 -0.778608,0.000000,0.000000,0.627510 -0.777146,0.000000,0.000000,0.629320 -0.775679,0.000000,0.000000,0.631127 -0.774209,0.000000,0.000000,0.632931 -0.772734,0.000000,0.000000,0.634731 -0.771254,0.000000,0.000000,0.636527 -0.769771,0.000000,0.000000,0.638320 -0.768284,0.000000,0.000000,0.640110 -0.766792,0.000000,0.000000,0.641896 -0.765296,0.000000,0.000000,0.643679 -0.763796,0.000000,0.000000,0.645458 -0.762292,0.000000,0.000000,0.647233 -0.760784,0.000000,0.000000,0.649006 -0.759271,0.000000,0.000000,0.650774 -0.757755,0.000000,0.000000,0.652539 -0.756234,0.000000,0.000000,0.654301 -0.754710,0.000000,0.000000,0.656059 -0.753181,0.000000,0.000000,0.657814 -0.751648,0.000000,0.000000,0.659564 -0.750111,0.000000,0.000000,0.661312 -0.748570,0.000000,0.000000,0.663056 -0.747025,0.000000,0.000000,0.664796 -0.745476,0.000000,0.000000,0.666532 -0.743923,0.000000,0.000000,0.668265 -0.742366,0.000000,0.000000,0.669995 -0.740805,0.000000,0.000000,0.671721 -0.739239,0.000000,0.000000,0.673443 -0.737670,0.000000,0.000000,0.675161 -0.736097,0.000000,0.000000,0.676876 -0.734520,0.000000,0.000000,0.678587 -0.732939,0.000000,0.000000,0.680295 -0.731354,0.000000,0.000000,0.681998 -0.729765,0.000000,0.000000,0.683698 -0.728172,0.000000,0.000000,0.685395 -0.726575,0.000000,0.000000,0.687088 -0.724974,0.000000,0.000000,0.688776 -0.723369,0.000000,0.000000,0.690462 -0.721760,0.000000,0.000000,0.692143 -0.720148,0.000000,0.000000,0.693821 -0.718531,0.000000,0.000000,0.695495 -0.716911,0.000000,0.000000,0.697165 -0.715286,0.000000,0.000000,0.698832 -0.713658,0.000000,0.000000,0.700494 -0.712026,0.000000,0.000000,0.702153 -0.710390,0.000000,0.000000,0.703808 -0.708750,0.000000,0.000000,0.705459 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 diff --git a/scripts/trajectories/headrot-15s.csv b/scripts/trajectories/headrot-15s.csv deleted file mode 100644 index b298d22c891706dd8736f12e6372fb4f7a0f4ca7..0000000000000000000000000000000000000000 --- a/scripts/trajectories/headrot-15s.csv +++ /dev/null @@ -1,8100 +0,0 @@ -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.996195,0.000000,0.000000,0.087156 -0.995989,0.000000,0.000000,0.089474 -0.995778,0.000000,0.000000,0.091791 -0.995562,0.000000,0.000000,0.094108 -0.995340,0.000000,0.000000,0.096425 -0.995113,0.000000,0.000000,0.098741 -0.994881,0.000000,0.000000,0.101056 -0.994643,0.000000,0.000000,0.103371 -0.994400,0.000000,0.000000,0.105686 -0.994151,0.000000,0.000000,0.107999 -0.993897,0.000000,0.000000,0.110313 -0.993638,0.000000,0.000000,0.112625 -0.993373,0.000000,0.000000,0.114937 -0.993103,0.000000,0.000000,0.117249 -0.992827,0.000000,0.000000,0.119559 -0.992546,0.000000,0.000000,0.121869 -0.992260,0.000000,0.000000,0.124179 -0.991968,0.000000,0.000000,0.126488 -0.991671,0.000000,0.000000,0.128796 -0.991369,0.000000,0.000000,0.131103 -0.991061,0.000000,0.000000,0.133410 -0.990748,0.000000,0.000000,0.135716 -0.990429,0.000000,0.000000,0.138021 -0.990105,0.000000,0.000000,0.140325 -0.989776,0.000000,0.000000,0.142629 -0.989442,0.000000,0.000000,0.144932 -0.989102,0.000000,0.000000,0.147234 -0.988756,0.000000,0.000000,0.149535 -0.988406,0.000000,0.000000,0.151836 -0.988050,0.000000,0.000000,0.154136 -0.987688,0.000000,0.000000,0.156434 -0.987322,0.000000,0.000000,0.158732 -0.986950,0.000000,0.000000,0.161030 -0.986572,0.000000,0.000000,0.163326 -0.986189,0.000000,0.000000,0.165621 -0.985801,0.000000,0.000000,0.167916 -0.985408,0.000000,0.000000,0.170209 -0.985009,0.000000,0.000000,0.172502 -0.984605,0.000000,0.000000,0.174794 -0.984196,0.000000,0.000000,0.177085 -0.983781,0.000000,0.000000,0.179375 -0.983361,0.000000,0.000000,0.181663 -0.982935,0.000000,0.000000,0.183951 -0.982505,0.000000,0.000000,0.186238 -0.982069,0.000000,0.000000,0.188524 -0.981627,0.000000,0.000000,0.190809 -0.981180,0.000000,0.000000,0.193093 -0.980728,0.000000,0.000000,0.195376 -0.980271,0.000000,0.000000,0.197657 -0.979809,0.000000,0.000000,0.199938 -0.979341,0.000000,0.000000,0.202218 -0.978867,0.000000,0.000000,0.204496 -0.978389,0.000000,0.000000,0.206773 -0.977905,0.000000,0.000000,0.209050 -0.977416,0.000000,0.000000,0.211325 -0.976921,0.000000,0.000000,0.213599 -0.976422,0.000000,0.000000,0.215872 -0.975917,0.000000,0.000000,0.218143 -0.975406,0.000000,0.000000,0.220414 -0.974891,0.000000,0.000000,0.222683 -0.974370,0.000000,0.000000,0.224951 -0.973844,0.000000,0.000000,0.227218 -0.973313,0.000000,0.000000,0.229484 -0.972776,0.000000,0.000000,0.231748 -0.972234,0.000000,0.000000,0.234011 -0.971687,0.000000,0.000000,0.236273 -0.971134,0.000000,0.000000,0.238533 -0.970577,0.000000,0.000000,0.240793 -0.970014,0.000000,0.000000,0.243051 -0.969445,0.000000,0.000000,0.245307 -0.968872,0.000000,0.000000,0.247563 -0.968293,0.000000,0.000000,0.249817 -0.967709,0.000000,0.000000,0.252069 -0.967120,0.000000,0.000000,0.254321 -0.966526,0.000000,0.000000,0.256571 -0.965926,0.000000,0.000000,0.258819 -0.965321,0.000000,0.000000,0.261066 -0.964711,0.000000,0.000000,0.263312 -0.964095,0.000000,0.000000,0.265556 -0.963475,0.000000,0.000000,0.267799 -0.962849,0.000000,0.000000,0.270040 -0.962218,0.000000,0.000000,0.272280 -0.961582,0.000000,0.000000,0.274519 -0.960940,0.000000,0.000000,0.276756 -0.960294,0.000000,0.000000,0.278991 -0.959642,0.000000,0.000000,0.281225 -0.958985,0.000000,0.000000,0.283457 -0.958323,0.000000,0.000000,0.285688 -0.957655,0.000000,0.000000,0.287918 -0.956983,0.000000,0.000000,0.290145 -0.956305,0.000000,0.000000,0.292372 -0.955622,0.000000,0.000000,0.294596 -0.954934,0.000000,0.000000,0.296819 -0.954240,0.000000,0.000000,0.299041 -0.953542,0.000000,0.000000,0.301261 -0.952838,0.000000,0.000000,0.303479 -0.952129,0.000000,0.000000,0.305695 -0.951415,0.000000,0.000000,0.307910 -0.950696,0.000000,0.000000,0.310123 -0.949972,0.000000,0.000000,0.312335 -0.949243,0.000000,0.000000,0.314545 -0.948508,0.000000,0.000000,0.316753 -0.947768,0.000000,0.000000,0.318959 -0.947024,0.000000,0.000000,0.321164 -0.946274,0.000000,0.000000,0.323367 -0.945519,0.000000,0.000000,0.325568 -0.944758,0.000000,0.000000,0.327768 -0.943993,0.000000,0.000000,0.329965 -0.943223,0.000000,0.000000,0.332161 -0.942447,0.000000,0.000000,0.334355 -0.941667,0.000000,0.000000,0.336547 -0.940881,0.000000,0.000000,0.338738 -0.940090,0.000000,0.000000,0.340927 -0.939294,0.000000,0.000000,0.343113 -0.938493,0.000000,0.000000,0.345298 -0.937687,0.000000,0.000000,0.347481 -0.936876,0.000000,0.000000,0.349662 -0.936060,0.000000,0.000000,0.351842 -0.935238,0.000000,0.000000,0.354019 -0.934412,0.000000,0.000000,0.356194 -0.933580,0.000000,0.000000,0.358368 -0.932744,0.000000,0.000000,0.360540 -0.931902,0.000000,0.000000,0.362709 -0.931056,0.000000,0.000000,0.364877 -0.930204,0.000000,0.000000,0.367042 -0.929348,0.000000,0.000000,0.369206 -0.928486,0.000000,0.000000,0.371368 -0.927619,0.000000,0.000000,0.373528 -0.926747,0.000000,0.000000,0.375685 -0.925871,0.000000,0.000000,0.377841 -0.924989,0.000000,0.000000,0.379994 -0.924102,0.000000,0.000000,0.382146 -0.923210,0.000000,0.000000,0.384295 -0.922313,0.000000,0.000000,0.386443 -0.921412,0.000000,0.000000,0.388588 -0.920505,0.000000,0.000000,0.390731 -0.919593,0.000000,0.000000,0.392872 -0.918676,0.000000,0.000000,0.395011 -0.917755,0.000000,0.000000,0.397148 -0.916828,0.000000,0.000000,0.399283 -0.915896,0.000000,0.000000,0.401415 -0.914960,0.000000,0.000000,0.403545 -0.914018,0.000000,0.000000,0.405673 -0.913072,0.000000,0.000000,0.407799 -0.912120,0.000000,0.000000,0.409923 -0.911164,0.000000,0.000000,0.412045 -0.910202,0.000000,0.000000,0.414164 -0.909236,0.000000,0.000000,0.416281 -0.908265,0.000000,0.000000,0.418396 -0.907289,0.000000,0.000000,0.420508 -0.906308,0.000000,0.000000,0.422618 -0.905322,0.000000,0.000000,0.424726 -0.904331,0.000000,0.000000,0.426832 -0.903335,0.000000,0.000000,0.428935 -0.902335,0.000000,0.000000,0.431036 -0.901329,0.000000,0.000000,0.433135 -0.900319,0.000000,0.000000,0.435231 -0.899304,0.000000,0.000000,0.437325 -0.898283,0.000000,0.000000,0.439417 -0.897258,0.000000,0.000000,0.441506 -0.896229,0.000000,0.000000,0.443593 -0.895194,0.000000,0.000000,0.445677 -0.894154,0.000000,0.000000,0.447759 -0.893110,0.000000,0.000000,0.449839 -0.892061,0.000000,0.000000,0.451916 -0.891007,0.000000,0.000000,0.453990 -0.889948,0.000000,0.000000,0.456063 -0.888884,0.000000,0.000000,0.458132 -0.887815,0.000000,0.000000,0.460200 -0.886742,0.000000,0.000000,0.462265 -0.885664,0.000000,0.000000,0.464327 -0.884581,0.000000,0.000000,0.466387 -0.883493,0.000000,0.000000,0.468444 -0.882401,0.000000,0.000000,0.470499 -0.881303,0.000000,0.000000,0.472551 -0.880201,0.000000,0.000000,0.474600 -0.879095,0.000000,0.000000,0.476647 -0.877983,0.000000,0.000000,0.478692 -0.876867,0.000000,0.000000,0.480734 -0.875746,0.000000,0.000000,0.482773 -0.874620,0.000000,0.000000,0.484810 -0.873489,0.000000,0.000000,0.486844 -0.872354,0.000000,0.000000,0.488875 -0.871214,0.000000,0.000000,0.490904 -0.870069,0.000000,0.000000,0.492930 -0.868920,0.000000,0.000000,0.494953 -0.867765,0.000000,0.000000,0.496974 -0.866607,0.000000,0.000000,0.498992 -0.865443,0.000000,0.000000,0.501007 -0.864275,0.000000,0.000000,0.503020 -0.863102,0.000000,0.000000,0.505030 -0.861924,0.000000,0.000000,0.507037 -0.860742,0.000000,0.000000,0.509041 -0.859555,0.000000,0.000000,0.511043 -0.858364,0.000000,0.000000,0.513042 -0.857167,0.000000,0.000000,0.515038 -0.855966,0.000000,0.000000,0.517031 -0.854761,0.000000,0.000000,0.519022 -0.853551,0.000000,0.000000,0.521010 -0.852336,0.000000,0.000000,0.522995 -0.851117,0.000000,0.000000,0.524977 -0.849893,0.000000,0.000000,0.526956 -0.848664,0.000000,0.000000,0.528932 -0.847431,0.000000,0.000000,0.530906 -0.846193,0.000000,0.000000,0.532876 -0.844951,0.000000,0.000000,0.534844 -0.843704,0.000000,0.000000,0.536809 -0.842452,0.000000,0.000000,0.538771 -0.841196,0.000000,0.000000,0.540730 -0.839936,0.000000,0.000000,0.542686 -0.838671,0.000000,0.000000,0.544639 -0.837401,0.000000,0.000000,0.546589 -0.836127,0.000000,0.000000,0.548536 -0.834848,0.000000,0.000000,0.550481 -0.833565,0.000000,0.000000,0.552422 -0.832277,0.000000,0.000000,0.554360 -0.830984,0.000000,0.000000,0.556296 -0.829688,0.000000,0.000000,0.558228 -0.828386,0.000000,0.000000,0.560157 -0.827081,0.000000,0.000000,0.562083 -0.825770,0.000000,0.000000,0.564007 -0.824456,0.000000,0.000000,0.565927 -0.823136,0.000000,0.000000,0.567844 -0.821813,0.000000,0.000000,0.569758 -0.820485,0.000000,0.000000,0.571669 -0.819152,0.000000,0.000000,0.573576 -0.817815,0.000000,0.000000,0.575481 -0.816474,0.000000,0.000000,0.577383 -0.815128,0.000000,0.000000,0.579281 -0.813778,0.000000,0.000000,0.581176 -0.812423,0.000000,0.000000,0.583069 -0.811064,0.000000,0.000000,0.584958 -0.809700,0.000000,0.000000,0.586844 -0.808333,0.000000,0.000000,0.588726 -0.806960,0.000000,0.000000,0.590606 -0.805584,0.000000,0.000000,0.592482 -0.804203,0.000000,0.000000,0.594355 -0.802817,0.000000,0.000000,0.596225 -0.801428,0.000000,0.000000,0.598092 -0.800034,0.000000,0.000000,0.599955 -0.798636,0.000000,0.000000,0.601815 -0.797233,0.000000,0.000000,0.603672 -0.795826,0.000000,0.000000,0.605526 -0.794415,0.000000,0.000000,0.607376 -0.792999,0.000000,0.000000,0.609223 -0.791579,0.000000,0.000000,0.611067 -0.790155,0.000000,0.000000,0.612907 -0.788727,0.000000,0.000000,0.614744 -0.787294,0.000000,0.000000,0.616578 -0.785857,0.000000,0.000000,0.618408 -0.784416,0.000000,0.000000,0.620235 -0.782970,0.000000,0.000000,0.622059 -0.781520,0.000000,0.000000,0.623880 -0.780067,0.000000,0.000000,0.625697 -0.778608,0.000000,0.000000,0.627510 -0.777146,0.000000,0.000000,0.629320 -0.775679,0.000000,0.000000,0.631127 -0.774209,0.000000,0.000000,0.632931 -0.772734,0.000000,0.000000,0.634731 -0.771254,0.000000,0.000000,0.636527 -0.769771,0.000000,0.000000,0.638320 -0.768284,0.000000,0.000000,0.640110 -0.766792,0.000000,0.000000,0.641896 -0.765296,0.000000,0.000000,0.643679 -0.763796,0.000000,0.000000,0.645458 -0.762292,0.000000,0.000000,0.647233 -0.760784,0.000000,0.000000,0.649006 -0.759271,0.000000,0.000000,0.650774 -0.757755,0.000000,0.000000,0.652539 -0.756234,0.000000,0.000000,0.654301 -0.754710,0.000000,0.000000,0.656059 -0.753181,0.000000,0.000000,0.657814 -0.751648,0.000000,0.000000,0.659564 -0.750111,0.000000,0.000000,0.661312 -0.748570,0.000000,0.000000,0.663056 -0.747025,0.000000,0.000000,0.664796 -0.745476,0.000000,0.000000,0.666532 -0.743923,0.000000,0.000000,0.668265 -0.742366,0.000000,0.000000,0.669995 -0.740805,0.000000,0.000000,0.671721 -0.739239,0.000000,0.000000,0.673443 -0.737670,0.000000,0.000000,0.675161 -0.736097,0.000000,0.000000,0.676876 -0.734520,0.000000,0.000000,0.678587 -0.732939,0.000000,0.000000,0.680295 -0.731354,0.000000,0.000000,0.681998 -0.729765,0.000000,0.000000,0.683698 -0.728172,0.000000,0.000000,0.685395 -0.726575,0.000000,0.000000,0.687088 -0.724974,0.000000,0.000000,0.688776 -0.723369,0.000000,0.000000,0.690462 -0.721760,0.000000,0.000000,0.692143 -0.720148,0.000000,0.000000,0.693821 -0.718531,0.000000,0.000000,0.695495 -0.716911,0.000000,0.000000,0.697165 -0.715286,0.000000,0.000000,0.698832 -0.713658,0.000000,0.000000,0.700494 -0.712026,0.000000,0.000000,0.702153 -0.710390,0.000000,0.000000,0.703808 -0.708750,0.000000,0.000000,0.705459 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 -0.707107,0.000000,0.000000,0.707107 diff --git a/scripts/trajectories/linear-ypr-T15.0-w0.1-Euler.csv b/scripts/trajectories/linear-ypr-T15.0-w0.1-Euler.csv deleted file mode 100644 index b14d88b92b2a981c3e2c0215a64705d7f101ab1c..0000000000000000000000000000000000000000 --- a/scripts/trajectories/linear-ypr-T15.0-w0.1-Euler.csv +++ /dev/null @@ -1,3000 +0,0 @@ - -3.000000, 0.000000, 0.000000, 0.000000 - -3.000000, 0.180060, 0.045015, 0.090030 - -3.000000, 0.360120, 0.090030, 0.180060 - -3.000000, 0.540180, 0.135045, 0.270090 - -3.000000, 0.720240, 0.180060, 0.360120 - -3.000000, 0.900300, 0.225075, 0.450150 - -3.000000, 1.080360, 0.270090, 0.540180 - -3.000000, 1.260420, 0.315105, 0.630210 - -3.000000, 1.440480, 0.360120, 0.720240 - -3.000000, 1.620540, 0.405135, 0.810270 - -3.000000, 1.800600, 0.450150, 0.900300 - -3.000000, 1.980660, 0.495165, 0.990330 - -3.000000, 2.160720, 0.540180, 1.080360 - -3.000000, 2.340780, 0.585195, 1.170390 - -3.000000, 2.520840, 0.630210, 1.260420 - -3.000000, 2.700900, 0.675225, 1.350450 - -3.000000, 2.880960, 0.720240, 1.440480 - -3.000000, 3.061020, 0.765255, 1.530510 - -3.000000, 3.241080, 0.810270, 1.620540 - -3.000000, 3.421140, 0.855285, 1.710570 - -3.000000, 3.601200, 0.900300, 1.800600 - -3.000000, 3.781260, 0.945315, 1.890630 - -3.000000, 3.961320, 0.990330, 1.980660 - -3.000000, 4.141380, 1.035345, 2.070690 - -3.000000, 4.321440, 1.080360, 2.160720 - -3.000000, 4.501501, 1.125375, 2.250750 - -3.000000, 4.681561, 1.170390, 2.340780 - -3.000000, 4.861621, 1.215405, 2.430810 - -3.000000, 5.041681, 1.260420, 2.520840 - -3.000000, 5.221741, 1.305435, 2.610870 - -3.000000, 5.401801, 1.350450, 2.700900 - -3.000000, 5.581861, 1.395465, 2.790930 - -3.000000, 5.761921, 1.440480, 2.880960 - -3.000000, 5.941981, 1.485495, 2.970990 - -3.000000, 6.122041, 1.530510, 3.061020 - -3.000000, 6.302101, 1.575525, 3.151050 - -3.000000, 6.482161, 1.620540, 3.241080 - -3.000000, 6.662221, 1.665555, 3.331110 - -3.000000, 6.842281, 1.710570, 3.421140 - -3.000000, 7.022341, 1.755585, 3.511170 - -3.000000, 7.202401, 1.800600, 3.601200 - -3.000000, 7.382461, 1.845615, 3.691230 - -3.000000, 7.562521, 1.890630, 3.781260 - -3.000000, 7.742581, 1.935645, 3.871290 - -3.000000, 7.922641, 1.980660, 3.961320 - -3.000000, 8.102701, 2.025675, 4.051350 - -3.000000, 8.282761, 2.070690, 4.141380 - -3.000000, 8.462821, 2.115705, 4.231410 - -3.000000, 8.642881, 2.160720, 4.321440 - -3.000000, 8.822941, 2.205735, 4.411470 - -3.000000, 9.003001, 2.250750, 4.501501 - -3.000000, 9.183061, 2.295765, 4.591531 - -3.000000, 9.363121, 2.340780, 4.681561 - -3.000000, 9.543181, 2.385795, 4.771591 - -3.000000, 9.723241, 2.430810, 4.861621 - -3.000000, 9.903301, 2.475825, 4.951651 - -3.000000, 10.083361, 2.520840, 5.041681 - -3.000000, 10.263421, 2.565855, 5.131711 - -3.000000, 10.443481, 2.610870, 5.221741 - -3.000000, 10.623541, 2.655885, 5.311771 - -3.000000, 10.803601, 2.700900, 5.401801 - -3.000000, 10.983661, 2.745915, 5.491831 - -3.000000, 11.163721, 2.790930, 5.581861 - -3.000000, 11.343781, 2.835945, 5.671891 - -3.000000, 11.523841, 2.880960, 5.761921 - -3.000000, 11.703901, 2.925975, 5.851951 - -3.000000, 11.883961, 2.970990, 5.941981 - -3.000000, 12.064021, 3.016005, 6.032011 - -3.000000, 12.244081, 3.061020, 6.122041 - -3.000000, 12.424141, 3.106035, 6.212071 - -3.000000, 12.604201, 3.151050, 6.302101 - -3.000000, 12.784261, 3.196065, 6.392131 - -3.000000, 12.964321, 3.241080, 6.482161 - -3.000000, 13.144381, 3.286095, 6.572191 - -3.000000, 13.324441, 3.331110, 6.662221 - -3.000000, 13.504502, 3.376125, 6.752251 - -3.000000, 13.684562, 3.421140, 6.842281 - -3.000000, 13.864622, 3.466155, 6.932311 - -3.000000, 14.044682, 3.511170, 7.022341 - -3.000000, 14.224742, 3.556185, 7.112371 - -3.000000, 14.404802, 3.601200, 7.202401 - -3.000000, 14.584862, 3.646215, 7.292431 - -3.000000, 14.764922, 3.691230, 7.382461 - -3.000000, 14.944982, 3.736245, 7.472491 - -3.000000, 15.125042, 3.781260, 7.562521 - -3.000000, 15.305102, 3.826275, 7.652551 - -3.000000, 15.485162, 3.871290, 7.742581 - -3.000000, 15.665222, 3.916305, 7.832611 - -3.000000, 15.845282, 3.961320, 7.922641 - -3.000000, 16.025342, 4.006335, 8.012671 - -3.000000, 16.205402, 4.051350, 8.102701 - -3.000000, 16.385462, 4.096365, 8.192731 - -3.000000, 16.565522, 4.141380, 8.282761 - -3.000000, 16.745582, 4.186395, 8.372791 - -3.000000, 16.925642, 4.231410, 8.462821 - -3.000000, 17.105702, 4.276425, 8.552851 - -3.000000, 17.285762, 4.321440, 8.642881 - -3.000000, 17.465822, 4.366455, 8.732911 - -3.000000, 17.645882, 4.411470, 8.822941 - -3.000000, 17.825942, 4.456485, 8.912971 - -3.000000, 18.006002, 4.501501, 9.003001 - -3.000000, 18.186062, 4.546516, 9.093031 - -3.000000, 18.366122, 4.591531, 9.183061 - -3.000000, 18.546182, 4.636546, 9.273091 - -3.000000, 18.726242, 4.681561, 9.363121 - -3.000000, 18.906302, 4.726576, 9.453151 - -3.000000, 19.086362, 4.771591, 9.543181 - -3.000000, 19.266422, 4.816606, 9.633211 - -3.000000, 19.446482, 4.861621, 9.723241 - -3.000000, 19.626542, 4.906636, 9.813271 - -3.000000, 19.806602, 4.951651, 9.903301 - -3.000000, 19.986662, 4.996666, 9.993331 - -3.000000, 20.166722, 5.041681, 10.083361 - -3.000000, 20.346782, 5.086696, 10.173391 - -3.000000, 20.526842, 5.131711, 10.263421 - -3.000000, 20.706902, 5.176726, 10.353451 - -3.000000, 20.886962, 5.221741, 10.443481 - -3.000000, 21.067022, 5.266756, 10.533511 - -3.000000, 21.247082, 5.311771, 10.623541 - -3.000000, 21.427142, 5.356786, 10.713571 - -3.000000, 21.607202, 5.401801, 10.803601 - -3.000000, 21.787262, 5.446816, 10.893631 - -3.000000, 21.967322, 5.491831, 10.983661 - -3.000000, 22.147382, 5.536846, 11.073691 - -3.000000, 22.327442, 5.581861, 11.163721 - -3.000000, 22.507503, 5.626876, 11.253751 - -3.000000, 22.687563, 5.671891, 11.343781 - -3.000000, 22.867623, 5.716906, 11.433811 - -3.000000, 23.047683, 5.761921, 11.523841 - -3.000000, 23.227743, 5.806936, 11.613871 - -3.000000, 23.407803, 5.851951, 11.703901 - -3.000000, 23.587863, 5.896966, 11.793931 - -3.000000, 23.767923, 5.941981, 11.883961 - -3.000000, 23.947983, 5.986996, 11.973991 - -3.000000, 24.128043, 6.032011, 12.064021 - -3.000000, 24.308103, 6.077026, 12.154051 - -3.000000, 24.488163, 6.122041, 12.244081 - -3.000000, 24.668223, 6.167056, 12.334111 - -3.000000, 24.848283, 6.212071, 12.424141 - -3.000000, 25.028343, 6.257086, 12.514171 - -3.000000, 25.208403, 6.302101, 12.604201 - -3.000000, 25.388463, 6.347116, 12.694231 - -3.000000, 25.568523, 6.392131, 12.784261 - -3.000000, 25.748583, 6.437146, 12.874291 - -3.000000, 25.928643, 6.482161, 12.964321 - -3.000000, 26.108703, 6.527176, 13.054351 - -3.000000, 26.288763, 6.572191, 13.144381 - -3.000000, 26.468823, 6.617206, 13.234411 - -3.000000, 26.648883, 6.662221, 13.324441 - -3.000000, 26.828943, 6.707236, 13.414471 - -3.000000, 27.009003, 6.752251, 13.504502 - -3.000000, 27.189063, 6.797266, 13.594532 - -3.000000, 27.369123, 6.842281, 13.684562 - -3.000000, 27.549183, 6.887296, 13.774592 - -3.000000, 27.729243, 6.932311, 13.864622 - -3.000000, 27.909303, 6.977326, 13.954652 - -3.000000, 28.089363, 7.022341, 14.044682 - -3.000000, 28.269423, 7.067356, 14.134712 - -3.000000, 28.449483, 7.112371, 14.224742 - -3.000000, 28.629543, 7.157386, 14.314772 - -3.000000, 28.809603, 7.202401, 14.404802 - -3.000000, 28.989663, 7.247416, 14.494832 - -3.000000, 29.169723, 7.292431, 14.584862 - -3.000000, 29.349783, 7.337446, 14.674892 - -3.000000, 29.529843, 7.382461, 14.764922 - -3.000000, 29.709903, 7.427476, 14.854952 - -3.000000, 29.889963, 7.472491, 14.944982 - -3.000000, 30.070023, 7.517506, 15.035012 - -3.000000, 30.250083, 7.562521, 15.125042 - -3.000000, 30.430143, 7.607536, 15.215072 - -3.000000, 30.610203, 7.652551, 15.305102 - -3.000000, 30.790263, 7.697566, 15.395132 - -3.000000, 30.970323, 7.742581, 15.485162 - -3.000000, 31.150383, 7.787596, 15.575192 - -3.000000, 31.330443, 7.832611, 15.665222 - -3.000000, 31.510504, 7.877626, 15.755252 - -3.000000, 31.690564, 7.922641, 15.845282 - -3.000000, 31.870624, 7.967656, 15.935312 - -3.000000, 32.050684, 8.012671, 16.025342 - -3.000000, 32.230744, 8.057686, 16.115372 - -3.000000, 32.410804, 8.102701, 16.205402 - -3.000000, 32.590864, 8.147716, 16.295432 - -3.000000, 32.770924, 8.192731, 16.385462 - -3.000000, 32.950984, 8.237746, 16.475492 - -3.000000, 33.131044, 8.282761, 16.565522 - -3.000000, 33.311104, 8.327776, 16.655552 - -3.000000, 33.491164, 8.372791, 16.745582 - -3.000000, 33.671224, 8.417806, 16.835612 - -3.000000, 33.851284, 8.462821, 16.925642 - -3.000000, 34.031344, 8.507836, 17.015672 - -3.000000, 34.211404, 8.552851, 17.105702 - -3.000000, 34.391464, 8.597866, 17.195732 - -3.000000, 34.571524, 8.642881, 17.285762 - -3.000000, 34.751584, 8.687896, 17.375792 - -3.000000, 34.931644, 8.732911, 17.465822 - -3.000000, 35.111704, 8.777926, 17.555852 - -3.000000, 35.291764, 8.822941, 17.645882 - -3.000000, 35.471824, 8.867956, 17.735912 - -3.000000, 35.651884, 8.912971, 17.825942 - -3.000000, 35.831944, 8.957986, 17.915972 - -3.000000, 36.012004, 9.003001, 18.006002 - -3.000000, 36.192064, 9.048016, 18.096032 - -3.000000, 36.372124, 9.093031, 18.186062 - -3.000000, 36.552184, 9.138046, 18.276092 - -3.000000, 36.732244, 9.183061, 18.366122 - -3.000000, 36.912304, 9.228076, 18.456152 - -3.000000, 37.092364, 9.273091, 18.546182 - -3.000000, 37.272424, 9.318106, 18.636212 - -3.000000, 37.452484, 9.363121, 18.726242 - -3.000000, 37.632544, 9.408136, 18.816272 - -3.000000, 37.812604, 9.453151, 18.906302 - -3.000000, 37.992664, 9.498166, 18.996332 - -3.000000, 38.172724, 9.543181, 19.086362 - -3.000000, 38.352784, 9.588196, 19.176392 - -3.000000, 38.532844, 9.633211, 19.266422 - -3.000000, 38.712904, 9.678226, 19.356452 - -3.000000, 38.892964, 9.723241, 19.446482 - -3.000000, 39.073024, 9.768256, 19.536512 - -3.000000, 39.253084, 9.813271, 19.626542 - -3.000000, 39.433144, 9.858286, 19.716572 - -3.000000, 39.613204, 9.903301, 19.806602 - -3.000000, 39.793264, 9.948316, 19.896632 - -3.000000, 39.973324, 9.993331, 19.986662 - -3.000000, 40.153384, 10.038346, 20.076692 - -3.000000, 40.333444, 10.083361, 20.166722 - -3.000000, 40.513505, 10.128376, 20.256752 - -3.000000, 40.693565, 10.173391, 20.346782 - -3.000000, 40.873625, 10.218406, 20.436812 - -3.000000, 41.053685, 10.263421, 20.526842 - -3.000000, 41.233745, 10.308436, 20.616872 - -3.000000, 41.413805, 10.353451, 20.706902 - -3.000000, 41.593865, 10.398466, 20.796932 - -3.000000, 41.773925, 10.443481, 20.886962 - -3.000000, 41.953985, 10.488496, 20.976992 - -3.000000, 42.134045, 10.533511, 21.067022 - -3.000000, 42.314105, 10.578526, 21.157052 - -3.000000, 42.494165, 10.623541, 21.247082 - -3.000000, 42.674225, 10.668556, 21.337112 - -3.000000, 42.854285, 10.713571, 21.427142 - -3.000000, 43.034345, 10.758586, 21.517172 - -3.000000, 43.214405, 10.803601, 21.607202 - -3.000000, 43.394465, 10.848616, 21.697232 - -3.000000, 43.574525, 10.893631, 21.787262 - -3.000000, 43.754585, 10.938646, 21.877292 - -3.000000, 43.934645, 10.983661, 21.967322 - -3.000000, 44.114705, 11.028676, 22.057352 - -3.000000, 44.294765, 11.073691, 22.147382 - -3.000000, 44.474825, 11.118706, 22.237412 - -3.000000, 44.654885, 11.163721, 22.327442 - -3.000000, 44.834945, 11.208736, 22.417472 - -3.000000, 45.015005, 11.253751, 22.507503 - -3.000000, 45.195065, 11.298766, 22.597533 - -3.000000, 45.375125, 11.343781, 22.687563 - -3.000000, 45.555185, 11.388796, 22.777593 - -3.000000, 45.735245, 11.433811, 22.867623 - -3.000000, 45.915305, 11.478826, 22.957653 - -3.000000, 46.095365, 11.523841, 23.047683 - -3.000000, 46.275425, 11.568856, 23.137713 - -3.000000, 46.455485, 11.613871, 23.227743 - -3.000000, 46.635545, 11.658886, 23.317773 - -3.000000, 46.815605, 11.703901, 23.407803 - -3.000000, 46.995665, 11.748916, 23.497833 - -3.000000, 47.175725, 11.793931, 23.587863 - -3.000000, 47.355785, 11.838946, 23.677893 - -3.000000, 47.535845, 11.883961, 23.767923 - -3.000000, 47.715905, 11.928976, 23.857953 - -3.000000, 47.895965, 11.973991, 23.947983 - -3.000000, 48.076025, 12.019006, 24.038013 - -3.000000, 48.256085, 12.064021, 24.128043 - -3.000000, 48.436145, 12.109036, 24.218073 - -3.000000, 48.616205, 12.154051, 24.308103 - -3.000000, 48.796265, 12.199066, 24.398133 - -3.000000, 48.976325, 12.244081, 24.488163 - -3.000000, 49.156385, 12.289096, 24.578193 - -3.000000, 49.336445, 12.334111, 24.668223 - -3.000000, 49.516506, 12.379126, 24.758253 - -3.000000, 49.696566, 12.424141, 24.848283 - -3.000000, 49.876626, 12.469156, 24.938313 - -3.000000, 50.056686, 12.514171, 25.028343 - -3.000000, 50.236746, 12.559186, 25.118373 - -3.000000, 50.416806, 12.604201, 25.208403 - -3.000000, 50.596866, 12.649216, 25.298433 - -3.000000, 50.776926, 12.694231, 25.388463 - -3.000000, 50.956986, 12.739246, 25.478493 - -3.000000, 51.137046, 12.784261, 25.568523 - -3.000000, 51.317106, 12.829276, 25.658553 - -3.000000, 51.497166, 12.874291, 25.748583 - -3.000000, 51.677226, 12.919306, 25.838613 - -3.000000, 51.857286, 12.964321, 25.928643 - -3.000000, 52.037346, 13.009336, 26.018673 - -3.000000, 52.217406, 13.054351, 26.108703 - -3.000000, 52.397466, 13.099366, 26.198733 - -3.000000, 52.577526, 13.144381, 26.288763 - -3.000000, 52.757586, 13.189396, 26.378793 - -3.000000, 52.937646, 13.234411, 26.468823 - -3.000000, 53.117706, 13.279426, 26.558853 - -3.000000, 53.297766, 13.324441, 26.648883 - -3.000000, 53.477826, 13.369456, 26.738913 - -3.000000, 53.657886, 13.414471, 26.828943 - -3.000000, 53.837946, 13.459486, 26.918973 - -3.000000, 54.018006, 13.504502, 27.009003 - -3.000000, 54.198066, 13.549517, 27.099033 - -3.000000, 54.378126, 13.594532, 27.189063 - -3.000000, 54.558186, 13.639547, 27.279093 - -3.000000, 54.738246, 13.684562, 27.369123 - -3.000000, 54.918306, 13.729577, 27.459153 - -3.000000, 55.098366, 13.774592, 27.549183 - -3.000000, 55.278426, 13.819607, 27.639213 - -3.000000, 55.458486, 13.864622, 27.729243 - -3.000000, 55.638546, 13.909637, 27.819273 - -3.000000, 55.818606, 13.954652, 27.909303 - -3.000000, 55.998666, 13.999667, 27.999333 - -3.000000, 56.178726, 14.044682, 28.089363 - -3.000000, 56.358786, 14.089697, 28.179393 - -3.000000, 56.538846, 14.134712, 28.269423 - -3.000000, 56.718906, 14.179727, 28.359453 - -3.000000, 56.898966, 14.224742, 28.449483 - -3.000000, 57.079026, 14.269757, 28.539513 - -3.000000, 57.259086, 14.314772, 28.629543 - -3.000000, 57.439146, 14.359787, 28.719573 - -3.000000, 57.619206, 14.404802, 28.809603 - -3.000000, 57.799266, 14.449817, 28.899633 - -3.000000, 57.979326, 14.494832, 28.989663 - -3.000000, 58.159386, 14.539847, 29.079693 - -3.000000, 58.339446, 14.584862, 29.169723 - -3.000000, 58.519507, 14.629877, 29.259753 - -3.000000, 58.699567, 14.674892, 29.349783 - -3.000000, 58.879627, 14.719907, 29.439813 - -3.000000, 59.059687, 14.764922, 29.529843 - -3.000000, 59.239747, 14.809937, 29.619873 - -3.000000, 59.419807, 14.854952, 29.709903 - -3.000000, 59.599867, 14.899967, 29.799933 - -3.000000, 59.779927, 14.944982, 29.889963 - -3.000000, 59.959987, 14.989997, 29.979993 - -3.000000, 60.140047, 15.035012, 30.070023 - -3.000000, 60.320107, 15.080027, 30.160053 - -3.000000, 60.500167, 15.125042, 30.250083 - -3.000000, 60.680227, 15.170057, 30.340113 - -3.000000, 60.860287, 15.215072, 30.430143 - -3.000000, 61.040347, 15.260087, 30.520173 - -3.000000, 61.220407, 15.305102, 30.610203 - -3.000000, 61.400467, 15.350117, 30.700233 - -3.000000, 61.580527, 15.395132, 30.790263 - -3.000000, 61.760587, 15.440147, 30.880293 - -3.000000, 61.940647, 15.485162, 30.970323 - -3.000000, 62.120707, 15.530177, 31.060353 - -3.000000, 62.300767, 15.575192, 31.150383 - -3.000000, 62.480827, 15.620207, 31.240413 - -3.000000, 62.660887, 15.665222, 31.330443 - -3.000000, 62.840947, 15.710237, 31.420473 - -3.000000, 63.021007, 15.755252, 31.510504 - -3.000000, 63.201067, 15.800267, 31.600534 - -3.000000, 63.381127, 15.845282, 31.690564 - -3.000000, 63.561187, 15.890297, 31.780594 - -3.000000, 63.741247, 15.935312, 31.870624 - -3.000000, 63.921307, 15.980327, 31.960654 - -3.000000, 64.101367, 16.025342, 32.050684 - -3.000000, 64.281427, 16.070357, 32.140714 - -3.000000, 64.461487, 16.115372, 32.230744 - -3.000000, 64.641547, 16.160387, 32.320774 - -3.000000, 64.821607, 16.205402, 32.410804 - -3.000000, 65.001667, 16.250417, 32.500834 - -3.000000, 65.181727, 16.295432, 32.590864 - -3.000000, 65.361787, 16.340447, 32.680894 - -3.000000, 65.541847, 16.385462, 32.770924 - -3.000000, 65.721907, 16.430477, 32.860954 - -3.000000, 65.901967, 16.475492, 32.950984 - -3.000000, 66.082027, 16.520507, 33.041014 - -3.000000, 66.262087, 16.565522, 33.131044 - -3.000000, 66.442147, 16.610537, 33.221074 - -3.000000, 66.622207, 16.655552, 33.311104 - -3.000000, 66.802267, 16.700567, 33.401134 - -3.000000, 66.982327, 16.745582, 33.491164 - -3.000000, 67.162387, 16.790597, 33.581194 - -3.000000, 67.342447, 16.835612, 33.671224 - -3.000000, 67.522508, 16.880627, 33.761254 - -3.000000, 67.702568, 16.925642, 33.851284 - -3.000000, 67.882628, 16.970657, 33.941314 - -3.000000, 68.062688, 17.015672, 34.031344 - -3.000000, 68.242748, 17.060687, 34.121374 - -3.000000, 68.422808, 17.105702, 34.211404 - -3.000000, 68.602868, 17.150717, 34.301434 - -3.000000, 68.782928, 17.195732, 34.391464 - -3.000000, 68.962988, 17.240747, 34.481494 - -3.000000, 69.143048, 17.285762, 34.571524 - -3.000000, 69.323108, 17.330777, 34.661554 - -3.000000, 69.503168, 17.375792, 34.751584 - -3.000000, 69.683228, 17.420807, 34.841614 - -3.000000, 69.863288, 17.465822, 34.931644 - -3.000000, 70.043348, 17.510837, 35.021674 - -3.000000, 70.223408, 17.555852, 35.111704 - -3.000000, 70.403468, 17.600867, 35.201734 - -3.000000, 70.583528, 17.645882, 35.291764 - -3.000000, 70.763588, 17.690897, 35.381794 - -3.000000, 70.943648, 17.735912, 35.471824 - -3.000000, 71.123708, 17.780927, 35.561854 - -3.000000, 71.303768, 17.825942, 35.651884 - -3.000000, 71.483828, 17.870957, 35.741914 - -3.000000, 71.663888, 17.915972, 35.831944 - -3.000000, 71.843948, 17.960987, 35.921974 - -3.000000, 72.024008, 18.006002, 36.012004 - -3.000000, 72.204068, 18.051017, 36.102034 - -3.000000, 72.384128, 18.096032, 36.192064 - -3.000000, 72.564188, 18.141047, 36.282094 - -3.000000, 72.744248, 18.186062, 36.372124 - -3.000000, 72.924308, 18.231077, 36.462154 - -3.000000, 73.104368, 18.276092, 36.552184 - -3.000000, 73.284428, 18.321107, 36.642214 - -3.000000, 73.464488, 18.366122, 36.732244 - -3.000000, 73.644548, 18.411137, 36.822274 - -3.000000, 73.824608, 18.456152, 36.912304 - -3.000000, 74.004668, 18.501167, 37.002334 - -3.000000, 74.184728, 18.546182, 37.092364 - -3.000000, 74.364788, 18.591197, 37.182394 - -3.000000, 74.544848, 18.636212, 37.272424 - -3.000000, 74.724908, 18.681227, 37.362454 - -3.000000, 74.904968, 18.726242, 37.452484 - -3.000000, 75.085028, 18.771257, 37.542514 - -3.000000, 75.265088, 18.816272, 37.632544 - -3.000000, 75.445148, 18.861287, 37.722574 - -3.000000, 75.625208, 18.906302, 37.812604 - -3.000000, 75.805268, 18.951317, 37.902634 - -3.000000, 75.985328, 18.996332, 37.992664 - -3.000000, 76.165388, 19.041347, 38.082694 - -3.000000, 76.345448, 19.086362, 38.172724 - -3.000000, 76.525509, 19.131377, 38.262754 - -3.000000, 76.705569, 19.176392, 38.352784 - -3.000000, 76.885629, 19.221407, 38.442814 - -3.000000, 77.065689, 19.266422, 38.532844 - -3.000000, 77.245749, 19.311437, 38.622874 - -3.000000, 77.425809, 19.356452, 38.712904 - -3.000000, 77.605869, 19.401467, 38.802934 - -3.000000, 77.785929, 19.446482, 38.892964 - -3.000000, 77.965989, 19.491497, 38.982994 - -3.000000, 78.146049, 19.536512, 39.073024 - -3.000000, 78.326109, 19.581527, 39.163054 - -3.000000, 78.506169, 19.626542, 39.253084 - -3.000000, 78.686229, 19.671557, 39.343114 - -3.000000, 78.866289, 19.716572, 39.433144 - -3.000000, 79.046349, 19.761587, 39.523174 - -3.000000, 79.226409, 19.806602, 39.613204 - -3.000000, 79.406469, 19.851617, 39.703234 - -3.000000, 79.586529, 19.896632, 39.793264 - -3.000000, 79.766589, 19.941647, 39.883294 - -3.000000, 79.946649, 19.986662, 39.973324 - -3.000000, 80.126709, 20.031677, 40.063354 - -3.000000, 80.306769, 20.076692, 40.153384 - -3.000000, 80.486829, 20.121707, 40.243414 - -3.000000, 80.666889, 20.166722, 40.333444 - -3.000000, 80.846949, 20.211737, 40.423474 - -3.000000, 81.027009, 20.256752, 40.513505 - -3.000000, 81.207069, 20.301767, 40.603535 - -3.000000, 81.387129, 20.346782, 40.693565 - -3.000000, 81.567189, 20.391797, 40.783595 - -3.000000, 81.747249, 20.436812, 40.873625 - -3.000000, 81.927309, 20.481827, 40.963655 - -3.000000, 82.107369, 20.526842, 41.053685 - -3.000000, 82.287429, 20.571857, 41.143715 - -3.000000, 82.467489, 20.616872, 41.233745 - -3.000000, 82.647549, 20.661887, 41.323775 - -3.000000, 82.827609, 20.706902, 41.413805 - -3.000000, 83.007669, 20.751917, 41.503835 - -3.000000, 83.187729, 20.796932, 41.593865 - -3.000000, 83.367789, 20.841947, 41.683895 - -3.000000, 83.547849, 20.886962, 41.773925 - -3.000000, 83.727909, 20.931977, 41.863955 - -3.000000, 83.907969, 20.976992, 41.953985 - -3.000000, 84.088029, 21.022007, 42.044015 - -3.000000, 84.268089, 21.067022, 42.134045 - -3.000000, 84.448149, 21.112037, 42.224075 - -3.000000, 84.628209, 21.157052, 42.314105 - -3.000000, 84.808269, 21.202067, 42.404135 - -3.000000, 84.988329, 21.247082, 42.494165 - -3.000000, 85.168389, 21.292097, 42.584195 - -3.000000, 85.348449, 21.337112, 42.674225 - -3.000000, 85.528510, 21.382127, 42.764255 - -3.000000, 85.708570, 21.427142, 42.854285 - -3.000000, 85.888630, 21.472157, 42.944315 - -3.000000, 86.068690, 21.517172, 43.034345 - -3.000000, 86.248750, 21.562187, 43.124375 - -3.000000, 86.428810, 21.607202, 43.214405 - -3.000000, 86.608870, 21.652217, 43.304435 - -3.000000, 86.788930, 21.697232, 43.394465 - -3.000000, 86.968990, 21.742247, 43.484495 - -3.000000, 87.149050, 21.787262, 43.574525 - -3.000000, 87.329110, 21.832277, 43.664555 - -3.000000, 87.509170, 21.877292, 43.754585 - -3.000000, 87.689230, 21.922307, 43.844615 - -3.000000, 87.869290, 21.967322, 43.934645 - -3.000000, 88.049350, 22.012337, 44.024675 - -3.000000, 88.229410, 22.057352, 44.114705 - -3.000000, 88.409470, 22.102367, 44.204735 - -3.000000, 88.589530, 22.147382, 44.294765 - -3.000000, 88.769590, 22.192397, 44.384795 - -3.000000, 88.949650, 22.237412, 44.474825 - -3.000000, 89.129710, 22.282427, 44.564855 - -3.000000, 89.309770, 22.327442, 44.654885 - -3.000000, 89.489830, 22.372457, 44.744915 - -3.000000, 89.669890, 22.417472, 44.834945 - -3.000000, 89.849950, 22.462487, 44.924975 - -3.000000, 90.030010, 22.507503, 45.015005 - -3.000000, 90.210070, 22.552518, 45.105035 - -3.000000, 90.390130, 22.597533, 45.195065 - -3.000000, 90.570190, 22.642548, 45.285095 - -3.000000, 90.750250, 22.687563, 45.375125 - -3.000000, 90.930310, 22.732578, 45.465155 - -3.000000, 91.110370, 22.777593, 45.555185 - -3.000000, 91.290430, 22.822608, 45.645215 - -3.000000, 91.470490, 22.867623, 45.735245 - -3.000000, 91.650550, 22.912638, 45.825275 - -3.000000, 91.830610, 22.957653, 45.915305 - -3.000000, 92.010670, 23.002668, 46.005335 - -3.000000, 92.190730, 23.047683, 46.095365 - -3.000000, 92.370790, 23.092698, 46.185395 - -3.000000, 92.550850, 23.137713, 46.275425 - -3.000000, 92.730910, 23.182728, 46.365455 - -3.000000, 92.910970, 23.227743, 46.455485 - -3.000000, 93.091030, 23.272758, 46.545515 - -3.000000, 93.271090, 23.317773, 46.635545 - -3.000000, 93.451150, 23.362788, 46.725575 - -3.000000, 93.631210, 23.407803, 46.815605 - -3.000000, 93.811270, 23.452818, 46.905635 - -3.000000, 93.991330, 23.497833, 46.995665 - -3.000000, 94.171390, 23.542848, 47.085695 - -3.000000, 94.351450, 23.587863, 47.175725 - -3.000000, 94.531511, 23.632878, 47.265755 - -3.000000, 94.711571, 23.677893, 47.355785 - -3.000000, 94.891631, 23.722908, 47.445815 - -3.000000, 95.071691, 23.767923, 47.535845 - -3.000000, 95.251751, 23.812938, 47.625875 - -3.000000, 95.431811, 23.857953, 47.715905 - -3.000000, 95.611871, 23.902968, 47.805935 - -3.000000, 95.791931, 23.947983, 47.895965 - -3.000000, 95.971991, 23.992998, 47.985995 - -3.000000, 96.152051, 24.038013, 48.076025 - -3.000000, 96.332111, 24.083028, 48.166055 - -3.000000, 96.512171, 24.128043, 48.256085 - -3.000000, 96.692231, 24.173058, 48.346115 - -3.000000, 96.872291, 24.218073, 48.436145 - -3.000000, 97.052351, 24.263088, 48.526175 - -3.000000, 97.232411, 24.308103, 48.616205 - -3.000000, 97.412471, 24.353118, 48.706235 - -3.000000, 97.592531, 24.398133, 48.796265 - -3.000000, 97.772591, 24.443148, 48.886295 - -3.000000, 97.952651, 24.488163, 48.976325 - -3.000000, 98.132711, 24.533178, 49.066355 - -3.000000, 98.312771, 24.578193, 49.156385 - -3.000000, 98.492831, 24.623208, 49.246415 - -3.000000, 98.672891, 24.668223, 49.336445 - -3.000000, 98.852951, 24.713238, 49.426475 - -3.000000, 99.033011, 24.758253, 49.516506 - -3.000000, 99.213071, 24.803268, 49.606536 - -3.000000, 99.393131, 24.848283, 49.696566 - -3.000000, 99.573191, 24.893298, 49.786596 - -3.000000, 99.753251, 24.938313, 49.876626 - -3.000000, 99.933311, 24.983328, 49.966656 - -3.000000, 100.113371, 25.028343, 50.056686 - -3.000000, 100.293431, 25.073358, 50.146716 - -3.000000, 100.473491, 25.118373, 50.236746 - -3.000000, 100.653551, 25.163388, 50.326776 - -3.000000, 100.833611, 25.208403, 50.416806 - -3.000000, 101.013671, 25.253418, 50.506836 - -3.000000, 101.193731, 25.298433, 50.596866 - -3.000000, 101.373791, 25.343448, 50.686896 - -3.000000, 101.553851, 25.388463, 50.776926 - -3.000000, 101.733911, 25.433478, 50.866956 - -3.000000, 101.913971, 25.478493, 50.956986 - -3.000000, 102.094031, 25.523508, 51.047016 - -3.000000, 102.274091, 25.568523, 51.137046 - -3.000000, 102.454151, 25.613538, 51.227076 - -3.000000, 102.634211, 25.658553, 51.317106 - -3.000000, 102.814271, 25.703568, 51.407136 - -3.000000, 102.994331, 25.748583, 51.497166 - -3.000000, 103.174391, 25.793598, 51.587196 - -3.000000, 103.354451, 25.838613, 51.677226 - -3.000000, 103.534512, 25.883628, 51.767256 - -3.000000, 103.714572, 25.928643, 51.857286 - -3.000000, 103.894632, 25.973658, 51.947316 - -3.000000, 104.074692, 26.018673, 52.037346 - -3.000000, 104.254752, 26.063688, 52.127376 - -3.000000, 104.434812, 26.108703, 52.217406 - -3.000000, 104.614872, 26.153718, 52.307436 - -3.000000, 104.794932, 26.198733, 52.397466 - -3.000000, 104.974992, 26.243748, 52.487496 - -3.000000, 105.155052, 26.288763, 52.577526 - -3.000000, 105.335112, 26.333778, 52.667556 - -3.000000, 105.515172, 26.378793, 52.757586 - -3.000000, 105.695232, 26.423808, 52.847616 - -3.000000, 105.875292, 26.468823, 52.937646 - -3.000000, 106.055352, 26.513838, 53.027676 - -3.000000, 106.235412, 26.558853, 53.117706 - -3.000000, 106.415472, 26.603868, 53.207736 - -3.000000, 106.595532, 26.648883, 53.297766 - -3.000000, 106.775592, 26.693898, 53.387796 - -3.000000, 106.955652, 26.738913, 53.477826 - -3.000000, 107.135712, 26.783928, 53.567856 - -3.000000, 107.315772, 26.828943, 53.657886 - -3.000000, 107.495832, 26.873958, 53.747916 - -3.000000, 107.675892, 26.918973, 53.837946 - -3.000000, 107.855952, 26.963988, 53.927976 - -3.000000, 108.036012, 27.009003, 54.018006 - -3.000000, 108.216072, 27.054018, 54.108036 - -3.000000, 108.396132, 27.099033, 54.198066 - -3.000000, 108.576192, 27.144048, 54.288096 - -3.000000, 108.756252, 27.189063, 54.378126 - -3.000000, 108.936312, 27.234078, 54.468156 - -3.000000, 109.116372, 27.279093, 54.558186 - -3.000000, 109.296432, 27.324108, 54.648216 - -3.000000, 109.476492, 27.369123, 54.738246 - -3.000000, 109.656552, 27.414138, 54.828276 - -3.000000, 109.836612, 27.459153, 54.918306 - -3.000000, 110.016672, 27.504168, 55.008336 - -3.000000, 110.196732, 27.549183, 55.098366 - -3.000000, 110.376792, 27.594198, 55.188396 - -3.000000, 110.556852, 27.639213, 55.278426 - -3.000000, 110.736912, 27.684228, 55.368456 - -3.000000, 110.916972, 27.729243, 55.458486 - -3.000000, 111.097032, 27.774258, 55.548516 - -3.000000, 111.277092, 27.819273, 55.638546 - -3.000000, 111.457152, 27.864288, 55.728576 - -3.000000, 111.637212, 27.909303, 55.818606 - -3.000000, 111.817272, 27.954318, 55.908636 - -3.000000, 111.997332, 27.999333, 55.998666 - -3.000000, 112.177392, 28.044348, 56.088696 - -3.000000, 112.357452, 28.089363, 56.178726 - -3.000000, 112.537513, 28.134378, 56.268756 - -3.000000, 112.717573, 28.179393, 56.358786 - -3.000000, 112.897633, 28.224408, 56.448816 - -3.000000, 113.077693, 28.269423, 56.538846 - -3.000000, 113.257753, 28.314438, 56.628876 - -3.000000, 113.437813, 28.359453, 56.718906 - -3.000000, 113.617873, 28.404468, 56.808936 - -3.000000, 113.797933, 28.449483, 56.898966 - -3.000000, 113.977993, 28.494498, 56.988996 - -3.000000, 114.158053, 28.539513, 57.079026 - -3.000000, 114.338113, 28.584528, 57.169056 - -3.000000, 114.518173, 28.629543, 57.259086 - -3.000000, 114.698233, 28.674558, 57.349116 - -3.000000, 114.878293, 28.719573, 57.439146 - -3.000000, 115.058353, 28.764588, 57.529176 - -3.000000, 115.238413, 28.809603, 57.619206 - -3.000000, 115.418473, 28.854618, 57.709236 - -3.000000, 115.598533, 28.899633, 57.799266 - -3.000000, 115.778593, 28.944648, 57.889296 - -3.000000, 115.958653, 28.989663, 57.979326 - -3.000000, 116.138713, 29.034678, 58.069356 - -3.000000, 116.318773, 29.079693, 58.159386 - -3.000000, 116.498833, 29.124708, 58.249416 - -3.000000, 116.678893, 29.169723, 58.339446 - -3.000000, 116.858953, 29.214738, 58.429476 - -3.000000, 117.039013, 29.259753, 58.519507 - -3.000000, 117.219073, 29.304768, 58.609537 - -3.000000, 117.399133, 29.349783, 58.699567 - -3.000000, 117.579193, 29.394798, 58.789597 - -3.000000, 117.759253, 29.439813, 58.879627 - -3.000000, 117.939313, 29.484828, 58.969657 - -3.000000, 118.119373, 29.529843, 59.059687 - -3.000000, 118.299433, 29.574858, 59.149717 - -3.000000, 118.479493, 29.619873, 59.239747 - -3.000000, 118.659553, 29.664888, 59.329777 - -3.000000, 118.839613, 29.709903, 59.419807 - -3.000000, 119.019673, 29.754918, 59.509837 - -3.000000, 119.199733, 29.799933, 59.599867 - -3.000000, 119.379793, 29.844948, 59.689897 - -3.000000, 119.559853, 29.889963, 59.779927 - -3.000000, 119.739913, 29.934978, 59.869957 - -3.000000, 119.919973, 29.979993, 59.959987 - -3.000000, 120.100033, 30.025008, 60.050017 - -3.000000, 120.280093, 30.070023, 60.140047 - -3.000000, 120.460153, 30.115038, 60.230077 - -3.000000, 120.640213, 30.160053, 60.320107 - -3.000000, 120.820273, 30.205068, 60.410137 - -3.000000, 121.000333, 30.250083, 60.500167 - -3.000000, 121.180393, 30.295098, 60.590197 - -3.000000, 121.360453, 30.340113, 60.680227 - -3.000000, 121.540514, 30.385128, 60.770257 - -3.000000, 121.720574, 30.430143, 60.860287 - -3.000000, 121.900634, 30.475158, 60.950317 - -3.000000, 122.080694, 30.520173, 61.040347 - -3.000000, 122.260754, 30.565188, 61.130377 - -3.000000, 122.440814, 30.610203, 61.220407 - -3.000000, 122.620874, 30.655218, 61.310437 - -3.000000, 122.800934, 30.700233, 61.400467 - -3.000000, 122.980994, 30.745248, 61.490497 - -3.000000, 123.161054, 30.790263, 61.580527 - -3.000000, 123.341114, 30.835278, 61.670557 - -3.000000, 123.521174, 30.880293, 61.760587 - -3.000000, 123.701234, 30.925308, 61.850617 - -3.000000, 123.881294, 30.970323, 61.940647 - -3.000000, 124.061354, 31.015338, 62.030677 - -3.000000, 124.241414, 31.060353, 62.120707 - -3.000000, 124.421474, 31.105368, 62.210737 - -3.000000, 124.601534, 31.150383, 62.300767 - -3.000000, 124.781594, 31.195398, 62.390797 - -3.000000, 124.961654, 31.240413, 62.480827 - -3.000000, 125.141714, 31.285428, 62.570857 - -3.000000, 125.321774, 31.330443, 62.660887 - -3.000000, 125.501834, 31.375458, 62.750917 - -3.000000, 125.681894, 31.420473, 62.840947 - -3.000000, 125.861954, 31.465488, 62.930977 - -3.000000, 126.042014, 31.510504, 63.021007 - -3.000000, 126.222074, 31.555519, 63.111037 - -3.000000, 126.402134, 31.600534, 63.201067 - -3.000000, 126.582194, 31.645549, 63.291097 - -3.000000, 126.762254, 31.690564, 63.381127 - -3.000000, 126.942314, 31.735579, 63.471157 - -3.000000, 127.122374, 31.780594, 63.561187 - -3.000000, 127.302434, 31.825609, 63.651217 - -3.000000, 127.482494, 31.870624, 63.741247 - -3.000000, 127.662554, 31.915639, 63.831277 - -3.000000, 127.842614, 31.960654, 63.921307 - -3.000000, 128.022674, 32.005669, 64.011337 - -3.000000, 128.202734, 32.050684, 64.101367 - -3.000000, 128.382794, 32.095699, 64.191397 - -3.000000, 128.562854, 32.140714, 64.281427 - -3.000000, 128.742914, 32.185729, 64.371457 - -3.000000, 128.922974, 32.230744, 64.461487 - -3.000000, 129.103034, 32.275759, 64.551517 - -3.000000, 129.283094, 32.320774, 64.641547 - -3.000000, 129.463154, 32.365789, 64.731577 - -3.000000, 129.643214, 32.410804, 64.821607 - -3.000000, 129.823274, 32.455819, 64.911637 - -3.000000, 130.003334, 32.500834, 65.001667 - -3.000000, 130.183394, 32.545849, 65.091697 - -3.000000, 130.363454, 32.590864, 65.181727 - -3.000000, 130.543515, 32.635879, 65.271757 - -3.000000, 130.723575, 32.680894, 65.361787 - -3.000000, 130.903635, 32.725909, 65.451817 - -3.000000, 131.083695, 32.770924, 65.541847 - -3.000000, 131.263755, 32.815939, 65.631877 - -3.000000, 131.443815, 32.860954, 65.721907 - -3.000000, 131.623875, 32.905969, 65.811937 - -3.000000, 131.803935, 32.950984, 65.901967 - -3.000000, 131.983995, 32.995999, 65.991997 - -3.000000, 132.164055, 33.041014, 66.082027 - -3.000000, 132.344115, 33.086029, 66.172057 - -3.000000, 132.524175, 33.131044, 66.262087 - -3.000000, 132.704235, 33.176059, 66.352117 - -3.000000, 132.884295, 33.221074, 66.442147 - -3.000000, 133.064355, 33.266089, 66.532177 - -3.000000, 133.244415, 33.311104, 66.622207 - -3.000000, 133.424475, 33.356119, 66.712237 - -3.000000, 133.604535, 33.401134, 66.802267 - -3.000000, 133.784595, 33.446149, 66.892297 - -3.000000, 133.964655, 33.491164, 66.982327 - -3.000000, 134.144715, 33.536179, 67.072357 - -3.000000, 134.324775, 33.581194, 67.162387 - -3.000000, 134.504835, 33.626209, 67.252417 - -3.000000, 134.684895, 33.671224, 67.342447 - -3.000000, 134.864955, 33.716239, 67.432477 - -3.000000, 135.045015, 33.761254, 67.522508 - -3.000000, 135.225075, 33.806269, 67.612538 - -3.000000, 135.405135, 33.851284, 67.702568 - -3.000000, 135.585195, 33.896299, 67.792598 - -3.000000, 135.765255, 33.941314, 67.882628 - -3.000000, 135.945315, 33.986329, 67.972658 - -3.000000, 136.125375, 34.031344, 68.062688 - -3.000000, 136.305435, 34.076359, 68.152718 - -3.000000, 136.485495, 34.121374, 68.242748 - -3.000000, 136.665555, 34.166389, 68.332778 - -3.000000, 136.845615, 34.211404, 68.422808 - -3.000000, 137.025675, 34.256419, 68.512838 - -3.000000, 137.205735, 34.301434, 68.602868 - -3.000000, 137.385795, 34.346449, 68.692898 - -3.000000, 137.565855, 34.391464, 68.782928 - -3.000000, 137.745915, 34.436479, 68.872958 - -3.000000, 137.925975, 34.481494, 68.962988 - -3.000000, 138.106035, 34.526509, 69.053018 - -3.000000, 138.286095, 34.571524, 69.143048 - -3.000000, 138.466155, 34.616539, 69.233078 - -3.000000, 138.646215, 34.661554, 69.323108 - -3.000000, 138.826275, 34.706569, 69.413138 - -3.000000, 139.006335, 34.751584, 69.503168 - -3.000000, 139.186395, 34.796599, 69.593198 - -3.000000, 139.366455, 34.841614, 69.683228 - -3.000000, 139.546516, 34.886629, 69.773258 - -3.000000, 139.726576, 34.931644, 69.863288 - -3.000000, 139.906636, 34.976659, 69.953318 - -3.000000, 140.086696, 35.021674, 70.043348 - -3.000000, 140.266756, 35.066689, 70.133378 - -3.000000, 140.446816, 35.111704, 70.223408 - -3.000000, 140.626876, 35.156719, 70.313438 - -3.000000, 140.806936, 35.201734, 70.403468 - -3.000000, 140.986996, 35.246749, 70.493498 - -3.000000, 141.167056, 35.291764, 70.583528 - -3.000000, 141.347116, 35.336779, 70.673558 - -3.000000, 141.527176, 35.381794, 70.763588 - -3.000000, 141.707236, 35.426809, 70.853618 - -3.000000, 141.887296, 35.471824, 70.943648 - -3.000000, 142.067356, 35.516839, 71.033678 - -3.000000, 142.247416, 35.561854, 71.123708 - -3.000000, 142.427476, 35.606869, 71.213738 - -3.000000, 142.607536, 35.651884, 71.303768 - -3.000000, 142.787596, 35.696899, 71.393798 - -3.000000, 142.967656, 35.741914, 71.483828 - -3.000000, 143.147716, 35.786929, 71.573858 - -3.000000, 143.327776, 35.831944, 71.663888 - -3.000000, 143.507836, 35.876959, 71.753918 - -3.000000, 143.687896, 35.921974, 71.843948 - -3.000000, 143.867956, 35.966989, 71.933978 - -3.000000, 144.048016, 36.012004, 72.024008 - -3.000000, 144.228076, 36.057019, 72.114038 - -3.000000, 144.408136, 36.102034, 72.204068 - -3.000000, 144.588196, 36.147049, 72.294098 - -3.000000, 144.768256, 36.192064, 72.384128 - -3.000000, 144.948316, 36.237079, 72.474158 - -3.000000, 145.128376, 36.282094, 72.564188 - -3.000000, 145.308436, 36.327109, 72.654218 - -3.000000, 145.488496, 36.372124, 72.744248 - -3.000000, 145.668556, 36.417139, 72.834278 - -3.000000, 145.848616, 36.462154, 72.924308 - -3.000000, 146.028676, 36.507169, 73.014338 - -3.000000, 146.208736, 36.552184, 73.104368 - -3.000000, 146.388796, 36.597199, 73.194398 - -3.000000, 146.568856, 36.642214, 73.284428 - -3.000000, 146.748916, 36.687229, 73.374458 - -3.000000, 146.928976, 36.732244, 73.464488 - -3.000000, 147.109036, 36.777259, 73.554518 - -3.000000, 147.289096, 36.822274, 73.644548 - -3.000000, 147.469156, 36.867289, 73.734578 - -3.000000, 147.649216, 36.912304, 73.824608 - -3.000000, 147.829276, 36.957319, 73.914638 - -3.000000, 148.009336, 37.002334, 74.004668 - -3.000000, 148.189396, 37.047349, 74.094698 - -3.000000, 148.369456, 37.092364, 74.184728 - -3.000000, 148.549517, 37.137379, 74.274758 - -3.000000, 148.729577, 37.182394, 74.364788 - -3.000000, 148.909637, 37.227409, 74.454818 - -3.000000, 149.089697, 37.272424, 74.544848 - -3.000000, 149.269757, 37.317439, 74.634878 - -3.000000, 149.449817, 37.362454, 74.724908 - -3.000000, 149.629877, 37.407469, 74.814938 - -3.000000, 149.809937, 37.452484, 74.904968 - -3.000000, 149.989997, 37.497499, 74.994998 - -3.000000, 150.170057, 37.542514, 75.085028 - -3.000000, 150.350117, 37.587529, 75.175058 - -3.000000, 150.530177, 37.632544, 75.265088 - -3.000000, 150.710237, 37.677559, 75.355118 - -3.000000, 150.890297, 37.722574, 75.445148 - -3.000000, 151.070357, 37.767589, 75.535178 - -3.000000, 151.250417, 37.812604, 75.625208 - -3.000000, 151.430477, 37.857619, 75.715238 - -3.000000, 151.610537, 37.902634, 75.805268 - -3.000000, 151.790597, 37.947649, 75.895298 - -3.000000, 151.970657, 37.992664, 75.985328 - -3.000000, 152.150717, 38.037679, 76.075358 - -3.000000, 152.330777, 38.082694, 76.165388 - -3.000000, 152.510837, 38.127709, 76.255418 - -3.000000, 152.690897, 38.172724, 76.345448 - -3.000000, 152.870957, 38.217739, 76.435478 - -3.000000, 153.051017, 38.262754, 76.525509 - -3.000000, 153.231077, 38.307769, 76.615539 - -3.000000, 153.411137, 38.352784, 76.705569 - -3.000000, 153.591197, 38.397799, 76.795599 - -3.000000, 153.771257, 38.442814, 76.885629 - -3.000000, 153.951317, 38.487829, 76.975659 - -3.000000, 154.131377, 38.532844, 77.065689 - -3.000000, 154.311437, 38.577859, 77.155719 - -3.000000, 154.491497, 38.622874, 77.245749 - -3.000000, 154.671557, 38.667889, 77.335779 - -3.000000, 154.851617, 38.712904, 77.425809 - -3.000000, 155.031677, 38.757919, 77.515839 - -3.000000, 155.211737, 38.802934, 77.605869 - -3.000000, 155.391797, 38.847949, 77.695899 - -3.000000, 155.571857, 38.892964, 77.785929 - -3.000000, 155.751917, 38.937979, 77.875959 - -3.000000, 155.931977, 38.982994, 77.965989 - -3.000000, 156.112037, 39.028009, 78.056019 - -3.000000, 156.292097, 39.073024, 78.146049 - -3.000000, 156.472157, 39.118039, 78.236079 - -3.000000, 156.652217, 39.163054, 78.326109 - -3.000000, 156.832277, 39.208069, 78.416139 - -3.000000, 157.012337, 39.253084, 78.506169 - -3.000000, 157.192397, 39.298099, 78.596199 - -3.000000, 157.372457, 39.343114, 78.686229 - -3.000000, 157.552518, 39.388129, 78.776259 - -3.000000, 157.732578, 39.433144, 78.866289 - -3.000000, 157.912638, 39.478159, 78.956319 - -3.000000, 158.092698, 39.523174, 79.046349 - -3.000000, 158.272758, 39.568189, 79.136379 - -3.000000, 158.452818, 39.613204, 79.226409 - -3.000000, 158.632878, 39.658219, 79.316439 - -3.000000, 158.812938, 39.703234, 79.406469 - -3.000000, 158.992998, 39.748249, 79.496499 - -3.000000, 159.173058, 39.793264, 79.586529 - -3.000000, 159.353118, 39.838279, 79.676559 - -3.000000, 159.533178, 39.883294, 79.766589 - -3.000000, 159.713238, 39.928309, 79.856619 - -3.000000, 159.893298, 39.973324, 79.946649 - -3.000000, 160.073358, 40.018339, 80.036679 - -3.000000, 160.253418, 40.063354, 80.126709 - -3.000000, 160.433478, 40.108369, 80.216739 - -3.000000, 160.613538, 40.153384, 80.306769 - -3.000000, 160.793598, 40.198399, 80.396799 - -3.000000, 160.973658, 40.243414, 80.486829 - -3.000000, 161.153718, 40.288429, 80.576859 - -3.000000, 161.333778, 40.333444, 80.666889 - -3.000000, 161.513838, 40.378459, 80.756919 - -3.000000, 161.693898, 40.423474, 80.846949 - -3.000000, 161.873958, 40.468489, 80.936979 - -3.000000, 162.054018, 40.513505, 81.027009 - -3.000000, 162.234078, 40.558520, 81.117039 - -3.000000, 162.414138, 40.603535, 81.207069 - -3.000000, 162.594198, 40.648550, 81.297099 - -3.000000, 162.774258, 40.693565, 81.387129 - -3.000000, 162.954318, 40.738580, 81.477159 - -3.000000, 163.134378, 40.783595, 81.567189 - -3.000000, 163.314438, 40.828610, 81.657219 - -3.000000, 163.494498, 40.873625, 81.747249 - -3.000000, 163.674558, 40.918640, 81.837279 - -3.000000, 163.854618, 40.963655, 81.927309 - -3.000000, 164.034678, 41.008670, 82.017339 - -3.000000, 164.214738, 41.053685, 82.107369 - -3.000000, 164.394798, 41.098700, 82.197399 - -3.000000, 164.574858, 41.143715, 82.287429 - -3.000000, 164.754918, 41.188730, 82.377459 - -3.000000, 164.934978, 41.233745, 82.467489 - -3.000000, 165.115038, 41.278760, 82.557519 - -3.000000, 165.295098, 41.323775, 82.647549 - -3.000000, 165.475158, 41.368790, 82.737579 - -3.000000, 165.655218, 41.413805, 82.827609 - -3.000000, 165.835278, 41.458820, 82.917639 - -3.000000, 166.015338, 41.503835, 83.007669 - -3.000000, 166.195398, 41.548850, 83.097699 - -3.000000, 166.375458, 41.593865, 83.187729 - -3.000000, 166.555519, 41.638880, 83.277759 - -3.000000, 166.735579, 41.683895, 83.367789 - -3.000000, 166.915639, 41.728910, 83.457819 - -3.000000, 167.095699, 41.773925, 83.547849 - -3.000000, 167.275759, 41.818940, 83.637879 - -3.000000, 167.455819, 41.863955, 83.727909 - -3.000000, 167.635879, 41.908970, 83.817939 - -3.000000, 167.815939, 41.953985, 83.907969 - -3.000000, 167.995999, 41.999000, 83.997999 - -3.000000, 168.176059, 42.044015, 84.088029 - -3.000000, 168.356119, 42.089030, 84.178059 - -3.000000, 168.536179, 42.134045, 84.268089 - -3.000000, 168.716239, 42.179060, 84.358119 - -3.000000, 168.896299, 42.224075, 84.448149 - -3.000000, 169.076359, 42.269090, 84.538179 - -3.000000, 169.256419, 42.314105, 84.628209 - -3.000000, 169.436479, 42.359120, 84.718239 - -3.000000, 169.616539, 42.404135, 84.808269 - -3.000000, 169.796599, 42.449150, 84.898299 - -3.000000, 169.976659, 42.494165, 84.988329 - -3.000000, 170.156719, 42.539180, 85.078359 - -3.000000, 170.336779, 42.584195, 85.168389 - -3.000000, 170.516839, 42.629210, 85.258419 - -3.000000, 170.696899, 42.674225, 85.348449 - -3.000000, 170.876959, 42.719240, 85.438479 - -3.000000, 171.057019, 42.764255, 85.528510 - -3.000000, 171.237079, 42.809270, 85.618540 - -3.000000, 171.417139, 42.854285, 85.708570 - -3.000000, 171.597199, 42.899300, 85.798600 - -3.000000, 171.777259, 42.944315, 85.888630 - -3.000000, 171.957319, 42.989330, 85.978660 - -3.000000, 172.137379, 43.034345, 86.068690 - -3.000000, 172.317439, 43.079360, 86.158720 - -3.000000, 172.497499, 43.124375, 86.248750 - -3.000000, 172.677559, 43.169390, 86.338780 - -3.000000, 172.857619, 43.214405, 86.428810 - -3.000000, 173.037679, 43.259420, 86.518840 - -3.000000, 173.217739, 43.304435, 86.608870 - -3.000000, 173.397799, 43.349450, 86.698900 - -3.000000, 173.577859, 43.394465, 86.788930 - -3.000000, 173.757919, 43.439480, 86.878960 - -3.000000, 173.937979, 43.484495, 86.968990 - -3.000000, 174.118039, 43.529510, 87.059020 - -3.000000, 174.298099, 43.574525, 87.149050 - -3.000000, 174.478159, 43.619540, 87.239080 - -3.000000, 174.658219, 43.664555, 87.329110 - -3.000000, 174.838279, 43.709570, 87.419140 - -3.000000, 175.018339, 43.754585, 87.509170 - -3.000000, 175.198399, 43.799600, 87.599200 - -3.000000, 175.378459, 43.844615, 87.689230 - -3.000000, 175.558520, 43.889630, 87.779260 - -3.000000, 175.738580, 43.934645, 87.869290 - -3.000000, 175.918640, 43.979660, 87.959320 - -3.000000, 176.098700, 44.024675, 88.049350 - -3.000000, 176.278760, 44.069690, 88.139380 - -3.000000, 176.458820, 44.114705, 88.229410 - -3.000000, 176.638880, 44.159720, 88.319440 - -3.000000, 176.818940, 44.204735, 88.409470 - -3.000000, 176.999000, 44.249750, 88.499500 - -3.000000, 177.179060, 44.294765, 88.589530 - -3.000000, 177.359120, 44.339780, 88.679560 - -3.000000, 177.539180, 44.384795, 88.769590 - -3.000000, 177.719240, 44.429810, 88.859620 - -3.000000, 177.899300, 44.474825, 88.949650 - -3.000000, 178.079360, 44.519840, 89.039680 - -3.000000, 178.259420, 44.564855, 89.129710 - -3.000000, 178.439480, 44.609870, 89.219740 - -3.000000, 178.619540, 44.654885, 89.309770 - -3.000000, 178.799600, 44.699900, 89.399800 - -3.000000, 178.979660, 44.744915, 89.489830 - -3.000000, 179.159720, 44.789930, 89.579860 - -3.000000, 179.339780, 44.834945, 89.669890 - -3.000000, 179.519840, 44.879960, 89.759920 - -3.000000, 179.699900, 44.924975, 89.849950 - -3.000000, 179.879960, 44.969990, 89.939980 - -3.000000, 180.060020, 45.015005, 90.030010 - -3.000000, 180.240080, 45.060020, 90.120040 - -3.000000, 180.420140, 45.105035, 90.210070 - -3.000000, 180.600200, 45.150050, 90.300100 - -3.000000, 180.780260, 45.195065, 90.390130 - -3.000000, 180.960320, 45.240080, 90.480160 - -3.000000, 181.140380, 45.285095, 90.570190 - -3.000000, 181.320440, 45.330110, 90.660220 - -3.000000, 181.500500, 45.375125, 90.750250 - -3.000000, 181.680560, 45.420140, 90.840280 - -3.000000, 181.860620, 45.465155, 90.930310 - -3.000000, 182.040680, 45.510170, 91.020340 - -3.000000, 182.220740, 45.555185, 91.110370 - -3.000000, 182.400800, 45.600200, 91.200400 - -3.000000, 182.580860, 45.645215, 91.290430 - -3.000000, 182.760920, 45.690230, 91.380460 - -3.000000, 182.940980, 45.735245, 91.470490 - -3.000000, 183.121040, 45.780260, 91.560520 - -3.000000, 183.301100, 45.825275, 91.650550 - -3.000000, 183.481160, 45.870290, 91.740580 - -3.000000, 183.661220, 45.915305, 91.830610 - -3.000000, 183.841280, 45.960320, 91.920640 - -3.000000, 184.021340, 46.005335, 92.010670 - -3.000000, 184.201400, 46.050350, 92.100700 - -3.000000, 184.381460, 46.095365, 92.190730 - -3.000000, 184.561521, 46.140380, 92.280760 - -3.000000, 184.741581, 46.185395, 92.370790 - -3.000000, 184.921641, 46.230410, 92.460820 - -3.000000, 185.101701, 46.275425, 92.550850 - -3.000000, 185.281761, 46.320440, 92.640880 - -3.000000, 185.461821, 46.365455, 92.730910 - -3.000000, 185.641881, 46.410470, 92.820940 - -3.000000, 185.821941, 46.455485, 92.910970 - -3.000000, 186.002001, 46.500500, 93.001000 - -3.000000, 186.182061, 46.545515, 93.091030 - -3.000000, 186.362121, 46.590530, 93.181060 - -3.000000, 186.542181, 46.635545, 93.271090 - -3.000000, 186.722241, 46.680560, 93.361120 - -3.000000, 186.902301, 46.725575, 93.451150 - -3.000000, 187.082361, 46.770590, 93.541180 - -3.000000, 187.262421, 46.815605, 93.631210 - -3.000000, 187.442481, 46.860620, 93.721240 - -3.000000, 187.622541, 46.905635, 93.811270 - -3.000000, 187.802601, 46.950650, 93.901300 - -3.000000, 187.982661, 46.995665, 93.991330 - -3.000000, 188.162721, 47.040680, 94.081360 - -3.000000, 188.342781, 47.085695, 94.171390 - -3.000000, 188.522841, 47.130710, 94.261420 - -3.000000, 188.702901, 47.175725, 94.351450 - -3.000000, 188.882961, 47.220740, 94.441480 - -3.000000, 189.063021, 47.265755, 94.531511 - -3.000000, 189.243081, 47.310770, 94.621541 - -3.000000, 189.423141, 47.355785, 94.711571 - -3.000000, 189.603201, 47.400800, 94.801601 - -3.000000, 189.783261, 47.445815, 94.891631 - -3.000000, 189.963321, 47.490830, 94.981661 - -3.000000, 190.143381, 47.535845, 95.071691 - -3.000000, 190.323441, 47.580860, 95.161721 - -3.000000, 190.503501, 47.625875, 95.251751 - -3.000000, 190.683561, 47.670890, 95.341781 - -3.000000, 190.863621, 47.715905, 95.431811 - -3.000000, 191.043681, 47.760920, 95.521841 - -3.000000, 191.223741, 47.805935, 95.611871 - -3.000000, 191.403801, 47.850950, 95.701901 - -3.000000, 191.583861, 47.895965, 95.791931 - -3.000000, 191.763921, 47.940980, 95.881961 - -3.000000, 191.943981, 47.985995, 95.971991 - -3.000000, 192.124041, 48.031010, 96.062021 - -3.000000, 192.304101, 48.076025, 96.152051 - -3.000000, 192.484161, 48.121040, 96.242081 - -3.000000, 192.664221, 48.166055, 96.332111 - -3.000000, 192.844281, 48.211070, 96.422141 - -3.000000, 193.024341, 48.256085, 96.512171 - -3.000000, 193.204401, 48.301100, 96.602201 - -3.000000, 193.384461, 48.346115, 96.692231 - -3.000000, 193.564522, 48.391130, 96.782261 - -3.000000, 193.744582, 48.436145, 96.872291 - -3.000000, 193.924642, 48.481160, 96.962321 - -3.000000, 194.104702, 48.526175, 97.052351 - -3.000000, 194.284762, 48.571190, 97.142381 - -3.000000, 194.464822, 48.616205, 97.232411 - -3.000000, 194.644882, 48.661220, 97.322441 - -3.000000, 194.824942, 48.706235, 97.412471 - -3.000000, 195.005002, 48.751250, 97.502501 - -3.000000, 195.185062, 48.796265, 97.592531 - -3.000000, 195.365122, 48.841280, 97.682561 - -3.000000, 195.545182, 48.886295, 97.772591 - -3.000000, 195.725242, 48.931310, 97.862621 - -3.000000, 195.905302, 48.976325, 97.952651 - -3.000000, 196.085362, 49.021340, 98.042681 - -3.000000, 196.265422, 49.066355, 98.132711 - -3.000000, 196.445482, 49.111370, 98.222741 - -3.000000, 196.625542, 49.156385, 98.312771 - -3.000000, 196.805602, 49.201400, 98.402801 - -3.000000, 196.985662, 49.246415, 98.492831 - -3.000000, 197.165722, 49.291430, 98.582861 - -3.000000, 197.345782, 49.336445, 98.672891 - -3.000000, 197.525842, 49.381460, 98.762921 - -3.000000, 197.705902, 49.426475, 98.852951 - -3.000000, 197.885962, 49.471490, 98.942981 - -3.000000, 198.066022, 49.516506, 99.033011 - -3.000000, 198.246082, 49.561521, 99.123041 - -3.000000, 198.426142, 49.606536, 99.213071 - -3.000000, 198.606202, 49.651551, 99.303101 - -3.000000, 198.786262, 49.696566, 99.393131 - -3.000000, 198.966322, 49.741581, 99.483161 - -3.000000, 199.146382, 49.786596, 99.573191 - -3.000000, 199.326442, 49.831611, 99.663221 - -3.000000, 199.506502, 49.876626, 99.753251 - -3.000000, 199.686562, 49.921641, 99.843281 - -3.000000, 199.866622, 49.966656, 99.933311 - -3.000000, 200.046682, 50.011671, 100.023341 - -3.000000, 200.226742, 50.056686, 100.113371 - -3.000000, 200.406802, 50.101701, 100.203401 - -3.000000, 200.586862, 50.146716, 100.293431 - -3.000000, 200.766922, 50.191731, 100.383461 - -3.000000, 200.946982, 50.236746, 100.473491 - -3.000000, 201.127042, 50.281761, 100.563521 - -3.000000, 201.307102, 50.326776, 100.653551 - -3.000000, 201.487162, 50.371791, 100.743581 - -3.000000, 201.667222, 50.416806, 100.833611 - -3.000000, 201.847282, 50.461821, 100.923641 - -3.000000, 202.027342, 50.506836, 101.013671 - -3.000000, 202.207402, 50.551851, 101.103701 - -3.000000, 202.387462, 50.596866, 101.193731 - -3.000000, 202.567523, 50.641881, 101.283761 - -3.000000, 202.747583, 50.686896, 101.373791 - -3.000000, 202.927643, 50.731911, 101.463821 - -3.000000, 203.107703, 50.776926, 101.553851 - -3.000000, 203.287763, 50.821941, 101.643881 - -3.000000, 203.467823, 50.866956, 101.733911 - -3.000000, 203.647883, 50.911971, 101.823941 - -3.000000, 203.827943, 50.956986, 101.913971 - -3.000000, 204.008003, 51.002001, 102.004001 - -3.000000, 204.188063, 51.047016, 102.094031 - -3.000000, 204.368123, 51.092031, 102.184061 - -3.000000, 204.548183, 51.137046, 102.274091 - -3.000000, 204.728243, 51.182061, 102.364121 - -3.000000, 204.908303, 51.227076, 102.454151 - -3.000000, 205.088363, 51.272091, 102.544181 - -3.000000, 205.268423, 51.317106, 102.634211 - -3.000000, 205.448483, 51.362121, 102.724241 - -3.000000, 205.628543, 51.407136, 102.814271 - -3.000000, 205.808603, 51.452151, 102.904301 - -3.000000, 205.988663, 51.497166, 102.994331 - -3.000000, 206.168723, 51.542181, 103.084361 - -3.000000, 206.348783, 51.587196, 103.174391 - -3.000000, 206.528843, 51.632211, 103.264421 - -3.000000, 206.708903, 51.677226, 103.354451 - -3.000000, 206.888963, 51.722241, 103.444481 - -3.000000, 207.069023, 51.767256, 103.534512 - -3.000000, 207.249083, 51.812271, 103.624542 - -3.000000, 207.429143, 51.857286, 103.714572 - -3.000000, 207.609203, 51.902301, 103.804602 - -3.000000, 207.789263, 51.947316, 103.894632 - -3.000000, 207.969323, 51.992331, 103.984662 - -3.000000, 208.149383, 52.037346, 104.074692 - -3.000000, 208.329443, 52.082361, 104.164722 - -3.000000, 208.509503, 52.127376, 104.254752 - -3.000000, 208.689563, 52.172391, 104.344782 - -3.000000, 208.869623, 52.217406, 104.434812 - -3.000000, 209.049683, 52.262421, 104.524842 - -3.000000, 209.229743, 52.307436, 104.614872 - -3.000000, 209.409803, 52.352451, 104.704902 - -3.000000, 209.589863, 52.397466, 104.794932 - -3.000000, 209.769923, 52.442481, 104.884962 - -3.000000, 209.949983, 52.487496, 104.974992 - -3.000000, 210.130043, 52.532511, 105.065022 - -3.000000, 210.310103, 52.577526, 105.155052 - -3.000000, 210.490163, 52.622541, 105.245082 - -3.000000, 210.670223, 52.667556, 105.335112 - -3.000000, 210.850283, 52.712571, 105.425142 - -3.000000, 211.030343, 52.757586, 105.515172 - -3.000000, 211.210403, 52.802601, 105.605202 - -3.000000, 211.390463, 52.847616, 105.695232 - -3.000000, 211.570524, 52.892631, 105.785262 - -3.000000, 211.750584, 52.937646, 105.875292 - -3.000000, 211.930644, 52.982661, 105.965322 - -3.000000, 212.110704, 53.027676, 106.055352 - -3.000000, 212.290764, 53.072691, 106.145382 - -3.000000, 212.470824, 53.117706, 106.235412 - -3.000000, 212.650884, 53.162721, 106.325442 - -3.000000, 212.830944, 53.207736, 106.415472 - -3.000000, 213.011004, 53.252751, 106.505502 - -3.000000, 213.191064, 53.297766, 106.595532 - -3.000000, 213.371124, 53.342781, 106.685562 - -3.000000, 213.551184, 53.387796, 106.775592 - -3.000000, 213.731244, 53.432811, 106.865622 - -3.000000, 213.911304, 53.477826, 106.955652 - -3.000000, 214.091364, 53.522841, 107.045682 - -3.000000, 214.271424, 53.567856, 107.135712 - -3.000000, 214.451484, 53.612871, 107.225742 - -3.000000, 214.631544, 53.657886, 107.315772 - -3.000000, 214.811604, 53.702901, 107.405802 - -3.000000, 214.991664, 53.747916, 107.495832 - -3.000000, 215.171724, 53.792931, 107.585862 - -3.000000, 215.351784, 53.837946, 107.675892 - -3.000000, 215.531844, 53.882961, 107.765922 - -3.000000, 215.711904, 53.927976, 107.855952 - -3.000000, 215.891964, 53.972991, 107.945982 - -3.000000, 216.072024, 54.018006, 108.036012 - -3.000000, 216.252084, 54.063021, 108.126042 - -3.000000, 216.432144, 54.108036, 108.216072 - -3.000000, 216.612204, 54.153051, 108.306102 - -3.000000, 216.792264, 54.198066, 108.396132 - -3.000000, 216.972324, 54.243081, 108.486162 - -3.000000, 217.152384, 54.288096, 108.576192 - -3.000000, 217.332444, 54.333111, 108.666222 - -3.000000, 217.512504, 54.378126, 108.756252 - -3.000000, 217.692564, 54.423141, 108.846282 - -3.000000, 217.872624, 54.468156, 108.936312 - -3.000000, 218.052684, 54.513171, 109.026342 - -3.000000, 218.232744, 54.558186, 109.116372 - -3.000000, 218.412804, 54.603201, 109.206402 - -3.000000, 218.592864, 54.648216, 109.296432 - -3.000000, 218.772924, 54.693231, 109.386462 - -3.000000, 218.952984, 54.738246, 109.476492 - -3.000000, 219.133044, 54.783261, 109.566522 - -3.000000, 219.313104, 54.828276, 109.656552 - -3.000000, 219.493164, 54.873291, 109.746582 - -3.000000, 219.673224, 54.918306, 109.836612 - -3.000000, 219.853284, 54.963321, 109.926642 - -3.000000, 220.033344, 55.008336, 110.016672 - -3.000000, 220.213404, 55.053351, 110.106702 - -3.000000, 220.393464, 55.098366, 110.196732 - -3.000000, 220.573525, 55.143381, 110.286762 - -3.000000, 220.753585, 55.188396, 110.376792 - -3.000000, 220.933645, 55.233411, 110.466822 - -3.000000, 221.113705, 55.278426, 110.556852 - -3.000000, 221.293765, 55.323441, 110.646882 - -3.000000, 221.473825, 55.368456, 110.736912 - -3.000000, 221.653885, 55.413471, 110.826942 - -3.000000, 221.833945, 55.458486, 110.916972 - -3.000000, 222.014005, 55.503501, 111.007002 - -3.000000, 222.194065, 55.548516, 111.097032 - -3.000000, 222.374125, 55.593531, 111.187062 - -3.000000, 222.554185, 55.638546, 111.277092 - -3.000000, 222.734245, 55.683561, 111.367122 - -3.000000, 222.914305, 55.728576, 111.457152 - -3.000000, 223.094365, 55.773591, 111.547182 - -3.000000, 223.274425, 55.818606, 111.637212 - -3.000000, 223.454485, 55.863621, 111.727242 - -3.000000, 223.634545, 55.908636, 111.817272 - -3.000000, 223.814605, 55.953651, 111.907302 - -3.000000, 223.994665, 55.998666, 111.997332 - -3.000000, 224.174725, 56.043681, 112.087362 - -3.000000, 224.354785, 56.088696, 112.177392 - -3.000000, 224.534845, 56.133711, 112.267422 - -3.000000, 224.714905, 56.178726, 112.357452 - -3.000000, 224.894965, 56.223741, 112.447482 - -3.000000, 225.075025, 56.268756, 112.537513 - -3.000000, 225.255085, 56.313771, 112.627543 - -3.000000, 225.435145, 56.358786, 112.717573 - -3.000000, 225.615205, 56.403801, 112.807603 - -3.000000, 225.795265, 56.448816, 112.897633 - -3.000000, 225.975325, 56.493831, 112.987663 - -3.000000, 226.155385, 56.538846, 113.077693 - -3.000000, 226.335445, 56.583861, 113.167723 - -3.000000, 226.515505, 56.628876, 113.257753 - -3.000000, 226.695565, 56.673891, 113.347783 - -3.000000, 226.875625, 56.718906, 113.437813 - -3.000000, 227.055685, 56.763921, 113.527843 - -3.000000, 227.235745, 56.808936, 113.617873 - -3.000000, 227.415805, 56.853951, 113.707903 - -3.000000, 227.595865, 56.898966, 113.797933 - -3.000000, 227.775925, 56.943981, 113.887963 - -3.000000, 227.955985, 56.988996, 113.977993 - -3.000000, 228.136045, 57.034011, 114.068023 - -3.000000, 228.316105, 57.079026, 114.158053 - -3.000000, 228.496165, 57.124041, 114.248083 - -3.000000, 228.676225, 57.169056, 114.338113 - -3.000000, 228.856285, 57.214071, 114.428143 - -3.000000, 229.036345, 57.259086, 114.518173 - -3.000000, 229.216405, 57.304101, 114.608203 - -3.000000, 229.396465, 57.349116, 114.698233 - -3.000000, 229.576526, 57.394131, 114.788263 - -3.000000, 229.756586, 57.439146, 114.878293 - -3.000000, 229.936646, 57.484161, 114.968323 - -3.000000, 230.116706, 57.529176, 115.058353 - -3.000000, 230.296766, 57.574191, 115.148383 - -3.000000, 230.476826, 57.619206, 115.238413 - -3.000000, 230.656886, 57.664221, 115.328443 - -3.000000, 230.836946, 57.709236, 115.418473 - -3.000000, 231.017006, 57.754251, 115.508503 - -3.000000, 231.197066, 57.799266, 115.598533 - -3.000000, 231.377126, 57.844281, 115.688563 - -3.000000, 231.557186, 57.889296, 115.778593 - -3.000000, 231.737246, 57.934311, 115.868623 - -3.000000, 231.917306, 57.979326, 115.958653 - -3.000000, 232.097366, 58.024341, 116.048683 - -3.000000, 232.277426, 58.069356, 116.138713 - -3.000000, 232.457486, 58.114371, 116.228743 - -3.000000, 232.637546, 58.159386, 116.318773 - -3.000000, 232.817606, 58.204401, 116.408803 - -3.000000, 232.997666, 58.249416, 116.498833 - -3.000000, 233.177726, 58.294431, 116.588863 - -3.000000, 233.357786, 58.339446, 116.678893 - -3.000000, 233.537846, 58.384461, 116.768923 - -3.000000, 233.717906, 58.429476, 116.858953 - -3.000000, 233.897966, 58.474491, 116.948983 - -3.000000, 234.078026, 58.519507, 117.039013 - -3.000000, 234.258086, 58.564522, 117.129043 - -3.000000, 234.438146, 58.609537, 117.219073 - -3.000000, 234.618206, 58.654552, 117.309103 - -3.000000, 234.798266, 58.699567, 117.399133 - -3.000000, 234.978326, 58.744582, 117.489163 - -3.000000, 235.158386, 58.789597, 117.579193 - -3.000000, 235.338446, 58.834612, 117.669223 - -3.000000, 235.518506, 58.879627, 117.759253 - -3.000000, 235.698566, 58.924642, 117.849283 - -3.000000, 235.878626, 58.969657, 117.939313 - -3.000000, 236.058686, 59.014672, 118.029343 - -3.000000, 236.238746, 59.059687, 118.119373 - -3.000000, 236.418806, 59.104702, 118.209403 - -3.000000, 236.598866, 59.149717, 118.299433 - -3.000000, 236.778926, 59.194732, 118.389463 - -3.000000, 236.958986, 59.239747, 118.479493 - -3.000000, 237.139046, 59.284762, 118.569523 - -3.000000, 237.319106, 59.329777, 118.659553 - -3.000000, 237.499166, 59.374792, 118.749583 - -3.000000, 237.679226, 59.419807, 118.839613 - -3.000000, 237.859286, 59.464822, 118.929643 - -3.000000, 238.039346, 59.509837, 119.019673 - -3.000000, 238.219406, 59.554852, 119.109703 - -3.000000, 238.399466, 59.599867, 119.199733 - -3.000000, 238.579527, 59.644882, 119.289763 - -3.000000, 238.759587, 59.689897, 119.379793 - -3.000000, 238.939647, 59.734912, 119.469823 - -3.000000, 239.119707, 59.779927, 119.559853 - -3.000000, 239.299767, 59.824942, 119.649883 - -3.000000, 239.479827, 59.869957, 119.739913 - -3.000000, 239.659887, 59.914972, 119.829943 - -3.000000, 239.839947, 59.959987, 119.919973 - -3.000000, 240.020007, 60.005002, 120.010003 - -3.000000, 240.200067, 60.050017, 120.100033 - -3.000000, 240.380127, 60.095032, 120.190063 - -3.000000, 240.560187, 60.140047, 120.280093 - -3.000000, 240.740247, 60.185062, 120.370123 - -3.000000, 240.920307, 60.230077, 120.460153 - -3.000000, 241.100367, 60.275092, 120.550183 - -3.000000, 241.280427, 60.320107, 120.640213 - -3.000000, 241.460487, 60.365122, 120.730243 - -3.000000, 241.640547, 60.410137, 120.820273 - -3.000000, 241.820607, 60.455152, 120.910303 - -3.000000, 242.000667, 60.500167, 121.000333 - -3.000000, 242.180727, 60.545182, 121.090363 - -3.000000, 242.360787, 60.590197, 121.180393 - -3.000000, 242.540847, 60.635212, 121.270423 - -3.000000, 242.720907, 60.680227, 121.360453 - -3.000000, 242.900967, 60.725242, 121.450483 - -3.000000, 243.081027, 60.770257, 121.540514 - -3.000000, 243.261087, 60.815272, 121.630544 - -3.000000, 243.441147, 60.860287, 121.720574 - -3.000000, 243.621207, 60.905302, 121.810604 - -3.000000, 243.801267, 60.950317, 121.900634 - -3.000000, 243.981327, 60.995332, 121.990664 - -3.000000, 244.161387, 61.040347, 122.080694 - -3.000000, 244.341447, 61.085362, 122.170724 - -3.000000, 244.521507, 61.130377, 122.260754 - -3.000000, 244.701567, 61.175392, 122.350784 - -3.000000, 244.881627, 61.220407, 122.440814 - -3.000000, 245.061687, 61.265422, 122.530844 - -3.000000, 245.241747, 61.310437, 122.620874 - -3.000000, 245.421807, 61.355452, 122.710904 - -3.000000, 245.601867, 61.400467, 122.800934 - -3.000000, 245.781927, 61.445482, 122.890964 - -3.000000, 245.961987, 61.490497, 122.980994 - -3.000000, 246.142047, 61.535512, 123.071024 - -3.000000, 246.322107, 61.580527, 123.161054 - -3.000000, 246.502167, 61.625542, 123.251084 - -3.000000, 246.682227, 61.670557, 123.341114 - -3.000000, 246.862287, 61.715572, 123.431144 - -3.000000, 247.042347, 61.760587, 123.521174 - -3.000000, 247.222407, 61.805602, 123.611204 - -3.000000, 247.402467, 61.850617, 123.701234 - -3.000000, 247.582528, 61.895632, 123.791264 - -3.000000, 247.762588, 61.940647, 123.881294 - -3.000000, 247.942648, 61.985662, 123.971324 - -3.000000, 248.122708, 62.030677, 124.061354 - -3.000000, 248.302768, 62.075692, 124.151384 - -3.000000, 248.482828, 62.120707, 124.241414 - -3.000000, 248.662888, 62.165722, 124.331444 - -3.000000, 248.842948, 62.210737, 124.421474 - -3.000000, 249.023008, 62.255752, 124.511504 - -3.000000, 249.203068, 62.300767, 124.601534 - -3.000000, 249.383128, 62.345782, 124.691564 - -3.000000, 249.563188, 62.390797, 124.781594 - -3.000000, 249.743248, 62.435812, 124.871624 - -3.000000, 249.923308, 62.480827, 124.961654 - -3.000000, 250.103368, 62.525842, 125.051684 - -3.000000, 250.283428, 62.570857, 125.141714 - -3.000000, 250.463488, 62.615872, 125.231744 - -3.000000, 250.643548, 62.660887, 125.321774 - -3.000000, 250.823608, 62.705902, 125.411804 - -3.000000, 251.003668, 62.750917, 125.501834 - -3.000000, 251.183728, 62.795932, 125.591864 - -3.000000, 251.363788, 62.840947, 125.681894 - -3.000000, 251.543848, 62.885962, 125.771924 - -3.000000, 251.723908, 62.930977, 125.861954 - -3.000000, 251.903968, 62.975992, 125.951984 - -3.000000, 252.084028, 63.021007, 126.042014 - -3.000000, 252.264088, 63.066022, 126.132044 - -3.000000, 252.444148, 63.111037, 126.222074 - -3.000000, 252.624208, 63.156052, 126.312104 - -3.000000, 252.804268, 63.201067, 126.402134 - -3.000000, 252.984328, 63.246082, 126.492164 - -3.000000, 253.164388, 63.291097, 126.582194 - -3.000000, 253.344448, 63.336112, 126.672224 - -3.000000, 253.524508, 63.381127, 126.762254 - -3.000000, 253.704568, 63.426142, 126.852284 - -3.000000, 253.884628, 63.471157, 126.942314 - -3.000000, 254.064688, 63.516172, 127.032344 - -3.000000, 254.244748, 63.561187, 127.122374 - -3.000000, 254.424808, 63.606202, 127.212404 - -3.000000, 254.604868, 63.651217, 127.302434 - -3.000000, 254.784928, 63.696232, 127.392464 - -3.000000, 254.964988, 63.741247, 127.482494 - -3.000000, 255.145048, 63.786262, 127.572524 - -3.000000, 255.325108, 63.831277, 127.662554 - -3.000000, 255.505168, 63.876292, 127.752584 - -3.000000, 255.685228, 63.921307, 127.842614 - -3.000000, 255.865288, 63.966322, 127.932644 - -3.000000, 256.045348, 64.011337, 128.022674 - -3.000000, 256.225408, 64.056352, 128.112704 - -3.000000, 256.405468, 64.101367, 128.202734 - -3.000000, 256.585529, 64.146382, 128.292764 - -3.000000, 256.765589, 64.191397, 128.382794 - -3.000000, 256.945649, 64.236412, 128.472824 - -3.000000, 257.125709, 64.281427, 128.562854 - -3.000000, 257.305769, 64.326442, 128.652884 - -3.000000, 257.485829, 64.371457, 128.742914 - -3.000000, 257.665889, 64.416472, 128.832944 - -3.000000, 257.845949, 64.461487, 128.922974 - -3.000000, 258.026009, 64.506502, 129.013004 - -3.000000, 258.206069, 64.551517, 129.103034 - -3.000000, 258.386129, 64.596532, 129.193064 - -3.000000, 258.566189, 64.641547, 129.283094 - -3.000000, 258.746249, 64.686562, 129.373124 - -3.000000, 258.926309, 64.731577, 129.463154 - -3.000000, 259.106369, 64.776592, 129.553184 - -3.000000, 259.286429, 64.821607, 129.643214 - -3.000000, 259.466489, 64.866622, 129.733244 - -3.000000, 259.646549, 64.911637, 129.823274 - -3.000000, 259.826609, 64.956652, 129.913304 - -3.000000, 260.006669, 65.001667, 130.003334 - -3.000000, 260.186729, 65.046682, 130.093364 - -3.000000, 260.366789, 65.091697, 130.183394 - -3.000000, 260.546849, 65.136712, 130.273424 - -3.000000, 260.726909, 65.181727, 130.363454 - -3.000000, 260.906969, 65.226742, 130.453484 - -3.000000, 261.087029, 65.271757, 130.543515 - -3.000000, 261.267089, 65.316772, 130.633545 - -3.000000, 261.447149, 65.361787, 130.723575 - -3.000000, 261.627209, 65.406802, 130.813605 - -3.000000, 261.807269, 65.451817, 130.903635 - -3.000000, 261.987329, 65.496832, 130.993665 - -3.000000, 262.167389, 65.541847, 131.083695 - -3.000000, 262.347449, 65.586862, 131.173725 - -3.000000, 262.527509, 65.631877, 131.263755 - -3.000000, 262.707569, 65.676892, 131.353785 - -3.000000, 262.887629, 65.721907, 131.443815 - -3.000000, 263.067689, 65.766922, 131.533845 - -3.000000, 263.247749, 65.811937, 131.623875 - -3.000000, 263.427809, 65.856952, 131.713905 - -3.000000, 263.607869, 65.901967, 131.803935 - -3.000000, 263.787929, 65.946982, 131.893965 - -3.000000, 263.967989, 65.991997, 131.983995 - -3.000000, 264.148049, 66.037012, 132.074025 - -3.000000, 264.328109, 66.082027, 132.164055 - -3.000000, 264.508169, 66.127042, 132.254085 - -3.000000, 264.688229, 66.172057, 132.344115 - -3.000000, 264.868289, 66.217072, 132.434145 - -3.000000, 265.048349, 66.262087, 132.524175 - -3.000000, 265.228409, 66.307102, 132.614205 - -3.000000, 265.408469, 66.352117, 132.704235 - -3.000000, 265.588530, 66.397132, 132.794265 - -3.000000, 265.768590, 66.442147, 132.884295 - -3.000000, 265.948650, 66.487162, 132.974325 - -3.000000, 266.128710, 66.532177, 133.064355 - -3.000000, 266.308770, 66.577192, 133.154385 - -3.000000, 266.488830, 66.622207, 133.244415 - -3.000000, 266.668890, 66.667222, 133.334445 - -3.000000, 266.848950, 66.712237, 133.424475 - -3.000000, 267.029010, 66.757252, 133.514505 - -3.000000, 267.209070, 66.802267, 133.604535 - -3.000000, 267.389130, 66.847282, 133.694565 - -3.000000, 267.569190, 66.892297, 133.784595 - -3.000000, 267.749250, 66.937312, 133.874625 - -3.000000, 267.929310, 66.982327, 133.964655 - -3.000000, 268.109370, 67.027342, 134.054685 - -3.000000, 268.289430, 67.072357, 134.144715 - -3.000000, 268.469490, 67.117372, 134.234745 - -3.000000, 268.649550, 67.162387, 134.324775 - -3.000000, 268.829610, 67.207402, 134.414805 - -3.000000, 269.009670, 67.252417, 134.504835 - -3.000000, 269.189730, 67.297432, 134.594865 - -3.000000, 269.369790, 67.342447, 134.684895 - -3.000000, 269.549850, 67.387462, 134.774925 - -3.000000, 269.729910, 67.432477, 134.864955 - -3.000000, 269.909970, 67.477492, 134.954985 - -3.000000, 270.090030, 67.522508, 135.045015 - -3.000000, 270.270090, 67.567523, 135.135045 - -3.000000, 270.450150, 67.612538, 135.225075 - -3.000000, 270.630210, 67.657553, 135.315105 - -3.000000, 270.810270, 67.702568, 135.405135 - -3.000000, 270.990330, 67.747583, 135.495165 - -3.000000, 271.170390, 67.792598, 135.585195 - -3.000000, 271.350450, 67.837613, 135.675225 - -3.000000, 271.530510, 67.882628, 135.765255 - -3.000000, 271.710570, 67.927643, 135.855285 - -3.000000, 271.890630, 67.972658, 135.945315 - -3.000000, 272.070690, 68.017673, 136.035345 - -3.000000, 272.250750, 68.062688, 136.125375 - -3.000000, 272.430810, 68.107703, 136.215405 - -3.000000, 272.610870, 68.152718, 136.305435 - -3.000000, 272.790930, 68.197733, 136.395465 - -3.000000, 272.970990, 68.242748, 136.485495 - -3.000000, 273.151050, 68.287763, 136.575525 - -3.000000, 273.331110, 68.332778, 136.665555 - -3.000000, 273.511170, 68.377793, 136.755585 - -3.000000, 273.691230, 68.422808, 136.845615 - -3.000000, 273.871290, 68.467823, 136.935645 - -3.000000, 274.051350, 68.512838, 137.025675 - -3.000000, 274.231410, 68.557853, 137.115705 - -3.000000, 274.411470, 68.602868, 137.205735 - -3.000000, 274.591531, 68.647883, 137.295765 - -3.000000, 274.771591, 68.692898, 137.385795 - -3.000000, 274.951651, 68.737913, 137.475825 - -3.000000, 275.131711, 68.782928, 137.565855 - -3.000000, 275.311771, 68.827943, 137.655885 - -3.000000, 275.491831, 68.872958, 137.745915 - -3.000000, 275.671891, 68.917973, 137.835945 - -3.000000, 275.851951, 68.962988, 137.925975 - -3.000000, 276.032011, 69.008003, 138.016005 - -3.000000, 276.212071, 69.053018, 138.106035 - -3.000000, 276.392131, 69.098033, 138.196065 - -3.000000, 276.572191, 69.143048, 138.286095 - -3.000000, 276.752251, 69.188063, 138.376125 - -3.000000, 276.932311, 69.233078, 138.466155 - -3.000000, 277.112371, 69.278093, 138.556185 - -3.000000, 277.292431, 69.323108, 138.646215 - -3.000000, 277.472491, 69.368123, 138.736245 - -3.000000, 277.652551, 69.413138, 138.826275 - -3.000000, 277.832611, 69.458153, 138.916305 - -3.000000, 278.012671, 69.503168, 139.006335 - -3.000000, 278.192731, 69.548183, 139.096365 - -3.000000, 278.372791, 69.593198, 139.186395 - -3.000000, 278.552851, 69.638213, 139.276425 - -3.000000, 278.732911, 69.683228, 139.366455 - -3.000000, 278.912971, 69.728243, 139.456485 - -3.000000, 279.093031, 69.773258, 139.546516 - -3.000000, 279.273091, 69.818273, 139.636546 - -3.000000, 279.453151, 69.863288, 139.726576 - -3.000000, 279.633211, 69.908303, 139.816606 - -3.000000, 279.813271, 69.953318, 139.906636 - -3.000000, 279.993331, 69.998333, 139.996666 - -3.000000, 280.173391, 70.043348, 140.086696 - -3.000000, 280.353451, 70.088363, 140.176726 - -3.000000, 280.533511, 70.133378, 140.266756 - -3.000000, 280.713571, 70.178393, 140.356786 - -3.000000, 280.893631, 70.223408, 140.446816 - -3.000000, 281.073691, 70.268423, 140.536846 - -3.000000, 281.253751, 70.313438, 140.626876 - -3.000000, 281.433811, 70.358453, 140.716906 - -3.000000, 281.613871, 70.403468, 140.806936 - -3.000000, 281.793931, 70.448483, 140.896966 - -3.000000, 281.973991, 70.493498, 140.986996 - -3.000000, 282.154051, 70.538513, 141.077026 - -3.000000, 282.334111, 70.583528, 141.167056 - -3.000000, 282.514171, 70.628543, 141.257086 - -3.000000, 282.694231, 70.673558, 141.347116 - -3.000000, 282.874291, 70.718573, 141.437146 - -3.000000, 283.054351, 70.763588, 141.527176 - -3.000000, 283.234411, 70.808603, 141.617206 - -3.000000, 283.414471, 70.853618, 141.707236 - -3.000000, 283.594532, 70.898633, 141.797266 - -3.000000, 283.774592, 70.943648, 141.887296 - -3.000000, 283.954652, 70.988663, 141.977326 - -3.000000, 284.134712, 71.033678, 142.067356 - -3.000000, 284.314772, 71.078693, 142.157386 - -3.000000, 284.494832, 71.123708, 142.247416 - -3.000000, 284.674892, 71.168723, 142.337446 - -3.000000, 284.854952, 71.213738, 142.427476 - -3.000000, 285.035012, 71.258753, 142.517506 - -3.000000, 285.215072, 71.303768, 142.607536 - -3.000000, 285.395132, 71.348783, 142.697566 - -3.000000, 285.575192, 71.393798, 142.787596 - -3.000000, 285.755252, 71.438813, 142.877626 - -3.000000, 285.935312, 71.483828, 142.967656 - -3.000000, 286.115372, 71.528843, 143.057686 - -3.000000, 286.295432, 71.573858, 143.147716 - -3.000000, 286.475492, 71.618873, 143.237746 - -3.000000, 286.655552, 71.663888, 143.327776 - -3.000000, 286.835612, 71.708903, 143.417806 - -3.000000, 287.015672, 71.753918, 143.507836 - -3.000000, 287.195732, 71.798933, 143.597866 - -3.000000, 287.375792, 71.843948, 143.687896 - -3.000000, 287.555852, 71.888963, 143.777926 - -3.000000, 287.735912, 71.933978, 143.867956 - -3.000000, 287.915972, 71.978993, 143.957986 - -3.000000, 288.096032, 72.024008, 144.048016 - -3.000000, 288.276092, 72.069023, 144.138046 - -3.000000, 288.456152, 72.114038, 144.228076 - -3.000000, 288.636212, 72.159053, 144.318106 - -3.000000, 288.816272, 72.204068, 144.408136 - -3.000000, 288.996332, 72.249083, 144.498166 - -3.000000, 289.176392, 72.294098, 144.588196 - -3.000000, 289.356452, 72.339113, 144.678226 - -3.000000, 289.536512, 72.384128, 144.768256 - -3.000000, 289.716572, 72.429143, 144.858286 - -3.000000, 289.896632, 72.474158, 144.948316 - -3.000000, 290.076692, 72.519173, 145.038346 - -3.000000, 290.256752, 72.564188, 145.128376 - -3.000000, 290.436812, 72.609203, 145.218406 - -3.000000, 290.616872, 72.654218, 145.308436 - -3.000000, 290.796932, 72.699233, 145.398466 - -3.000000, 290.976992, 72.744248, 145.488496 - -3.000000, 291.157052, 72.789263, 145.578526 - -3.000000, 291.337112, 72.834278, 145.668556 - -3.000000, 291.517172, 72.879293, 145.758586 - -3.000000, 291.697232, 72.924308, 145.848616 - -3.000000, 291.877292, 72.969323, 145.938646 - -3.000000, 292.057352, 73.014338, 146.028676 - -3.000000, 292.237412, 73.059353, 146.118706 - -3.000000, 292.417472, 73.104368, 146.208736 - -3.000000, 292.597533, 73.149383, 146.298766 - -3.000000, 292.777593, 73.194398, 146.388796 - -3.000000, 292.957653, 73.239413, 146.478826 - -3.000000, 293.137713, 73.284428, 146.568856 - -3.000000, 293.317773, 73.329443, 146.658886 - -3.000000, 293.497833, 73.374458, 146.748916 - -3.000000, 293.677893, 73.419473, 146.838946 - -3.000000, 293.857953, 73.464488, 146.928976 - -3.000000, 294.038013, 73.509503, 147.019006 - -3.000000, 294.218073, 73.554518, 147.109036 - -3.000000, 294.398133, 73.599533, 147.199066 - -3.000000, 294.578193, 73.644548, 147.289096 - -3.000000, 294.758253, 73.689563, 147.379126 - -3.000000, 294.938313, 73.734578, 147.469156 - -3.000000, 295.118373, 73.779593, 147.559186 - -3.000000, 295.298433, 73.824608, 147.649216 - -3.000000, 295.478493, 73.869623, 147.739246 - -3.000000, 295.658553, 73.914638, 147.829276 - -3.000000, 295.838613, 73.959653, 147.919306 - -3.000000, 296.018673, 74.004668, 148.009336 - -3.000000, 296.198733, 74.049683, 148.099366 - -3.000000, 296.378793, 74.094698, 148.189396 - -3.000000, 296.558853, 74.139713, 148.279426 - -3.000000, 296.738913, 74.184728, 148.369456 - -3.000000, 296.918973, 74.229743, 148.459486 - -3.000000, 297.099033, 74.274758, 148.549517 - -3.000000, 297.279093, 74.319773, 148.639547 - -3.000000, 297.459153, 74.364788, 148.729577 - -3.000000, 297.639213, 74.409803, 148.819607 - -3.000000, 297.819273, 74.454818, 148.909637 - -3.000000, 297.999333, 74.499833, 148.999667 - -3.000000, 298.179393, 74.544848, 149.089697 - -3.000000, 298.359453, 74.589863, 149.179727 - -3.000000, 298.539513, 74.634878, 149.269757 - -3.000000, 298.719573, 74.679893, 149.359787 - -3.000000, 298.899633, 74.724908, 149.449817 - -3.000000, 299.079693, 74.769923, 149.539847 - -3.000000, 299.259753, 74.814938, 149.629877 - -3.000000, 299.439813, 74.859953, 149.719907 - -3.000000, 299.619873, 74.904968, 149.809937 - -3.000000, 299.799933, 74.949983, 149.899967 - -3.000000, 299.979993, 74.994998, 149.989997 - -3.000000, 300.160053, 75.040013, 150.080027 - -3.000000, 300.340113, 75.085028, 150.170057 - -3.000000, 300.520173, 75.130043, 150.260087 - -3.000000, 300.700233, 75.175058, 150.350117 - -3.000000, 300.880293, 75.220073, 150.440147 - -3.000000, 301.060353, 75.265088, 150.530177 - -3.000000, 301.240413, 75.310103, 150.620207 - -3.000000, 301.420473, 75.355118, 150.710237 - -3.000000, 301.600534, 75.400133, 150.800267 - -3.000000, 301.780594, 75.445148, 150.890297 - -3.000000, 301.960654, 75.490163, 150.980327 - -3.000000, 302.140714, 75.535178, 151.070357 - -3.000000, 302.320774, 75.580193, 151.160387 - -3.000000, 302.500834, 75.625208, 151.250417 - -3.000000, 302.680894, 75.670223, 151.340447 - -3.000000, 302.860954, 75.715238, 151.430477 - -3.000000, 303.041014, 75.760253, 151.520507 - -3.000000, 303.221074, 75.805268, 151.610537 - -3.000000, 303.401134, 75.850283, 151.700567 - -3.000000, 303.581194, 75.895298, 151.790597 - -3.000000, 303.761254, 75.940313, 151.880627 - -3.000000, 303.941314, 75.985328, 151.970657 - -3.000000, 304.121374, 76.030343, 152.060687 - -3.000000, 304.301434, 76.075358, 152.150717 - -3.000000, 304.481494, 76.120373, 152.240747 - -3.000000, 304.661554, 76.165388, 152.330777 - -3.000000, 304.841614, 76.210403, 152.420807 - -3.000000, 305.021674, 76.255418, 152.510837 - -3.000000, 305.201734, 76.300433, 152.600867 - -3.000000, 305.381794, 76.345448, 152.690897 - -3.000000, 305.561854, 76.390463, 152.780927 - -3.000000, 305.741914, 76.435478, 152.870957 - -3.000000, 305.921974, 76.480493, 152.960987 - -3.000000, 306.102034, 76.525509, 153.051017 - -3.000000, 306.282094, 76.570524, 153.141047 - -3.000000, 306.462154, 76.615539, 153.231077 - -3.000000, 306.642214, 76.660554, 153.321107 - -3.000000, 306.822274, 76.705569, 153.411137 - -3.000000, 307.002334, 76.750584, 153.501167 - -3.000000, 307.182394, 76.795599, 153.591197 - -3.000000, 307.362454, 76.840614, 153.681227 - -3.000000, 307.542514, 76.885629, 153.771257 - -3.000000, 307.722574, 76.930644, 153.861287 - -3.000000, 307.902634, 76.975659, 153.951317 - -3.000000, 308.082694, 77.020674, 154.041347 - -3.000000, 308.262754, 77.065689, 154.131377 - -3.000000, 308.442814, 77.110704, 154.221407 - -3.000000, 308.622874, 77.155719, 154.311437 - -3.000000, 308.802934, 77.200734, 154.401467 - -3.000000, 308.982994, 77.245749, 154.491497 - -3.000000, 309.163054, 77.290764, 154.581527 - -3.000000, 309.343114, 77.335779, 154.671557 - -3.000000, 309.523174, 77.380794, 154.761587 - -3.000000, 309.703234, 77.425809, 154.851617 - -3.000000, 309.883294, 77.470824, 154.941647 - -3.000000, 310.063354, 77.515839, 155.031677 - -3.000000, 310.243414, 77.560854, 155.121707 - -3.000000, 310.423474, 77.605869, 155.211737 - -3.000000, 310.603535, 77.650884, 155.301767 - -3.000000, 310.783595, 77.695899, 155.391797 - -3.000000, 310.963655, 77.740914, 155.481827 - -3.000000, 311.143715, 77.785929, 155.571857 - -3.000000, 311.323775, 77.830944, 155.661887 - -3.000000, 311.503835, 77.875959, 155.751917 - -3.000000, 311.683895, 77.920974, 155.841947 - -3.000000, 311.863955, 77.965989, 155.931977 - -3.000000, 312.044015, 78.011004, 156.022007 - -3.000000, 312.224075, 78.056019, 156.112037 - -3.000000, 312.404135, 78.101034, 156.202067 - -3.000000, 312.584195, 78.146049, 156.292097 - -3.000000, 312.764255, 78.191064, 156.382127 - -3.000000, 312.944315, 78.236079, 156.472157 - -3.000000, 313.124375, 78.281094, 156.562187 - -3.000000, 313.304435, 78.326109, 156.652217 - -3.000000, 313.484495, 78.371124, 156.742247 - -3.000000, 313.664555, 78.416139, 156.832277 - -3.000000, 313.844615, 78.461154, 156.922307 - -3.000000, 314.024675, 78.506169, 157.012337 - -3.000000, 314.204735, 78.551184, 157.102367 - -3.000000, 314.384795, 78.596199, 157.192397 - -3.000000, 314.564855, 78.641214, 157.282427 - -3.000000, 314.744915, 78.686229, 157.372457 - -3.000000, 314.924975, 78.731244, 157.462487 - -3.000000, 315.105035, 78.776259, 157.552518 - -3.000000, 315.285095, 78.821274, 157.642548 - -3.000000, 315.465155, 78.866289, 157.732578 - -3.000000, 315.645215, 78.911304, 157.822608 - -3.000000, 315.825275, 78.956319, 157.912638 - -3.000000, 316.005335, 79.001334, 158.002668 - -3.000000, 316.185395, 79.046349, 158.092698 - -3.000000, 316.365455, 79.091364, 158.182728 - -3.000000, 316.545515, 79.136379, 158.272758 - -3.000000, 316.725575, 79.181394, 158.362788 - -3.000000, 316.905635, 79.226409, 158.452818 - -3.000000, 317.085695, 79.271424, 158.542848 - -3.000000, 317.265755, 79.316439, 158.632878 - -3.000000, 317.445815, 79.361454, 158.722908 - -3.000000, 317.625875, 79.406469, 158.812938 - -3.000000, 317.805935, 79.451484, 158.902968 - -3.000000, 317.985995, 79.496499, 158.992998 - -3.000000, 318.166055, 79.541514, 159.083028 - -3.000000, 318.346115, 79.586529, 159.173058 - -3.000000, 318.526175, 79.631544, 159.263088 - -3.000000, 318.706235, 79.676559, 159.353118 - -3.000000, 318.886295, 79.721574, 159.443148 - -3.000000, 319.066355, 79.766589, 159.533178 - -3.000000, 319.246415, 79.811604, 159.623208 - -3.000000, 319.426475, 79.856619, 159.713238 - -3.000000, 319.606536, 79.901634, 159.803268 - -3.000000, 319.786596, 79.946649, 159.893298 - -3.000000, 319.966656, 79.991664, 159.983328 - -3.000000, 320.146716, 80.036679, 160.073358 - -3.000000, 320.326776, 80.081694, 160.163388 - -3.000000, 320.506836, 80.126709, 160.253418 - -3.000000, 320.686896, 80.171724, 160.343448 - -3.000000, 320.866956, 80.216739, 160.433478 - -3.000000, 321.047016, 80.261754, 160.523508 - -3.000000, 321.227076, 80.306769, 160.613538 - -3.000000, 321.407136, 80.351784, 160.703568 - -3.000000, 321.587196, 80.396799, 160.793598 - -3.000000, 321.767256, 80.441814, 160.883628 - -3.000000, 321.947316, 80.486829, 160.973658 - -3.000000, 322.127376, 80.531844, 161.063688 - -3.000000, 322.307436, 80.576859, 161.153718 - -3.000000, 322.487496, 80.621874, 161.243748 - -3.000000, 322.667556, 80.666889, 161.333778 - -3.000000, 322.847616, 80.711904, 161.423808 - -3.000000, 323.027676, 80.756919, 161.513838 - -3.000000, 323.207736, 80.801934, 161.603868 - -3.000000, 323.387796, 80.846949, 161.693898 - -3.000000, 323.567856, 80.891964, 161.783928 - -3.000000, 323.747916, 80.936979, 161.873958 - -3.000000, 323.927976, 80.981994, 161.963988 - -3.000000, 324.108036, 81.027009, 162.054018 - -3.000000, 324.288096, 81.072024, 162.144048 - -3.000000, 324.468156, 81.117039, 162.234078 - -3.000000, 324.648216, 81.162054, 162.324108 - -3.000000, 324.828276, 81.207069, 162.414138 - -3.000000, 325.008336, 81.252084, 162.504168 - -3.000000, 325.188396, 81.297099, 162.594198 - -3.000000, 325.368456, 81.342114, 162.684228 - -3.000000, 325.548516, 81.387129, 162.774258 - -3.000000, 325.728576, 81.432144, 162.864288 - -3.000000, 325.908636, 81.477159, 162.954318 - -3.000000, 326.088696, 81.522174, 163.044348 - -3.000000, 326.268756, 81.567189, 163.134378 - -3.000000, 326.448816, 81.612204, 163.224408 - -3.000000, 326.628876, 81.657219, 163.314438 - -3.000000, 326.808936, 81.702234, 163.404468 - -3.000000, 326.988996, 81.747249, 163.494498 - -3.000000, 327.169056, 81.792264, 163.584528 - -3.000000, 327.349116, 81.837279, 163.674558 - -3.000000, 327.529176, 81.882294, 163.764588 - -3.000000, 327.709236, 81.927309, 163.854618 - -3.000000, 327.889296, 81.972324, 163.944648 - -3.000000, 328.069356, 82.017339, 164.034678 - -3.000000, 328.249416, 82.062354, 164.124708 - -3.000000, 328.429476, 82.107369, 164.214738 - -3.000000, 328.609537, 82.152384, 164.304768 - -3.000000, 328.789597, 82.197399, 164.394798 - -3.000000, 328.969657, 82.242414, 164.484828 - -3.000000, 329.149717, 82.287429, 164.574858 - -3.000000, 329.329777, 82.332444, 164.664888 - -3.000000, 329.509837, 82.377459, 164.754918 - -3.000000, 329.689897, 82.422474, 164.844948 - -3.000000, 329.869957, 82.467489, 164.934978 - -3.000000, 330.050017, 82.512504, 165.025008 - -3.000000, 330.230077, 82.557519, 165.115038 - -3.000000, 330.410137, 82.602534, 165.205068 - -3.000000, 330.590197, 82.647549, 165.295098 - -3.000000, 330.770257, 82.692564, 165.385128 - -3.000000, 330.950317, 82.737579, 165.475158 - -3.000000, 331.130377, 82.782594, 165.565188 - -3.000000, 331.310437, 82.827609, 165.655218 - -3.000000, 331.490497, 82.872624, 165.745248 - -3.000000, 331.670557, 82.917639, 165.835278 - -3.000000, 331.850617, 82.962654, 165.925308 - -3.000000, 332.030677, 83.007669, 166.015338 - -3.000000, 332.210737, 83.052684, 166.105368 - -3.000000, 332.390797, 83.097699, 166.195398 - -3.000000, 332.570857, 83.142714, 166.285428 - -3.000000, 332.750917, 83.187729, 166.375458 - -3.000000, 332.930977, 83.232744, 166.465488 - -3.000000, 333.111037, 83.277759, 166.555519 - -3.000000, 333.291097, 83.322774, 166.645549 - -3.000000, 333.471157, 83.367789, 166.735579 - -3.000000, 333.651217, 83.412804, 166.825609 - -3.000000, 333.831277, 83.457819, 166.915639 - -3.000000, 334.011337, 83.502834, 167.005669 - -3.000000, 334.191397, 83.547849, 167.095699 - -3.000000, 334.371457, 83.592864, 167.185729 - -3.000000, 334.551517, 83.637879, 167.275759 - -3.000000, 334.731577, 83.682894, 167.365789 - -3.000000, 334.911637, 83.727909, 167.455819 - -3.000000, 335.091697, 83.772924, 167.545849 - -3.000000, 335.271757, 83.817939, 167.635879 - -3.000000, 335.451817, 83.862954, 167.725909 - -3.000000, 335.631877, 83.907969, 167.815939 - -3.000000, 335.811937, 83.952984, 167.905969 - -3.000000, 335.991997, 83.997999, 167.995999 - -3.000000, 336.172057, 84.043014, 168.086029 - -3.000000, 336.352117, 84.088029, 168.176059 - -3.000000, 336.532177, 84.133044, 168.266089 - -3.000000, 336.712237, 84.178059, 168.356119 - -3.000000, 336.892297, 84.223074, 168.446149 - -3.000000, 337.072357, 84.268089, 168.536179 - -3.000000, 337.252417, 84.313104, 168.626209 - -3.000000, 337.432477, 84.358119, 168.716239 - -3.000000, 337.612538, 84.403134, 168.806269 - -3.000000, 337.792598, 84.448149, 168.896299 - -3.000000, 337.972658, 84.493164, 168.986329 - -3.000000, 338.152718, 84.538179, 169.076359 - -3.000000, 338.332778, 84.583194, 169.166389 - -3.000000, 338.512838, 84.628209, 169.256419 - -3.000000, 338.692898, 84.673224, 169.346449 - -3.000000, 338.872958, 84.718239, 169.436479 - -3.000000, 339.053018, 84.763254, 169.526509 - -3.000000, 339.233078, 84.808269, 169.616539 - -3.000000, 339.413138, 84.853284, 169.706569 - -3.000000, 339.593198, 84.898299, 169.796599 - -3.000000, 339.773258, 84.943314, 169.886629 - -3.000000, 339.953318, 84.988329, 169.976659 - -3.000000, 340.133378, 85.033344, 170.066689 - -3.000000, 340.313438, 85.078359, 170.156719 - -3.000000, 340.493498, 85.123374, 170.246749 - -3.000000, 340.673558, 85.168389, 170.336779 - -3.000000, 340.853618, 85.213404, 170.426809 - -3.000000, 341.033678, 85.258419, 170.516839 - -3.000000, 341.213738, 85.303434, 170.606869 - -3.000000, 341.393798, 85.348449, 170.696899 - -3.000000, 341.573858, 85.393464, 170.786929 - -3.000000, 341.753918, 85.438479, 170.876959 - -3.000000, 341.933978, 85.483494, 170.966989 - -3.000000, 342.114038, 85.528510, 171.057019 - -3.000000, 342.294098, 85.573525, 171.147049 - -3.000000, 342.474158, 85.618540, 171.237079 - -3.000000, 342.654218, 85.663555, 171.327109 - -3.000000, 342.834278, 85.708570, 171.417139 - -3.000000, 343.014338, 85.753585, 171.507169 - -3.000000, 343.194398, 85.798600, 171.597199 - -3.000000, 343.374458, 85.843615, 171.687229 - -3.000000, 343.554518, 85.888630, 171.777259 - -3.000000, 343.734578, 85.933645, 171.867289 - -3.000000, 343.914638, 85.978660, 171.957319 - -3.000000, 344.094698, 86.023675, 172.047349 - -3.000000, 344.274758, 86.068690, 172.137379 - -3.000000, 344.454818, 86.113705, 172.227409 - -3.000000, 344.634878, 86.158720, 172.317439 - -3.000000, 344.814938, 86.203735, 172.407469 - -3.000000, 344.994998, 86.248750, 172.497499 - -3.000000, 345.175058, 86.293765, 172.587529 - -3.000000, 345.355118, 86.338780, 172.677559 - -3.000000, 345.535178, 86.383795, 172.767589 - -3.000000, 345.715238, 86.428810, 172.857619 - -3.000000, 345.895298, 86.473825, 172.947649 - -3.000000, 346.075358, 86.518840, 173.037679 - -3.000000, 346.255418, 86.563855, 173.127709 - -3.000000, 346.435478, 86.608870, 173.217739 - -3.000000, 346.615539, 86.653885, 173.307769 - -3.000000, 346.795599, 86.698900, 173.397799 - -3.000000, 346.975659, 86.743915, 173.487829 - -3.000000, 347.155719, 86.788930, 173.577859 - -3.000000, 347.335779, 86.833945, 173.667889 - -3.000000, 347.515839, 86.878960, 173.757919 - -3.000000, 347.695899, 86.923975, 173.847949 - -3.000000, 347.875959, 86.968990, 173.937979 - -3.000000, 348.056019, 87.014005, 174.028009 - -3.000000, 348.236079, 87.059020, 174.118039 - -3.000000, 348.416139, 87.104035, 174.208069 - -3.000000, 348.596199, 87.149050, 174.298099 - -3.000000, 348.776259, 87.194065, 174.388129 - -3.000000, 348.956319, 87.239080, 174.478159 - -3.000000, 349.136379, 87.284095, 174.568189 - -3.000000, 349.316439, 87.329110, 174.658219 - -3.000000, 349.496499, 87.374125, 174.748249 - -3.000000, 349.676559, 87.419140, 174.838279 - -3.000000, 349.856619, 87.464155, 174.928309 - -3.000000, 350.036679, 87.509170, 175.018339 - -3.000000, 350.216739, 87.554185, 175.108369 - -3.000000, 350.396799, 87.599200, 175.198399 - -3.000000, 350.576859, 87.644215, 175.288429 - -3.000000, 350.756919, 87.689230, 175.378459 - -3.000000, 350.936979, 87.734245, 175.468489 - -3.000000, 351.117039, 87.779260, 175.558520 - -3.000000, 351.297099, 87.824275, 175.648550 - -3.000000, 351.477159, 87.869290, 175.738580 - -3.000000, 351.657219, 87.914305, 175.828610 - -3.000000, 351.837279, 87.959320, 175.918640 - -3.000000, 352.017339, 88.004335, 176.008670 - -3.000000, 352.197399, 88.049350, 176.098700 - -3.000000, 352.377459, 88.094365, 176.188730 - -3.000000, 352.557519, 88.139380, 176.278760 - -3.000000, 352.737579, 88.184395, 176.368790 - -3.000000, 352.917639, 88.229410, 176.458820 - -3.000000, 353.097699, 88.274425, 176.548850 - -3.000000, 353.277759, 88.319440, 176.638880 - -3.000000, 353.457819, 88.364455, 176.728910 - -3.000000, 353.637879, 88.409470, 176.818940 - -3.000000, 353.817939, 88.454485, 176.908970 - -3.000000, 353.997999, 88.499500, 176.999000 - -3.000000, 354.178059, 88.544515, 177.089030 - -3.000000, 354.358119, 88.589530, 177.179060 - -3.000000, 354.538179, 88.634545, 177.269090 - -3.000000, 354.718239, 88.679560, 177.359120 - -3.000000, 354.898299, 88.724575, 177.449150 - -3.000000, 355.078359, 88.769590, 177.539180 - -3.000000, 355.258419, 88.814605, 177.629210 - -3.000000, 355.438479, 88.859620, 177.719240 - -3.000000, 355.618540, 88.904635, 177.809270 - -3.000000, 355.798600, 88.949650, 177.899300 - -3.000000, 355.978660, 88.994665, 177.989330 - -3.000000, 356.158720, 89.039680, 178.079360 - -3.000000, 356.338780, 89.084695, 178.169390 - -3.000000, 356.518840, 89.129710, 178.259420 - -3.000000, 356.698900, 89.174725, 178.349450 - -3.000000, 356.878960, 89.219740, 178.439480 - -3.000000, 357.059020, 89.264755, 178.529510 - -3.000000, 357.239080, 89.309770, 178.619540 - -3.000000, 357.419140, 89.354785, 178.709570 - -3.000000, 357.599200, 89.399800, 178.799600 - -3.000000, 357.779260, 89.444815, 178.889630 - -3.000000, 357.959320, 89.489830, 178.979660 - -3.000000, 358.139380, 89.534845, 179.069690 - -3.000000, 358.319440, 89.579860, 179.159720 - -3.000000, 358.499500, 89.624875, 179.249750 - -3.000000, 358.679560, 89.669890, 179.339780 - -3.000000, 358.859620, 89.714905, 179.429810 - -3.000000, 359.039680, 89.759920, 179.519840 - -3.000000, 359.219740, 89.804935, 179.609870 - -3.000000, 359.399800, 89.849950, 179.699900 - -3.000000, 359.579860, 89.894965, 179.789930 - -3.000000, 359.759920, 89.939980, 179.879960 - -3.000000, 359.939980, 89.984995, 179.969990 - -3.000000, 360.120040, 90.030010, 180.060020 - -3.000000, 360.300100, 90.075025, 180.150050 - -3.000000, 360.480160, 90.120040, 180.240080 - -3.000000, 360.660220, 90.165055, 180.330110 - -3.000000, 360.840280, 90.210070, 180.420140 - -3.000000, 361.020340, 90.255085, 180.510170 - -3.000000, 361.200400, 90.300100, 180.600200 - -3.000000, 361.380460, 90.345115, 180.690230 - -3.000000, 361.560520, 90.390130, 180.780260 - -3.000000, 361.740580, 90.435145, 180.870290 - -3.000000, 361.920640, 90.480160, 180.960320 - -3.000000, 362.100700, 90.525175, 181.050350 - -3.000000, 362.280760, 90.570190, 181.140380 - -3.000000, 362.460820, 90.615205, 181.230410 - -3.000000, 362.640880, 90.660220, 181.320440 - -3.000000, 362.820940, 90.705235, 181.410470 - -3.000000, 363.001000, 90.750250, 181.500500 - -3.000000, 363.181060, 90.795265, 181.590530 - -3.000000, 363.361120, 90.840280, 181.680560 - -3.000000, 363.541180, 90.885295, 181.770590 - -3.000000, 363.721240, 90.930310, 181.860620 - -3.000000, 363.901300, 90.975325, 181.950650 - -3.000000, 364.081360, 91.020340, 182.040680 - -3.000000, 364.261420, 91.065355, 182.130710 - -3.000000, 364.441480, 91.110370, 182.220740 - -3.000000, 364.621541, 91.155385, 182.310770 - -3.000000, 364.801601, 91.200400, 182.400800 - -3.000000, 364.981661, 91.245415, 182.490830 - -3.000000, 365.161721, 91.290430, 182.580860 - -3.000000, 365.341781, 91.335445, 182.670890 - -3.000000, 365.521841, 91.380460, 182.760920 - -3.000000, 365.701901, 91.425475, 182.850950 - -3.000000, 365.881961, 91.470490, 182.940980 - -3.000000, 366.062021, 91.515505, 183.031010 - -3.000000, 366.242081, 91.560520, 183.121040 - -3.000000, 366.422141, 91.605535, 183.211070 - -3.000000, 366.602201, 91.650550, 183.301100 - -3.000000, 366.782261, 91.695565, 183.391130 - -3.000000, 366.962321, 91.740580, 183.481160 - -3.000000, 367.142381, 91.785595, 183.571190 - -3.000000, 367.322441, 91.830610, 183.661220 - -3.000000, 367.502501, 91.875625, 183.751250 - -3.000000, 367.682561, 91.920640, 183.841280 - -3.000000, 367.862621, 91.965655, 183.931310 - -3.000000, 368.042681, 92.010670, 184.021340 - -3.000000, 368.222741, 92.055685, 184.111370 - -3.000000, 368.402801, 92.100700, 184.201400 - -3.000000, 368.582861, 92.145715, 184.291430 - -3.000000, 368.762921, 92.190730, 184.381460 - -3.000000, 368.942981, 92.235745, 184.471490 - -3.000000, 369.123041, 92.280760, 184.561521 - -3.000000, 369.303101, 92.325775, 184.651551 - -3.000000, 369.483161, 92.370790, 184.741581 - -3.000000, 369.663221, 92.415805, 184.831611 - -3.000000, 369.843281, 92.460820, 184.921641 - -3.000000, 370.023341, 92.505835, 185.011671 - -3.000000, 370.203401, 92.550850, 185.101701 - -3.000000, 370.383461, 92.595865, 185.191731 - -3.000000, 370.563521, 92.640880, 185.281761 - -3.000000, 370.743581, 92.685895, 185.371791 - -3.000000, 370.923641, 92.730910, 185.461821 - -3.000000, 371.103701, 92.775925, 185.551851 - -3.000000, 371.283761, 92.820940, 185.641881 - -3.000000, 371.463821, 92.865955, 185.731911 - -3.000000, 371.643881, 92.910970, 185.821941 - -3.000000, 371.823941, 92.955985, 185.911971 - -3.000000, 372.004001, 93.001000, 186.002001 - -3.000000, 372.184061, 93.046015, 186.092031 - -3.000000, 372.364121, 93.091030, 186.182061 - -3.000000, 372.544181, 93.136045, 186.272091 - -3.000000, 372.724241, 93.181060, 186.362121 - -3.000000, 372.904301, 93.226075, 186.452151 - -3.000000, 373.084361, 93.271090, 186.542181 - -3.000000, 373.264421, 93.316105, 186.632211 - -3.000000, 373.444481, 93.361120, 186.722241 - -3.000000, 373.624542, 93.406135, 186.812271 - -3.000000, 373.804602, 93.451150, 186.902301 - -3.000000, 373.984662, 93.496165, 186.992331 - -3.000000, 374.164722, 93.541180, 187.082361 - -3.000000, 374.344782, 93.586195, 187.172391 - -3.000000, 374.524842, 93.631210, 187.262421 - -3.000000, 374.704902, 93.676225, 187.352451 - -3.000000, 374.884962, 93.721240, 187.442481 - -3.000000, 375.065022, 93.766255, 187.532511 - -3.000000, 375.245082, 93.811270, 187.622541 - -3.000000, 375.425142, 93.856285, 187.712571 - -3.000000, 375.605202, 93.901300, 187.802601 - -3.000000, 375.785262, 93.946315, 187.892631 - -3.000000, 375.965322, 93.991330, 187.982661 - -3.000000, 376.145382, 94.036345, 188.072691 - -3.000000, 376.325442, 94.081360, 188.162721 - -3.000000, 376.505502, 94.126375, 188.252751 - -3.000000, 376.685562, 94.171390, 188.342781 - -3.000000, 376.865622, 94.216405, 188.432811 - -3.000000, 377.045682, 94.261420, 188.522841 - -3.000000, 377.225742, 94.306435, 188.612871 - -3.000000, 377.405802, 94.351450, 188.702901 - -3.000000, 377.585862, 94.396465, 188.792931 - -3.000000, 377.765922, 94.441480, 188.882961 - -3.000000, 377.945982, 94.486495, 188.972991 - -3.000000, 378.126042, 94.531511, 189.063021 - -3.000000, 378.306102, 94.576526, 189.153051 - -3.000000, 378.486162, 94.621541, 189.243081 - -3.000000, 378.666222, 94.666556, 189.333111 - -3.000000, 378.846282, 94.711571, 189.423141 - -3.000000, 379.026342, 94.756586, 189.513171 - -3.000000, 379.206402, 94.801601, 189.603201 - -3.000000, 379.386462, 94.846616, 189.693231 - -3.000000, 379.566522, 94.891631, 189.783261 - -3.000000, 379.746582, 94.936646, 189.873291 - -3.000000, 379.926642, 94.981661, 189.963321 - -3.000000, 380.106702, 95.026676, 190.053351 - -3.000000, 380.286762, 95.071691, 190.143381 - -3.000000, 380.466822, 95.116706, 190.233411 - -3.000000, 380.646882, 95.161721, 190.323441 - -3.000000, 380.826942, 95.206736, 190.413471 - -3.000000, 381.007002, 95.251751, 190.503501 - -3.000000, 381.187062, 95.296766, 190.593531 - -3.000000, 381.367122, 95.341781, 190.683561 - -3.000000, 381.547182, 95.386796, 190.773591 - -3.000000, 381.727242, 95.431811, 190.863621 - -3.000000, 381.907302, 95.476826, 190.953651 - -3.000000, 382.087362, 95.521841, 191.043681 - -3.000000, 382.267422, 95.566856, 191.133711 - -3.000000, 382.447482, 95.611871, 191.223741 - -3.000000, 382.627543, 95.656886, 191.313771 - -3.000000, 382.807603, 95.701901, 191.403801 - -3.000000, 382.987663, 95.746916, 191.493831 - -3.000000, 383.167723, 95.791931, 191.583861 - -3.000000, 383.347783, 95.836946, 191.673891 - -3.000000, 383.527843, 95.881961, 191.763921 - -3.000000, 383.707903, 95.926976, 191.853951 - -3.000000, 383.887963, 95.971991, 191.943981 - -3.000000, 384.068023, 96.017006, 192.034011 - -3.000000, 384.248083, 96.062021, 192.124041 - -3.000000, 384.428143, 96.107036, 192.214071 - -3.000000, 384.608203, 96.152051, 192.304101 - -3.000000, 384.788263, 96.197066, 192.394131 - -3.000000, 384.968323, 96.242081, 192.484161 - -3.000000, 385.148383, 96.287096, 192.574191 - -3.000000, 385.328443, 96.332111, 192.664221 - -3.000000, 385.508503, 96.377126, 192.754251 - -3.000000, 385.688563, 96.422141, 192.844281 - -3.000000, 385.868623, 96.467156, 192.934311 - -3.000000, 386.048683, 96.512171, 193.024341 - -3.000000, 386.228743, 96.557186, 193.114371 - -3.000000, 386.408803, 96.602201, 193.204401 - -3.000000, 386.588863, 96.647216, 193.294431 - -3.000000, 386.768923, 96.692231, 193.384461 - -3.000000, 386.948983, 96.737246, 193.474491 - -3.000000, 387.129043, 96.782261, 193.564522 - -3.000000, 387.309103, 96.827276, 193.654552 - -3.000000, 387.489163, 96.872291, 193.744582 - -3.000000, 387.669223, 96.917306, 193.834612 - -3.000000, 387.849283, 96.962321, 193.924642 - -3.000000, 388.029343, 97.007336, 194.014672 - -3.000000, 388.209403, 97.052351, 194.104702 - -3.000000, 388.389463, 97.097366, 194.194732 - -3.000000, 388.569523, 97.142381, 194.284762 - -3.000000, 388.749583, 97.187396, 194.374792 - -3.000000, 388.929643, 97.232411, 194.464822 - -3.000000, 389.109703, 97.277426, 194.554852 - -3.000000, 389.289763, 97.322441, 194.644882 - -3.000000, 389.469823, 97.367456, 194.734912 - -3.000000, 389.649883, 97.412471, 194.824942 - -3.000000, 389.829943, 97.457486, 194.914972 - -3.000000, 390.010003, 97.502501, 195.005002 - -3.000000, 390.190063, 97.547516, 195.095032 - -3.000000, 390.370123, 97.592531, 195.185062 - -3.000000, 390.550183, 97.637546, 195.275092 - -3.000000, 390.730243, 97.682561, 195.365122 - -3.000000, 390.910303, 97.727576, 195.455152 - -3.000000, 391.090363, 97.772591, 195.545182 - -3.000000, 391.270423, 97.817606, 195.635212 - -3.000000, 391.450483, 97.862621, 195.725242 - -3.000000, 391.630544, 97.907636, 195.815272 - -3.000000, 391.810604, 97.952651, 195.905302 - -3.000000, 391.990664, 97.997666, 195.995332 - -3.000000, 392.170724, 98.042681, 196.085362 - -3.000000, 392.350784, 98.087696, 196.175392 - -3.000000, 392.530844, 98.132711, 196.265422 - -3.000000, 392.710904, 98.177726, 196.355452 - -3.000000, 392.890964, 98.222741, 196.445482 - -3.000000, 393.071024, 98.267756, 196.535512 - -3.000000, 393.251084, 98.312771, 196.625542 - -3.000000, 393.431144, 98.357786, 196.715572 - -3.000000, 393.611204, 98.402801, 196.805602 - -3.000000, 393.791264, 98.447816, 196.895632 - -3.000000, 393.971324, 98.492831, 196.985662 - -3.000000, 394.151384, 98.537846, 197.075692 - -3.000000, 394.331444, 98.582861, 197.165722 - -3.000000, 394.511504, 98.627876, 197.255752 - -3.000000, 394.691564, 98.672891, 197.345782 - -3.000000, 394.871624, 98.717906, 197.435812 - -3.000000, 395.051684, 98.762921, 197.525842 - -3.000000, 395.231744, 98.807936, 197.615872 - -3.000000, 395.411804, 98.852951, 197.705902 - -3.000000, 395.591864, 98.897966, 197.795932 - -3.000000, 395.771924, 98.942981, 197.885962 - -3.000000, 395.951984, 98.987996, 197.975992 - -3.000000, 396.132044, 99.033011, 198.066022 - -3.000000, 396.312104, 99.078026, 198.156052 - -3.000000, 396.492164, 99.123041, 198.246082 - -3.000000, 396.672224, 99.168056, 198.336112 - -3.000000, 396.852284, 99.213071, 198.426142 - -3.000000, 397.032344, 99.258086, 198.516172 - -3.000000, 397.212404, 99.303101, 198.606202 - -3.000000, 397.392464, 99.348116, 198.696232 - -3.000000, 397.572524, 99.393131, 198.786262 - -3.000000, 397.752584, 99.438146, 198.876292 - -3.000000, 397.932644, 99.483161, 198.966322 - -3.000000, 398.112704, 99.528176, 199.056352 - -3.000000, 398.292764, 99.573191, 199.146382 - -3.000000, 398.472824, 99.618206, 199.236412 - -3.000000, 398.652884, 99.663221, 199.326442 - -3.000000, 398.832944, 99.708236, 199.416472 - -3.000000, 399.013004, 99.753251, 199.506502 - -3.000000, 399.193064, 99.798266, 199.596532 - -3.000000, 399.373124, 99.843281, 199.686562 - -3.000000, 399.553184, 99.888296, 199.776592 - -3.000000, 399.733244, 99.933311, 199.866622 - -3.000000, 399.913304, 99.978326, 199.956652 - -3.000000, 400.093364, 100.023341, 200.046682 - -3.000000, 400.273424, 100.068356, 200.136712 - -3.000000, 400.453484, 100.113371, 200.226742 - -3.000000, 400.633545, 100.158386, 200.316772 - -3.000000, 400.813605, 100.203401, 200.406802 - -3.000000, 400.993665, 100.248416, 200.496832 - -3.000000, 401.173725, 100.293431, 200.586862 - -3.000000, 401.353785, 100.338446, 200.676892 - -3.000000, 401.533845, 100.383461, 200.766922 - -3.000000, 401.713905, 100.428476, 200.856952 - -3.000000, 401.893965, 100.473491, 200.946982 - -3.000000, 402.074025, 100.518506, 201.037012 - -3.000000, 402.254085, 100.563521, 201.127042 - -3.000000, 402.434145, 100.608536, 201.217072 - -3.000000, 402.614205, 100.653551, 201.307102 - -3.000000, 402.794265, 100.698566, 201.397132 - -3.000000, 402.974325, 100.743581, 201.487162 - -3.000000, 403.154385, 100.788596, 201.577192 - -3.000000, 403.334445, 100.833611, 201.667222 - -3.000000, 403.514505, 100.878626, 201.757252 - -3.000000, 403.694565, 100.923641, 201.847282 - -3.000000, 403.874625, 100.968656, 201.937312 - -3.000000, 404.054685, 101.013671, 202.027342 - -3.000000, 404.234745, 101.058686, 202.117372 - -3.000000, 404.414805, 101.103701, 202.207402 - -3.000000, 404.594865, 101.148716, 202.297432 - -3.000000, 404.774925, 101.193731, 202.387462 - -3.000000, 404.954985, 101.238746, 202.477492 - -3.000000, 405.135045, 101.283761, 202.567523 - -3.000000, 405.315105, 101.328776, 202.657553 - -3.000000, 405.495165, 101.373791, 202.747583 - -3.000000, 405.675225, 101.418806, 202.837613 - -3.000000, 405.855285, 101.463821, 202.927643 - -3.000000, 406.035345, 101.508836, 203.017673 - -3.000000, 406.215405, 101.553851, 203.107703 - -3.000000, 406.395465, 101.598866, 203.197733 - -3.000000, 406.575525, 101.643881, 203.287763 - -3.000000, 406.755585, 101.688896, 203.377793 - -3.000000, 406.935645, 101.733911, 203.467823 - -3.000000, 407.115705, 101.778926, 203.557853 - -3.000000, 407.295765, 101.823941, 203.647883 - -3.000000, 407.475825, 101.868956, 203.737913 - -3.000000, 407.655885, 101.913971, 203.827943 - -3.000000, 407.835945, 101.958986, 203.917973 - -3.000000, 408.016005, 102.004001, 204.008003 - -3.000000, 408.196065, 102.049016, 204.098033 - -3.000000, 408.376125, 102.094031, 204.188063 - -3.000000, 408.556185, 102.139046, 204.278093 - -3.000000, 408.736245, 102.184061, 204.368123 - -3.000000, 408.916305, 102.229076, 204.458153 - -3.000000, 409.096365, 102.274091, 204.548183 - -3.000000, 409.276425, 102.319106, 204.638213 - -3.000000, 409.456485, 102.364121, 204.728243 - -3.000000, 409.636546, 102.409136, 204.818273 - -3.000000, 409.816606, 102.454151, 204.908303 - -3.000000, 409.996666, 102.499166, 204.998333 - -3.000000, 410.176726, 102.544181, 205.088363 - -3.000000, 410.356786, 102.589196, 205.178393 - -3.000000, 410.536846, 102.634211, 205.268423 - -3.000000, 410.716906, 102.679226, 205.358453 - -3.000000, 410.896966, 102.724241, 205.448483 - -3.000000, 411.077026, 102.769256, 205.538513 - -3.000000, 411.257086, 102.814271, 205.628543 - -3.000000, 411.437146, 102.859286, 205.718573 - -3.000000, 411.617206, 102.904301, 205.808603 - -3.000000, 411.797266, 102.949316, 205.898633 - -3.000000, 411.977326, 102.994331, 205.988663 - -3.000000, 412.157386, 103.039346, 206.078693 - -3.000000, 412.337446, 103.084361, 206.168723 - -3.000000, 412.517506, 103.129376, 206.258753 - -3.000000, 412.697566, 103.174391, 206.348783 - -3.000000, 412.877626, 103.219406, 206.438813 - -3.000000, 413.057686, 103.264421, 206.528843 - -3.000000, 413.237746, 103.309436, 206.618873 - -3.000000, 413.417806, 103.354451, 206.708903 - -3.000000, 413.597866, 103.399466, 206.798933 - -3.000000, 413.777926, 103.444481, 206.888963 - -3.000000, 413.957986, 103.489496, 206.978993 - -3.000000, 414.138046, 103.534512, 207.069023 - -3.000000, 414.318106, 103.579527, 207.159053 - -3.000000, 414.498166, 103.624542, 207.249083 - -3.000000, 414.678226, 103.669557, 207.339113 - -3.000000, 414.858286, 103.714572, 207.429143 - -3.000000, 415.038346, 103.759587, 207.519173 - -3.000000, 415.218406, 103.804602, 207.609203 - -3.000000, 415.398466, 103.849617, 207.699233 - -3.000000, 415.578526, 103.894632, 207.789263 - -3.000000, 415.758586, 103.939647, 207.879293 - -3.000000, 415.938646, 103.984662, 207.969323 - -3.000000, 416.118706, 104.029677, 208.059353 - -3.000000, 416.298766, 104.074692, 208.149383 - -3.000000, 416.478826, 104.119707, 208.239413 - -3.000000, 416.658886, 104.164722, 208.329443 - -3.000000, 416.838946, 104.209737, 208.419473 - -3.000000, 417.019006, 104.254752, 208.509503 - -3.000000, 417.199066, 104.299767, 208.599533 - -3.000000, 417.379126, 104.344782, 208.689563 - -3.000000, 417.559186, 104.389797, 208.779593 - -3.000000, 417.739246, 104.434812, 208.869623 - -3.000000, 417.919306, 104.479827, 208.959653 - -3.000000, 418.099366, 104.524842, 209.049683 - -3.000000, 418.279426, 104.569857, 209.139713 - -3.000000, 418.459486, 104.614872, 209.229743 - -3.000000, 418.639547, 104.659887, 209.319773 - -3.000000, 418.819607, 104.704902, 209.409803 - -3.000000, 418.999667, 104.749917, 209.499833 - -3.000000, 419.179727, 104.794932, 209.589863 - -3.000000, 419.359787, 104.839947, 209.679893 - -3.000000, 419.539847, 104.884962, 209.769923 - -3.000000, 419.719907, 104.929977, 209.859953 - -3.000000, 419.899967, 104.974992, 209.949983 - -3.000000, 420.080027, 105.020007, 210.040013 - -3.000000, 420.260087, 105.065022, 210.130043 - -3.000000, 420.440147, 105.110037, 210.220073 - -3.000000, 420.620207, 105.155052, 210.310103 - -3.000000, 420.800267, 105.200067, 210.400133 - -3.000000, 420.980327, 105.245082, 210.490163 - -3.000000, 421.160387, 105.290097, 210.580193 - -3.000000, 421.340447, 105.335112, 210.670223 - -3.000000, 421.520507, 105.380127, 210.760253 - -3.000000, 421.700567, 105.425142, 210.850283 - -3.000000, 421.880627, 105.470157, 210.940313 - -3.000000, 422.060687, 105.515172, 211.030343 - -3.000000, 422.240747, 105.560187, 211.120373 - -3.000000, 422.420807, 105.605202, 211.210403 - -3.000000, 422.600867, 105.650217, 211.300433 - -3.000000, 422.780927, 105.695232, 211.390463 - -3.000000, 422.960987, 105.740247, 211.480493 - -3.000000, 423.141047, 105.785262, 211.570524 - -3.000000, 423.321107, 105.830277, 211.660554 - -3.000000, 423.501167, 105.875292, 211.750584 - -3.000000, 423.681227, 105.920307, 211.840614 - -3.000000, 423.861287, 105.965322, 211.930644 - -3.000000, 424.041347, 106.010337, 212.020674 - -3.000000, 424.221407, 106.055352, 212.110704 - -3.000000, 424.401467, 106.100367, 212.200734 - -3.000000, 424.581527, 106.145382, 212.290764 - -3.000000, 424.761587, 106.190397, 212.380794 - -3.000000, 424.941647, 106.235412, 212.470824 - -3.000000, 425.121707, 106.280427, 212.560854 - -3.000000, 425.301767, 106.325442, 212.650884 - -3.000000, 425.481827, 106.370457, 212.740914 - -3.000000, 425.661887, 106.415472, 212.830944 - -3.000000, 425.841947, 106.460487, 212.920974 - -3.000000, 426.022007, 106.505502, 213.011004 - -3.000000, 426.202067, 106.550517, 213.101034 - -3.000000, 426.382127, 106.595532, 213.191064 - -3.000000, 426.562187, 106.640547, 213.281094 - -3.000000, 426.742247, 106.685562, 213.371124 - -3.000000, 426.922307, 106.730577, 213.461154 - -3.000000, 427.102367, 106.775592, 213.551184 - -3.000000, 427.282427, 106.820607, 213.641214 - -3.000000, 427.462487, 106.865622, 213.731244 - -3.000000, 427.642548, 106.910637, 213.821274 - -3.000000, 427.822608, 106.955652, 213.911304 - -3.000000, 428.002668, 107.000667, 214.001334 - -3.000000, 428.182728, 107.045682, 214.091364 - -3.000000, 428.362788, 107.090697, 214.181394 - -3.000000, 428.542848, 107.135712, 214.271424 - -3.000000, 428.722908, 107.180727, 214.361454 - -3.000000, 428.902968, 107.225742, 214.451484 - -3.000000, 429.083028, 107.270757, 214.541514 - -3.000000, 429.263088, 107.315772, 214.631544 - -3.000000, 429.443148, 107.360787, 214.721574 - -3.000000, 429.623208, 107.405802, 214.811604 - -3.000000, 429.803268, 107.450817, 214.901634 - -3.000000, 429.983328, 107.495832, 214.991664 - -3.000000, 430.163388, 107.540847, 215.081694 - -3.000000, 430.343448, 107.585862, 215.171724 - -3.000000, 430.523508, 107.630877, 215.261754 - -3.000000, 430.703568, 107.675892, 215.351784 - -3.000000, 430.883628, 107.720907, 215.441814 - -3.000000, 431.063688, 107.765922, 215.531844 - -3.000000, 431.243748, 107.810937, 215.621874 - -3.000000, 431.423808, 107.855952, 215.711904 - -3.000000, 431.603868, 107.900967, 215.801934 - -3.000000, 431.783928, 107.945982, 215.891964 - -3.000000, 431.963988, 107.990997, 215.981994 - -3.000000, 432.144048, 108.036012, 216.072024 - -3.000000, 432.324108, 108.081027, 216.162054 - -3.000000, 432.504168, 108.126042, 216.252084 - -3.000000, 432.684228, 108.171057, 216.342114 - -3.000000, 432.864288, 108.216072, 216.432144 - -3.000000, 433.044348, 108.261087, 216.522174 - -3.000000, 433.224408, 108.306102, 216.612204 - -3.000000, 433.404468, 108.351117, 216.702234 - -3.000000, 433.584528, 108.396132, 216.792264 - -3.000000, 433.764588, 108.441147, 216.882294 - -3.000000, 433.944648, 108.486162, 216.972324 - -3.000000, 434.124708, 108.531177, 217.062354 - -3.000000, 434.304768, 108.576192, 217.152384 - -3.000000, 434.484828, 108.621207, 217.242414 - -3.000000, 434.664888, 108.666222, 217.332444 - -3.000000, 434.844948, 108.711237, 217.422474 - -3.000000, 435.025008, 108.756252, 217.512504 - -3.000000, 435.205068, 108.801267, 217.602534 - -3.000000, 435.385128, 108.846282, 217.692564 - -3.000000, 435.565188, 108.891297, 217.782594 - -3.000000, 435.745248, 108.936312, 217.872624 - -3.000000, 435.925308, 108.981327, 217.962654 - -3.000000, 436.105368, 109.026342, 218.052684 - -3.000000, 436.285428, 109.071357, 218.142714 - -3.000000, 436.465488, 109.116372, 218.232744 - -3.000000, 436.645549, 109.161387, 218.322774 - -3.000000, 436.825609, 109.206402, 218.412804 - -3.000000, 437.005669, 109.251417, 218.502834 - -3.000000, 437.185729, 109.296432, 218.592864 - -3.000000, 437.365789, 109.341447, 218.682894 - -3.000000, 437.545849, 109.386462, 218.772924 - -3.000000, 437.725909, 109.431477, 218.862954 - -3.000000, 437.905969, 109.476492, 218.952984 - -3.000000, 438.086029, 109.521507, 219.043014 - -3.000000, 438.266089, 109.566522, 219.133044 - -3.000000, 438.446149, 109.611537, 219.223074 - -3.000000, 438.626209, 109.656552, 219.313104 - -3.000000, 438.806269, 109.701567, 219.403134 - -3.000000, 438.986329, 109.746582, 219.493164 - -3.000000, 439.166389, 109.791597, 219.583194 - -3.000000, 439.346449, 109.836612, 219.673224 - -3.000000, 439.526509, 109.881627, 219.763254 - -3.000000, 439.706569, 109.926642, 219.853284 - -3.000000, 439.886629, 109.971657, 219.943314 - -3.000000, 440.066689, 110.016672, 220.033344 - -3.000000, 440.246749, 110.061687, 220.123374 - -3.000000, 440.426809, 110.106702, 220.213404 - -3.000000, 440.606869, 110.151717, 220.303434 - -3.000000, 440.786929, 110.196732, 220.393464 - -3.000000, 440.966989, 110.241747, 220.483494 - -3.000000, 441.147049, 110.286762, 220.573525 - -3.000000, 441.327109, 110.331777, 220.663555 - -3.000000, 441.507169, 110.376792, 220.753585 - -3.000000, 441.687229, 110.421807, 220.843615 - -3.000000, 441.867289, 110.466822, 220.933645 - -3.000000, 442.047349, 110.511837, 221.023675 - -3.000000, 442.227409, 110.556852, 221.113705 - -3.000000, 442.407469, 110.601867, 221.203735 - -3.000000, 442.587529, 110.646882, 221.293765 - -3.000000, 442.767589, 110.691897, 221.383795 - -3.000000, 442.947649, 110.736912, 221.473825 - -3.000000, 443.127709, 110.781927, 221.563855 - -3.000000, 443.307769, 110.826942, 221.653885 - -3.000000, 443.487829, 110.871957, 221.743915 - -3.000000, 443.667889, 110.916972, 221.833945 - -3.000000, 443.847949, 110.961987, 221.923975 - -3.000000, 444.028009, 111.007002, 222.014005 - -3.000000, 444.208069, 111.052017, 222.104035 - -3.000000, 444.388129, 111.097032, 222.194065 - -3.000000, 444.568189, 111.142047, 222.284095 - -3.000000, 444.748249, 111.187062, 222.374125 - -3.000000, 444.928309, 111.232077, 222.464155 - -3.000000, 445.108369, 111.277092, 222.554185 - -3.000000, 445.288429, 111.322107, 222.644215 - -3.000000, 445.468489, 111.367122, 222.734245 - -3.000000, 445.648550, 111.412137, 222.824275 - -3.000000, 445.828610, 111.457152, 222.914305 - -3.000000, 446.008670, 111.502167, 223.004335 - -3.000000, 446.188730, 111.547182, 223.094365 - -3.000000, 446.368790, 111.592197, 223.184395 - -3.000000, 446.548850, 111.637212, 223.274425 - -3.000000, 446.728910, 111.682227, 223.364455 - -3.000000, 446.908970, 111.727242, 223.454485 - -3.000000, 447.089030, 111.772257, 223.544515 - -3.000000, 447.269090, 111.817272, 223.634545 - -3.000000, 447.449150, 111.862287, 223.724575 - -3.000000, 447.629210, 111.907302, 223.814605 - -3.000000, 447.809270, 111.952317, 223.904635 - -3.000000, 447.989330, 111.997332, 223.994665 - -3.000000, 448.169390, 112.042347, 224.084695 - -3.000000, 448.349450, 112.087362, 224.174725 - -3.000000, 448.529510, 112.132377, 224.264755 - -3.000000, 448.709570, 112.177392, 224.354785 - -3.000000, 448.889630, 112.222407, 224.444815 - -3.000000, 449.069690, 112.267422, 224.534845 - -3.000000, 449.249750, 112.312437, 224.624875 - -3.000000, 449.429810, 112.357452, 224.714905 - -3.000000, 449.609870, 112.402467, 224.804935 - -3.000000, 449.789930, 112.447482, 224.894965 - -3.000000, 449.969990, 112.492497, 224.984995 - -3.000000, 450.150050, 112.537513, 225.075025 - -3.000000, 450.330110, 112.582528, 225.165055 - -3.000000, 450.510170, 112.627543, 225.255085 - -3.000000, 450.690230, 112.672558, 225.345115 - -3.000000, 450.870290, 112.717573, 225.435145 - -3.000000, 451.050350, 112.762588, 225.525175 - -3.000000, 451.230410, 112.807603, 225.615205 - -3.000000, 451.410470, 112.852618, 225.705235 - -3.000000, 451.590530, 112.897633, 225.795265 - -3.000000, 451.770590, 112.942648, 225.885295 - -3.000000, 451.950650, 112.987663, 225.975325 - -3.000000, 452.130710, 113.032678, 226.065355 - -3.000000, 452.310770, 113.077693, 226.155385 - -3.000000, 452.490830, 113.122708, 226.245415 - -3.000000, 452.670890, 113.167723, 226.335445 - -3.000000, 452.850950, 113.212738, 226.425475 - -3.000000, 453.031010, 113.257753, 226.515505 - -3.000000, 453.211070, 113.302768, 226.605535 - -3.000000, 453.391130, 113.347783, 226.695565 - -3.000000, 453.571190, 113.392798, 226.785595 - -3.000000, 453.751250, 113.437813, 226.875625 - -3.000000, 453.931310, 113.482828, 226.965655 - -3.000000, 454.111370, 113.527843, 227.055685 - -3.000000, 454.291430, 113.572858, 227.145715 - -3.000000, 454.471490, 113.617873, 227.235745 - -3.000000, 454.651551, 113.662888, 227.325775 - -3.000000, 454.831611, 113.707903, 227.415805 - -3.000000, 455.011671, 113.752918, 227.505835 - -3.000000, 455.191731, 113.797933, 227.595865 - -3.000000, 455.371791, 113.842948, 227.685895 - -3.000000, 455.551851, 113.887963, 227.775925 - -3.000000, 455.731911, 113.932978, 227.865955 - -3.000000, 455.911971, 113.977993, 227.955985 - -3.000000, 456.092031, 114.023008, 228.046015 - -3.000000, 456.272091, 114.068023, 228.136045 - -3.000000, 456.452151, 114.113038, 228.226075 - -3.000000, 456.632211, 114.158053, 228.316105 - -3.000000, 456.812271, 114.203068, 228.406135 - -3.000000, 456.992331, 114.248083, 228.496165 - -3.000000, 457.172391, 114.293098, 228.586195 - -3.000000, 457.352451, 114.338113, 228.676225 - -3.000000, 457.532511, 114.383128, 228.766255 - -3.000000, 457.712571, 114.428143, 228.856285 - -3.000000, 457.892631, 114.473158, 228.946315 - -3.000000, 458.072691, 114.518173, 229.036345 - -3.000000, 458.252751, 114.563188, 229.126375 - -3.000000, 458.432811, 114.608203, 229.216405 - -3.000000, 458.612871, 114.653218, 229.306435 - -3.000000, 458.792931, 114.698233, 229.396465 - -3.000000, 458.972991, 114.743248, 229.486495 - -3.000000, 459.153051, 114.788263, 229.576526 - -3.000000, 459.333111, 114.833278, 229.666556 - -3.000000, 459.513171, 114.878293, 229.756586 - -3.000000, 459.693231, 114.923308, 229.846616 - -3.000000, 459.873291, 114.968323, 229.936646 - -3.000000, 460.053351, 115.013338, 230.026676 - -3.000000, 460.233411, 115.058353, 230.116706 - -3.000000, 460.413471, 115.103368, 230.206736 - -3.000000, 460.593531, 115.148383, 230.296766 - -3.000000, 460.773591, 115.193398, 230.386796 - -3.000000, 460.953651, 115.238413, 230.476826 - -3.000000, 461.133711, 115.283428, 230.566856 - -3.000000, 461.313771, 115.328443, 230.656886 - -3.000000, 461.493831, 115.373458, 230.746916 - -3.000000, 461.673891, 115.418473, 230.836946 - -3.000000, 461.853951, 115.463488, 230.926976 - -3.000000, 462.034011, 115.508503, 231.017006 - -3.000000, 462.214071, 115.553518, 231.107036 - -3.000000, 462.394131, 115.598533, 231.197066 - -3.000000, 462.574191, 115.643548, 231.287096 - -3.000000, 462.754251, 115.688563, 231.377126 - -3.000000, 462.934311, 115.733578, 231.467156 - -3.000000, 463.114371, 115.778593, 231.557186 - -3.000000, 463.294431, 115.823608, 231.647216 - -3.000000, 463.474491, 115.868623, 231.737246 - -3.000000, 463.654552, 115.913638, 231.827276 - -3.000000, 463.834612, 115.958653, 231.917306 - -3.000000, 464.014672, 116.003668, 232.007336 - -3.000000, 464.194732, 116.048683, 232.097366 - -3.000000, 464.374792, 116.093698, 232.187396 - -3.000000, 464.554852, 116.138713, 232.277426 - -3.000000, 464.734912, 116.183728, 232.367456 - -3.000000, 464.914972, 116.228743, 232.457486 - -3.000000, 465.095032, 116.273758, 232.547516 - -3.000000, 465.275092, 116.318773, 232.637546 - -3.000000, 465.455152, 116.363788, 232.727576 - -3.000000, 465.635212, 116.408803, 232.817606 - -3.000000, 465.815272, 116.453818, 232.907636 - -3.000000, 465.995332, 116.498833, 232.997666 - -3.000000, 466.175392, 116.543848, 233.087696 - -3.000000, 466.355452, 116.588863, 233.177726 - -3.000000, 466.535512, 116.633878, 233.267756 - -3.000000, 466.715572, 116.678893, 233.357786 - -3.000000, 466.895632, 116.723908, 233.447816 - -3.000000, 467.075692, 116.768923, 233.537846 - -3.000000, 467.255752, 116.813938, 233.627876 - -3.000000, 467.435812, 116.858953, 233.717906 - -3.000000, 467.615872, 116.903968, 233.807936 - -3.000000, 467.795932, 116.948983, 233.897966 - -3.000000, 467.975992, 116.993998, 233.987996 - -3.000000, 468.156052, 117.039013, 234.078026 - -3.000000, 468.336112, 117.084028, 234.168056 - -3.000000, 468.516172, 117.129043, 234.258086 - -3.000000, 468.696232, 117.174058, 234.348116 - -3.000000, 468.876292, 117.219073, 234.438146 - -3.000000, 469.056352, 117.264088, 234.528176 - -3.000000, 469.236412, 117.309103, 234.618206 - -3.000000, 469.416472, 117.354118, 234.708236 - -3.000000, 469.596532, 117.399133, 234.798266 - -3.000000, 469.776592, 117.444148, 234.888296 - -3.000000, 469.956652, 117.489163, 234.978326 - -3.000000, 470.136712, 117.534178, 235.068356 - -3.000000, 470.316772, 117.579193, 235.158386 - -3.000000, 470.496832, 117.624208, 235.248416 - -3.000000, 470.676892, 117.669223, 235.338446 - -3.000000, 470.856952, 117.714238, 235.428476 - -3.000000, 471.037012, 117.759253, 235.518506 - -3.000000, 471.217072, 117.804268, 235.608536 - -3.000000, 471.397132, 117.849283, 235.698566 - -3.000000, 471.577192, 117.894298, 235.788596 - -3.000000, 471.757252, 117.939313, 235.878626 - -3.000000, 471.937312, 117.984328, 235.968656 - -3.000000, 472.117372, 118.029343, 236.058686 - -3.000000, 472.297432, 118.074358, 236.148716 - -3.000000, 472.477492, 118.119373, 236.238746 - -3.000000, 472.657553, 118.164388, 236.328776 - -3.000000, 472.837613, 118.209403, 236.418806 - -3.000000, 473.017673, 118.254418, 236.508836 - -3.000000, 473.197733, 118.299433, 236.598866 - -3.000000, 473.377793, 118.344448, 236.688896 - -3.000000, 473.557853, 118.389463, 236.778926 - -3.000000, 473.737913, 118.434478, 236.868956 - -3.000000, 473.917973, 118.479493, 236.958986 - -3.000000, 474.098033, 118.524508, 237.049016 - -3.000000, 474.278093, 118.569523, 237.139046 - -3.000000, 474.458153, 118.614538, 237.229076 - -3.000000, 474.638213, 118.659553, 237.319106 - -3.000000, 474.818273, 118.704568, 237.409136 - -3.000000, 474.998333, 118.749583, 237.499166 - -3.000000, 475.178393, 118.794598, 237.589196 - -3.000000, 475.358453, 118.839613, 237.679226 - -3.000000, 475.538513, 118.884628, 237.769256 - -3.000000, 475.718573, 118.929643, 237.859286 - -3.000000, 475.898633, 118.974658, 237.949316 - -3.000000, 476.078693, 119.019673, 238.039346 - -3.000000, 476.258753, 119.064688, 238.129376 - -3.000000, 476.438813, 119.109703, 238.219406 - -3.000000, 476.618873, 119.154718, 238.309436 - -3.000000, 476.798933, 119.199733, 238.399466 - -3.000000, 476.978993, 119.244748, 238.489496 - -3.000000, 477.159053, 119.289763, 238.579527 - -3.000000, 477.339113, 119.334778, 238.669557 - -3.000000, 477.519173, 119.379793, 238.759587 - -3.000000, 477.699233, 119.424808, 238.849617 - -3.000000, 477.879293, 119.469823, 238.939647 - -3.000000, 478.059353, 119.514838, 239.029677 - -3.000000, 478.239413, 119.559853, 239.119707 - -3.000000, 478.419473, 119.604868, 239.209737 - -3.000000, 478.599533, 119.649883, 239.299767 - -3.000000, 478.779593, 119.694898, 239.389797 - -3.000000, 478.959653, 119.739913, 239.479827 - -3.000000, 479.139713, 119.784928, 239.569857 - -3.000000, 479.319773, 119.829943, 239.659887 - -3.000000, 479.499833, 119.874958, 239.749917 - -3.000000, 479.679893, 119.919973, 239.839947 - -3.000000, 479.859953, 119.964988, 239.929977 - -3.000000, 480.040013, 120.010003, 240.020007 - -3.000000, 480.220073, 120.055018, 240.110037 - -3.000000, 480.400133, 120.100033, 240.200067 - -3.000000, 480.580193, 120.145048, 240.290097 - -3.000000, 480.760253, 120.190063, 240.380127 - -3.000000, 480.940313, 120.235078, 240.470157 - -3.000000, 481.120373, 120.280093, 240.560187 - -3.000000, 481.300433, 120.325108, 240.650217 - -3.000000, 481.480493, 120.370123, 240.740247 - -3.000000, 481.660554, 120.415138, 240.830277 - -3.000000, 481.840614, 120.460153, 240.920307 - -3.000000, 482.020674, 120.505168, 241.010337 - -3.000000, 482.200734, 120.550183, 241.100367 - -3.000000, 482.380794, 120.595198, 241.190397 - -3.000000, 482.560854, 120.640213, 241.280427 - -3.000000, 482.740914, 120.685228, 241.370457 - -3.000000, 482.920974, 120.730243, 241.460487 - -3.000000, 483.101034, 120.775258, 241.550517 - -3.000000, 483.281094, 120.820273, 241.640547 - -3.000000, 483.461154, 120.865288, 241.730577 - -3.000000, 483.641214, 120.910303, 241.820607 - -3.000000, 483.821274, 120.955318, 241.910637 - -3.000000, 484.001334, 121.000333, 242.000667 - -3.000000, 484.181394, 121.045348, 242.090697 - -3.000000, 484.361454, 121.090363, 242.180727 - -3.000000, 484.541514, 121.135378, 242.270757 - -3.000000, 484.721574, 121.180393, 242.360787 - -3.000000, 484.901634, 121.225408, 242.450817 - -3.000000, 485.081694, 121.270423, 242.540847 - -3.000000, 485.261754, 121.315438, 242.630877 - -3.000000, 485.441814, 121.360453, 242.720907 - -3.000000, 485.621874, 121.405468, 242.810937 - -3.000000, 485.801934, 121.450483, 242.900967 - -3.000000, 485.981994, 121.495498, 242.990997 - -3.000000, 486.162054, 121.540514, 243.081027 - -3.000000, 486.342114, 121.585529, 243.171057 - -3.000000, 486.522174, 121.630544, 243.261087 - -3.000000, 486.702234, 121.675559, 243.351117 - -3.000000, 486.882294, 121.720574, 243.441147 - -3.000000, 487.062354, 121.765589, 243.531177 - -3.000000, 487.242414, 121.810604, 243.621207 - -3.000000, 487.422474, 121.855619, 243.711237 - -3.000000, 487.602534, 121.900634, 243.801267 - -3.000000, 487.782594, 121.945649, 243.891297 - -3.000000, 487.962654, 121.990664, 243.981327 - -3.000000, 488.142714, 122.035679, 244.071357 - -3.000000, 488.322774, 122.080694, 244.161387 - -3.000000, 488.502834, 122.125709, 244.251417 - -3.000000, 488.682894, 122.170724, 244.341447 - -3.000000, 488.862954, 122.215739, 244.431477 - -3.000000, 489.043014, 122.260754, 244.521507 - -3.000000, 489.223074, 122.305769, 244.611537 - -3.000000, 489.403134, 122.350784, 244.701567 - -3.000000, 489.583194, 122.395799, 244.791597 - -3.000000, 489.763254, 122.440814, 244.881627 - -3.000000, 489.943314, 122.485829, 244.971657 - -3.000000, 490.123374, 122.530844, 245.061687 - -3.000000, 490.303434, 122.575859, 245.151717 - -3.000000, 490.483494, 122.620874, 245.241747 - -3.000000, 490.663555, 122.665889, 245.331777 - -3.000000, 490.843615, 122.710904, 245.421807 - -3.000000, 491.023675, 122.755919, 245.511837 - -3.000000, 491.203735, 122.800934, 245.601867 - -3.000000, 491.383795, 122.845949, 245.691897 - -3.000000, 491.563855, 122.890964, 245.781927 - -3.000000, 491.743915, 122.935979, 245.871957 - -3.000000, 491.923975, 122.980994, 245.961987 - -3.000000, 492.104035, 123.026009, 246.052017 - -3.000000, 492.284095, 123.071024, 246.142047 - -3.000000, 492.464155, 123.116039, 246.232077 - -3.000000, 492.644215, 123.161054, 246.322107 - -3.000000, 492.824275, 123.206069, 246.412137 - -3.000000, 493.004335, 123.251084, 246.502167 - -3.000000, 493.184395, 123.296099, 246.592197 - -3.000000, 493.364455, 123.341114, 246.682227 - -3.000000, 493.544515, 123.386129, 246.772257 - -3.000000, 493.724575, 123.431144, 246.862287 - -3.000000, 493.904635, 123.476159, 246.952317 - -3.000000, 494.084695, 123.521174, 247.042347 - -3.000000, 494.264755, 123.566189, 247.132377 - -3.000000, 494.444815, 123.611204, 247.222407 - -3.000000, 494.624875, 123.656219, 247.312437 - -3.000000, 494.804935, 123.701234, 247.402467 - -3.000000, 494.984995, 123.746249, 247.492497 - -3.000000, 495.165055, 123.791264, 247.582528 - -3.000000, 495.345115, 123.836279, 247.672558 - -3.000000, 495.525175, 123.881294, 247.762588 - -3.000000, 495.705235, 123.926309, 247.852618 - -3.000000, 495.885295, 123.971324, 247.942648 - -3.000000, 496.065355, 124.016339, 248.032678 - -3.000000, 496.245415, 124.061354, 248.122708 - -3.000000, 496.425475, 124.106369, 248.212738 - -3.000000, 496.605535, 124.151384, 248.302768 - -3.000000, 496.785595, 124.196399, 248.392798 - -3.000000, 496.965655, 124.241414, 248.482828 - -3.000000, 497.145715, 124.286429, 248.572858 - -3.000000, 497.325775, 124.331444, 248.662888 - -3.000000, 497.505835, 124.376459, 248.752918 - -3.000000, 497.685895, 124.421474, 248.842948 - -3.000000, 497.865955, 124.466489, 248.932978 - -3.000000, 498.046015, 124.511504, 249.023008 - -3.000000, 498.226075, 124.556519, 249.113038 - -3.000000, 498.406135, 124.601534, 249.203068 - -3.000000, 498.586195, 124.646549, 249.293098 - -3.000000, 498.766255, 124.691564, 249.383128 - -3.000000, 498.946315, 124.736579, 249.473158 - -3.000000, 499.126375, 124.781594, 249.563188 - -3.000000, 499.306435, 124.826609, 249.653218 - -3.000000, 499.486495, 124.871624, 249.743248 - -3.000000, 499.666556, 124.916639, 249.833278 - -3.000000, 499.846616, 124.961654, 249.923308 - -3.000000, 500.026676, 125.006669, 250.013338 - -3.000000, 500.206736, 125.051684, 250.103368 - -3.000000, 500.386796, 125.096699, 250.193398 - -3.000000, 500.566856, 125.141714, 250.283428 - -3.000000, 500.746916, 125.186729, 250.373458 - -3.000000, 500.926976, 125.231744, 250.463488 - -3.000000, 501.107036, 125.276759, 250.553518 - -3.000000, 501.287096, 125.321774, 250.643548 - -3.000000, 501.467156, 125.366789, 250.733578 - -3.000000, 501.647216, 125.411804, 250.823608 - -3.000000, 501.827276, 125.456819, 250.913638 - -3.000000, 502.007336, 125.501834, 251.003668 - -3.000000, 502.187396, 125.546849, 251.093698 - -3.000000, 502.367456, 125.591864, 251.183728 - -3.000000, 502.547516, 125.636879, 251.273758 - -3.000000, 502.727576, 125.681894, 251.363788 - -3.000000, 502.907636, 125.726909, 251.453818 - -3.000000, 503.087696, 125.771924, 251.543848 - -3.000000, 503.267756, 125.816939, 251.633878 - -3.000000, 503.447816, 125.861954, 251.723908 - -3.000000, 503.627876, 125.906969, 251.813938 - -3.000000, 503.807936, 125.951984, 251.903968 - -3.000000, 503.987996, 125.996999, 251.993998 - -3.000000, 504.168056, 126.042014, 252.084028 - -3.000000, 504.348116, 126.087029, 252.174058 - -3.000000, 504.528176, 126.132044, 252.264088 - -3.000000, 504.708236, 126.177059, 252.354118 - -3.000000, 504.888296, 126.222074, 252.444148 - -3.000000, 505.068356, 126.267089, 252.534178 - -3.000000, 505.248416, 126.312104, 252.624208 - -3.000000, 505.428476, 126.357119, 252.714238 - -3.000000, 505.608536, 126.402134, 252.804268 - -3.000000, 505.788596, 126.447149, 252.894298 - -3.000000, 505.968656, 126.492164, 252.984328 - -3.000000, 506.148716, 126.537179, 253.074358 - -3.000000, 506.328776, 126.582194, 253.164388 - -3.000000, 506.508836, 126.627209, 253.254418 - -3.000000, 506.688896, 126.672224, 253.344448 - -3.000000, 506.868956, 126.717239, 253.434478 - -3.000000, 507.049016, 126.762254, 253.524508 - -3.000000, 507.229076, 126.807269, 253.614538 - -3.000000, 507.409136, 126.852284, 253.704568 - -3.000000, 507.589196, 126.897299, 253.794598 - -3.000000, 507.769256, 126.942314, 253.884628 - -3.000000, 507.949316, 126.987329, 253.974658 - -3.000000, 508.129376, 127.032344, 254.064688 - -3.000000, 508.309436, 127.077359, 254.154718 - -3.000000, 508.489496, 127.122374, 254.244748 - -3.000000, 508.669557, 127.167389, 254.334778 - -3.000000, 508.849617, 127.212404, 254.424808 - -3.000000, 509.029677, 127.257419, 254.514838 - -3.000000, 509.209737, 127.302434, 254.604868 - -3.000000, 509.389797, 127.347449, 254.694898 - -3.000000, 509.569857, 127.392464, 254.784928 - -3.000000, 509.749917, 127.437479, 254.874958 - -3.000000, 509.929977, 127.482494, 254.964988 - -3.000000, 510.110037, 127.527509, 255.055018 - -3.000000, 510.290097, 127.572524, 255.145048 - -3.000000, 510.470157, 127.617539, 255.235078 - -3.000000, 510.650217, 127.662554, 255.325108 - -3.000000, 510.830277, 127.707569, 255.415138 - -3.000000, 511.010337, 127.752584, 255.505168 - -3.000000, 511.190397, 127.797599, 255.595198 - -3.000000, 511.370457, 127.842614, 255.685228 - -3.000000, 511.550517, 127.887629, 255.775258 - -3.000000, 511.730577, 127.932644, 255.865288 - -3.000000, 511.910637, 127.977659, 255.955318 - -3.000000, 512.090697, 128.022674, 256.045348 - -3.000000, 512.270757, 128.067689, 256.135378 - -3.000000, 512.450817, 128.112704, 256.225408 - -3.000000, 512.630877, 128.157719, 256.315438 - -3.000000, 512.810937, 128.202734, 256.405468 - -3.000000, 512.990997, 128.247749, 256.495498 - -3.000000, 513.171057, 128.292764, 256.585529 - -3.000000, 513.351117, 128.337779, 256.675559 - -3.000000, 513.531177, 128.382794, 256.765589 - -3.000000, 513.711237, 128.427809, 256.855619 - -3.000000, 513.891297, 128.472824, 256.945649 - -3.000000, 514.071357, 128.517839, 257.035679 - -3.000000, 514.251417, 128.562854, 257.125709 - -3.000000, 514.431477, 128.607869, 257.215739 - -3.000000, 514.611537, 128.652884, 257.305769 - -3.000000, 514.791597, 128.697899, 257.395799 - -3.000000, 514.971657, 128.742914, 257.485829 - -3.000000, 515.151717, 128.787929, 257.575859 - -3.000000, 515.331777, 128.832944, 257.665889 - -3.000000, 515.511837, 128.877959, 257.755919 - -3.000000, 515.691897, 128.922974, 257.845949 - -3.000000, 515.871957, 128.967989, 257.935979 - -3.000000, 516.052017, 129.013004, 258.026009 - -3.000000, 516.232077, 129.058019, 258.116039 - -3.000000, 516.412137, 129.103034, 258.206069 - -3.000000, 516.592197, 129.148049, 258.296099 - -3.000000, 516.772257, 129.193064, 258.386129 - -3.000000, 516.952317, 129.238079, 258.476159 - -3.000000, 517.132377, 129.283094, 258.566189 - -3.000000, 517.312437, 129.328109, 258.656219 - -3.000000, 517.492497, 129.373124, 258.746249 - -3.000000, 517.672558, 129.418139, 258.836279 - -3.000000, 517.852618, 129.463154, 258.926309 - -3.000000, 518.032678, 129.508169, 259.016339 - -3.000000, 518.212738, 129.553184, 259.106369 - -3.000000, 518.392798, 129.598199, 259.196399 - -3.000000, 518.572858, 129.643214, 259.286429 - -3.000000, 518.752918, 129.688229, 259.376459 - -3.000000, 518.932978, 129.733244, 259.466489 - -3.000000, 519.113038, 129.778259, 259.556519 - -3.000000, 519.293098, 129.823274, 259.646549 - -3.000000, 519.473158, 129.868289, 259.736579 - -3.000000, 519.653218, 129.913304, 259.826609 - -3.000000, 519.833278, 129.958319, 259.916639 - -3.000000, 520.013338, 130.003334, 260.006669 - -3.000000, 520.193398, 130.048349, 260.096699 - -3.000000, 520.373458, 130.093364, 260.186729 - -3.000000, 520.553518, 130.138379, 260.276759 - -3.000000, 520.733578, 130.183394, 260.366789 - -3.000000, 520.913638, 130.228409, 260.456819 - -3.000000, 521.093698, 130.273424, 260.546849 - -3.000000, 521.273758, 130.318439, 260.636879 - -3.000000, 521.453818, 130.363454, 260.726909 - -3.000000, 521.633878, 130.408469, 260.816939 - -3.000000, 521.813938, 130.453484, 260.906969 - -3.000000, 521.993998, 130.498499, 260.996999 - -3.000000, 522.174058, 130.543515, 261.087029 - -3.000000, 522.354118, 130.588530, 261.177059 - -3.000000, 522.534178, 130.633545, 261.267089 - -3.000000, 522.714238, 130.678560, 261.357119 - -3.000000, 522.894298, 130.723575, 261.447149 - -3.000000, 523.074358, 130.768590, 261.537179 - -3.000000, 523.254418, 130.813605, 261.627209 - -3.000000, 523.434478, 130.858620, 261.717239 - -3.000000, 523.614538, 130.903635, 261.807269 - -3.000000, 523.794598, 130.948650, 261.897299 - -3.000000, 523.974658, 130.993665, 261.987329 - -3.000000, 524.154718, 131.038680, 262.077359 - -3.000000, 524.334778, 131.083695, 262.167389 - -3.000000, 524.514838, 131.128710, 262.257419 - -3.000000, 524.694898, 131.173725, 262.347449 - -3.000000, 524.874958, 131.218740, 262.437479 - -3.000000, 525.055018, 131.263755, 262.527509 - -3.000000, 525.235078, 131.308770, 262.617539 - -3.000000, 525.415138, 131.353785, 262.707569 - -3.000000, 525.595198, 131.398800, 262.797599 - -3.000000, 525.775258, 131.443815, 262.887629 - -3.000000, 525.955318, 131.488830, 262.977659 - -3.000000, 526.135378, 131.533845, 263.067689 - -3.000000, 526.315438, 131.578860, 263.157719 - -3.000000, 526.495498, 131.623875, 263.247749 - -3.000000, 526.675559, 131.668890, 263.337779 - -3.000000, 526.855619, 131.713905, 263.427809 - -3.000000, 527.035679, 131.758920, 263.517839 - -3.000000, 527.215739, 131.803935, 263.607869 - -3.000000, 527.395799, 131.848950, 263.697899 - -3.000000, 527.575859, 131.893965, 263.787929 - -3.000000, 527.755919, 131.938980, 263.877959 - -3.000000, 527.935979, 131.983995, 263.967989 - -3.000000, 528.116039, 132.029010, 264.058019 - -3.000000, 528.296099, 132.074025, 264.148049 - -3.000000, 528.476159, 132.119040, 264.238079 - -3.000000, 528.656219, 132.164055, 264.328109 - -3.000000, 528.836279, 132.209070, 264.418139 - -3.000000, 529.016339, 132.254085, 264.508169 - -3.000000, 529.196399, 132.299100, 264.598199 - -3.000000, 529.376459, 132.344115, 264.688229 - -3.000000, 529.556519, 132.389130, 264.778259 - -3.000000, 529.736579, 132.434145, 264.868289 - -3.000000, 529.916639, 132.479160, 264.958319 - -3.000000, 530.096699, 132.524175, 265.048349 - -3.000000, 530.276759, 132.569190, 265.138379 - -3.000000, 530.456819, 132.614205, 265.228409 - -3.000000, 530.636879, 132.659220, 265.318439 - -3.000000, 530.816939, 132.704235, 265.408469 - -3.000000, 530.996999, 132.749250, 265.498499 - -3.000000, 531.177059, 132.794265, 265.588530 - -3.000000, 531.357119, 132.839280, 265.678560 - -3.000000, 531.537179, 132.884295, 265.768590 - -3.000000, 531.717239, 132.929310, 265.858620 - -3.000000, 531.897299, 132.974325, 265.948650 - -3.000000, 532.077359, 133.019340, 266.038680 - -3.000000, 532.257419, 133.064355, 266.128710 - -3.000000, 532.437479, 133.109370, 266.218740 - -3.000000, 532.617539, 133.154385, 266.308770 - -3.000000, 532.797599, 133.199400, 266.398800 - -3.000000, 532.977659, 133.244415, 266.488830 - -3.000000, 533.157719, 133.289430, 266.578860 - -3.000000, 533.337779, 133.334445, 266.668890 - -3.000000, 533.517839, 133.379460, 266.758920 - -3.000000, 533.697899, 133.424475, 266.848950 - -3.000000, 533.877959, 133.469490, 266.938980 - -3.000000, 534.058019, 133.514505, 267.029010 - -3.000000, 534.238079, 133.559520, 267.119040 - -3.000000, 534.418139, 133.604535, 267.209070 - -3.000000, 534.598199, 133.649550, 267.299100 - -3.000000, 534.778259, 133.694565, 267.389130 - -3.000000, 534.958319, 133.739580, 267.479160 - -3.000000, 535.138379, 133.784595, 267.569190 - -3.000000, 535.318439, 133.829610, 267.659220 - -3.000000, 535.498499, 133.874625, 267.749250 - -3.000000, 535.678560, 133.919640, 267.839280 - -3.000000, 535.858620, 133.964655, 267.929310 - -3.000000, 536.038680, 134.009670, 268.019340 - -3.000000, 536.218740, 134.054685, 268.109370 - -3.000000, 536.398800, 134.099700, 268.199400 - -3.000000, 536.578860, 134.144715, 268.289430 - -3.000000, 536.758920, 134.189730, 268.379460 - -3.000000, 536.938980, 134.234745, 268.469490 - -3.000000, 537.119040, 134.279760, 268.559520 - -3.000000, 537.299100, 134.324775, 268.649550 - -3.000000, 537.479160, 134.369790, 268.739580 - -3.000000, 537.659220, 134.414805, 268.829610 - -3.000000, 537.839280, 134.459820, 268.919640 - -3.000000, 538.019340, 134.504835, 269.009670 - -3.000000, 538.199400, 134.549850, 269.099700 - -3.000000, 538.379460, 134.594865, 269.189730 - -3.000000, 538.559520, 134.639880, 269.279760 - -3.000000, 538.739580, 134.684895, 269.369790 - -3.000000, 538.919640, 134.729910, 269.459820 - -3.000000, 539.099700, 134.774925, 269.549850 - -3.000000, 539.279760, 134.819940, 269.639880 - -3.000000, 539.459820, 134.864955, 269.729910 - -3.000000, 539.639880, 134.909970, 269.819940 - -3.000000, 539.819940, 134.954985, 269.909970 - -3.000000, 540.000000, 135.000000, 270.000000 diff --git a/scripts/trajectories/linear-ypr-T15.0-w0.1.csv b/scripts/trajectories/linear-ypr-T15.0-w0.1.csv deleted file mode 100644 index 89bdbc540c1f45c53da462f16f39b055f022d204..0000000000000000000000000000000000000000 --- a/scripts/trajectories/linear-ypr-T15.0-w0.1.csv +++ /dev/null @@ -1,3000 +0,0 @@ - 1.000000, 0.000000, 0.000000, 0.000000 - 0.999998, 0.000785, 0.000394, 0.001571 - 0.999994, 0.001569, 0.000791, 0.003141 - 0.999985, 0.002351, 0.001190, 0.004711 - 0.999974, 0.003133, 0.001591, 0.006280 - 0.999960, 0.003913, 0.001995, 0.007849 - 0.999942, 0.004691, 0.002401, 0.009417 - 0.999921, 0.005469, 0.002810, 0.010984 - 0.999897, 0.006245, 0.003221, 0.012550 - 0.999869, 0.007020, 0.003635, 0.014116 - 0.999838, 0.007794, 0.004051, 0.015681 - 0.999805, 0.008566, 0.004470, 0.017246 - 0.999768, 0.009337, 0.004891, 0.018809 - 0.999727, 0.010107, 0.005314, 0.020372 - 0.999684, 0.010875, 0.005740, 0.021935 - 0.999637, 0.011642, 0.006168, 0.023496 - 0.999587, 0.012408, 0.006599, 0.025057 - 0.999534, 0.013172, 0.007032, 0.026617 - 0.999478, 0.013935, 0.007467, 0.028177 - 0.999418, 0.014697, 0.007905, 0.029735 - 0.999356, 0.015457, 0.008345, 0.031293 - 0.999290, 0.016216, 0.008788, 0.032850 - 0.999221, 0.016974, 0.009233, 0.034406 - 0.999149, 0.017730, 0.009680, 0.035962 - 0.999074, 0.018485, 0.010130, 0.037517 - 0.998995, 0.019239, 0.010582, 0.039071 - 0.998914, 0.019991, 0.011037, 0.040624 - 0.998829, 0.020741, 0.011494, 0.042176 - 0.998741, 0.021490, 0.011953, 0.043728 - 0.998650, 0.022238, 0.012415, 0.045278 - 0.998555, 0.022985, 0.012879, 0.046828 - 0.998458, 0.023730, 0.013345, 0.048377 - 0.998357, 0.024473, 0.013814, 0.049926 - 0.998254, 0.025215, 0.014285, 0.051473 - 0.998147, 0.025956, 0.014758, 0.053019 - 0.998037, 0.026695, 0.015234, 0.054565 - 0.997924, 0.027433, 0.015712, 0.056110 - 0.997808, 0.028169, 0.016192, 0.057654 - 0.997688, 0.028904, 0.016675, 0.059197 - 0.997566, 0.029637, 0.017160, 0.060739 - 0.997440, 0.030369, 0.017647, 0.062280 - 0.997312, 0.031099, 0.018137, 0.063820 - 0.997180, 0.031828, 0.018629, 0.065360 - 0.997045, 0.032555, 0.019123, 0.066898 - 0.996907, 0.033281, 0.019619, 0.068435 - 0.996766, 0.034005, 0.020118, 0.069972 - 0.996622, 0.034728, 0.020619, 0.071508 - 0.996475, 0.035449, 0.021123, 0.073042 - 0.996324, 0.036169, 0.021628, 0.074576 - 0.996171, 0.036887, 0.022136, 0.076109 - 0.996015, 0.037604, 0.022646, 0.077641 - 0.995855, 0.038319, 0.023159, 0.079171 - 0.995692, 0.039032, 0.023673, 0.080701 - 0.995527, 0.039744, 0.024190, 0.082230 - 0.995358, 0.040455, 0.024710, 0.083758 - 0.995186, 0.041164, 0.025231, 0.085285 - 0.995011, 0.041871, 0.025755, 0.086810 - 0.994833, 0.042576, 0.026281, 0.088335 - 0.994652, 0.043280, 0.026809, 0.089859 - 0.994468, 0.043983, 0.027339, 0.091382 - 0.994281, 0.044684, 0.027872, 0.092903 - 0.994091, 0.045383, 0.028407, 0.094424 - 0.993898, 0.046080, 0.028944, 0.095943 - 0.993702, 0.046776, 0.029483, 0.097462 - 0.993503, 0.047471, 0.030024, 0.098979 - 0.993301, 0.048163, 0.030568, 0.100496 - 0.993096, 0.048854, 0.031114, 0.102011 - 0.992887, 0.049544, 0.031662, 0.103525 - 0.992676, 0.050232, 0.032212, 0.105038 - 0.992462, 0.050918, 0.032764, 0.106550 - 0.992245, 0.051602, 0.033319, 0.108061 - 0.992025, 0.052285, 0.033876, 0.109571 - 0.991802, 0.052966, 0.034434, 0.111080 - 0.991575, 0.053645, 0.034995, 0.112587 - 0.991346, 0.054323, 0.035559, 0.114093 - 0.991114, 0.054999, 0.036124, 0.115599 - 0.990879, 0.055673, 0.036692, 0.117103 - 0.990641, 0.056346, 0.037261, 0.118606 - 0.990400, 0.057017, 0.037833, 0.120107 - 0.990156, 0.057686, 0.038407, 0.121608 - 0.989909, 0.058353, 0.038983, 0.123107 - 0.989659, 0.059019, 0.039561, 0.124606 - 0.989406, 0.059683, 0.040141, 0.126103 - 0.989150, 0.060345, 0.040724, 0.127599 - 0.988892, 0.061006, 0.041308, 0.129093 - 0.988630, 0.061665, 0.041895, 0.130587 - 0.988366, 0.062322, 0.042483, 0.132079 - 0.988098, 0.062977, 0.043074, 0.133570 - 0.987828, 0.063630, 0.043667, 0.135060 - 0.987554, 0.064282, 0.044262, 0.136548 - 0.987278, 0.064932, 0.044859, 0.138035 - 0.986999, 0.065580, 0.045458, 0.139522 - 0.986717, 0.066226, 0.046059, 0.141006 - 0.986432, 0.066871, 0.046662, 0.142490 - 0.986144, 0.067514, 0.047267, 0.143972 - 0.985853, 0.068154, 0.047875, 0.145453 - 0.985559, 0.068794, 0.048484, 0.146933 - 0.985263, 0.069431, 0.049095, 0.148411 - 0.984964, 0.070066, 0.049709, 0.149888 - 0.984661, 0.070700, 0.050324, 0.151364 - 0.984356, 0.071332, 0.050942, 0.152839 - 0.984048, 0.071962, 0.051561, 0.154312 - 0.983737, 0.072590, 0.052183, 0.155784 - 0.983424, 0.073216, 0.052806, 0.157254 - 0.983107, 0.073841, 0.053432, 0.158724 - 0.982788, 0.074463, 0.054059, 0.160192 - 0.982465, 0.075084, 0.054689, 0.161658 - 0.982140, 0.075703, 0.055320, 0.163123 - 0.981812, 0.076320, 0.055954, 0.164587 - 0.981482, 0.076935, 0.056589, 0.166050 - 0.981148, 0.077548, 0.057226, 0.167511 - 0.980812, 0.078159, 0.057866, 0.168971 - 0.980473, 0.078769, 0.058507, 0.170429 - 0.980131, 0.079376, 0.059150, 0.171886 - 0.979786, 0.079982, 0.059796, 0.173342 - 0.979438, 0.080585, 0.060443, 0.174796 - 0.979088, 0.081187, 0.061092, 0.176249 - 0.978735, 0.081787, 0.061743, 0.177700 - 0.978379, 0.082385, 0.062396, 0.179150 - 0.978020, 0.082981, 0.063051, 0.180599 - 0.977658, 0.083575, 0.063708, 0.182046 - 0.977294, 0.084167, 0.064366, 0.183492 - 0.976927, 0.084757, 0.065027, 0.184936 - 0.976557, 0.085345, 0.065689, 0.186379 - 0.976185, 0.085931, 0.066354, 0.187820 - 0.975809, 0.086516, 0.067020, 0.189260 - 0.975431, 0.087098, 0.067688, 0.190698 - 0.975051, 0.087678, 0.068358, 0.192135 - 0.974667, 0.088257, 0.069030, 0.193571 - 0.974281, 0.088833, 0.069704, 0.195005 - 0.973892, 0.089407, 0.070380, 0.196437 - 0.973500, 0.089980, 0.071057, 0.197868 - 0.973106, 0.090550, 0.071736, 0.199298 - 0.972709, 0.091119, 0.072418, 0.200726 - 0.972309, 0.091685, 0.073101, 0.202153 - 0.971906, 0.092249, 0.073785, 0.203578 - 0.971501, 0.092812, 0.074472, 0.205001 - 0.971093, 0.093372, 0.075161, 0.206423 - 0.970683, 0.093930, 0.075851, 0.207843 - 0.970269, 0.094487, 0.076543, 0.209262 - 0.969853, 0.095041, 0.077237, 0.210680 - 0.969435, 0.095593, 0.077933, 0.212095 - 0.969014, 0.096143, 0.078630, 0.213510 - 0.968590, 0.096691, 0.079330, 0.214922 - 0.968163, 0.097237, 0.080031, 0.216333 - 0.967734, 0.097781, 0.080733, 0.217743 - 0.967302, 0.098323, 0.081438, 0.219151 - 0.966868, 0.098863, 0.082144, 0.220557 - 0.966430, 0.099401, 0.082853, 0.221962 - 0.965991, 0.099937, 0.083562, 0.223365 - 0.965548, 0.100470, 0.084274, 0.224767 - 0.965103, 0.101002, 0.084987, 0.226167 - 0.964656, 0.101531, 0.085702, 0.227565 - 0.964205, 0.102059, 0.086419, 0.228962 - 0.963753, 0.102584, 0.087138, 0.230357 - 0.963297, 0.103107, 0.087858, 0.231751 - 0.962839, 0.103628, 0.088580, 0.233142 - 0.962379, 0.104147, 0.089304, 0.234533 - 0.961916, 0.104664, 0.090029, 0.235921 - 0.961450, 0.105179, 0.090756, 0.237308 - 0.960981, 0.105691, 0.091485, 0.238693 - 0.960511, 0.106202, 0.092215, 0.240077 - 0.960037, 0.106710, 0.092947, 0.241459 - 0.959561, 0.107216, 0.093681, 0.242839 - 0.959083, 0.107720, 0.094416, 0.244218 - 0.958602, 0.108222, 0.095153, 0.245595 - 0.958118, 0.108722, 0.095892, 0.246970 - 0.957632, 0.109219, 0.096633, 0.248343 - 0.957143, 0.109715, 0.097375, 0.249715 - 0.956652, 0.110208, 0.098118, 0.251085 - 0.956158, 0.110699, 0.098863, 0.252454 - 0.955662, 0.111188, 0.099610, 0.253820 - 0.955164, 0.111674, 0.100359, 0.255185 - 0.954662, 0.112159, 0.101109, 0.256549 - 0.954159, 0.112641, 0.101860, 0.257910 - 0.953652, 0.113121, 0.102614, 0.259270 - 0.953144, 0.113599, 0.103369, 0.260628 - 0.952633, 0.114075, 0.104125, 0.261984 - 0.952119, 0.114549, 0.104883, 0.263339 - 0.951603, 0.115020, 0.105643, 0.264692 - 0.951085, 0.115489, 0.106404, 0.266043 - 0.950564, 0.115956, 0.107166, 0.267392 - 0.950040, 0.116421, 0.107931, 0.268740 - 0.949514, 0.116883, 0.108696, 0.270085 - 0.948986, 0.117343, 0.109464, 0.271429 - 0.948455, 0.117801, 0.110233, 0.272771 - 0.947922, 0.118257, 0.111003, 0.274112 - 0.947387, 0.118711, 0.111775, 0.275450 - 0.946849, 0.119162, 0.112548, 0.276787 - 0.946308, 0.119611, 0.113323, 0.278122 - 0.945765, 0.120058, 0.114100, 0.279455 - 0.945220, 0.120502, 0.114878, 0.280787 - 0.944673, 0.120945, 0.115657, 0.282116 - 0.944123, 0.121385, 0.116438, 0.283444 - 0.943570, 0.121822, 0.117220, 0.284770 - 0.943016, 0.122258, 0.118004, 0.286094 - 0.942459, 0.122691, 0.118789, 0.287416 - 0.941899, 0.123122, 0.119576, 0.288736 - 0.941337, 0.123550, 0.120364, 0.290055 - 0.940773, 0.123977, 0.121154, 0.291371 - 0.940207, 0.124401, 0.121945, 0.292686 - 0.939638, 0.124823, 0.122738, 0.293999 - 0.939067, 0.125242, 0.123531, 0.295310 - 0.938493, 0.125659, 0.124327, 0.296619 - 0.937917, 0.126074, 0.125124, 0.297927 - 0.937339, 0.126487, 0.125922, 0.299232 - 0.936759, 0.126897, 0.126721, 0.300536 - 0.936176, 0.127305, 0.127522, 0.301837 - 0.935591, 0.127711, 0.128324, 0.303137 - 0.935004, 0.128114, 0.129128, 0.304435 - 0.934414, 0.128515, 0.129933, 0.305731 - 0.933822, 0.128913, 0.130740, 0.307025 - 0.933228, 0.129310, 0.131548, 0.308317 - 0.932632, 0.129704, 0.132357, 0.309607 - 0.932033, 0.130095, 0.133167, 0.310896 - 0.931432, 0.130485, 0.133979, 0.312182 - 0.930829, 0.130872, 0.134792, 0.313466 - 0.930223, 0.131256, 0.135607, 0.314749 - 0.929616, 0.131638, 0.136422, 0.316030 - 0.929006, 0.132018, 0.137240, 0.317308 - 0.928394, 0.132396, 0.138058, 0.318585 - 0.927779, 0.132771, 0.138878, 0.319860 - 0.927163, 0.133144, 0.139699, 0.321132 - 0.926544, 0.133514, 0.140521, 0.322403 - 0.925923, 0.133882, 0.141345, 0.323672 - 0.925300, 0.134248, 0.142170, 0.324939 - 0.924675, 0.134611, 0.142996, 0.326204 - 0.924047, 0.134972, 0.143823, 0.327467 - 0.923417, 0.135331, 0.144652, 0.328727 - 0.922786, 0.135687, 0.145482, 0.329986 - 0.922151, 0.136041, 0.146313, 0.331243 - 0.921515, 0.136392, 0.147145, 0.332498 - 0.920877, 0.136741, 0.147979, 0.333751 - 0.920236, 0.137087, 0.148814, 0.335002 - 0.919594, 0.137432, 0.149650, 0.336251 - 0.918949, 0.137773, 0.150487, 0.337498 - 0.918302, 0.138113, 0.151325, 0.338743 - 0.917653, 0.138450, 0.152165, 0.339986 - 0.917002, 0.138784, 0.153006, 0.341227 - 0.916349, 0.139116, 0.153848, 0.342466 - 0.915693, 0.139446, 0.154691, 0.343702 - 0.915036, 0.139773, 0.155535, 0.344937 - 0.914376, 0.140098, 0.156381, 0.346170 - 0.913715, 0.140420, 0.157227, 0.347400 - 0.913051, 0.140740, 0.158075, 0.348629 - 0.912385, 0.141058, 0.158924, 0.349856 - 0.911717, 0.141373, 0.159774, 0.351080 - 0.911048, 0.141685, 0.160625, 0.352303 - 0.910376, 0.141996, 0.161478, 0.353523 - 0.909702, 0.142303, 0.162331, 0.354741 - 0.909026, 0.142609, 0.163186, 0.355958 - 0.908347, 0.142911, 0.164041, 0.357172 - 0.907667, 0.143212, 0.164898, 0.358384 - 0.906985, 0.143510, 0.165756, 0.359594 - 0.906301, 0.143805, 0.166615, 0.360802 - 0.905615, 0.144098, 0.167475, 0.362008 - 0.904927, 0.144389, 0.168336, 0.363211 - 0.904237, 0.144677, 0.169198, 0.364413 - 0.903544, 0.144962, 0.170061, 0.365613 - 0.902850, 0.145245, 0.170925, 0.366810 - 0.902154, 0.145526, 0.171790, 0.368005 - 0.901456, 0.145804, 0.172657, 0.369199 - 0.900756, 0.146080, 0.173524, 0.370390 - 0.900054, 0.146353, 0.174392, 0.371579 - 0.899350, 0.146624, 0.175261, 0.372766 - 0.898644, 0.146892, 0.176132, 0.373950 - 0.897936, 0.147157, 0.177003, 0.375133 - 0.897227, 0.147421, 0.177875, 0.376313 - 0.896515, 0.147681, 0.178749, 0.377492 - 0.895801, 0.147940, 0.179623, 0.378668 - 0.895086, 0.148195, 0.180498, 0.379842 - 0.894368, 0.148448, 0.181374, 0.381014 - 0.893649, 0.148699, 0.182251, 0.382184 - 0.892928, 0.148947, 0.183129, 0.383351 - 0.892205, 0.149193, 0.184008, 0.384517 - 0.891480, 0.149436, 0.184888, 0.385680 - 0.890753, 0.149677, 0.185769, 0.386841 - 0.890024, 0.149915, 0.186651, 0.388000 - 0.889294, 0.150150, 0.187534, 0.389157 - 0.888561, 0.150383, 0.188417, 0.390311 - 0.887827, 0.150614, 0.189302, 0.391464 - 0.887091, 0.150842, 0.190187, 0.392614 - 0.886353, 0.151067, 0.191074, 0.393762 - 0.885613, 0.151290, 0.191961, 0.394908 - 0.884871, 0.151511, 0.192849, 0.396051 - 0.884128, 0.151729, 0.193738, 0.397193 - 0.883382, 0.151944, 0.194628, 0.398332 - 0.882635, 0.152157, 0.195518, 0.399469 - 0.881887, 0.152367, 0.196410, 0.400604 - 0.881136, 0.152575, 0.197302, 0.401737 - 0.880383, 0.152780, 0.198195, 0.402867 - 0.879629, 0.152982, 0.199089, 0.403996 - 0.878873, 0.153183, 0.199984, 0.405122 - 0.878115, 0.153380, 0.200879, 0.406245 - 0.877356, 0.153575, 0.201776, 0.407367 - 0.876595, 0.153767, 0.202673, 0.408486 - 0.875832, 0.153957, 0.203571, 0.409603 - 0.875067, 0.154144, 0.204470, 0.410718 - 0.874300, 0.154329, 0.205369, 0.411831 - 0.873532, 0.154511, 0.206269, 0.412941 - 0.872762, 0.154691, 0.207170, 0.414050 - 0.871991, 0.154868, 0.208072, 0.415156 - 0.871217, 0.155042, 0.208975, 0.416259 - 0.870442, 0.155214, 0.209878, 0.417361 - 0.869666, 0.155384, 0.210782, 0.418460 - 0.868887, 0.155550, 0.211687, 0.419557 - 0.868107, 0.155714, 0.212592, 0.420652 - 0.867325, 0.155876, 0.213498, 0.421744 - 0.866542, 0.156035, 0.214405, 0.422834 - 0.865757, 0.156191, 0.215313, 0.423922 - 0.864970, 0.156345, 0.216221, 0.425008 - 0.864182, 0.156496, 0.217130, 0.426091 - 0.863392, 0.156645, 0.218040, 0.427172 - 0.862600, 0.156791, 0.218950, 0.428251 - 0.861807, 0.156935, 0.219861, 0.429327 - 0.861012, 0.157075, 0.220772, 0.430402 - 0.860215, 0.157214, 0.221685, 0.431474 - 0.859417, 0.157349, 0.222598, 0.432543 - 0.858617, 0.157482, 0.223511, 0.433611 - 0.857816, 0.157613, 0.224425, 0.434676 - 0.857013, 0.157741, 0.225340, 0.435739 - 0.856209, 0.157866, 0.226255, 0.436799 - 0.855403, 0.157989, 0.227171, 0.437857 - 0.854595, 0.158109, 0.228088, 0.438913 - 0.853786, 0.158226, 0.229005, 0.439967 - 0.852975, 0.158341, 0.229923, 0.441018 - 0.852163, 0.158454, 0.230841, 0.442067 - 0.851349, 0.158563, 0.231760, 0.443114 - 0.850534, 0.158670, 0.232679, 0.444158 - 0.849717, 0.158775, 0.233599, 0.445200 - 0.848898, 0.158877, 0.234520, 0.446240 - 0.848079, 0.158976, 0.235441, 0.447277 - 0.847257, 0.159072, 0.236363, 0.448313 - 0.846434, 0.159166, 0.237285, 0.449345 - 0.845610, 0.159258, 0.238207, 0.450376 - 0.844784, 0.159347, 0.239131, 0.451404 - 0.843957, 0.159433, 0.240054, 0.452430 - 0.843128, 0.159516, 0.240978, 0.453453 - 0.842297, 0.159597, 0.241903, 0.454474 - 0.841466, 0.159675, 0.242828, 0.455493 - 0.840632, 0.159751, 0.243754, 0.456509 - 0.839798, 0.159824, 0.244680, 0.457523 - 0.838962, 0.159894, 0.245606, 0.458535 - 0.838124, 0.159962, 0.246533, 0.459545 - 0.837285, 0.160027, 0.247461, 0.460552 - 0.836445, 0.160090, 0.248389, 0.461556 - 0.835603, 0.160150, 0.249317, 0.462559 - 0.834760, 0.160207, 0.250246, 0.463559 - 0.833915, 0.160262, 0.251175, 0.464556 - 0.833069, 0.160314, 0.252104, 0.465552 - 0.832222, 0.160363, 0.253034, 0.466544 - 0.831373, 0.160410, 0.253965, 0.467535 - 0.830523, 0.160454, 0.254896, 0.468523 - 0.829672, 0.160495, 0.255827, 0.469509 - 0.828819, 0.160534, 0.256758, 0.470492 - 0.827965, 0.160570, 0.257690, 0.471473 - 0.827109, 0.160604, 0.258622, 0.472452 - 0.826252, 0.160635, 0.259555, 0.473429 - 0.825394, 0.160663, 0.260488, 0.474402 - 0.824535, 0.160689, 0.261421, 0.475374 - 0.823674, 0.160712, 0.262355, 0.476343 - 0.822812, 0.160732, 0.263289, 0.477310 - 0.821948, 0.160750, 0.264223, 0.478274 - 0.821084, 0.160765, 0.265157, 0.479237 - 0.820218, 0.160777, 0.266092, 0.480196 - 0.819350, 0.160787, 0.267027, 0.481153 - 0.818482, 0.160794, 0.267963, 0.482108 - 0.817612, 0.160799, 0.268899, 0.483061 - 0.816741, 0.160801, 0.269835, 0.484011 - 0.815869, 0.160800, 0.270771, 0.484959 - 0.814995, 0.160796, 0.271707, 0.485904 - 0.814120, 0.160790, 0.272644, 0.486847 - 0.813244, 0.160781, 0.273581, 0.487787 - 0.812367, 0.160770, 0.274519, 0.488726 - 0.811488, 0.160756, 0.275456, 0.489661 - 0.810609, 0.160739, 0.276394, 0.490595 - 0.809728, 0.160720, 0.277332, 0.491525 - 0.808846, 0.160698, 0.278270, 0.492454 - 0.807962, 0.160673, 0.279208, 0.493380 - 0.807078, 0.160646, 0.280147, 0.494304 - 0.806192, 0.160616, 0.281086, 0.495225 - 0.805305, 0.160584, 0.282024, 0.496144 - 0.804417, 0.160548, 0.282964, 0.497060 - 0.803528, 0.160511, 0.283903, 0.497974 - 0.802638, 0.160470, 0.284842, 0.498886 - 0.801746, 0.160427, 0.285782, 0.499795 - 0.800853, 0.160381, 0.286722, 0.500702 - 0.799960, 0.160333, 0.287661, 0.501606 - 0.799065, 0.160282, 0.288601, 0.502508 - 0.798169, 0.160228, 0.289541, 0.503408 - 0.797272, 0.160171, 0.290482, 0.504305 - 0.796374, 0.160112, 0.291422, 0.505199 - 0.795474, 0.160051, 0.292362, 0.506092 - 0.794574, 0.159986, 0.293303, 0.506982 - 0.793672, 0.159919, 0.294244, 0.507869 - 0.792770, 0.159849, 0.295184, 0.508754 - 0.791866, 0.159777, 0.296125, 0.509636 - 0.790961, 0.159702, 0.297066, 0.510516 - 0.790056, 0.159625, 0.298007, 0.511394 - 0.789149, 0.159544, 0.298948, 0.512269 - 0.788241, 0.159461, 0.299889, 0.513142 - 0.787332, 0.159376, 0.300830, 0.514013 - 0.786422, 0.159288, 0.301771, 0.514880 - 0.785511, 0.159197, 0.302712, 0.515746 - 0.784599, 0.159103, 0.303653, 0.516609 - 0.783686, 0.159007, 0.304594, 0.517470 - 0.782772, 0.158908, 0.305535, 0.518328 - 0.781857, 0.158807, 0.306476, 0.519184 - 0.780942, 0.158703, 0.307418, 0.520037 - 0.780025, 0.158596, 0.308359, 0.520888 - 0.779107, 0.158486, 0.309300, 0.521736 - 0.778188, 0.158374, 0.310241, 0.522582 - 0.777268, 0.158260, 0.311182, 0.523426 - 0.776347, 0.158142, 0.312123, 0.524267 - 0.775425, 0.158022, 0.313064, 0.525105 - 0.774503, 0.157900, 0.314004, 0.525941 - 0.773579, 0.157774, 0.314945, 0.526775 - 0.772655, 0.157646, 0.315886, 0.527606 - 0.771729, 0.157516, 0.316826, 0.528435 - 0.770803, 0.157383, 0.317767, 0.529262 - 0.769876, 0.157247, 0.318707, 0.530086 - 0.768947, 0.157108, 0.319648, 0.530907 - 0.768018, 0.156967, 0.320588, 0.531726 - 0.767088, 0.156823, 0.321528, 0.532543 - 0.766158, 0.156677, 0.322468, 0.533357 - 0.765226, 0.156528, 0.323408, 0.534169 - 0.764293, 0.156376, 0.324347, 0.534978 - 0.763360, 0.156222, 0.325287, 0.535785 - 0.762426, 0.156065, 0.326226, 0.536589 - 0.761490, 0.155905, 0.327165, 0.537391 - 0.760555, 0.155743, 0.328104, 0.538190 - 0.759618, 0.155578, 0.329043, 0.538987 - 0.758680, 0.155410, 0.329982, 0.539782 - 0.757742, 0.155240, 0.330920, 0.540574 - 0.756802, 0.155067, 0.331859, 0.541363 - 0.755862, 0.154892, 0.332797, 0.542150 - 0.754922, 0.154714, 0.333735, 0.542935 - 0.753980, 0.154533, 0.334672, 0.543717 - 0.753037, 0.154350, 0.335610, 0.544497 - 0.752094, 0.154164, 0.336547, 0.545274 - 0.751150, 0.153975, 0.337484, 0.546049 - 0.750206, 0.153784, 0.338421, 0.546821 - 0.749260, 0.153590, 0.339357, 0.547591 - 0.748314, 0.153393, 0.340293, 0.548359 - 0.747367, 0.153194, 0.341229, 0.549124 - 0.746419, 0.152993, 0.342165, 0.549886 - 0.745471, 0.152788, 0.343100, 0.550646 - 0.744522, 0.152581, 0.344035, 0.551404 - 0.743572, 0.152372, 0.344970, 0.552159 - 0.742621, 0.152159, 0.345904, 0.552912 - 0.741670, 0.151944, 0.346839, 0.553662 - 0.740718, 0.151727, 0.347773, 0.554410 - 0.739765, 0.151507, 0.348706, 0.555155 - 0.738812, 0.151284, 0.349639, 0.555898 - 0.737858, 0.151059, 0.350572, 0.556639 - 0.736903, 0.150831, 0.351505, 0.557377 - 0.735948, 0.150600, 0.352437, 0.558112 - 0.734992, 0.150367, 0.353369, 0.558845 - 0.734035, 0.150132, 0.354300, 0.559576 - 0.733078, 0.149893, 0.355231, 0.560304 - 0.732120, 0.149652, 0.356162, 0.561029 - 0.731161, 0.149409, 0.357092, 0.561753 - 0.730202, 0.149162, 0.358022, 0.562473 - 0.729242, 0.148914, 0.358952, 0.563192 - 0.728282, 0.148662, 0.359881, 0.563907 - 0.727320, 0.148408, 0.360809, 0.564621 - 0.726359, 0.148152, 0.361738, 0.565332 - 0.725397, 0.147893, 0.362665, 0.566040 - 0.724434, 0.147631, 0.363593, 0.566746 - 0.723470, 0.147366, 0.364520, 0.567449 - 0.722507, 0.147099, 0.365446, 0.568151 - 0.721542, 0.146830, 0.366372, 0.568849 - 0.720577, 0.146558, 0.367298, 0.569545 - 0.719611, 0.146283, 0.368223, 0.570239 - 0.718645, 0.146006, 0.369148, 0.570930 - 0.717679, 0.145726, 0.370072, 0.571619 - 0.716711, 0.145443, 0.370996, 0.572305 - 0.715744, 0.145158, 0.371919, 0.572989 - 0.714775, 0.144870, 0.372842, 0.573671 - 0.713807, 0.144580, 0.373764, 0.574350 - 0.712837, 0.144287, 0.374685, 0.575026 - 0.711868, 0.143992, 0.375606, 0.575700 - 0.710897, 0.143694, 0.376527, 0.576372 - 0.709927, 0.143393, 0.377447, 0.577041 - 0.708955, 0.143090, 0.378367, 0.577708 - 0.707984, 0.142785, 0.379286, 0.578372 - 0.707012, 0.142476, 0.380204, 0.579034 - 0.706039, 0.142166, 0.381122, 0.579693 - 0.705066, 0.141852, 0.382039, 0.580350 - 0.704092, 0.141536, 0.382956, 0.581004 - 0.703119, 0.141218, 0.383872, 0.581656 - 0.702144, 0.140897, 0.384787, 0.582306 - 0.701169, 0.140573, 0.385702, 0.582953 - 0.700194, 0.140247, 0.386617, 0.583598 - 0.699219, 0.139918, 0.387530, 0.584240 - 0.698243, 0.139587, 0.388443, 0.584880 - 0.697266, 0.139253, 0.389356, 0.585517 - 0.696290, 0.138917, 0.390268, 0.586152 - 0.695312, 0.138578, 0.391179, 0.586785 - 0.694335, 0.138236, 0.392089, 0.587415 - 0.693357, 0.137892, 0.392999, 0.588042 - 0.692379, 0.137546, 0.393908, 0.588667 - 0.691400, 0.137197, 0.394817, 0.589290 - 0.690421, 0.136845, 0.395725, 0.589910 - 0.689442, 0.136491, 0.396632, 0.590528 - 0.688462, 0.136134, 0.397538, 0.591144 - 0.687482, 0.135775, 0.398444, 0.591757 - 0.686502, 0.135413, 0.399349, 0.592367 - 0.685521, 0.135049, 0.400254, 0.592975 - 0.684540, 0.134682, 0.401157, 0.593581 - 0.683559, 0.134313, 0.402060, 0.594184 - 0.682577, 0.133941, 0.402962, 0.594785 - 0.681596, 0.133567, 0.403864, 0.595383 - 0.680613, 0.133190, 0.404765, 0.595979 - 0.679631, 0.132810, 0.405665, 0.596573 - 0.678648, 0.132429, 0.406564, 0.597164 - 0.677665, 0.132044, 0.407462, 0.597753 - 0.676682, 0.131657, 0.408360, 0.598339 - 0.675699, 0.131268, 0.409257, 0.598923 - 0.674715, 0.130876, 0.410153, 0.599504 - 0.673731, 0.130482, 0.411049, 0.600083 - 0.672747, 0.130085, 0.411943, 0.600660 - 0.671763, 0.129685, 0.412837, 0.601234 - 0.670778, 0.129284, 0.413730, 0.601806 - 0.669793, 0.128879, 0.414622, 0.602375 - 0.668808, 0.128472, 0.415514, 0.602942 - 0.667823, 0.128063, 0.416404, 0.603507 - 0.666837, 0.127651, 0.417294, 0.604069 - 0.665852, 0.127237, 0.418183, 0.604628 - 0.664866, 0.126820, 0.419071, 0.605186 - 0.663880, 0.126401, 0.419958, 0.605741 - 0.662894, 0.125979, 0.420844, 0.606293 - 0.661907, 0.125555, 0.421729, 0.606843 - 0.660921, 0.125129, 0.422614, 0.607391 - 0.659934, 0.124700, 0.423498, 0.607936 - 0.658948, 0.124268, 0.424380, 0.608479 - 0.657961, 0.123834, 0.425262, 0.609020 - 0.656974, 0.123398, 0.426143, 0.609558 - 0.655986, 0.122959, 0.427023, 0.610093 - 0.654999, 0.122517, 0.427903, 0.610627 - 0.654012, 0.122074, 0.428781, 0.611158 - 0.653024, 0.121627, 0.429658, 0.611686 - 0.652037, 0.121179, 0.430535, 0.612212 - 0.651049, 0.120727, 0.431410, 0.612736 - 0.650061, 0.120274, 0.432285, 0.613257 - 0.649073, 0.119818, 0.433158, 0.613776 - 0.648085, 0.119360, 0.434031, 0.614293 - 0.647097, 0.118899, 0.434903, 0.614807 - 0.646109, 0.118435, 0.435773, 0.615319 - 0.645121, 0.117970, 0.436643, 0.615829 - 0.644133, 0.117502, 0.437512, 0.616336 - 0.643145, 0.117031, 0.438379, 0.616840 - 0.642156, 0.116558, 0.439246, 0.617343 - 0.641168, 0.116083, 0.440112, 0.617843 - 0.640180, 0.115605, 0.440977, 0.618340 - 0.639192, 0.115125, 0.441840, 0.618836 - 0.638203, 0.114642, 0.442703, 0.619328 - 0.637215, 0.114157, 0.443565, 0.619819 - 0.636226, 0.113670, 0.444426, 0.620307 - 0.635238, 0.113180, 0.445285, 0.620793 - 0.634250, 0.112688, 0.446144, 0.621276 - 0.633261, 0.112194, 0.447001, 0.621758 - 0.632273, 0.111697, 0.447858, 0.622236 - 0.631285, 0.111198, 0.448713, 0.622713 - 0.630297, 0.110696, 0.449568, 0.623187 - 0.629308, 0.110192, 0.450421, 0.623658 - 0.628320, 0.109686, 0.451273, 0.624128 - 0.627332, 0.109177, 0.452124, 0.624595 - 0.626344, 0.108666, 0.452974, 0.625059 - 0.625356, 0.108152, 0.453823, 0.625522 - 0.624368, 0.107636, 0.454671, 0.625982 - 0.623380, 0.107118, 0.455517, 0.626439 - 0.622393, 0.106598, 0.456363, 0.626895 - 0.621405, 0.106075, 0.457207, 0.627348 - 0.620417, 0.105550, 0.458051, 0.627798 - 0.619430, 0.105022, 0.458893, 0.628247 - 0.618443, 0.104492, 0.459734, 0.628693 - 0.617455, 0.103960, 0.460574, 0.629137 - 0.616468, 0.103425, 0.461413, 0.629578 - 0.615481, 0.102888, 0.462250, 0.630017 - 0.614495, 0.102349, 0.463087, 0.630454 - 0.613508, 0.101808, 0.463922, 0.630888 - 0.612521, 0.101264, 0.464756, 0.631320 - 0.611535, 0.100718, 0.465589, 0.631750 - 0.610549, 0.100169, 0.466420, 0.632178 - 0.609563, 0.099618, 0.467251, 0.632603 - 0.608577, 0.099065, 0.468080, 0.633026 - 0.607591, 0.098510, 0.468908, 0.633446 - 0.606605, 0.097952, 0.469735, 0.633865 - 0.605620, 0.097392, 0.470561, 0.634281 - 0.604635, 0.096830, 0.471385, 0.634694 - 0.603650, 0.096265, 0.472208, 0.635106 - 0.602665, 0.095699, 0.473030, 0.635515 - 0.601680, 0.095129, 0.473851, 0.635922 - 0.600696, 0.094558, 0.474670, 0.636326 - 0.599712, 0.093984, 0.475488, 0.636729 - 0.598728, 0.093408, 0.476305, 0.637129 - 0.597744, 0.092830, 0.477121, 0.637526 - 0.596761, 0.092250, 0.477935, 0.637922 - 0.595778, 0.091667, 0.478748, 0.638315 - 0.594795, 0.091082, 0.479560, 0.638706 - 0.593812, 0.090495, 0.480371, 0.639095 - 0.592830, 0.089905, 0.481180, 0.639481 - 0.591847, 0.089314, 0.481988, 0.639865 - 0.590866, 0.088720, 0.482794, 0.640247 - 0.589884, 0.088124, 0.483600, 0.640627 - 0.588903, 0.087525, 0.484404, 0.641004 - 0.587922, 0.086925, 0.485206, 0.641379 - 0.586941, 0.086322, 0.486008, 0.641752 - 0.585960, 0.085717, 0.486808, 0.642123 - 0.584980, 0.085109, 0.487606, 0.642491 - 0.584000, 0.084500, 0.488404, 0.642857 - 0.583021, 0.083888, 0.489199, 0.643221 - 0.582042, 0.083274, 0.489994, 0.643583 - 0.581063, 0.082658, 0.490787, 0.643942 - 0.580084, 0.082040, 0.491579, 0.644299 - 0.579106, 0.081419, 0.492369, 0.644654 - 0.578128, 0.080797, 0.493159, 0.645007 - 0.577151, 0.080172, 0.493946, 0.645358 - 0.576174, 0.079545, 0.494732, 0.645706 - 0.575197, 0.078915, 0.495517, 0.646052 - 0.574221, 0.078284, 0.496301, 0.646396 - 0.573245, 0.077650, 0.497083, 0.646738 - 0.572269, 0.077015, 0.497863, 0.647077 - 0.571294, 0.076377, 0.498643, 0.647414 - 0.570319, 0.075737, 0.499420, 0.647750 - 0.569345, 0.075095, 0.500197, 0.648082 - 0.568370, 0.074450, 0.500972, 0.648413 - 0.567397, 0.073804, 0.501745, 0.648742 - 0.566424, 0.073155, 0.502517, 0.649068 - 0.565451, 0.072504, 0.503288, 0.649392 - 0.564478, 0.071851, 0.504057, 0.649714 - 0.563506, 0.071196, 0.504825, 0.650034 - 0.562535, 0.070539, 0.505591, 0.650351 - 0.561564, 0.069880, 0.506355, 0.650667 - 0.560593, 0.069218, 0.507119, 0.650980 - 0.559623, 0.068555, 0.507880, 0.651291 - 0.558653, 0.067889, 0.508640, 0.651600 - 0.557684, 0.067222, 0.509399, 0.651907 - 0.556715, 0.066552, 0.510156, 0.652211 - 0.555747, 0.065880, 0.510912, 0.652514 - 0.554779, 0.065206, 0.511666, 0.652814 - 0.553812, 0.064530, 0.512419, 0.653112 - 0.552845, 0.063852, 0.513170, 0.653408 - 0.551879, 0.063172, 0.513920, 0.653702 - 0.550913, 0.062489, 0.514668, 0.653993 - 0.549947, 0.061805, 0.515414, 0.654283 - 0.548982, 0.061118, 0.516159, 0.654570 - 0.548018, 0.060430, 0.516903, 0.654856 - 0.547054, 0.059739, 0.517645, 0.655139 - 0.546091, 0.059047, 0.518385, 0.655420 - 0.545128, 0.058352, 0.519124, 0.655699 - 0.544166, 0.057655, 0.519861, 0.655976 - 0.543204, 0.056957, 0.520596, 0.656250 - 0.542243, 0.056256, 0.521330, 0.656523 - 0.541283, 0.055553, 0.522063, 0.656793 - 0.540323, 0.054848, 0.522794, 0.657062 - 0.539363, 0.054142, 0.523523, 0.657328 - 0.538404, 0.053433, 0.524250, 0.657592 - 0.537446, 0.052722, 0.524976, 0.657854 - 0.536488, 0.052009, 0.525701, 0.658114 - 0.535531, 0.051294, 0.526424, 0.658372 - 0.534574, 0.050577, 0.527145, 0.658628 - 0.533618, 0.049858, 0.527864, 0.658882 - 0.532663, 0.049138, 0.528582, 0.659133 - 0.531708, 0.048415, 0.529298, 0.659383 - 0.530754, 0.047690, 0.530013, 0.659630 - 0.529800, 0.046963, 0.530726, 0.659876 - 0.528847, 0.046234, 0.531437, 0.660119 - 0.527895, 0.045504, 0.532147, 0.660360 - 0.526943, 0.044771, 0.532855, 0.660600 - 0.525992, 0.044036, 0.533561, 0.660837 - 0.525042, 0.043300, 0.534266, 0.661072 - 0.524092, 0.042561, 0.534969, 0.661305 - 0.523143, 0.041821, 0.535670, 0.661536 - 0.522195, 0.041079, 0.536370, 0.661765 - 0.521247, 0.040334, 0.537067, 0.661992 - 0.520300, 0.039588, 0.537764, 0.662217 - 0.519353, 0.038840, 0.538458, 0.662440 - 0.518407, 0.038090, 0.539151, 0.662661 - 0.517462, 0.037338, 0.539842, 0.662880 - 0.516518, 0.036584, 0.540531, 0.663097 - 0.515574, 0.035828, 0.541219, 0.663311 - 0.514631, 0.035070, 0.541905, 0.663524 - 0.513689, 0.034311, 0.542589, 0.663735 - 0.512747, 0.033549, 0.543271, 0.663944 - 0.511806, 0.032786, 0.543952, 0.664151 - 0.510866, 0.032021, 0.544631, 0.664356 - 0.509926, 0.031253, 0.545308, 0.664558 - 0.508987, 0.030484, 0.545983, 0.664759 - 0.508049, 0.029714, 0.546657, 0.664958 - 0.507112, 0.028941, 0.547329, 0.665155 - 0.506175, 0.028166, 0.547999, 0.665350 - 0.505239, 0.027390, 0.548667, 0.665543 - 0.504304, 0.026612, 0.549334, 0.665734 - 0.503370, 0.025832, 0.549999, 0.665923 - 0.502436, 0.025050, 0.550662, 0.666110 - 0.501503, 0.024266, 0.551323, 0.666295 - 0.500571, 0.023480, 0.551982, 0.666478 - 0.499640, 0.022693, 0.552640, 0.666659 - 0.498709, 0.021904, 0.553296, 0.666838 - 0.497779, 0.021113, 0.553950, 0.667016 - 0.496850, 0.020320, 0.554602, 0.667191 - 0.495922, 0.019525, 0.555252, 0.667364 - 0.494995, 0.018729, 0.555900, 0.667536 - 0.494068, 0.017931, 0.556547, 0.667705 - 0.493142, 0.017131, 0.557192, 0.667873 - 0.492217, 0.016329, 0.557835, 0.668039 - 0.491293, 0.015525, 0.558476, 0.668202 - 0.490370, 0.014720, 0.559115, 0.668364 - 0.489447, 0.013913, 0.559753, 0.668524 - 0.488525, 0.013104, 0.560389, 0.668682 - 0.487604, 0.012293, 0.561022, 0.668838 - 0.486684, 0.011481, 0.561654, 0.668993 - 0.485765, 0.010667, 0.562284, 0.669145 - 0.484847, 0.009851, 0.562912, 0.669296 - 0.483929, 0.009034, 0.563538, 0.669444 - 0.483012, 0.008214, 0.564163, 0.669591 - 0.482096, 0.007393, 0.564785, 0.669736 - 0.481181, 0.006571, 0.565406, 0.669879 - 0.480267, 0.005746, 0.566025, 0.670020 - 0.479354, 0.004920, 0.566641, 0.670159 - 0.478441, 0.004092, 0.567256, 0.670296 - 0.477530, 0.003263, 0.567869, 0.670432 - 0.476619, 0.002431, 0.568480, 0.670566 - 0.475709, 0.001599, 0.569090, 0.670698 - 0.474801, 0.000764, 0.569697, 0.670827 - 0.473893, -0.000072, 0.570302, 0.670956 - 0.472985, -0.000910, 0.570905, 0.671082 - 0.472079, -0.001750, 0.571507, 0.671206 - 0.471174, -0.002591, 0.572106, 0.671329 - 0.470269, -0.003434, 0.572704, 0.671450 - 0.469366, -0.004279, 0.573300, 0.671569 - 0.468463, -0.005125, 0.573893, 0.671686 - 0.467562, -0.005973, 0.574485, 0.671802 - 0.466661, -0.006822, 0.575075, 0.671915 - 0.465761, -0.007673, 0.575663, 0.672027 - 0.464862, -0.008526, 0.576248, 0.672137 - 0.463965, -0.009380, 0.576832, 0.672245 - 0.463068, -0.010236, 0.577414, 0.672351 - 0.462172, -0.011094, 0.577994, 0.672456 - 0.461277, -0.011953, 0.578572, 0.672559 - 0.460382, -0.012813, 0.579148, 0.672660 - 0.459489, -0.013676, 0.579722, 0.672759 - 0.458597, -0.014540, 0.580294, 0.672857 - 0.457706, -0.015405, 0.580864, 0.672953 - 0.456816, -0.016272, 0.581432, 0.673047 - 0.455926, -0.017141, 0.581998, 0.673139 - 0.455038, -0.018011, 0.582562, 0.673229 - 0.454151, -0.018883, 0.583124, 0.673318 - 0.453264, -0.019756, 0.583684, 0.673405 - 0.452379, -0.020631, 0.584242, 0.673490 - 0.451495, -0.021507, 0.584797, 0.673574 - 0.450611, -0.022385, 0.585351, 0.673656 - 0.449729, -0.023264, 0.585903, 0.673736 - 0.448848, -0.024145, 0.586453, 0.673814 - 0.447967, -0.025028, 0.587001, 0.673891 - 0.447088, -0.025912, 0.587546, 0.673966 - 0.446210, -0.026797, 0.588090, 0.674039 - 0.445332, -0.027684, 0.588632, 0.674111 - 0.444456, -0.028573, 0.589171, 0.674181 - 0.443581, -0.029463, 0.589709, 0.674249 - 0.442707, -0.030354, 0.590244, 0.674315 - 0.441834, -0.031247, 0.590778, 0.674380 - 0.440961, -0.032141, 0.591309, 0.674443 - 0.440090, -0.033037, 0.591838, 0.674505 - 0.439220, -0.033935, 0.592366, 0.674564 - 0.438351, -0.034833, 0.592891, 0.674622 - 0.437483, -0.035733, 0.593414, 0.674679 - 0.436617, -0.036635, 0.593935, 0.674734 - 0.435751, -0.037538, 0.594453, 0.674787 - 0.434886, -0.038443, 0.594970, 0.674838 - 0.434022, -0.039349, 0.595485, 0.674888 - 0.433160, -0.040256, 0.595998, 0.674936 - 0.432298, -0.041165, 0.596508, 0.674983 - 0.431438, -0.042075, 0.597016, 0.675028 - 0.430578, -0.042987, 0.597523, 0.675071 - 0.429720, -0.043900, 0.598027, 0.675113 - 0.428863, -0.044814, 0.598529, 0.675153 - 0.428007, -0.045730, 0.599029, 0.675191 - 0.427152, -0.046647, 0.599527, 0.675228 - 0.426298, -0.047565, 0.600022, 0.675264 - 0.425445, -0.048485, 0.600516, 0.675297 - 0.424594, -0.049406, 0.601007, 0.675329 - 0.423743, -0.050329, 0.601496, 0.675360 - 0.422894, -0.051253, 0.601984, 0.675389 - 0.422045, -0.052178, 0.602469, 0.675416 - 0.421198, -0.053105, 0.602951, 0.675442 - 0.420352, -0.054033, 0.603432, 0.675466 - 0.419507, -0.054962, 0.603911, 0.675489 - 0.418663, -0.055893, 0.604387, 0.675510 - 0.417821, -0.056825, 0.604861, 0.675529 - 0.416979, -0.057758, 0.605333, 0.675547 - 0.416139, -0.058692, 0.605803, 0.675564 - 0.415299, -0.059628, 0.606271, 0.675578 - 0.414461, -0.060565, 0.606737, 0.675592 - 0.413624, -0.061504, 0.607200, 0.675604 - 0.412789, -0.062443, 0.607661, 0.675614 - 0.411954, -0.063384, 0.608120, 0.675623 - 0.411120, -0.064327, 0.608577, 0.675630 - 0.410288, -0.065270, 0.609032, 0.675636 - 0.409457, -0.066215, 0.609485, 0.675640 - 0.408627, -0.067161, 0.609935, 0.675643 - 0.407798, -0.068108, 0.610383, 0.675644 - 0.406970, -0.069057, 0.610829, 0.675644 - 0.406144, -0.070006, 0.611273, 0.675642 - 0.405319, -0.070957, 0.611714, 0.675639 - 0.404495, -0.071909, 0.612154, 0.675634 - 0.403672, -0.072863, 0.612591, 0.675628 - 0.402850, -0.073817, 0.613026, 0.675620 - 0.402030, -0.074773, 0.613458, 0.675611 - 0.401210, -0.075730, 0.613889, 0.675600 - 0.400392, -0.076688, 0.614317, 0.675588 - 0.399575, -0.077648, 0.614743, 0.675575 - 0.398759, -0.078608, 0.615167, 0.675560 - 0.397945, -0.079570, 0.615589, 0.675544 - 0.397132, -0.080533, 0.616008, 0.675526 - 0.396320, -0.081497, 0.616425, 0.675507 - 0.395509, -0.082462, 0.616840, 0.675486 - 0.394699, -0.083428, 0.617253, 0.675464 - 0.393891, -0.084396, 0.617663, 0.675440 - 0.393084, -0.085364, 0.618071, 0.675415 - 0.392278, -0.086334, 0.618477, 0.675389 - 0.391473, -0.087305, 0.618881, 0.675361 - 0.390669, -0.088277, 0.619283, 0.675332 - 0.389867, -0.089250, 0.619682, 0.675302 - 0.389066, -0.090224, 0.620079, 0.675270 - 0.388266, -0.091199, 0.620473, 0.675237 - 0.387468, -0.092176, 0.620866, 0.675202 - 0.386671, -0.093153, 0.621256, 0.675166 - 0.385875, -0.094132, 0.621644, 0.675129 - 0.385080, -0.095111, 0.622030, 0.675090 - 0.384286, -0.096092, 0.622413, 0.675050 - 0.383494, -0.097074, 0.622794, 0.675009 - 0.382703, -0.098056, 0.623173, 0.674966 - 0.381913, -0.099040, 0.623549, 0.674922 - 0.381125, -0.100025, 0.623924, 0.674876 - 0.380338, -0.101011, 0.624296, 0.674829 - 0.379552, -0.101998, 0.624665, 0.674781 - 0.378767, -0.102986, 0.625033, 0.674732 - 0.377984, -0.103975, 0.625398, 0.674681 - 0.377202, -0.104965, 0.625761, 0.674629 - 0.376421, -0.105956, 0.626121, 0.674576 - 0.375642, -0.106948, 0.626480, 0.674521 - 0.374863, -0.107941, 0.626835, 0.674465 - 0.374087, -0.108935, 0.627189, 0.674408 - 0.373311, -0.109930, 0.627541, 0.674349 - 0.372537, -0.110926, 0.627890, 0.674290 - 0.371764, -0.111923, 0.628236, 0.674229 - 0.370992, -0.112921, 0.628581, 0.674166 - 0.370221, -0.113920, 0.628923, 0.674103 - 0.369452, -0.114920, 0.629263, 0.674038 - 0.368684, -0.115920, 0.629600, 0.673972 - 0.367918, -0.116922, 0.629935, 0.673904 - 0.367153, -0.117925, 0.630268, 0.673836 - 0.366389, -0.118928, 0.630599, 0.673766 - 0.365626, -0.119933, 0.630927, 0.673695 - 0.364865, -0.120938, 0.631253, 0.673622 - 0.364105, -0.121944, 0.631577, 0.673549 - 0.363346, -0.122952, 0.631898, 0.673474 - 0.362589, -0.123960, 0.632217, 0.673398 - 0.361833, -0.124969, 0.632533, 0.673321 - 0.361079, -0.125979, 0.632848, 0.673243 - 0.360325, -0.126989, 0.633160, 0.673163 - 0.359573, -0.128001, 0.633469, 0.673082 - 0.358823, -0.129013, 0.633776, 0.673000 - 0.358073, -0.130027, 0.634081, 0.672917 - 0.357326, -0.131041, 0.634384, 0.672833 - 0.356579, -0.132056, 0.634684, 0.672747 - 0.355834, -0.133072, 0.634982, 0.672661 - 0.355090, -0.134088, 0.635278, 0.672573 - 0.354347, -0.135106, 0.635571, 0.672484 - 0.353606, -0.136124, 0.635862, 0.672394 - 0.352866, -0.137143, 0.636150, 0.672302 - 0.352128, -0.138163, 0.636436, 0.672210 - 0.351391, -0.139184, 0.636720, 0.672116 - 0.350655, -0.140206, 0.637001, 0.672022 - 0.349920, -0.141228, 0.637280, 0.671926 - 0.349187, -0.142251, 0.637557, 0.671829 - 0.348456, -0.143275, 0.637831, 0.671731 - 0.347725, -0.144300, 0.638103, 0.671632 - 0.346996, -0.145325, 0.638373, 0.671531 - 0.346269, -0.146351, 0.638640, 0.671430 - 0.345542, -0.147378, 0.638905, 0.671327 - 0.344818, -0.148406, 0.639168, 0.671224 - 0.344094, -0.149434, 0.639428, 0.671119 - 0.343372, -0.150463, 0.639685, 0.671013 - 0.342651, -0.151493, 0.639941, 0.670907 - 0.341932, -0.152524, 0.640194, 0.670799 - 0.341214, -0.153555, 0.640444, 0.670690 - 0.340497, -0.154587, 0.640693, 0.670580 - 0.339782, -0.155620, 0.640939, 0.670469 - 0.339068, -0.156653, 0.641182, 0.670357 - 0.338356, -0.157687, 0.641423, 0.670244 - 0.337645, -0.158722, 0.641662, 0.670129 - 0.336935, -0.159757, 0.641898, 0.670014 - 0.336227, -0.160793, 0.642132, 0.669898 - 0.335520, -0.161830, 0.642364, 0.669781 - 0.334815, -0.162868, 0.642593, 0.669662 - 0.334111, -0.163906, 0.642820, 0.669543 - 0.333408, -0.164944, 0.643044, 0.669423 - 0.332707, -0.165984, 0.643266, 0.669301 - 0.332007, -0.167024, 0.643486, 0.669179 - 0.331309, -0.168064, 0.643703, 0.669056 - 0.330612, -0.169105, 0.643918, 0.668932 - 0.329916, -0.170147, 0.644130, 0.668806 - 0.329222, -0.171190, 0.644340, 0.668680 - 0.328529, -0.172233, 0.644548, 0.668553 - 0.327838, -0.173276, 0.644753, 0.668425 - 0.327148, -0.174320, 0.644956, 0.668296 - 0.326459, -0.175365, 0.645156, 0.668166 - 0.325772, -0.176410, 0.645354, 0.668035 - 0.325086, -0.177456, 0.645550, 0.667903 - 0.324402, -0.178503, 0.645743, 0.667770 - 0.323719, -0.179550, 0.645933, 0.667636 - 0.323038, -0.180597, 0.646122, 0.667501 - 0.322358, -0.181645, 0.646308, 0.667365 - 0.321679, -0.182694, 0.646491, 0.667229 - 0.321002, -0.183743, 0.646673, 0.667091 - 0.320326, -0.184793, 0.646851, 0.666953 - 0.319652, -0.185843, 0.647028, 0.666814 - 0.318979, -0.186894, 0.647201, 0.666673 - 0.318308, -0.187945, 0.647373, 0.666532 - 0.317638, -0.188997, 0.647542, 0.666390 - 0.316969, -0.190049, 0.647709, 0.666247 - 0.316302, -0.191101, 0.647873, 0.666104 - 0.315636, -0.192155, 0.648035, 0.665959 - 0.314972, -0.193208, 0.648194, 0.665814 - 0.314309, -0.194262, 0.648351, 0.665667 - 0.313647, -0.195317, 0.648506, 0.665520 - 0.312988, -0.196372, 0.648658, 0.665372 - 0.312329, -0.197427, 0.648808, 0.665223 - 0.311672, -0.198483, 0.648955, 0.665073 - 0.311016, -0.199539, 0.649100, 0.664923 - 0.310362, -0.200596, 0.649242, 0.664771 - 0.309709, -0.201653, 0.649382, 0.664619 - 0.309058, -0.202711, 0.649520, 0.664466 - 0.308408, -0.203769, 0.649655, 0.664312 - 0.307760, -0.204827, 0.649788, 0.664158 - 0.307113, -0.205886, 0.649918, 0.664002 - 0.306467, -0.206945, 0.650046, 0.663846 - 0.305823, -0.208004, 0.650172, 0.663689 - 0.305180, -0.209064, 0.650295, 0.663531 - 0.304539, -0.210124, 0.650416, 0.663373 - 0.303900, -0.211185, 0.650534, 0.663213 - 0.303261, -0.212246, 0.650650, 0.663053 - 0.302624, -0.213307, 0.650763, 0.662892 - 0.301989, -0.214369, 0.650874, 0.662731 - 0.301355, -0.215431, 0.650982, 0.662568 - 0.300723, -0.216493, 0.651088, 0.662405 - 0.300092, -0.217556, 0.651192, 0.662241 - 0.299462, -0.218619, 0.651293, 0.662077 - 0.298834, -0.219682, 0.651392, 0.661911 - 0.298208, -0.220745, 0.651488, 0.661745 - 0.297582, -0.221809, 0.651582, 0.661578 - 0.296959, -0.222873, 0.651674, 0.661411 - 0.296337, -0.223938, 0.651763, 0.661242 - 0.295716, -0.225002, 0.651850, 0.661074 - 0.295096, -0.226067, 0.651934, 0.660904 - 0.294479, -0.227133, 0.652016, 0.660734 - 0.293862, -0.228198, 0.652095, 0.660563 - 0.293247, -0.229264, 0.652172, 0.660391 - 0.292634, -0.230330, 0.652246, 0.660218 - 0.292022, -0.231396, 0.652318, 0.660045 - 0.291411, -0.232462, 0.652388, 0.659872 - 0.290802, -0.233529, 0.652455, 0.659697 - 0.290195, -0.234596, 0.652520, 0.659522 - 0.289589, -0.235663, 0.652582, 0.659346 - 0.288984, -0.236730, 0.652642, 0.659170 - 0.288381, -0.237798, 0.652700, 0.658993 - 0.287779, -0.238866, 0.652755, 0.658815 - 0.287179, -0.239933, 0.652807, 0.658637 - 0.286580, -0.241002, 0.652857, 0.658458 - 0.285983, -0.242070, 0.652905, 0.658279 - 0.285387, -0.243138, 0.652950, 0.658099 - 0.284793, -0.244207, 0.652993, 0.657918 - 0.284200, -0.245275, 0.653034, 0.657737 - 0.283608, -0.246344, 0.653072, 0.657555 - 0.283018, -0.247413, 0.653107, 0.657372 - 0.282430, -0.248482, 0.653140, 0.657189 - 0.281843, -0.249552, 0.653171, 0.657005 - 0.281257, -0.250621, 0.653199, 0.656821 - 0.280673, -0.251691, 0.653225, 0.656636 - 0.280091, -0.252760, 0.653249, 0.656451 - 0.279510, -0.253830, 0.653270, 0.656265 - 0.278930, -0.254900, 0.653288, 0.656078 - 0.278352, -0.255970, 0.653304, 0.655891 - 0.277775, -0.257040, 0.653318, 0.655703 - 0.277200, -0.258110, 0.653329, 0.655515 - 0.276626, -0.259180, 0.653338, 0.655327 - 0.276054, -0.260250, 0.653345, 0.655137 - 0.275483, -0.261321, 0.653349, 0.654948 - 0.274914, -0.262391, 0.653350, 0.654757 - 0.274346, -0.263461, 0.653349, 0.654566 - 0.273780, -0.264532, 0.653346, 0.654375 - 0.273215, -0.265602, 0.653340, 0.654183 - 0.272651, -0.266673, 0.653332, 0.653991 - 0.272089, -0.267743, 0.653322, 0.653798 - 0.271529, -0.268814, 0.653309, 0.653605 - 0.270970, -0.269884, 0.653293, 0.653411 - 0.270412, -0.270955, 0.653275, 0.653217 - 0.269856, -0.272025, 0.653255, 0.653022 - 0.269302, -0.273096, 0.653232, 0.652827 - 0.268749, -0.274166, 0.653207, 0.652631 - 0.268197, -0.275237, 0.653180, 0.652435 - 0.267647, -0.276307, 0.653150, 0.652238 - 0.267098, -0.277378, 0.653117, 0.652041 - 0.266551, -0.278448, 0.653083, 0.651844 - 0.266005, -0.279519, 0.653045, 0.651646 - 0.265461, -0.280589, 0.653006, 0.651447 - 0.264918, -0.281659, 0.652964, 0.651249 - 0.264377, -0.282729, 0.652919, 0.651049 - 0.263837, -0.283799, 0.652873, 0.650850 - 0.263298, -0.284869, 0.652823, 0.650650 - 0.262762, -0.285939, 0.652772, 0.650449 - 0.262226, -0.287009, 0.652717, 0.650249 - 0.261692, -0.288079, 0.652661, 0.650047 - 0.261160, -0.289149, 0.652602, 0.649846 - 0.260629, -0.290218, 0.652541, 0.649644 - 0.260099, -0.291287, 0.652477, 0.649441 - 0.259571, -0.292357, 0.652411, 0.649239 - 0.259044, -0.293426, 0.652342, 0.649035 - 0.258519, -0.294495, 0.652271, 0.648832 - 0.257995, -0.295564, 0.652198, 0.648628 - 0.257473, -0.296633, 0.652122, 0.648424 - 0.256952, -0.297701, 0.652044, 0.648219 - 0.256433, -0.298770, 0.651963, 0.648014 - 0.255915, -0.299838, 0.651880, 0.647809 - 0.255399, -0.300906, 0.651795, 0.647604 - 0.254884, -0.301974, 0.651707, 0.647398 - 0.254370, -0.303041, 0.651617, 0.647191 - 0.253858, -0.304109, 0.651525, 0.646985 - 0.253348, -0.305176, 0.651430, 0.646778 - 0.252839, -0.306243, 0.651332, 0.646571 - 0.252331, -0.307310, 0.651232, 0.646363 - 0.251825, -0.308377, 0.651130, 0.646156 - 0.251321, -0.309444, 0.651026, 0.645947 - 0.250817, -0.310510, 0.650919, 0.645739 - 0.250316, -0.311576, 0.650810, 0.645531 - 0.249815, -0.312642, 0.650698, 0.645322 - 0.249316, -0.313707, 0.650584, 0.645112 - 0.248819, -0.314772, 0.650467, 0.644903 - 0.248323, -0.315837, 0.650348, 0.644693 - 0.247829, -0.316902, 0.650227, 0.644483 - 0.247336, -0.317967, 0.650104, 0.644273 - 0.246844, -0.319031, 0.649978, 0.644063 - 0.246354, -0.320095, 0.649849, 0.643852 - 0.245865, -0.321158, 0.649718, 0.643641 - 0.245378, -0.322222, 0.649585, 0.643430 - 0.244892, -0.323285, 0.649450, 0.643218 - 0.244408, -0.324347, 0.649312, 0.643007 - 0.243925, -0.325410, 0.649172, 0.642795 - 0.243444, -0.326472, 0.649029, 0.642583 - 0.242964, -0.327534, 0.648884, 0.642371 - 0.242485, -0.328595, 0.648737, 0.642158 - 0.242008, -0.329656, 0.648587, 0.641945 - 0.241532, -0.330717, 0.648435, 0.641733 - 0.241058, -0.331777, 0.648280, 0.641519 - 0.240586, -0.332837, 0.648124, 0.641306 - 0.240114, -0.333897, 0.647964, 0.641093 - 0.239644, -0.334956, 0.647803, 0.640879 - 0.239176, -0.336015, 0.647639, 0.640666 - 0.238709, -0.337074, 0.647473, 0.640452 - 0.238243, -0.338132, 0.647304, 0.640238 - 0.237779, -0.339190, 0.647133, 0.640023 - 0.237317, -0.340247, 0.646960, 0.639809 - 0.236855, -0.341304, 0.646784, 0.639595 - 0.236395, -0.342361, 0.646606, 0.639380 - 0.235937, -0.343417, 0.646426, 0.639165 - 0.235480, -0.344473, 0.646243, 0.638950 - 0.235025, -0.345528, 0.646058, 0.638735 - 0.234571, -0.346583, 0.645871, 0.638520 - 0.234118, -0.347637, 0.645681, 0.638305 - 0.233667, -0.348691, 0.645489, 0.638090 - 0.233217, -0.349745, 0.645295, 0.637874 - 0.232768, -0.350798, 0.645098, 0.637658 - 0.232321, -0.351850, 0.644899, 0.637443 - 0.231876, -0.352903, 0.644698, 0.637227 - 0.231432, -0.353954, 0.644494, 0.637011 - 0.230989, -0.355005, 0.644288, 0.636795 - 0.230548, -0.356056, 0.644080, 0.636579 - 0.230108, -0.357106, 0.643869, 0.636363 - 0.229669, -0.358156, 0.643656, 0.636147 - 0.229232, -0.359205, 0.643441, 0.635931 - 0.228797, -0.360254, 0.643223, 0.635715 - 0.228362, -0.361302, 0.643003, 0.635499 - 0.227929, -0.362350, 0.642781, 0.635282 - 0.227498, -0.363397, 0.642556, 0.635066 - 0.227068, -0.364443, 0.642329, 0.634850 - 0.226639, -0.365489, 0.642100, 0.634633 - 0.226212, -0.366535, 0.641869, 0.634417 - 0.225786, -0.367580, 0.641635, 0.634200 - 0.225362, -0.368624, 0.641399, 0.633984 - 0.224939, -0.369668, 0.641161, 0.633767 - 0.224517, -0.370711, 0.640920, 0.633551 - 0.224097, -0.371754, 0.640677, 0.633335 - 0.223678, -0.372796, 0.640432, 0.633118 - 0.223261, -0.373837, 0.640184, 0.632902 - 0.222845, -0.374878, 0.639934, 0.632685 - 0.222430, -0.375919, 0.639682, 0.632469 - 0.222017, -0.376958, 0.639428, 0.632252 - 0.221605, -0.377997, 0.639171, 0.632036 - 0.221194, -0.379036, 0.638912, 0.631820 - 0.220785, -0.380074, 0.638651, 0.631603 - 0.220378, -0.381111, 0.638388, 0.631387 - 0.219971, -0.382148, 0.638122, 0.631171 - 0.219566, -0.383184, 0.637854, 0.630955 - 0.219163, -0.384219, 0.637583, 0.630738 - 0.218760, -0.385253, 0.637311, 0.630522 - 0.218359, -0.386287, 0.637036, 0.630306 - 0.217960, -0.387321, 0.636759, 0.630090 - 0.217562, -0.388353, 0.636480, 0.629875 - 0.217165, -0.389385, 0.636198, 0.629659 - 0.216770, -0.390417, 0.635914, 0.629443 - 0.216376, -0.391447, 0.635628, 0.629228 - 0.215983, -0.392477, 0.635340, 0.629012 - 0.215592, -0.393507, 0.635049, 0.628797 - 0.215202, -0.394535, 0.634756, 0.628581 - 0.214813, -0.395563, 0.634461, 0.628366 - 0.214426, -0.396590, 0.634164, 0.628151 - 0.214040, -0.397617, 0.633864, 0.627936 - 0.213655, -0.398642, 0.633563, 0.627721 - 0.213272, -0.399667, 0.633259, 0.627507 - 0.212890, -0.400691, 0.632952, 0.627292 - 0.212510, -0.401715, 0.632644, 0.627078 - 0.212131, -0.402738, 0.632333, 0.626863 - 0.211753, -0.403760, 0.632020, 0.626649 - 0.211376, -0.404781, 0.631705, 0.626435 - 0.211001, -0.405801, 0.631388, 0.626221 - 0.210627, -0.406821, 0.631069, 0.626008 - 0.210255, -0.407840, 0.630747, 0.625794 - 0.209884, -0.408858, 0.630423, 0.625581 - 0.209514, -0.409875, 0.630097, 0.625367 - 0.209145, -0.410892, 0.629768, 0.625154 - 0.208778, -0.411908, 0.629438, 0.624942 - 0.208412, -0.412923, 0.629105, 0.624729 - 0.208048, -0.413937, 0.628770, 0.624516 - 0.207685, -0.414950, 0.628433, 0.624304 - 0.207323, -0.415963, 0.628094, 0.624092 - 0.206962, -0.416974, 0.627752, 0.623880 - 0.206603, -0.417985, 0.627408, 0.623668 - 0.206245, -0.418995, 0.627063, 0.623457 - 0.205888, -0.420004, 0.626715, 0.623246 - 0.205533, -0.421013, 0.626364, 0.623035 - 0.205179, -0.422020, 0.626012, 0.622824 - 0.204826, -0.423027, 0.625657, 0.622613 - 0.204475, -0.424033, 0.625301, 0.622403 - 0.204125, -0.425037, 0.624942, 0.622193 - 0.203776, -0.426042, 0.624581, 0.621983 - 0.203428, -0.427045, 0.624218, 0.621773 - 0.203082, -0.428047, 0.623852, 0.621564 - 0.202737, -0.429048, 0.623485, 0.621355 - 0.202393, -0.430049, 0.623115, 0.621146 - 0.202051, -0.431048, 0.622743, 0.620937 - 0.201710, -0.432047, 0.622370, 0.620729 - 0.201370, -0.433045, 0.621993, 0.620521 - 0.201031, -0.434042, 0.621615, 0.620313 - 0.200694, -0.435038, 0.621235, 0.620106 - 0.200358, -0.436033, 0.620852, 0.619899 - 0.200023, -0.437027, 0.620468, 0.619692 - 0.199689, -0.438020, 0.620081, 0.619485 - 0.199357, -0.439012, 0.619692, 0.619279 - 0.199026, -0.440004, 0.619301, 0.619073 - 0.198696, -0.440994, 0.618908, 0.618867 - 0.198368, -0.441983, 0.618513, 0.618662 - 0.198041, -0.442972, 0.618116, 0.618457 - 0.197715, -0.443959, 0.617717, 0.618252 - 0.197390, -0.444946, 0.617315, 0.618047 - 0.197067, -0.445931, 0.616912, 0.617843 - 0.196744, -0.446916, 0.616506, 0.617639 - 0.196423, -0.447899, 0.616098, 0.617436 - 0.196104, -0.448882, 0.615688, 0.617233 - 0.195785, -0.449863, 0.615277, 0.617030 - 0.195468, -0.450844, 0.614863, 0.616828 - 0.195152, -0.451823, 0.614446, 0.616626 - 0.194837, -0.452802, 0.614028, 0.616424 - 0.194523, -0.453779, 0.613608, 0.616223 - 0.194211, -0.454756, 0.613186, 0.616022 - 0.193900, -0.455731, 0.612761, 0.615821 - 0.193590, -0.456705, 0.612335, 0.615621 - 0.193281, -0.457679, 0.611907, 0.615421 - 0.192974, -0.458651, 0.611476, 0.615221 - 0.192667, -0.459622, 0.611043, 0.615022 - 0.192362, -0.460593, 0.610609, 0.614824 - 0.192058, -0.461562, 0.610172, 0.614625 - 0.191756, -0.462530, 0.609733, 0.614427 - 0.191454, -0.463497, 0.609293, 0.614230 - 0.191154, -0.464463, 0.608850, 0.614033 - 0.190855, -0.465428, 0.608405, 0.613836 - 0.190557, -0.466392, 0.607958, 0.613640 - 0.190260, -0.467354, 0.607509, 0.613444 - 0.189964, -0.468316, 0.607059, 0.613248 - 0.189670, -0.469276, 0.606606, 0.613053 - 0.189377, -0.470236, 0.606151, 0.612859 - 0.189085, -0.471194, 0.605694, 0.612665 - 0.188794, -0.472151, 0.605235, 0.612471 - 0.188504, -0.473107, 0.604774, 0.612278 - 0.188216, -0.474062, 0.604311, 0.612085 - 0.187929, -0.475016, 0.603846, 0.611892 - 0.187642, -0.475969, 0.603379, 0.611700 - 0.187357, -0.476921, 0.602910, 0.611509 - 0.187074, -0.477871, 0.602440, 0.611318 - 0.186791, -0.478820, 0.601967, 0.611127 - 0.186509, -0.479768, 0.601492, 0.610937 - 0.186229, -0.480715, 0.601015, 0.610748 - 0.185950, -0.481661, 0.600536, 0.610558 - 0.185671, -0.482606, 0.600055, 0.610370 - 0.185394, -0.483549, 0.599573, 0.610182 - 0.185119, -0.484492, 0.599088, 0.609994 - 0.184844, -0.485433, 0.598601, 0.609807 - 0.184570, -0.486373, 0.598113, 0.609620 - 0.184298, -0.487311, 0.597622, 0.609434 - 0.184027, -0.488249, 0.597130, 0.609248 - 0.183756, -0.489185, 0.596636, 0.609063 - 0.183487, -0.490120, 0.596139, 0.608878 - 0.183219, -0.491054, 0.595641, 0.608694 - 0.182952, -0.491987, 0.595141, 0.608510 - 0.182687, -0.492919, 0.594639, 0.608327 - 0.182422, -0.493849, 0.594135, 0.608144 - 0.182158, -0.494778, 0.593629, 0.607962 - 0.181896, -0.495706, 0.593121, 0.607781 - 0.181635, -0.496632, 0.592611, 0.607600 - 0.181374, -0.497558, 0.592099, 0.607419 - 0.181115, -0.498482, 0.591586, 0.607239 - 0.180857, -0.499405, 0.591070, 0.607060 - 0.180600, -0.500326, 0.590553, 0.606881 - 0.180344, -0.501247, 0.590034, 0.606703 - 0.180089, -0.502166, 0.589512, 0.606525 - 0.179835, -0.503084, 0.588989, 0.606348 - 0.179583, -0.504000, 0.588465, 0.606171 - 0.179331, -0.504916, 0.587938, 0.605995 - 0.179081, -0.505830, 0.587409, 0.605819 - 0.178831, -0.506742, 0.586879, 0.605644 - 0.178583, -0.507654, 0.586346, 0.605470 - 0.178335, -0.508564, 0.585812, 0.605296 - 0.178089, -0.509473, 0.585276, 0.605123 - 0.177843, -0.510380, 0.584738, 0.604951 - 0.177599, -0.511287, 0.584198, 0.604779 - 0.177356, -0.512192, 0.583656, 0.604607 - 0.177114, -0.513095, 0.583113, 0.604436 - 0.176873, -0.513997, 0.582568, 0.604266 - 0.176633, -0.514898, 0.582021, 0.604097 - 0.176393, -0.515798, 0.581472, 0.603928 - 0.176155, -0.516696, 0.580921, 0.603759 - 0.175918, -0.517593, 0.580368, 0.603591 - 0.175682, -0.518489, 0.579814, 0.603424 - 0.175447, -0.519383, 0.579258, 0.603258 - 0.175213, -0.520276, 0.578700, 0.603092 - 0.174980, -0.521168, 0.578140, 0.602926 - 0.174748, -0.522058, 0.577578, 0.602762 - 0.174517, -0.522947, 0.577015, 0.602598 - 0.174287, -0.523834, 0.576450, 0.602434 - 0.174058, -0.524721, 0.575883, 0.602272 - 0.173830, -0.525605, 0.575314, 0.602110 - 0.173603, -0.526489, 0.574743, 0.601948 - 0.173377, -0.527371, 0.574171, 0.601787 - 0.173152, -0.528251, 0.573597, 0.601627 - 0.172928, -0.529131, 0.573021, 0.601468 - 0.172705, -0.530008, 0.572444, 0.601309 - 0.172483, -0.530885, 0.571864, 0.601151 - 0.172262, -0.531760, 0.571283, 0.600993 - 0.172041, -0.532633, 0.570700, 0.600836 - 0.171822, -0.533506, 0.570116, 0.600680 - 0.171604, -0.534376, 0.569529, 0.600525 - 0.171386, -0.535246, 0.568941, 0.600370 - 0.171170, -0.536114, 0.568352, 0.600216 - 0.170955, -0.536980, 0.567760, 0.600063 - 0.170740, -0.537845, 0.567167, 0.599910 - 0.170526, -0.538709, 0.566572, 0.599758 - 0.170314, -0.539571, 0.565975, 0.599606 - 0.170102, -0.540432, 0.565377, 0.599456 - 0.169891, -0.541291, 0.564777, 0.599306 - 0.169681, -0.542149, 0.564175, 0.599157 - 0.169473, -0.543006, 0.563572, 0.599008 - 0.169264, -0.543861, 0.562967, 0.598860 - 0.169057, -0.544714, 0.562360, 0.598713 - 0.168851, -0.545566, 0.561751, 0.598567 - 0.168646, -0.546417, 0.561141, 0.598421 - 0.168441, -0.547266, 0.560529, 0.598276 - 0.168238, -0.548114, 0.559916, 0.598132 - 0.168035, -0.548960, 0.559301, 0.597988 - 0.167834, -0.549804, 0.558684, 0.597846 - 0.167633, -0.550647, 0.558066, 0.597703 - 0.167433, -0.551489, 0.557445, 0.597562 - 0.167234, -0.552329, 0.556824, 0.597422 - 0.167036, -0.553168, 0.556200, 0.597282 - 0.166838, -0.554005, 0.555575, 0.597143 - 0.166642, -0.554841, 0.554949, 0.597004 - 0.166446, -0.555675, 0.554320, 0.596867 - 0.166251, -0.556508, 0.553690, 0.596730 - 0.166057, -0.557339, 0.553059, 0.596594 - 0.165864, -0.558168, 0.552426, 0.596459 - 0.165672, -0.558996, 0.551791, 0.596324 - 0.165481, -0.559823, 0.551155, 0.596190 - 0.165290, -0.560648, 0.550517, 0.596057 - 0.165101, -0.561471, 0.549877, 0.595925 - 0.164912, -0.562293, 0.549236, 0.595793 - 0.164724, -0.563114, 0.548593, 0.595663 - 0.164537, -0.563933, 0.547949, 0.595533 - 0.164350, -0.564750, 0.547303, 0.595404 - 0.164165, -0.565566, 0.546656, 0.595275 - 0.163980, -0.566380, 0.546007, 0.595148 - 0.163796, -0.567192, 0.545356, 0.595021 - 0.163613, -0.568004, 0.544704, 0.594895 - 0.163431, -0.568813, 0.544051, 0.594770 - 0.163249, -0.569621, 0.543395, 0.594645 - 0.163069, -0.570427, 0.542739, 0.594522 - 0.162889, -0.571232, 0.542080, 0.594399 - 0.162710, -0.572035, 0.541421, 0.594277 - 0.162531, -0.572837, 0.540759, 0.594156 - 0.162354, -0.573637, 0.540096, 0.594035 - 0.162177, -0.574435, 0.539432, 0.593916 - 0.162001, -0.575232, 0.538766, 0.593797 - 0.161826, -0.576027, 0.538099, 0.593679 - 0.161651, -0.576821, 0.537430, 0.593562 - 0.161478, -0.577613, 0.536759, 0.593446 - 0.161305, -0.578403, 0.536088, 0.593330 - 0.161132, -0.579192, 0.535414, 0.593215 - 0.160961, -0.579979, 0.534739, 0.593102 - 0.160790, -0.580765, 0.534063, 0.592989 - 0.160620, -0.581549, 0.533385, 0.592876 - 0.160451, -0.582331, 0.532706, 0.592765 - 0.160282, -0.583112, 0.532025, 0.592655 - 0.160115, -0.583891, 0.531343, 0.592545 - 0.159948, -0.584668, 0.530659, 0.592436 - 0.159781, -0.585444, 0.529974, 0.592328 - 0.159616, -0.586218, 0.529288, 0.592221 - 0.159451, -0.586991, 0.528600, 0.592115 - 0.159286, -0.587762, 0.527910, 0.592009 - 0.159123, -0.588531, 0.527219, 0.591905 - 0.158960, -0.589298, 0.526527, 0.591801 - 0.158798, -0.590064, 0.525833, 0.591698 - 0.158637, -0.590828, 0.525138, 0.591596 - 0.158476, -0.591591, 0.524442, 0.591495 - 0.158316, -0.592352, 0.523744, 0.591395 - 0.158156, -0.593111, 0.523044, 0.591296 - 0.157998, -0.593869, 0.522344, 0.591197 - 0.157840, -0.594625, 0.521641, 0.591099 - 0.157682, -0.595379, 0.520938, 0.591003 - 0.157526, -0.596131, 0.520233, 0.590907 - 0.157370, -0.596882, 0.519527, 0.590812 - 0.157214, -0.597631, 0.518819, 0.590717 - 0.157059, -0.598379, 0.518110, 0.590624 - 0.156905, -0.599125, 0.517400, 0.590532 - 0.156752, -0.599869, 0.516688, 0.590440 - 0.156599, -0.600611, 0.515975, 0.590350 - 0.156447, -0.601352, 0.515260, 0.590260 - 0.156295, -0.602091, 0.514545, 0.590171 - 0.156144, -0.602828, 0.513828, 0.590083 - 0.155994, -0.603564, 0.513109, 0.589996 - 0.155845, -0.604298, 0.512389, 0.589910 - 0.155695, -0.605030, 0.511668, 0.589825 - 0.155547, -0.605760, 0.510946, 0.589741 - 0.155399, -0.606489, 0.510222, 0.589657 - 0.155252, -0.607216, 0.509497, 0.589575 - 0.155105, -0.607941, 0.508771, 0.589493 - 0.154959, -0.608665, 0.508043, 0.589412 - 0.154814, -0.609387, 0.507314, 0.589333 - 0.154669, -0.610107, 0.506584, 0.589254 - 0.154524, -0.610825, 0.505853, 0.589176 - 0.154381, -0.611542, 0.505120, 0.589099 - 0.154238, -0.612256, 0.504386, 0.589023 - 0.154095, -0.612970, 0.503651, 0.588947 - 0.153953, -0.613681, 0.502914, 0.588873 - 0.153811, -0.614391, 0.502176, 0.588800 - 0.153670, -0.615098, 0.501437, 0.588727 - 0.153530, -0.615805, 0.500697, 0.588656 - 0.153390, -0.616509, 0.499956, 0.588585 - 0.153251, -0.617212, 0.499213, 0.588516 - 0.153112, -0.617912, 0.498469, 0.588447 - 0.152974, -0.618611, 0.497724, 0.588379 - 0.152836, -0.619309, 0.496977, 0.588312 - 0.152699, -0.620004, 0.496230, 0.588246 - 0.152562, -0.620698, 0.495481, 0.588181 - 0.152426, -0.621390, 0.494731, 0.588117 - 0.152291, -0.622080, 0.493980, 0.588054 - 0.152156, -0.622769, 0.493227, 0.587992 - 0.152021, -0.623455, 0.492473, 0.587931 - 0.151887, -0.624140, 0.491719, 0.587871 - 0.151753, -0.624823, 0.490963, 0.587811 - 0.151620, -0.625505, 0.490206, 0.587753 - 0.151487, -0.626184, 0.489447, 0.587696 - 0.151355, -0.626862, 0.488688, 0.587639 - 0.151224, -0.627538, 0.487927, 0.587584 - 0.151092, -0.628212, 0.487165, 0.587529 - 0.150962, -0.628885, 0.486402, 0.587476 - 0.150831, -0.629555, 0.485638, 0.587423 - 0.150701, -0.630224, 0.484873, 0.587371 - 0.150572, -0.630891, 0.484107, 0.587321 - 0.150443, -0.631556, 0.483339, 0.587271 - 0.150315, -0.632219, 0.482571, 0.587222 - 0.150187, -0.632881, 0.481801, 0.587174 - 0.150059, -0.633540, 0.481030, 0.587128 - 0.149932, -0.634198, 0.480258, 0.587082 - 0.149805, -0.634854, 0.479485, 0.587037 - 0.149679, -0.635509, 0.478711, 0.586993 - 0.149553, -0.636161, 0.477936, 0.586950 - 0.149427, -0.636812, 0.477160, 0.586908 - 0.149302, -0.637460, 0.476382, 0.586867 - 0.149178, -0.638107, 0.475604, 0.586827 - 0.149054, -0.638752, 0.474825, 0.586788 - 0.148930, -0.639396, 0.474044, 0.586750 - 0.148806, -0.640037, 0.473262, 0.586713 - 0.148683, -0.640677, 0.472480, 0.586677 - 0.148560, -0.641314, 0.471696, 0.586642 - 0.148438, -0.641950, 0.470911, 0.586607 - 0.148316, -0.642584, 0.470126, 0.586574 - 0.148195, -0.643217, 0.469339, 0.586542 - 0.148073, -0.643847, 0.468551, 0.586511 - 0.147953, -0.644476, 0.467762, 0.586481 - 0.147832, -0.645102, 0.466972, 0.586452 - 0.147712, -0.645727, 0.466181, 0.586423 - 0.147592, -0.646350, 0.465390, 0.586396 - 0.147473, -0.646971, 0.464597, 0.586370 - 0.147354, -0.647591, 0.463803, 0.586345 - 0.147235, -0.648208, 0.463008, 0.586321 - 0.147117, -0.648824, 0.462212, 0.586297 - 0.146998, -0.649437, 0.461415, 0.586275 - 0.146881, -0.650049, 0.460618, 0.586254 - 0.146763, -0.650659, 0.459819, 0.586234 - 0.146646, -0.651267, 0.459019, 0.586214 - 0.146529, -0.651873, 0.458219, 0.586196 - 0.146413, -0.652478, 0.457417, 0.586179 - 0.146297, -0.653080, 0.456615, 0.586163 - 0.146181, -0.653681, 0.455811, 0.586147 - 0.146065, -0.654280, 0.455007, 0.586133 - 0.145950, -0.654877, 0.454201, 0.586120 - 0.145835, -0.655472, 0.453395, 0.586108 - 0.145720, -0.656065, 0.452588, 0.586096 - 0.145605, -0.656656, 0.451780, 0.586086 - 0.145491, -0.657245, 0.450971, 0.586077 - 0.145377, -0.657833, 0.450161, 0.586069 - 0.145263, -0.658418, 0.449350, 0.586062 - 0.145150, -0.659002, 0.448539, 0.586056 - 0.145037, -0.659584, 0.447726, 0.586050 - 0.144924, -0.660164, 0.446913, 0.586046 - 0.144811, -0.660742, 0.446098, 0.586043 - 0.144699, -0.661318, 0.445283, 0.586041 - 0.144586, -0.661892, 0.444467, 0.586040 - 0.144474, -0.662464, 0.443650, 0.586040 - 0.144363, -0.663035, 0.442833, 0.586041 - 0.144251, -0.663603, 0.442014, 0.586043 - 0.144140, -0.664170, 0.441195, 0.586046 - 0.144028, -0.664735, 0.440374, 0.586050 - 0.143918, -0.665298, 0.439553, 0.586055 - 0.143807, -0.665858, 0.438731, 0.586061 - 0.143696, -0.666417, 0.437909, 0.586068 - 0.143586, -0.666975, 0.437085, 0.586076 - 0.143476, -0.667530, 0.436261, 0.586085 - 0.143366, -0.668083, 0.435436, 0.586095 - 0.143256, -0.668635, 0.434610, 0.586106 - 0.143146, -0.669184, 0.433783, 0.586118 - 0.143037, -0.669732, 0.432955, 0.586131 - 0.142928, -0.670277, 0.432127, 0.586145 - 0.142819, -0.670821, 0.431298, 0.586161 - 0.142710, -0.671363, 0.430468, 0.586177 - 0.142601, -0.671903, 0.429638, 0.586194 - 0.142492, -0.672441, 0.428806, 0.586212 - 0.142384, -0.672977, 0.427974, 0.586232 - 0.142275, -0.673511, 0.427141, 0.586252 - 0.142167, -0.674043, 0.426308, 0.586273 - 0.142059, -0.674573, 0.425473, 0.586296 - 0.141951, -0.675102, 0.424638, 0.586319 - 0.141843, -0.675628, 0.423802, 0.586343 - 0.141735, -0.676153, 0.422966, 0.586369 - 0.141628, -0.676675, 0.422129, 0.586395 - 0.141520, -0.677196, 0.421291, 0.586423 - 0.141413, -0.677715, 0.420452, 0.586451 - 0.141305, -0.678232, 0.419613, 0.586481 - 0.141198, -0.678747, 0.418773, 0.586511 - 0.141091, -0.679260, 0.417932, 0.586543 - 0.140984, -0.679771, 0.417091, 0.586576 - 0.140877, -0.680280, 0.416248, 0.586609 - 0.140770, -0.680787, 0.415406, 0.586644 - 0.140663, -0.681292, 0.414562, 0.586680 - 0.140557, -0.681795, 0.413718, 0.586716 - 0.140450, -0.682297, 0.412873, 0.586754 - 0.140343, -0.682796, 0.412028, 0.586793 - 0.140237, -0.683294, 0.411182, 0.586833 - 0.140130, -0.683789, 0.410335, 0.586874 - 0.140024, -0.684283, 0.409488, 0.586916 - 0.139917, -0.684774, 0.408640, 0.586958 - 0.139811, -0.685264, 0.407792, 0.587002 - 0.139704, -0.685752, 0.406943, 0.587047 - 0.139598, -0.686238, 0.406093, 0.587093 - 0.139492, -0.686722, 0.405242, 0.587140 - 0.139385, -0.687204, 0.404391, 0.587188 - 0.139279, -0.687684, 0.403540, 0.587238 - 0.139173, -0.688162, 0.402688, 0.587288 - 0.139067, -0.688638, 0.401835, 0.587339 - 0.138960, -0.689112, 0.400982, 0.587391 - 0.138854, -0.689584, 0.400128, 0.587444 - 0.138748, -0.690055, 0.399273, 0.587498 - 0.138641, -0.690523, 0.398418, 0.587554 - 0.138535, -0.690990, 0.397563, 0.587610 - 0.138429, -0.691454, 0.396707, 0.587667 - 0.138322, -0.691916, 0.395850, 0.587726 - 0.138216, -0.692377, 0.394993, 0.587785 - 0.138109, -0.692836, 0.394135, 0.587845 - 0.138003, -0.693292, 0.393277, 0.587907 - 0.137896, -0.693747, 0.392418, 0.587969 - 0.137790, -0.694200, 0.391559, 0.588033 - 0.137683, -0.694651, 0.390699, 0.588097 - 0.137577, -0.695099, 0.389839, 0.588163 - 0.137470, -0.695546, 0.388978, 0.588229 - 0.137363, -0.695991, 0.388116, 0.588297 - 0.137256, -0.696434, 0.387255, 0.588365 - 0.137149, -0.696875, 0.386392, 0.588435 - 0.137042, -0.697315, 0.385530, 0.588506 - 0.136935, -0.697752, 0.384666, 0.588577 - 0.136828, -0.698187, 0.383803, 0.588650 - 0.136720, -0.698620, 0.382939, 0.588724 - 0.136613, -0.699051, 0.382074, 0.588798 - 0.136505, -0.699481, 0.381209, 0.588874 - 0.136398, -0.699908, 0.380343, 0.588951 - 0.136290, -0.700334, 0.379477, 0.589029 - 0.136182, -0.700757, 0.378611, 0.589108 - 0.136074, -0.701179, 0.377744, 0.589187 - 0.135966, -0.701598, 0.376877, 0.589268 - 0.135858, -0.702016, 0.376009, 0.589350 - 0.135749, -0.702432, 0.375141, 0.589433 - 0.135641, -0.702845, 0.374273, 0.589517 - 0.135532, -0.703257, 0.373404, 0.589602 - 0.135423, -0.703667, 0.372534, 0.589688 - 0.135315, -0.704075, 0.371665, 0.589775 - 0.135205, -0.704481, 0.370795, 0.589863 - 0.135096, -0.704884, 0.369924, 0.589952 - 0.134987, -0.705286, 0.369053, 0.590042 - 0.134877, -0.705687, 0.368182, 0.590133 - 0.134767, -0.706085, 0.367311, 0.590225 - 0.134657, -0.706481, 0.366439, 0.590318 - 0.134547, -0.706875, 0.365567, 0.590412 - 0.134437, -0.707267, 0.364694, 0.590507 - 0.134326, -0.707657, 0.363821, 0.590603 - 0.134216, -0.708046, 0.362948, 0.590700 - 0.134105, -0.708432, 0.362074, 0.590798 - 0.133994, -0.708816, 0.361200, 0.590897 - 0.133882, -0.709199, 0.360326, 0.590997 - 0.133771, -0.709579, 0.359451, 0.591098 - 0.133659, -0.709958, 0.358576, 0.591200 - 0.133547, -0.710335, 0.357701, 0.591304 - 0.133435, -0.710709, 0.356826, 0.591408 - 0.133322, -0.711082, 0.355950, 0.591513 - 0.133210, -0.711453, 0.355074, 0.591619 - 0.133097, -0.711821, 0.354198, 0.591726 - 0.132984, -0.712188, 0.353321, 0.591834 - 0.132870, -0.712553, 0.352444, 0.591943 - 0.132757, -0.712916, 0.351567, 0.592053 - 0.132643, -0.713277, 0.350689, 0.592164 - 0.132528, -0.713636, 0.349812, 0.592277 - 0.132414, -0.713993, 0.348934, 0.592390 - 0.132299, -0.714348, 0.348056, 0.592504 - 0.132184, -0.714702, 0.347177, 0.592619 - 0.132069, -0.715053, 0.346299, 0.592735 - 0.131953, -0.715402, 0.345420, 0.592852 - 0.131838, -0.715749, 0.344541, 0.592970 - 0.131721, -0.716095, 0.343661, 0.593089 - 0.131605, -0.716438, 0.342782, 0.593209 - 0.131488, -0.716780, 0.341902, 0.593330 - 0.131371, -0.717119, 0.341022, 0.593452 - 0.131254, -0.717457, 0.340142, 0.593575 - 0.131136, -0.717793, 0.339262, 0.593699 - 0.131018, -0.718126, 0.338381, 0.593824 - 0.130900, -0.718458, 0.337500, 0.593950 - 0.130781, -0.718788, 0.336619, 0.594077 - 0.130662, -0.719116, 0.335738, 0.594205 - 0.130543, -0.719442, 0.334857, 0.594334 - 0.130423, -0.719766, 0.333976, 0.594464 - 0.130303, -0.720088, 0.333094, 0.594594 - 0.130183, -0.720408, 0.332213, 0.594726 - 0.130062, -0.720726, 0.331331, 0.594859 - 0.129941, -0.721043, 0.330449, 0.594993 - 0.129820, -0.721357, 0.329567, 0.595127 - 0.129698, -0.721669, 0.328685, 0.595263 - 0.129576, -0.721980, 0.327802, 0.595400 - 0.129453, -0.722288, 0.326920, 0.595537 - 0.129331, -0.722595, 0.326037, 0.595676 - 0.129207, -0.722900, 0.325155, 0.595815 - 0.129084, -0.723202, 0.324272, 0.595956 - 0.128960, -0.723503, 0.323389, 0.596097 - 0.128835, -0.723802, 0.322506, 0.596240 - 0.128710, -0.724099, 0.321623, 0.596383 - 0.128585, -0.724394, 0.320740, 0.596527 - 0.128459, -0.724687, 0.319857, 0.596673 - 0.128333, -0.724978, 0.318974, 0.596819 - 0.128207, -0.725268, 0.318090, 0.596966 - 0.128080, -0.725555, 0.317207, 0.597114 - 0.127952, -0.725840, 0.316324, 0.597263 - 0.127825, -0.726124, 0.315440, 0.597413 - 0.127697, -0.726405, 0.314557, 0.597564 - 0.127568, -0.726685, 0.313673, 0.597716 - 0.127439, -0.726963, 0.312789, 0.597869 - 0.127309, -0.727239, 0.311906, 0.598023 - 0.127179, -0.727512, 0.311022, 0.598177 - 0.127049, -0.727784, 0.310139, 0.598333 - 0.126918, -0.728054, 0.309255, 0.598490 - 0.126787, -0.728323, 0.308371, 0.598647 - 0.126655, -0.728589, 0.307488, 0.598806 - 0.126523, -0.728853, 0.306604, 0.598965 - 0.126390, -0.729116, 0.305720, 0.599125 - 0.126257, -0.729376, 0.304837, 0.599287 - 0.126123, -0.729635, 0.303953, 0.599449 - 0.125989, -0.729891, 0.303069, 0.599612 - 0.125854, -0.730146, 0.302186, 0.599776 - 0.125719, -0.730399, 0.301302, 0.599941 - 0.125583, -0.730650, 0.300419, 0.600107 - 0.125447, -0.730899, 0.299536, 0.600274 - 0.125310, -0.731146, 0.298652, 0.600441 - 0.125173, -0.731391, 0.297769, 0.600610 - 0.125035, -0.731635, 0.296886, 0.600779 - 0.124897, -0.731876, 0.296002, 0.600950 - 0.124758, -0.732116, 0.295119, 0.601121 - 0.124619, -0.732353, 0.294236, 0.601293 - 0.124479, -0.732589, 0.293353, 0.601466 - 0.124339, -0.732823, 0.292470, 0.601641 - 0.124198, -0.733055, 0.291588, 0.601815 - 0.124056, -0.733285, 0.290705, 0.601991 - 0.123914, -0.733513, 0.289822, 0.602168 - 0.123772, -0.733740, 0.288940, 0.602346 - 0.123629, -0.733964, 0.288058, 0.602524 - 0.123485, -0.734187, 0.287175, 0.602704 - 0.123341, -0.734407, 0.286293, 0.602884 - 0.123196, -0.734626, 0.285411, 0.603065 - 0.123051, -0.734843, 0.284529, 0.603247 - 0.122905, -0.735058, 0.283648, 0.603430 - 0.122758, -0.735271, 0.282766, 0.603614 - 0.122611, -0.735483, 0.281885, 0.603799 - 0.122463, -0.735692, 0.281003, 0.603984 - 0.122315, -0.735900, 0.280122, 0.604171 - 0.122166, -0.736105, 0.279241, 0.604358 - 0.122017, -0.736309, 0.278361, 0.604546 - 0.121867, -0.736511, 0.277480, 0.604735 - 0.121716, -0.736711, 0.276600, 0.604925 - 0.121565, -0.736909, 0.275719, 0.605116 - 0.121413, -0.737106, 0.274839, 0.605308 - 0.121260, -0.737300, 0.273959, 0.605500 - 0.121107, -0.737493, 0.273080, 0.605694 - 0.120953, -0.737684, 0.272200, 0.605888 - 0.120799, -0.737873, 0.271321, 0.606083 - 0.120644, -0.738060, 0.270442, 0.606279 - 0.120488, -0.738245, 0.269563, 0.606476 - 0.120332, -0.738428, 0.268685, 0.606673 - 0.120175, -0.738610, 0.267806, 0.606872 - 0.120017, -0.738790, 0.266928, 0.607071 - 0.119859, -0.738967, 0.266050, 0.607271 - 0.119700, -0.739143, 0.265173, 0.607472 - 0.119540, -0.739318, 0.264295, 0.607674 - 0.119380, -0.739490, 0.263418, 0.607877 - 0.119219, -0.739660, 0.262541, 0.608080 - 0.119057, -0.739829, 0.261665, 0.608284 - 0.118895, -0.739996, 0.260788, 0.608490 - 0.118732, -0.740161, 0.259912, 0.608696 - 0.118568, -0.740324, 0.259036, 0.608902 - 0.118404, -0.740485, 0.258161, 0.609110 - 0.118239, -0.740645, 0.257286, 0.609318 - 0.118073, -0.740803, 0.256411, 0.609528 - 0.117907, -0.740958, 0.255536, 0.609738 - 0.117740, -0.741112, 0.254662, 0.609948 - 0.117572, -0.741265, 0.253788, 0.610160 - 0.117403, -0.741415, 0.252914, 0.610373 - 0.117234, -0.741564, 0.252040, 0.610586 - 0.117064, -0.741710, 0.251167, 0.610800 - 0.116893, -0.741855, 0.250295, 0.611015 - 0.116722, -0.741999, 0.249422, 0.611230 - 0.116550, -0.742140, 0.248550, 0.611447 - 0.116377, -0.742280, 0.247678, 0.611664 - 0.116203, -0.742417, 0.246807, 0.611882 - 0.116029, -0.742553, 0.245936, 0.612101 - 0.115854, -0.742687, 0.245065, 0.612320 - 0.115678, -0.742820, 0.244195, 0.612541 - 0.115501, -0.742950, 0.243325, 0.612762 - 0.115324, -0.743079, 0.242455, 0.612984 - 0.115146, -0.743206, 0.241586, 0.613206 - 0.114967, -0.743331, 0.240717, 0.613430 - 0.114787, -0.743455, 0.239849, 0.613654 - 0.114607, -0.743577, 0.238980, 0.613879 - 0.114426, -0.743696, 0.238113, 0.614105 - 0.114244, -0.743815, 0.237245, 0.614331 - 0.114061, -0.743931, 0.236379, 0.614559 - 0.113877, -0.744045, 0.235512, 0.614786 - 0.113693, -0.744158, 0.234646, 0.615015 - 0.113508, -0.744269, 0.233780, 0.615245 - 0.113322, -0.744378, 0.232915, 0.615475 - 0.113135, -0.744486, 0.232050, 0.615706 - 0.112948, -0.744592, 0.231186, 0.615938 - 0.112760, -0.744696, 0.230322, 0.616170 - 0.112570, -0.744798, 0.229458, 0.616403 - 0.112381, -0.744898, 0.228595, 0.616637 - 0.112190, -0.744997, 0.227733, 0.616872 - 0.111998, -0.745094, 0.226870, 0.617107 - 0.111806, -0.745189, 0.226009, 0.617343 - 0.111613, -0.745283, 0.225148, 0.617580 - 0.111419, -0.745374, 0.224287, 0.617817 - 0.111224, -0.745464, 0.223426, 0.618056 - 0.111028, -0.745553, 0.222567, 0.618295 - 0.110832, -0.745639, 0.221707, 0.618534 - 0.110634, -0.745724, 0.220848, 0.618775 - 0.110436, -0.745807, 0.219990, 0.619016 - 0.110237, -0.745888, 0.219132, 0.619257 - 0.110037, -0.745968, 0.218275, 0.619500 - 0.109836, -0.746046, 0.217418, 0.619743 - 0.109634, -0.746122, 0.216561, 0.619987 - 0.109432, -0.746196, 0.215705, 0.620231 - 0.109229, -0.746269, 0.214850, 0.620476 - 0.109024, -0.746340, 0.213995, 0.620722 - 0.108819, -0.746410, 0.213141, 0.620969 - 0.108613, -0.746477, 0.212287, 0.621216 - 0.108406, -0.746543, 0.211434, 0.621464 - 0.108199, -0.746607, 0.210581, 0.621712 - 0.107990, -0.746670, 0.209729, 0.621962 - 0.107781, -0.746731, 0.208877, 0.622211 - 0.107570, -0.746790, 0.208026, 0.622462 - 0.107359, -0.746847, 0.207176, 0.622713 - 0.107147, -0.746903, 0.206326, 0.622965 - 0.106934, -0.746957, 0.205476, 0.623217 - 0.106720, -0.747009, 0.204627, 0.623471 - 0.106505, -0.747060, 0.203779, 0.623724 - 0.106289, -0.747109, 0.202931, 0.623979 - 0.106072, -0.747156, 0.202084, 0.624234 - 0.105854, -0.747202, 0.201238, 0.624489 - 0.105636, -0.747246, 0.200392, 0.624746 - 0.105416, -0.747289, 0.199547, 0.625003 - 0.105196, -0.747329, 0.198702, 0.625260 - 0.104974, -0.747368, 0.197858, 0.625518 - 0.104752, -0.747406, 0.197014, 0.625777 - 0.104529, -0.747441, 0.196171, 0.626037 - 0.104305, -0.747475, 0.195329, 0.626297 - 0.104080, -0.747508, 0.194487, 0.626557 - 0.103854, -0.747539, 0.193646, 0.626819 - 0.103627, -0.747568, 0.192806, 0.627080 - 0.103399, -0.747595, 0.191966, 0.627343 - 0.103170, -0.747621, 0.191127, 0.627606 - 0.102940, -0.747645, 0.190288, 0.627870 - 0.102709, -0.747668, 0.189450, 0.628134 - 0.102477, -0.747689, 0.188613, 0.628399 - 0.102244, -0.747708, 0.187777, 0.628664 - 0.102011, -0.747726, 0.186941, 0.628930 - 0.101776, -0.747742, 0.186106, 0.629196 - 0.101540, -0.747757, 0.185271, 0.629464 - 0.101304, -0.747769, 0.184437, 0.629731 - 0.101066, -0.747781, 0.183604, 0.629999 - 0.100827, -0.747790, 0.182771, 0.630268 - 0.100588, -0.747798, 0.181939, 0.630538 - 0.100347, -0.747805, 0.181108, 0.630808 - 0.100106, -0.747810, 0.180278, 0.631078 - 0.099863, -0.747813, 0.179448, 0.631349 - 0.099619, -0.747815, 0.178619, 0.631621 - 0.099375, -0.747815, 0.177790, 0.631893 - 0.099129, -0.747813, 0.176963, 0.632165 - 0.098883, -0.747810, 0.176136, 0.632438 - 0.098635, -0.747806, 0.175309, 0.632712 - 0.098386, -0.747799, 0.174484, 0.632986 - 0.098137, -0.747791, 0.173659, 0.633261 - 0.097886, -0.747782, 0.172835, 0.633536 - 0.097634, -0.747771, 0.172011, 0.633812 - 0.097382, -0.747759, 0.171189, 0.634088 - 0.097128, -0.747745, 0.170367, 0.634365 - 0.096873, -0.747729, 0.169546, 0.634643 - 0.096617, -0.747712, 0.168725, 0.634920 - 0.096361, -0.747693, 0.167906, 0.635199 - 0.096103, -0.747673, 0.167087, 0.635478 - 0.095844, -0.747651, 0.166268, 0.635757 - 0.095584, -0.747628, 0.165451, 0.636037 - 0.095323, -0.747603, 0.164634, 0.636317 - 0.095061, -0.747576, 0.163819, 0.636598 - 0.094798, -0.747548, 0.163003, 0.636879 - 0.094534, -0.747519, 0.162189, 0.637161 - 0.094268, -0.747488, 0.161376, 0.637443 - 0.094002, -0.747455, 0.160563, 0.637725 - 0.093735, -0.747421, 0.159751, 0.638008 - 0.093466, -0.747386, 0.158940, 0.638292 - 0.093197, -0.747349, 0.158129, 0.638576 - 0.092926, -0.747310, 0.157320, 0.638861 - 0.092655, -0.747270, 0.156511, 0.639145 - 0.092382, -0.747229, 0.155703, 0.639431 - 0.092108, -0.747185, 0.154896, 0.639717 - 0.091833, -0.747141, 0.154089, 0.640003 - 0.091558, -0.747095, 0.153284, 0.640289 - 0.091281, -0.747047, 0.152479, 0.640577 - 0.091002, -0.746998, 0.151675, 0.640864 - 0.090723, -0.746948, 0.150872, 0.641152 - 0.090443, -0.746896, 0.150070, 0.641440 - 0.090162, -0.746842, 0.149269, 0.641729 - 0.089879, -0.746787, 0.148468, 0.642018 - 0.089596, -0.746731, 0.147668, 0.642308 - 0.089311, -0.746673, 0.146869, 0.642598 - 0.089025, -0.746614, 0.146071, 0.642888 - 0.088738, -0.746553, 0.145274, 0.643179 - 0.088450, -0.746491, 0.144478, 0.643470 - 0.088161, -0.746427, 0.143683, 0.643762 - 0.087871, -0.746362, 0.142888, 0.644054 - 0.087580, -0.746296, 0.142094, 0.644346 - 0.087287, -0.746228, 0.141301, 0.644639 - 0.086994, -0.746158, 0.140509, 0.644932 - 0.086699, -0.746087, 0.139718, 0.645225 - 0.086403, -0.746015, 0.138928, 0.645519 - 0.086106, -0.745941, 0.138139, 0.645813 - 0.085808, -0.745866, 0.137350, 0.646108 - 0.085509, -0.745790, 0.136563, 0.646403 - 0.085208, -0.745712, 0.135776, 0.646698 - 0.084907, -0.745633, 0.134990, 0.646993 - 0.084604, -0.745552, 0.134206, 0.647289 - 0.084301, -0.745470, 0.133422, 0.647586 - 0.083996, -0.745386, 0.132639, 0.647882 - 0.083690, -0.745301, 0.131857, 0.648179 - 0.083382, -0.745215, 0.131075, 0.648476 - 0.083074, -0.745127, 0.130295, 0.648774 - 0.082764, -0.745038, 0.129516, 0.649072 - 0.082454, -0.744948, 0.128737, 0.649370 - 0.082142, -0.744856, 0.127960, 0.649668 - 0.081829, -0.744762, 0.127183, 0.649967 - 0.081515, -0.744668, 0.126408, 0.650266 - 0.081200, -0.744572, 0.125633, 0.650566 - 0.080883, -0.744475, 0.124859, 0.650865 - 0.080565, -0.744376, 0.124086, 0.651165 - 0.080247, -0.744276, 0.123314, 0.651466 - 0.079927, -0.744174, 0.122544, 0.651766 - 0.079605, -0.744072, 0.121774, 0.652067 - 0.079283, -0.743968, 0.121005, 0.652368 - 0.078960, -0.743862, 0.120237, 0.652669 - 0.078635, -0.743756, 0.119470, 0.652971 - 0.078309, -0.743648, 0.118703, 0.653273 - 0.077982, -0.743538, 0.117938, 0.653575 - 0.077654, -0.743427, 0.117174, 0.653877 - 0.077324, -0.743315, 0.116411, 0.654180 - 0.076994, -0.743202, 0.115649, 0.654483 - 0.076662, -0.743087, 0.114888, 0.654786 - 0.076329, -0.742971, 0.114127, 0.655089 - 0.075995, -0.742854, 0.113368, 0.655393 - 0.075659, -0.742736, 0.112610, 0.655697 - 0.075323, -0.742616, 0.111853, 0.656001 - 0.074985, -0.742495, 0.111096, 0.656305 - 0.074646, -0.742372, 0.110341, 0.656610 - 0.074306, -0.742249, 0.109587, 0.656914 - 0.073964, -0.742124, 0.108834, 0.657219 - 0.073622, -0.741997, 0.108081, 0.657524 - 0.073278, -0.741870, 0.107330, 0.657830 - 0.072933, -0.741741, 0.106580, 0.658135 - 0.072587, -0.741611, 0.105831, 0.658441 - 0.072239, -0.741480, 0.105083, 0.658747 - 0.071891, -0.741347, 0.104336, 0.659053 - 0.071541, -0.741213, 0.103589, 0.659359 - 0.071190, -0.741078, 0.102844, 0.659665 - 0.070837, -0.740942, 0.102100, 0.659972 - 0.070484, -0.740804, 0.101357, 0.660279 - 0.070129, -0.740665, 0.100615, 0.660586 - 0.069773, -0.740525, 0.099874, 0.660893 - 0.069416, -0.740384, 0.099135, 0.661200 - 0.069057, -0.740242, 0.098396, 0.661507 - 0.068697, -0.740098, 0.097658, 0.661815 - 0.068336, -0.739953, 0.096921, 0.662122 - 0.067974, -0.739807, 0.096186, 0.662430 - 0.067611, -0.739660, 0.095451, 0.662738 - 0.067246, -0.739511, 0.094717, 0.663046 - 0.066880, -0.739361, 0.093985, 0.663354 - 0.066513, -0.739210, 0.093254, 0.663662 - 0.066145, -0.739058, 0.092523, 0.663971 - 0.065775, -0.738905, 0.091794, 0.664279 - 0.065404, -0.738750, 0.091066, 0.664588 - 0.065032, -0.738595, 0.090339, 0.664897 - 0.064659, -0.738438, 0.089613, 0.665205 - 0.064284, -0.738280, 0.088888, 0.665514 - 0.063909, -0.738121, 0.088164, 0.665823 - 0.063531, -0.737960, 0.087441, 0.666132 - 0.063153, -0.737799, 0.086719, 0.666441 - 0.062773, -0.737636, 0.085999, 0.666751 - 0.062393, -0.737473, 0.085279, 0.667060 - 0.062010, -0.737308, 0.084561, 0.667369 - 0.061627, -0.737142, 0.083844, 0.667679 - 0.061242, -0.736974, 0.083127, 0.667988 - 0.060857, -0.736806, 0.082412, 0.668298 - 0.060469, -0.736637, 0.081698, 0.668607 - 0.060081, -0.736466, 0.080985, 0.668917 - 0.059691, -0.736294, 0.080274, 0.669226 - 0.059300, -0.736121, 0.079563, 0.669536 - 0.058908, -0.735947, 0.078854, 0.669846 - 0.058515, -0.735772, 0.078145, 0.670155 - 0.058120, -0.735596, 0.077438, 0.670465 - 0.057724, -0.735419, 0.076732, 0.670775 - 0.057326, -0.735241, 0.076027, 0.671085 - 0.056928, -0.735061, 0.075323, 0.671395 - 0.056528, -0.734881, 0.074620, 0.671704 - 0.056127, -0.734699, 0.073918, 0.672014 - 0.055724, -0.734516, 0.073218, 0.672324 - 0.055321, -0.734333, 0.072519, 0.672634 - 0.054916, -0.734148, 0.071820, 0.672944 - 0.054509, -0.733962, 0.071123, 0.673253 - 0.054102, -0.733775, 0.070427, 0.673563 - 0.053693, -0.733587, 0.069733, 0.673873 - 0.053283, -0.733398, 0.069039, 0.674182 - 0.052872, -0.733208, 0.068347, 0.674492 - 0.052459, -0.733017, 0.067655, 0.674802 - 0.052045, -0.732825, 0.066965, 0.675111 - 0.051630, -0.732631, 0.066276, 0.675421 - 0.051213, -0.732437, 0.065588, 0.675730 - 0.050795, -0.732242, 0.064902, 0.676039 - 0.050376, -0.732046, 0.064216, 0.676349 - 0.049956, -0.731848, 0.063532, 0.676658 - 0.049534, -0.731650, 0.062849, 0.676967 - 0.049111, -0.731451, 0.062167, 0.677276 - 0.048687, -0.731250, 0.061486, 0.677585 - 0.048261, -0.731049, 0.060806, 0.677894 - 0.047834, -0.730847, 0.060128, 0.678203 - 0.047406, -0.730643, 0.059450, 0.678512 - 0.046976, -0.730439, 0.058774, 0.678821 - 0.046546, -0.730234, 0.058099, 0.679129 - 0.046114, -0.730028, 0.057426, 0.679438 - 0.045680, -0.729820, 0.056753, 0.679746 - 0.045246, -0.729612, 0.056082, 0.680054 - 0.044810, -0.729403, 0.055412, 0.680362 - 0.044372, -0.729193, 0.054743, 0.680670 - 0.043934, -0.728982, 0.054075, 0.680978 - 0.043494, -0.728770, 0.053408, 0.681286 - 0.043053, -0.728557, 0.052743, 0.681593 - 0.042610, -0.728343, 0.052079, 0.681901 - 0.042166, -0.728128, 0.051416, 0.682208 - 0.041721, -0.727912, 0.050754, 0.682515 - 0.041275, -0.727696, 0.050094, 0.682822 - 0.040827, -0.727478, 0.049434, 0.683129 - 0.040378, -0.727259, 0.048776, 0.683436 - 0.039927, -0.727040, 0.048119, 0.683742 - 0.039476, -0.726820, 0.047464, 0.684048 - 0.039023, -0.726598, 0.046809, 0.684354 - 0.038568, -0.726376, 0.046156, 0.684660 - 0.038113, -0.726153, 0.045504, 0.684966 - 0.037656, -0.725929, 0.044853, 0.685272 - 0.037198, -0.725704, 0.044203, 0.685577 - 0.036738, -0.725479, 0.043555, 0.685882 - 0.036277, -0.725252, 0.042908, 0.686187 - 0.035815, -0.725024, 0.042262, 0.686492 - 0.035352, -0.724796, 0.041617, 0.686796 - 0.034887, -0.724567, 0.040974, 0.687100 - 0.034421, -0.724337, 0.040332, 0.687404 - 0.033953, -0.724106, 0.039691, 0.687708 - 0.033485, -0.723874, 0.039051, 0.688012 - 0.033014, -0.723641, 0.038412, 0.688315 - 0.032543, -0.723408, 0.037775, 0.688618 - 0.032070, -0.723174, 0.037139, 0.688921 - 0.031596, -0.722938, 0.036504, 0.689224 - 0.031121, -0.722702, 0.035871, 0.689526 - 0.030644, -0.722466, 0.035239, 0.689828 - 0.030166, -0.722228, 0.034608, 0.690130 - 0.029687, -0.721990, 0.033978, 0.690431 - 0.029206, -0.721750, 0.033349, 0.690733 - 0.028725, -0.721510, 0.032722, 0.691033 - 0.028241, -0.721269, 0.032096, 0.691334 - 0.027757, -0.721028, 0.031471, 0.691634 - 0.027271, -0.720785, 0.030848, 0.691935 - 0.026784, -0.720542, 0.030225, 0.692234 - 0.026295, -0.720298, 0.029604, 0.692534 - 0.025805, -0.720053, 0.028985, 0.692833 - 0.025314, -0.719808, 0.028366, 0.693132 - 0.024822, -0.719561, 0.027749, 0.693430 - 0.024328, -0.719314, 0.027133, 0.693729 - 0.023833, -0.719066, 0.026518, 0.694026 - 0.023336, -0.718818, 0.025905, 0.694324 - 0.022838, -0.718568, 0.025293, 0.694621 - 0.022339, -0.718318, 0.024682, 0.694918 - 0.021839, -0.718067, 0.024072, 0.695214 - 0.021337, -0.717816, 0.023464, 0.695511 - 0.020834, -0.717563, 0.022857, 0.695806 - 0.020330, -0.717310, 0.022251, 0.696102 - 0.019824, -0.717056, 0.021646, 0.696397 - 0.019317, -0.716802, 0.021043, 0.696692 - 0.018808, -0.716547, 0.020441, 0.696986 - 0.018299, -0.716291, 0.019841, 0.697280 - 0.017788, -0.716034, 0.019241, 0.697573 - 0.017275, -0.715777, 0.018643, 0.697867 - 0.016762, -0.715519, 0.018046, 0.698159 - 0.016247, -0.715260, 0.017451, 0.698452 - 0.015731, -0.715000, 0.016856, 0.698744 - 0.015213, -0.714740, 0.016263, 0.699035 - 0.014694, -0.714480, 0.015672, 0.699326 - 0.014174, -0.714218, 0.015081, 0.699617 - 0.013652, -0.713956, 0.014492, 0.699907 - 0.013129, -0.713693, 0.013904, 0.700197 - 0.012605, -0.713430, 0.013318, 0.700487 - 0.012080, -0.713166, 0.012732, 0.700776 - 0.011553, -0.712901, 0.012149, 0.701064 - 0.011025, -0.712636, 0.011566, 0.701352 - 0.010495, -0.712369, 0.010984, 0.701640 - 0.009964, -0.712103, 0.010404, 0.701927 - 0.009432, -0.711835, 0.009826, 0.702214 - 0.008899, -0.711568, 0.009248, 0.702500 - 0.008364, -0.711299, 0.008672, 0.702786 - 0.007828, -0.711030, 0.008097, 0.703072 - 0.007291, -0.710760, 0.007523, 0.703356 - 0.006752, -0.710490, 0.006951, 0.703641 - 0.006212, -0.710219, 0.006380, 0.703925 - 0.005671, -0.709947, 0.005810, 0.704208 - 0.005128, -0.709675, 0.005242, 0.704491 - 0.004584, -0.709402, 0.004675, 0.704774 - 0.004039, -0.709129, 0.004109, 0.705055 - 0.003492, -0.708855, 0.003545, 0.705337 - 0.002944, -0.708580, 0.002982, 0.705618 - 0.002395, -0.708305, 0.002420, 0.705898 - 0.001845, -0.708030, 0.001859, 0.706178 - 0.001293, -0.707753, 0.001300, 0.706457 - 0.000740, -0.707477, 0.000742, 0.706736 - 0.000185, -0.707199, 0.000185, 0.707014 - -0.000371, -0.706921, -0.000370, 0.707292 - -0.000928, -0.706643, -0.000924, 0.707569 - -0.001486, -0.706364, -0.001477, 0.707846 - -0.002046, -0.706085, -0.002028, 0.708122 - -0.002607, -0.705805, -0.002578, 0.708397 - -0.003169, -0.705524, -0.003127, 0.708672 - -0.003733, -0.705243, -0.003675, 0.708946 - -0.004298, -0.704962, -0.004221, 0.709220 - -0.004864, -0.704679, -0.004765, 0.709493 - -0.005431, -0.704397, -0.005309, 0.709766 - -0.006000, -0.704114, -0.005851, 0.710038 - -0.006570, -0.703830, -0.006392, 0.710309 - -0.007142, -0.703546, -0.006932, 0.710580 - -0.007714, -0.703262, -0.007470, 0.710850 - -0.008288, -0.702977, -0.008007, 0.711120 - -0.008864, -0.702691, -0.008543, 0.711389 - -0.009440, -0.702405, -0.009077, 0.711657 - -0.010018, -0.702119, -0.009610, 0.711925 - -0.010598, -0.701832, -0.010141, 0.712192 - -0.011178, -0.701544, -0.010672, 0.712458 - -0.011760, -0.701257, -0.011201, 0.712724 - -0.012343, -0.700968, -0.011729, 0.712989 - -0.012927, -0.700680, -0.012255, 0.713254 - -0.013513, -0.700390, -0.012780, 0.713518 - -0.014100, -0.700101, -0.013304, 0.713781 - -0.014688, -0.699811, -0.013826, 0.714043 - -0.015278, -0.699520, -0.014347, 0.714305 - -0.015869, -0.699229, -0.014867, 0.714567 - -0.016461, -0.698938, -0.015386, 0.714827 - -0.017054, -0.698646, -0.015903, 0.715087 - -0.017649, -0.698354, -0.016419, 0.715346 - -0.018245, -0.698062, -0.016933, 0.715605 - -0.018842, -0.697769, -0.017446, 0.715862 - -0.019441, -0.697476, -0.017958, 0.716120 - -0.020041, -0.697182, -0.018469, 0.716376 - -0.020642, -0.696888, -0.018978, 0.716632 - -0.021244, -0.696593, -0.019486, 0.716887 - -0.021848, -0.696299, -0.019993, 0.717141 - -0.022453, -0.696003, -0.020498, 0.717395 - -0.023059, -0.695708, -0.021002, 0.717647 - -0.023666, -0.695412, -0.021504, 0.717899 - -0.024275, -0.695116, -0.022006, 0.718151 - -0.024885, -0.694819, -0.022506, 0.718401 - -0.025497, -0.694522, -0.023004, 0.718651 - -0.026109, -0.694225, -0.023502, 0.718900 - -0.026723, -0.693927, -0.023998, 0.719149 - -0.027338, -0.693629, -0.024492, 0.719397 - -0.027955, -0.693331, -0.024986, 0.719643 - -0.028572, -0.693032, -0.025478, 0.719889 - -0.029191, -0.692733, -0.025969, 0.720135 - -0.029811, -0.692434, -0.026458, 0.720379 - -0.030433, -0.692134, -0.026946, 0.720623 - -0.031055, -0.691835, -0.027433, 0.720866 - -0.031679, -0.691534, -0.027918, 0.721108 - -0.032304, -0.691234, -0.028402, 0.721350 - -0.032931, -0.690933, -0.028885, 0.721590 - -0.033559, -0.690632, -0.029367, 0.721830 - -0.034188, -0.690331, -0.029847, 0.722069 - -0.034818, -0.690029, -0.030326, 0.722307 - -0.035449, -0.689727, -0.030803, 0.722545 - -0.036082, -0.689425, -0.031280, 0.722781 - -0.036716, -0.689123, -0.031754, 0.723017 - -0.037351, -0.688820, -0.032228, 0.723252 - -0.037988, -0.688517, -0.032700, 0.723486 - -0.038625, -0.688214, -0.033171, 0.723719 - -0.039264, -0.687911, -0.033641, 0.723951 - -0.039904, -0.687607, -0.034109, 0.724183 - -0.040546, -0.687303, -0.034576, 0.724414 - -0.041188, -0.686999, -0.035042, 0.724643 - -0.041832, -0.686695, -0.035506, 0.724872 - -0.042477, -0.686390, -0.035969, 0.725100 - -0.043124, -0.686085, -0.036431, 0.725328 - -0.043771, -0.685780, -0.036891, 0.725554 - -0.044420, -0.685475, -0.037351, 0.725779 - -0.045070, -0.685170, -0.037808, 0.726004 - -0.045721, -0.684864, -0.038265, 0.726228 - -0.046373, -0.684558, -0.038720, 0.726450 - -0.047027, -0.684252, -0.039174, 0.726672 - -0.047682, -0.683946, -0.039626, 0.726893 - -0.048338, -0.683640, -0.040078, 0.727113 - -0.048995, -0.683333, -0.040528, 0.727332 - -0.049654, -0.683027, -0.040976, 0.727551 - -0.050314, -0.682720, -0.041424, 0.727768 - -0.050975, -0.682413, -0.041870, 0.727984 - -0.051637, -0.682106, -0.042314, 0.728200 - -0.052300, -0.681798, -0.042758, 0.728414 - -0.052965, -0.681491, -0.043200, 0.728628 - -0.053630, -0.681183, -0.043640, 0.728841 - -0.054297, -0.680875, -0.044080, 0.729052 - -0.054966, -0.680568, -0.044518, 0.729263 - -0.055635, -0.680260, -0.044955, 0.729473 - -0.056305, -0.679951, -0.045391, 0.729682 - -0.056977, -0.679643, -0.045825, 0.729890 - -0.057650, -0.679335, -0.046258, 0.730096 - -0.058324, -0.679026, -0.046689, 0.730302 - -0.059000, -0.678718, -0.047120, 0.730507 - -0.059676, -0.678409, -0.047549, 0.730711 - -0.060354, -0.678100, -0.047977, 0.730914 - -0.061033, -0.677791, -0.048403, 0.731116 - -0.061713, -0.677482, -0.048828, 0.731317 - -0.062394, -0.677173, -0.049252, 0.731517 - -0.063076, -0.676864, -0.049675, 0.731716 - -0.063760, -0.676555, -0.050096, 0.731914 - -0.064444, -0.676246, -0.050516, 0.732111 - -0.065130, -0.675936, -0.050935, 0.732307 - -0.065817, -0.675627, -0.051352, 0.732502 - -0.066506, -0.675317, -0.051768, 0.732696 - -0.067195, -0.675008, -0.052183, 0.732889 - -0.067886, -0.674698, -0.052597, 0.733081 - -0.068577, -0.674389, -0.053009, 0.733271 - -0.069270, -0.674079, -0.053420, 0.733461 - -0.069964, -0.673769, -0.053829, 0.733650 - -0.070659, -0.673460, -0.054238, 0.733838 - -0.071356, -0.673150, -0.054645, 0.734024 - -0.072053, -0.672840, -0.055051, 0.734210 - -0.072752, -0.672530, -0.055455, 0.734394 - -0.073451, -0.672221, -0.055859, 0.734577 - -0.074152, -0.671911, -0.056261, 0.734760 - -0.074854, -0.671601, -0.056661, 0.734941 - -0.075557, -0.671291, -0.057061, 0.735121 - -0.076262, -0.670982, -0.057459, 0.735300 - -0.076967, -0.670672, -0.057856, 0.735478 - -0.077673, -0.670362, -0.058252, 0.735655 - -0.078381, -0.670052, -0.058646, 0.735831 - -0.079090, -0.669742, -0.059039, 0.736006 - -0.079800, -0.669433, -0.059431, 0.736179 - -0.080511, -0.669123, -0.059821, 0.736352 - -0.081223, -0.668813, -0.060211, 0.736523 - -0.081936, -0.668504, -0.060599, 0.736693 - -0.082651, -0.668194, -0.060985, 0.736862 - -0.083366, -0.667885, -0.061371, 0.737030 - -0.084083, -0.667575, -0.061755, 0.737197 - -0.084800, -0.667266, -0.062138, 0.737363 - -0.085519, -0.666957, -0.062520, 0.737527 - -0.086239, -0.666647, -0.062900, 0.737691 - -0.086960, -0.666338, -0.063279, 0.737853 - -0.087682, -0.666029, -0.063657, 0.738014 - -0.088405, -0.665720, -0.064034, 0.738174 - -0.089129, -0.665411, -0.064409, 0.738333 - -0.089855, -0.665102, -0.064784, 0.738490 - -0.090581, -0.664794, -0.065157, 0.738647 - -0.091308, -0.664485, -0.065528, 0.738802 - -0.092037, -0.664176, -0.065899, 0.738956 - -0.092767, -0.663868, -0.066268, 0.739109 - -0.093497, -0.663560, -0.066636, 0.739261 - -0.094229, -0.663251, -0.067002, 0.739411 - -0.094962, -0.662943, -0.067368, 0.739561 - -0.095696, -0.662635, -0.067732, 0.739709 - -0.096431, -0.662327, -0.068095, 0.739856 - -0.097167, -0.662020, -0.068457, 0.740001 - -0.097904, -0.661712, -0.068817, 0.740146 - -0.098642, -0.661405, -0.069177, 0.740289 - -0.099381, -0.661097, -0.069535, 0.740431 - -0.100121, -0.660790, -0.069892, 0.740572 - -0.100863, -0.660483, -0.070247, 0.740712 - -0.101605, -0.660176, -0.070602, 0.740850 - -0.102348, -0.659870, -0.070955, 0.740987 - -0.103093, -0.659563, -0.071307, 0.741123 - -0.103838, -0.659257, -0.071657, 0.741258 - -0.104584, -0.658951, -0.072007, 0.741391 - -0.105332, -0.658645, -0.072355, 0.741523 - -0.106080, -0.658339, -0.072702, 0.741654 - -0.106830, -0.658033, -0.073048, 0.741784 - -0.107581, -0.657728, -0.073393, 0.741912 - -0.108332, -0.657423, -0.073736, 0.742040 - -0.109085, -0.657118, -0.074078, 0.742165 - -0.109838, -0.656813, -0.074419, 0.742290 - -0.110593, -0.656508, -0.074759, 0.742413 - -0.111348, -0.656204, -0.075098, 0.742535 - -0.112105, -0.655900, -0.075435, 0.742656 - -0.112863, -0.655596, -0.075771, 0.742775 - -0.113621, -0.655292, -0.076106, 0.742893 - -0.114381, -0.654988, -0.076440, 0.743010 - -0.115141, -0.654685, -0.076773, 0.743126 - -0.115903, -0.654382, -0.077104, 0.743240 - -0.116665, -0.654079, -0.077434, 0.743353 - -0.117429, -0.653777, -0.077763, 0.743464 - -0.118193, -0.653474, -0.078091, 0.743575 - -0.118959, -0.653172, -0.078418, 0.743684 - -0.119725, -0.652870, -0.078743, 0.743791 - -0.120493, -0.652569, -0.079068, 0.743898 - -0.121261, -0.652268, -0.079391, 0.744003 - -0.122030, -0.651967, -0.079713, 0.744106 - -0.122800, -0.651666, -0.080033, 0.744208 - -0.123572, -0.651366, -0.080353, 0.744309 - -0.124344, -0.651065, -0.080671, 0.744409 - -0.125117, -0.650765, -0.080989, 0.744507 - -0.125891, -0.650466, -0.081305, 0.744604 - -0.126666, -0.650167, -0.081620, 0.744700 - -0.127442, -0.649868, -0.081933, 0.744794 - -0.128219, -0.649569, -0.082246, 0.744886 - -0.128997, -0.649270, -0.082557, 0.744978 - -0.129775, -0.648972, -0.082868, 0.745068 - -0.130555, -0.648675, -0.083177, 0.745156 - -0.131336, -0.648377, -0.083485, 0.745244 - -0.132117, -0.648080, -0.083792, 0.745330 - -0.132900, -0.647783, -0.084097, 0.745414 - -0.133683, -0.647487, -0.084402, 0.745497 - -0.134467, -0.647191, -0.084705, 0.745579 - -0.135252, -0.646895, -0.085008, 0.745659 - -0.136038, -0.646599, -0.085309, 0.745738 - -0.136825, -0.646304, -0.085609, 0.745815 - -0.137613, -0.646010, -0.085907, 0.745892 - -0.138402, -0.645715, -0.086205, 0.745966 - -0.139191, -0.645421, -0.086502, 0.746039 - -0.139982, -0.645127, -0.086797, 0.746111 - -0.140773, -0.644834, -0.087092, 0.746182 - -0.141566, -0.644541, -0.087385, 0.746250 - -0.142359, -0.644249, -0.087677, 0.746318 - -0.143153, -0.643956, -0.087968, 0.746384 - -0.143948, -0.643665, -0.088258, 0.746449 - -0.144743, -0.643373, -0.088546, 0.746512 - -0.145540, -0.643082, -0.088834, 0.746574 - -0.146337, -0.642791, -0.089121, 0.746634 - -0.147136, -0.642501, -0.089406, 0.746693 - -0.147935, -0.642211, -0.089690, 0.746750 - -0.148735, -0.641922, -0.089973, 0.746806 - -0.149536, -0.641633, -0.090256, 0.746860 - -0.150337, -0.641344, -0.090537, 0.746913 - -0.151140, -0.641056, -0.090816, 0.746965 - -0.151943, -0.640768, -0.091095, 0.747015 - -0.152747, -0.640481, -0.091373, 0.747063 - -0.153552, -0.640194, -0.091650, 0.747110 - -0.154358, -0.639907, -0.091925, 0.747156 - -0.155165, -0.639621, -0.092200, 0.747200 - -0.155972, -0.639336, -0.092473, 0.747243 - -0.156780, -0.639050, -0.092745, 0.747284 - -0.157589, -0.638766, -0.093017, 0.747323 - -0.158399, -0.638481, -0.093287, 0.747361 - -0.159210, -0.638197, -0.093556, 0.747398 - -0.160021, -0.637914, -0.093824, 0.747433 - -0.160834, -0.637631, -0.094091, 0.747466 - -0.161647, -0.637349, -0.094357, 0.747498 - -0.162460, -0.637067, -0.094622, 0.747529 - -0.163275, -0.636785, -0.094886, 0.747558 - -0.164090, -0.636504, -0.095148, 0.747585 - -0.164907, -0.636223, -0.095410, 0.747611 - -0.165723, -0.635943, -0.095671, 0.747636 - -0.166541, -0.635664, -0.095930, 0.747658 - -0.167360, -0.635385, -0.096189, 0.747680 - -0.168179, -0.635106, -0.096446, 0.747699 - -0.168999, -0.634828, -0.096703, 0.747718 - -0.169819, -0.634550, -0.096958, 0.747734 - -0.170641, -0.634273, -0.097213, 0.747749 - -0.171463, -0.633996, -0.097466, 0.747763 - -0.172286, -0.633720, -0.097718, 0.747775 - -0.173109, -0.633445, -0.097970, 0.747785 - -0.173934, -0.633170, -0.098220, 0.747794 - -0.174759, -0.632895, -0.098469, 0.747802 - -0.175585, -0.632621, -0.098718, 0.747807 - -0.176411, -0.632347, -0.098965, 0.747811 - -0.177238, -0.632074, -0.099211, 0.747814 - -0.178066, -0.631802, -0.099457, 0.747815 - -0.178895, -0.631530, -0.099701, 0.747814 - -0.179724, -0.631259, -0.099944, 0.747812 - -0.180554, -0.630988, -0.100186, 0.747808 - -0.181385, -0.630718, -0.100428, 0.747803 - -0.182217, -0.630448, -0.100668, 0.747796 - -0.183049, -0.630179, -0.100907, 0.747787 - -0.183881, -0.629910, -0.101145, 0.747777 - -0.184715, -0.629642, -0.101383, 0.747765 - -0.185549, -0.629374, -0.101619, 0.747752 - -0.186384, -0.629108, -0.101854, 0.747737 - -0.187219, -0.628841, -0.102089, 0.747720 - -0.188055, -0.628575, -0.102322, 0.747702 - -0.188892, -0.628310, -0.102555, 0.747682 - -0.189730, -0.628046, -0.102786, 0.747661 - -0.190568, -0.627782, -0.103017, 0.747637 - -0.191407, -0.627518, -0.103246, 0.747613 - -0.192246, -0.627255, -0.103475, 0.747586 - -0.193086, -0.626993, -0.103702, 0.747558 - -0.193927, -0.626731, -0.103929, 0.747529 - -0.194768, -0.626470, -0.104155, 0.747497 - -0.195610, -0.626210, -0.104380, 0.747464 - -0.196452, -0.625950, -0.104603, 0.747430 - -0.197295, -0.625691, -0.104826, 0.747393 - -0.198139, -0.625432, -0.105048, 0.747355 - -0.198983, -0.625174, -0.105269, 0.747316 - -0.199828, -0.624917, -0.105490, 0.747275 - -0.200674, -0.624660, -0.105709, 0.747232 - -0.201520, -0.624404, -0.105927, 0.747187 - -0.202367, -0.624149, -0.106144, 0.747141 - -0.203214, -0.623894, -0.106361, 0.747093 - -0.204062, -0.623640, -0.106576, 0.747043 - -0.204910, -0.623386, -0.106791, 0.746992 - -0.205759, -0.623133, -0.107005, 0.746939 - -0.206609, -0.622881, -0.107217, 0.746885 - -0.207459, -0.622629, -0.107429, 0.746828 - -0.208310, -0.622378, -0.107640, 0.746770 - -0.209161, -0.622128, -0.107850, 0.746711 - -0.210013, -0.621878, -0.108060, 0.746649 - -0.210865, -0.621629, -0.108268, 0.746586 - -0.211718, -0.621381, -0.108475, 0.746521 - -0.212572, -0.621133, -0.108682, 0.746455 - -0.213426, -0.620886, -0.108888, 0.746387 - -0.214280, -0.620640, -0.109093, 0.746317 - -0.215135, -0.620394, -0.109297, 0.746245 - -0.215991, -0.620150, -0.109500, 0.746172 - -0.216847, -0.619905, -0.109702, 0.746097 - -0.217703, -0.619662, -0.109903, 0.746020 - -0.218560, -0.619419, -0.110104, 0.745942 - -0.219418, -0.619177, -0.110303, 0.745861 - -0.220276, -0.618935, -0.110502, 0.745780 - -0.221135, -0.618694, -0.110700, 0.745696 - -0.221994, -0.618454, -0.110897, 0.745611 - -0.222853, -0.618215, -0.111093, 0.745523 - -0.223713, -0.617976, -0.111289, 0.745435 - -0.224574, -0.617738, -0.111483, 0.745344 - -0.225435, -0.617501, -0.111677, 0.745252 - -0.226296, -0.617264, -0.111870, 0.745158 - -0.227158, -0.617029, -0.112062, 0.745062 - -0.228020, -0.616793, -0.112253, 0.744964 - -0.228883, -0.616559, -0.112444, 0.744865 - -0.229746, -0.616325, -0.112634, 0.744764 - -0.230610, -0.616092, -0.112822, 0.744661 - -0.231474, -0.615860, -0.113010, 0.744557 - -0.232338, -0.615629, -0.113198, 0.744450 - -0.233203, -0.615398, -0.113384, 0.744342 - -0.234069, -0.615168, -0.113570, 0.744232 - -0.234935, -0.614939, -0.113755, 0.744121 - -0.235801, -0.614710, -0.113939, 0.744007 - -0.236668, -0.614483, -0.114122, 0.743892 - -0.237535, -0.614256, -0.114304, 0.743775 - -0.238402, -0.614029, -0.114486, 0.743657 - -0.239270, -0.613804, -0.114667, 0.743536 - -0.240138, -0.613579, -0.114847, 0.743414 - -0.241007, -0.613355, -0.115027, 0.743290 - -0.241876, -0.613132, -0.115205, 0.743164 - -0.242745, -0.612910, -0.115383, 0.743036 - -0.243615, -0.612688, -0.115560, 0.742907 - -0.244485, -0.612467, -0.115737, 0.742776 - -0.245355, -0.612247, -0.115912, 0.742643 - -0.246226, -0.612028, -0.116087, 0.742508 - -0.247097, -0.611809, -0.116261, 0.742372 - -0.247969, -0.611592, -0.116435, 0.742233 - -0.248841, -0.611375, -0.116607, 0.742093 - -0.249713, -0.611158, -0.116779, 0.741951 - -0.250585, -0.610943, -0.116950, 0.741807 - -0.251458, -0.610728, -0.117121, 0.741662 - -0.252332, -0.610515, -0.117291, 0.741514 - -0.253205, -0.610302, -0.117460, 0.741365 - -0.254079, -0.610089, -0.117628, 0.741214 - -0.254953, -0.609878, -0.117796, 0.741061 - -0.255827, -0.609668, -0.117962, 0.740907 - -0.256702, -0.609458, -0.118129, 0.740750 - -0.257577, -0.609249, -0.118294, 0.740592 - -0.258453, -0.609041, -0.118459, 0.740432 - -0.259328, -0.608833, -0.118623, 0.740270 - -0.260204, -0.608627, -0.118786, 0.740106 - -0.261080, -0.608421, -0.118949, 0.739940 - -0.261957, -0.608216, -0.119111, 0.739773 - -0.262833, -0.608012, -0.119273, 0.739604 - -0.263710, -0.607809, -0.119433, 0.739433 - -0.264588, -0.607607, -0.119593, 0.739260 - -0.265465, -0.607405, -0.119753, 0.739085 - -0.266343, -0.607204, -0.119912, 0.738908 - -0.267221, -0.607005, -0.120070, 0.738730 - -0.268099, -0.606806, -0.120227, 0.738550 - -0.268977, -0.606607, -0.120384, 0.738367 - -0.269856, -0.606410, -0.120540, 0.738183 - -0.270735, -0.606213, -0.120695, 0.737998 - -0.271614, -0.606018, -0.120850, 0.737810 - -0.272493, -0.605823, -0.121004, 0.737620 - -0.273373, -0.605629, -0.121158, 0.737429 - -0.274253, -0.605436, -0.121311, 0.737236 - -0.275133, -0.605244, -0.121463, 0.737040 - -0.276013, -0.605052, -0.121615, 0.736844 - -0.276893, -0.604862, -0.121766, 0.736645 - -0.277774, -0.604672, -0.121917, 0.736444 - -0.278654, -0.604483, -0.122067, 0.736241 - -0.279535, -0.604296, -0.122216, 0.736037 - -0.280416, -0.604108, -0.122365, 0.735831 - -0.281297, -0.603922, -0.122513, 0.735622 - -0.282178, -0.603737, -0.122660, 0.735412 - -0.283060, -0.603553, -0.122807, 0.735200 - -0.283942, -0.603369, -0.122953, 0.734987 - -0.284823, -0.603186, -0.123099, 0.734771 - -0.285705, -0.603005, -0.123244, 0.734553 - -0.286587, -0.602824, -0.123389, 0.734334 - -0.287469, -0.602644, -0.123533, 0.734113 - -0.288352, -0.602465, -0.123676, 0.733890 - -0.289234, -0.602286, -0.123819, 0.733664 - -0.290117, -0.602109, -0.123962, 0.733437 - -0.290999, -0.601933, -0.124104, 0.733209 - -0.291882, -0.601757, -0.124245, 0.732978 - -0.292765, -0.601582, -0.124386, 0.732745 - -0.293648, -0.601409, -0.124526, 0.732511 - -0.294531, -0.601236, -0.124665, 0.732274 - -0.295414, -0.601064, -0.124805, 0.732036 - -0.296297, -0.600893, -0.124943, 0.731796 - -0.297180, -0.600723, -0.125081, 0.731554 - -0.298063, -0.600554, -0.125219, 0.731310 - -0.298947, -0.600385, -0.125356, 0.731064 - -0.299830, -0.600218, -0.125492, 0.730816 - -0.300713, -0.600051, -0.125628, 0.730566 - -0.301597, -0.599886, -0.125764, 0.730315 - -0.302480, -0.599721, -0.125899, 0.730061 - -0.303364, -0.599557, -0.126033, 0.729806 - -0.304248, -0.599395, -0.126167, 0.729549 - -0.305131, -0.599233, -0.126301, 0.729289 - -0.306015, -0.599072, -0.126434, 0.729028 - -0.306898, -0.598912, -0.126567, 0.728765 - -0.307782, -0.598753, -0.126699, 0.728500 - -0.308666, -0.598595, -0.126830, 0.728233 - -0.309549, -0.598437, -0.126962, 0.727965 - -0.310433, -0.598281, -0.127092, 0.727694 - -0.311317, -0.598126, -0.127223, 0.727421 - -0.312200, -0.597971, -0.127353, 0.727147 - -0.313084, -0.597818, -0.127482, 0.726870 - -0.313968, -0.597665, -0.127611, 0.726592 - -0.314851, -0.597514, -0.127739, 0.726312 - -0.315735, -0.597363, -0.127867, 0.726030 - -0.316618, -0.597213, -0.127995, 0.725745 - -0.317501, -0.597065, -0.128122, 0.725459 - -0.318385, -0.596917, -0.128249, 0.725171 - -0.319268, -0.596770, -0.128375, 0.724882 - -0.320151, -0.596624, -0.128501, 0.724590 - -0.321034, -0.596479, -0.128627, 0.724296 - -0.321917, -0.596335, -0.128752, 0.724000 - -0.322800, -0.596192, -0.128877, 0.723703 - -0.323683, -0.596050, -0.129001, 0.723403 - -0.324566, -0.595909, -0.129125, 0.723102 - -0.325449, -0.595769, -0.129248, 0.722798 - -0.326332, -0.595629, -0.129372, 0.722493 - -0.327214, -0.595491, -0.129494, 0.722186 - -0.328096, -0.595354, -0.129617, 0.721877 - -0.328979, -0.595218, -0.129739, 0.721566 - -0.329861, -0.595082, -0.129860, 0.721252 - -0.330743, -0.594948, -0.129982, 0.720938 - -0.331625, -0.594815, -0.130103, 0.720621 - -0.332507, -0.594682, -0.130223, 0.720302 - -0.333388, -0.594551, -0.130343, 0.719981 - -0.334270, -0.594420, -0.130463, 0.719658 - -0.335151, -0.594291, -0.130583, 0.719333 - -0.336032, -0.594162, -0.130702, 0.719007 - -0.336913, -0.594034, -0.130821, 0.718678 - -0.337794, -0.593908, -0.130939, 0.718348 - -0.338675, -0.593782, -0.131058, 0.718015 - -0.339555, -0.593658, -0.131175, 0.717681 - -0.340435, -0.593534, -0.131293, 0.717345 - -0.341315, -0.593411, -0.131410, 0.717006 - -0.342195, -0.593290, -0.131527, 0.716666 - -0.343075, -0.593169, -0.131644, 0.716324 - -0.343954, -0.593049, -0.131760, 0.715980 - -0.344834, -0.592931, -0.131876, 0.715634 - -0.345713, -0.592813, -0.131992, 0.715286 - -0.346591, -0.592696, -0.132107, 0.714936 - -0.347470, -0.592580, -0.132223, 0.714584 - -0.348348, -0.592466, -0.132337, 0.714230 - -0.349226, -0.592352, -0.132452, 0.713874 - -0.350104, -0.592239, -0.132566, 0.713517 - -0.350982, -0.592127, -0.132681, 0.713157 - -0.351859, -0.592017, -0.132794, 0.712795 - -0.352736, -0.591907, -0.132908, 0.712432 - -0.353613, -0.591798, -0.133021, 0.712066 - -0.354490, -0.591690, -0.133134, 0.711699 - -0.355366, -0.591583, -0.133247, 0.711329 - -0.356242, -0.591478, -0.133360, 0.710958 - -0.357118, -0.591373, -0.133472, 0.710585 - -0.357993, -0.591269, -0.133584, 0.710209 - -0.358868, -0.591166, -0.133696, 0.709832 - -0.359743, -0.591065, -0.133808, 0.709453 - -0.360617, -0.590964, -0.133919, 0.709072 - -0.361491, -0.590864, -0.134031, 0.708689 - -0.362365, -0.590765, -0.134142, 0.708303 - -0.363239, -0.590667, -0.134253, 0.707916 - -0.364112, -0.590571, -0.134363, 0.707527 - -0.364985, -0.590475, -0.134474, 0.707137 - -0.365857, -0.590380, -0.134584, 0.706744 - -0.366729, -0.590287, -0.134694, 0.706349 - -0.367601, -0.590194, -0.134804, 0.705952 - -0.368473, -0.590102, -0.134914, 0.705553 - -0.369344, -0.590012, -0.135023, 0.705153 - -0.370214, -0.589922, -0.135133, 0.704750 - -0.371085, -0.589833, -0.135242, 0.704345 - -0.371955, -0.589746, -0.135351, 0.703939 - -0.372824, -0.589659, -0.135460, 0.703530 - -0.373693, -0.589573, -0.135569, 0.703120 - -0.374562, -0.589489, -0.135677, 0.702708 - -0.375431, -0.589405, -0.135786, 0.702293 - -0.376298, -0.589323, -0.135894, 0.701877 - -0.377166, -0.589241, -0.136002, 0.701459 - -0.378033, -0.589161, -0.136110, 0.701038 - -0.378900, -0.589081, -0.136218, 0.700616 - -0.379766, -0.589003, -0.136326, 0.700192 - -0.380632, -0.588925, -0.136434, 0.699766 - -0.381497, -0.588849, -0.136541, 0.699338 - -0.382362, -0.588773, -0.136649, 0.698908 - -0.383227, -0.588699, -0.136756, 0.698476 - -0.384091, -0.588626, -0.136863, 0.698042 - -0.384954, -0.588553, -0.136971, 0.697606 - -0.385817, -0.588482, -0.137078, 0.697168 - -0.386680, -0.588412, -0.137185, 0.696729 - -0.387542, -0.588342, -0.137292, 0.696287 - -0.388404, -0.588274, -0.137399, 0.695843 - -0.389265, -0.588207, -0.137505, 0.695398 - -0.390125, -0.588141, -0.137612, 0.694950 - -0.390986, -0.588075, -0.137719, 0.694501 - -0.391845, -0.588011, -0.137825, 0.694049 - -0.392704, -0.587948, -0.137932, 0.693596 - -0.393563, -0.587886, -0.138038, 0.693140 - -0.394421, -0.587825, -0.138145, 0.692683 - -0.395279, -0.587765, -0.138251, 0.692224 - -0.396136, -0.587706, -0.138358, 0.691763 - -0.396992, -0.587648, -0.138464, 0.691299 - -0.397848, -0.587591, -0.138570, 0.690834 - -0.398703, -0.587535, -0.138677, 0.690367 - -0.399558, -0.587480, -0.138783, 0.689898 - -0.400412, -0.587426, -0.138889, 0.689427 - -0.401266, -0.587373, -0.138996, 0.688954 - -0.402119, -0.587322, -0.139102, 0.688480 - -0.402972, -0.587271, -0.139208, 0.688003 - -0.403824, -0.587221, -0.139315, 0.687524 - -0.404675, -0.587172, -0.139421, 0.687043 - -0.405526, -0.587125, -0.139527, 0.686561 - -0.406376, -0.587078, -0.139633, 0.686076 - -0.407226, -0.587032, -0.139740, 0.685590 - -0.408075, -0.586988, -0.139846, 0.685101 - -0.408923, -0.586944, -0.139953, 0.684611 - -0.409771, -0.586901, -0.140059, 0.684119 - -0.410618, -0.586860, -0.140166, 0.683624 - -0.411464, -0.586819, -0.140272, 0.683128 - -0.412310, -0.586780, -0.140379, 0.682630 - -0.413155, -0.586741, -0.140485, 0.682130 - -0.414000, -0.586704, -0.140592, 0.681628 - -0.414844, -0.586668, -0.140699, 0.681124 - -0.415687, -0.586632, -0.140806, 0.680618 - -0.416529, -0.586598, -0.140913, 0.680110 - -0.417371, -0.586565, -0.141020, 0.679600 - -0.418212, -0.586532, -0.141127, 0.679089 - -0.419053, -0.586501, -0.141234, 0.678575 - -0.419893, -0.586471, -0.141341, 0.678060 - -0.420732, -0.586442, -0.141449, 0.677542 - -0.421570, -0.586413, -0.141556, 0.677023 - -0.422408, -0.586386, -0.141664, 0.676501 - -0.423245, -0.586360, -0.141771, 0.675978 - -0.424081, -0.586335, -0.141879, 0.675453 - -0.424917, -0.586311, -0.141987, 0.674926 - -0.425751, -0.586288, -0.142095, 0.674397 - -0.426586, -0.586266, -0.142203, 0.673866 - -0.427419, -0.586245, -0.142311, 0.673333 - -0.428252, -0.586225, -0.142420, 0.672798 - -0.429083, -0.586206, -0.142528, 0.672262 - -0.429915, -0.586188, -0.142637, 0.671723 - -0.430745, -0.586171, -0.142746, 0.671182 - -0.431574, -0.586155, -0.142855, 0.670640 - -0.432403, -0.586140, -0.142964, 0.670096 - -0.433231, -0.586127, -0.143073, 0.669549 - -0.434059, -0.586114, -0.143183, 0.669001 - -0.434885, -0.586102, -0.143293, 0.668451 - -0.435711, -0.586091, -0.143402, 0.667899 - -0.436536, -0.586082, -0.143512, 0.667345 - -0.437360, -0.586073, -0.143623, 0.666789 - -0.438183, -0.586065, -0.143733, 0.666231 - -0.439005, -0.586058, -0.143844, 0.665672 - -0.439827, -0.586053, -0.143954, 0.665110 - -0.440648, -0.586048, -0.144065, 0.664547 - -0.441468, -0.586044, -0.144177, 0.663981 - -0.442287, -0.586042, -0.144288, 0.663414 - -0.443105, -0.586040, -0.144400, 0.662845 - -0.443923, -0.586040, -0.144512, 0.662274 - -0.444739, -0.586040, -0.144624, 0.661701 - -0.445555, -0.586042, -0.144736, 0.661126 - -0.446370, -0.586044, -0.144849, 0.660549 - -0.447184, -0.586047, -0.144961, 0.659971 - -0.447997, -0.586052, -0.145074, 0.659390 - -0.448809, -0.586057, -0.145188, 0.658808 - -0.449621, -0.586064, -0.145301, 0.658223 - -0.450431, -0.586071, -0.145415, 0.657637 - -0.451241, -0.586080, -0.145529, 0.657049 - -0.452049, -0.586090, -0.145643, 0.656459 - -0.452857, -0.586100, -0.145758, 0.655867 - -0.453664, -0.586112, -0.145873, 0.655273 - -0.454470, -0.586124, -0.145988, 0.654678 - -0.455275, -0.586138, -0.146104, 0.654080 - -0.456079, -0.586152, -0.146219, 0.653481 - -0.456882, -0.586168, -0.146335, 0.652880 - -0.457684, -0.586184, -0.146452, 0.652277 - -0.458486, -0.586202, -0.146568, 0.651672 - -0.459286, -0.586221, -0.146685, 0.651065 - -0.460085, -0.586240, -0.146802, 0.650456 - -0.460884, -0.586261, -0.146920, 0.649845 - -0.461681, -0.586282, -0.147038, 0.649233 - -0.462478, -0.586305, -0.147156, 0.648619 - -0.463273, -0.586328, -0.147275, 0.648002 - -0.464068, -0.586353, -0.147393, 0.647384 - -0.464861, -0.586379, -0.147513, 0.646764 - -0.465654, -0.586405, -0.147632, 0.646143 - -0.466445, -0.586433, -0.147752, 0.645519 - -0.467236, -0.586461, -0.147872, 0.644894 - -0.468025, -0.586491, -0.147993, 0.644266 - -0.468814, -0.586521, -0.148114, 0.643637 - -0.469601, -0.586553, -0.148235, 0.643006 - -0.470388, -0.586585, -0.148357, 0.642373 - -0.471173, -0.586619, -0.148479, 0.641739 - -0.471957, -0.586653, -0.148601, 0.641102 - -0.472741, -0.586689, -0.148724, 0.640464 - -0.473523, -0.586725, -0.148847, 0.639823 - -0.474304, -0.586762, -0.148971, 0.639181 - -0.475085, -0.586801, -0.149095, 0.638538 - -0.475864, -0.586840, -0.149219, 0.637892 - -0.476642, -0.586881, -0.149344, 0.637244 - -0.477419, -0.586922, -0.149469, 0.636595 - -0.478195, -0.586964, -0.149595, 0.635944 - -0.478969, -0.587007, -0.149721, 0.635291 - -0.479743, -0.587052, -0.149847, 0.634636 - -0.480516, -0.587097, -0.149974, 0.633979 - -0.481287, -0.587143, -0.150102, 0.633321 - -0.482058, -0.587190, -0.150229, 0.632660 - -0.482827, -0.587238, -0.150357, 0.631998 - -0.483595, -0.587287, -0.150486, 0.631334 - -0.484362, -0.587337, -0.150615, 0.630669 - -0.485128, -0.587388, -0.150745, 0.630001 - -0.485893, -0.587440, -0.150875, 0.629332 - -0.486657, -0.587493, -0.151005, 0.628661 - -0.487419, -0.587547, -0.151136, 0.627988 - -0.488181, -0.587602, -0.151267, 0.627313 - -0.488941, -0.587658, -0.151399, 0.626636 - -0.489700, -0.587715, -0.151532, 0.625958 - -0.490458, -0.587772, -0.151664, 0.625278 - -0.491215, -0.587831, -0.151798, 0.624596 - -0.491970, -0.587891, -0.151932, 0.623912 - -0.492725, -0.587951, -0.152066, 0.623227 - -0.493478, -0.588013, -0.152201, 0.622540 - -0.494230, -0.588075, -0.152336, 0.621850 - -0.494981, -0.588139, -0.152472, 0.621160 - -0.495731, -0.588203, -0.152608, 0.620467 - -0.496479, -0.588268, -0.152745, 0.619773 - -0.497226, -0.588334, -0.152882, 0.619077 - -0.497972, -0.588402, -0.153020, 0.618379 - -0.498717, -0.588470, -0.153158, 0.617679 - -0.499461, -0.588539, -0.153297, 0.616978 - -0.500203, -0.588609, -0.153437, 0.616274 - -0.500944, -0.588679, -0.153577, 0.615569 - -0.501684, -0.588751, -0.153717, 0.614863 - -0.502423, -0.588824, -0.153859, 0.614154 - -0.503160, -0.588898, -0.154000, 0.613444 - -0.503896, -0.588972, -0.154142, 0.612732 - -0.504631, -0.589048, -0.154285, 0.612018 - -0.505364, -0.589124, -0.154429, 0.611303 - -0.506097, -0.589202, -0.154572, 0.610586 - -0.506828, -0.589280, -0.154717, 0.609867 - -0.507558, -0.589359, -0.154862, 0.609146 - -0.508286, -0.589439, -0.155008, 0.608424 - -0.509013, -0.589520, -0.155154, 0.607700 - -0.509739, -0.589602, -0.155301, 0.606974 - -0.510464, -0.589685, -0.155448, 0.606246 - -0.511187, -0.589769, -0.155596, 0.605517 - -0.511909, -0.589853, -0.155745, 0.604786 - -0.512630, -0.589939, -0.155894, 0.604053 - -0.513349, -0.590025, -0.156044, 0.603319 - -0.514067, -0.590113, -0.156195, 0.602583 - -0.514783, -0.590201, -0.156346, 0.601845 - -0.515499, -0.590290, -0.156498, 0.601105 - -0.516213, -0.590380, -0.156650, 0.600364 - -0.516925, -0.590471, -0.156803, 0.599621 - -0.517637, -0.590563, -0.156957, 0.598876 - -0.518347, -0.590655, -0.157111, 0.598130 - -0.519055, -0.590749, -0.157266, 0.597382 - -0.519762, -0.590843, -0.157422, 0.596632 - -0.520468, -0.590939, -0.157578, 0.595881 - -0.521173, -0.591035, -0.157735, 0.595128 - -0.521876, -0.591132, -0.157892, 0.594373 - -0.522577, -0.591230, -0.158051, 0.593616 - -0.523278, -0.591329, -0.158209, 0.592858 - -0.523976, -0.591428, -0.158369, 0.592098 - -0.524674, -0.591529, -0.158529, 0.591337 - -0.525370, -0.591630, -0.158690, 0.590574 - -0.526065, -0.591732, -0.158852, 0.589809 - -0.526758, -0.591836, -0.159014, 0.589043 - -0.527450, -0.591940, -0.159177, 0.588275 - -0.528140, -0.592044, -0.159341, 0.587505 - -0.528829, -0.592150, -0.159506, 0.586733 - -0.529517, -0.592257, -0.159671, 0.585960 - -0.530203, -0.592364, -0.159837, 0.585186 - -0.530887, -0.592472, -0.160003, 0.584409 - -0.531570, -0.592581, -0.160170, 0.583631 - -0.532252, -0.592691, -0.160338, 0.582852 - -0.532932, -0.592802, -0.160507, 0.582071 - -0.533611, -0.592914, -0.160677, 0.581288 - -0.534289, -0.593026, -0.160847, 0.580503 - -0.534964, -0.593139, -0.161018, 0.579717 - -0.535639, -0.593254, -0.161190, 0.578929 - -0.536312, -0.593369, -0.161362, 0.578140 - -0.536983, -0.593484, -0.161535, 0.577349 - -0.537653, -0.593601, -0.161709, 0.576557 - -0.538321, -0.593718, -0.161884, 0.575762 - -0.538988, -0.593836, -0.162060, 0.574967 - -0.539654, -0.593956, -0.162236, 0.574169 - -0.540317, -0.594075, -0.162413, 0.573370 - -0.540980, -0.594196, -0.162591, 0.572570 - -0.541641, -0.594317, -0.162769, 0.571768 - -0.542300, -0.594440, -0.162949, 0.570964 - -0.542958, -0.594563, -0.163129, 0.570159 - -0.543614, -0.594687, -0.163310, 0.569352 - -0.544269, -0.594811, -0.163492, 0.568543 - -0.544922, -0.594937, -0.163674, 0.567733 - -0.545573, -0.595063, -0.163857, 0.566922 - -0.546223, -0.595190, -0.164042, 0.566109 - -0.546872, -0.595318, -0.164227, 0.565294 - -0.547519, -0.595447, -0.164412, 0.564478 - -0.548164, -0.595576, -0.164599, 0.563660 - -0.548808, -0.595706, -0.164787, 0.562841 - -0.549450, -0.595837, -0.164975, 0.562020 - -0.550091, -0.595969, -0.165164, 0.561197 - -0.550730, -0.596101, -0.165354, 0.560373 - -0.551367, -0.596235, -0.165545, 0.559548 - -0.552003, -0.596369, -0.165736, 0.558721 - -0.552637, -0.596504, -0.165929, 0.557892 - -0.553270, -0.596639, -0.166122, 0.557062 - -0.553901, -0.596775, -0.166316, 0.556230 - -0.554530, -0.596913, -0.166511, 0.555397 - -0.555158, -0.597050, -0.166707, 0.554562 - -0.555784, -0.597189, -0.166904, 0.553726 - -0.556408, -0.597328, -0.167101, 0.552889 - -0.557031, -0.597468, -0.167300, 0.552049 - -0.557652, -0.597609, -0.167499, 0.551209 - -0.558272, -0.597751, -0.167700, 0.550367 - -0.558890, -0.597893, -0.167901, 0.549523 - -0.559506, -0.598036, -0.168103, 0.548678 - -0.560121, -0.598180, -0.168306, 0.547831 - -0.560734, -0.598324, -0.168509, 0.546983 - -0.561345, -0.598469, -0.168714, 0.546133 - -0.561954, -0.598615, -0.168920, 0.545282 - -0.562562, -0.598762, -0.169126, 0.544430 - -0.563169, -0.598909, -0.169334, 0.543576 - -0.563773, -0.599057, -0.169542, 0.542720 - -0.564376, -0.599206, -0.169751, 0.541863 - -0.564977, -0.599356, -0.169961, 0.541005 - -0.565577, -0.599506, -0.170173, 0.540145 - -0.566174, -0.599657, -0.170385, 0.539284 - -0.566771, -0.599808, -0.170598, 0.538421 - -0.567365, -0.599961, -0.170811, 0.537557 - -0.567958, -0.600114, -0.171026, 0.536692 - -0.568548, -0.600267, -0.171242, 0.535825 - -0.569138, -0.600422, -0.171459, 0.534956 - -0.569725, -0.600577, -0.171676, 0.534086 - -0.570311, -0.600732, -0.171895, 0.533215 - -0.570895, -0.600889, -0.172115, 0.532342 - -0.571477, -0.601046, -0.172335, 0.531468 - -0.572058, -0.601203, -0.172557, 0.530593 - -0.572636, -0.601362, -0.172779, 0.529716 - -0.573213, -0.601521, -0.173003, 0.528838 - -0.573789, -0.601681, -0.173227, 0.527958 - -0.574362, -0.601841, -0.173452, 0.527077 - -0.574934, -0.602002, -0.173679, 0.526194 - -0.575504, -0.602164, -0.173906, 0.525311 - -0.576072, -0.602326, -0.174134, 0.524425 - -0.576638, -0.602489, -0.174364, 0.523539 - -0.577203, -0.602652, -0.174594, 0.522651 - -0.577766, -0.602817, -0.174825, 0.521761 - -0.578327, -0.602982, -0.175058, 0.520871 - -0.578886, -0.603147, -0.175291, 0.519979 - -0.579443, -0.603313, -0.175525, 0.519085 - -0.579999, -0.603480, -0.175761, 0.518191 - -0.580553, -0.603647, -0.175997, 0.517294 - -0.581105, -0.603815, -0.176235, 0.516397 - -0.581655, -0.603984, -0.176473, 0.515498 - -0.582203, -0.604153, -0.176712, 0.514598 - -0.582750, -0.604323, -0.176953, 0.513697 - -0.583294, -0.604493, -0.177194, 0.512794 - -0.583837, -0.604664, -0.177437, 0.511890 - -0.584378, -0.604836, -0.177681, 0.510985 - -0.584917, -0.605008, -0.177925, 0.510078 - -0.585455, -0.605181, -0.178171, 0.509170 - -0.585990, -0.605354, -0.178417, 0.508261 - -0.586524, -0.605528, -0.178665, 0.507350 - -0.587056, -0.605703, -0.178914, 0.506438 - -0.587585, -0.605878, -0.179164, 0.505525 - -0.588114, -0.606054, -0.179415, 0.504611 - -0.588640, -0.606230, -0.179667, 0.503695 - -0.589164, -0.606407, -0.179920, 0.502778 - -0.589686, -0.606584, -0.180174, 0.501860 - -0.590207, -0.606762, -0.180429, 0.500940 - -0.590726, -0.606940, -0.180686, 0.500019 - -0.591242, -0.607119, -0.180943, 0.499097 - -0.591757, -0.607299, -0.181201, 0.498174 - -0.592270, -0.607479, -0.181461, 0.497250 - -0.592781, -0.607660, -0.181722, 0.496324 - -0.593290, -0.607841, -0.181983, 0.495397 - -0.593797, -0.608023, -0.182246, 0.494468 - -0.594303, -0.608205, -0.182510, 0.493539 - -0.594806, -0.608388, -0.182775, 0.492608 - -0.595308, -0.608571, -0.183041, 0.491676 - -0.595807, -0.608755, -0.183308, 0.490743 - -0.596305, -0.608940, -0.183577, 0.489809 - -0.596801, -0.609124, -0.183846, 0.488873 - -0.597294, -0.609310, -0.184117, 0.487937 - -0.597786, -0.609496, -0.184389, 0.486999 - -0.598276, -0.609682, -0.184661, 0.486059 - -0.598764, -0.609869, -0.184935, 0.485119 - -0.599250, -0.610056, -0.185210, 0.484178 - -0.599734, -0.610244, -0.185487, 0.483235 - -0.600216, -0.610433, -0.185764, 0.482291 - -0.600696, -0.610621, -0.186043, 0.481346 - -0.601174, -0.610811, -0.186322, 0.480400 - -0.601650, -0.611000, -0.186603, 0.479452 - -0.602124, -0.611191, -0.186885, 0.478504 - -0.602597, -0.611381, -0.187168, 0.477554 - -0.603067, -0.611573, -0.187452, 0.476603 - -0.603535, -0.611764, -0.187738, 0.475652 - -0.604001, -0.611956, -0.188024, 0.474698 - -0.604466, -0.612149, -0.188312, 0.473744 - -0.604928, -0.612342, -0.188601, 0.472789 - -0.605388, -0.612535, -0.188891, 0.471832 - -0.605846, -0.612729, -0.189182, 0.470875 - -0.606303, -0.612924, -0.189474, 0.469916 - -0.606757, -0.613118, -0.189768, 0.468956 - -0.607209, -0.613313, -0.190063, 0.467996 - -0.607659, -0.613509, -0.190359, 0.467034 - -0.608107, -0.613705, -0.190656, 0.466070 - -0.608554, -0.613902, -0.190954, 0.465106 - -0.608998, -0.614098, -0.191254, 0.464141 - -0.609440, -0.614296, -0.191554, 0.463175 - -0.609880, -0.614493, -0.191856, 0.462207 - -0.610318, -0.614691, -0.192159, 0.461239 - -0.610754, -0.614890, -0.192464, 0.460269 - -0.611188, -0.615089, -0.192769, 0.459299 - -0.611620, -0.615288, -0.193076, 0.458327 - -0.612050, -0.615487, -0.193384, 0.457355 - -0.612477, -0.615687, -0.193693, 0.456381 - -0.612903, -0.615888, -0.194003, 0.455406 - -0.613327, -0.616089, -0.194315, 0.454430 - -0.613748, -0.616290, -0.194628, 0.453453 - -0.614168, -0.616491, -0.194942, 0.452476 - -0.614585, -0.616693, -0.195257, 0.451497 - -0.615001, -0.616895, -0.195573, 0.450517 - -0.615414, -0.617098, -0.195891, 0.449536 - -0.615825, -0.617301, -0.196210, 0.448554 - -0.616234, -0.617504, -0.196530, 0.447571 - -0.616641, -0.617707, -0.196852, 0.446587 - -0.617046, -0.617911, -0.197174, 0.445603 - -0.617449, -0.618115, -0.197498, 0.444617 - -0.617850, -0.618320, -0.197823, 0.443630 - -0.618249, -0.618525, -0.198150, 0.442642 - -0.618645, -0.618730, -0.198477, 0.441654 - -0.619040, -0.618936, -0.198806, 0.440664 - -0.619432, -0.619141, -0.199136, 0.439673 - -0.619822, -0.619348, -0.199468, 0.438682 - -0.620210, -0.619554, -0.199800, 0.437689 - -0.620596, -0.619761, -0.200134, 0.436696 - -0.620980, -0.619968, -0.200470, 0.435701 - -0.621362, -0.620175, -0.200806, 0.434706 - -0.621742, -0.620383, -0.201144, 0.433710 - -0.622119, -0.620590, -0.201483, 0.432712 - -0.622494, -0.620799, -0.201823, 0.431714 - -0.622868, -0.621007, -0.202165, 0.430715 - -0.623239, -0.621216, -0.202508, 0.429715 - -0.623608, -0.621425, -0.202852, 0.428715 - -0.623974, -0.621634, -0.203197, 0.427713 - -0.624339, -0.621843, -0.203544, 0.426710 - -0.624701, -0.622053, -0.203892, 0.425707 - -0.625062, -0.622263, -0.204241, 0.424703 - -0.625420, -0.622473, -0.204592, 0.423697 - -0.625776, -0.622683, -0.204944, 0.422691 - -0.626130, -0.622894, -0.205297, 0.421684 - -0.626481, -0.623105, -0.205651, 0.420677 - -0.626831, -0.623316, -0.206007, 0.419668 - -0.627178, -0.623527, -0.206364, 0.418659 - -0.627523, -0.623739, -0.206723, 0.417648 - -0.627866, -0.623951, -0.207082, 0.416637 - -0.628207, -0.624163, -0.207443, 0.415625 - -0.628546, -0.624375, -0.207806, 0.414612 - -0.628882, -0.624587, -0.208169, 0.413599 - -0.629216, -0.624800, -0.208534, 0.412584 - -0.629548, -0.625012, -0.208900, 0.411569 - -0.629878, -0.625225, -0.209268, 0.410553 - -0.630206, -0.625438, -0.209637, 0.409536 - -0.630531, -0.625652, -0.210007, 0.408519 - -0.630854, -0.625865, -0.210379, 0.407500 - -0.631175, -0.626079, -0.210752, 0.406481 - -0.631494, -0.626293, -0.211126, 0.405461 - -0.631811, -0.626506, -0.211502, 0.404440 - -0.632125, -0.626720, -0.211879, 0.403419 - -0.632437, -0.626935, -0.212257, 0.402397 - -0.632747, -0.627149, -0.212637, 0.401374 - -0.633055, -0.627364, -0.213017, 0.400350 - -0.633360, -0.627578, -0.213400, 0.399326 - -0.633664, -0.627793, -0.213783, 0.398300 - -0.633965, -0.628008, -0.214168, 0.397274 - -0.634263, -0.628223, -0.214555, 0.396248 - -0.634560, -0.628438, -0.214942, 0.395220 - -0.634854, -0.628653, -0.215331, 0.394192 - -0.635146, -0.628868, -0.215722, 0.393164 - -0.635436, -0.629084, -0.216114, 0.392134 - -0.635724, -0.629299, -0.216507, 0.391104 - -0.636009, -0.629515, -0.216901, 0.390073 - -0.636292, -0.629731, -0.217297, 0.389042 - -0.636573, -0.629947, -0.217694, 0.388009 - -0.636852, -0.630162, -0.218093, 0.386976 - -0.637128, -0.630378, -0.218493, 0.385943 - -0.637402, -0.630594, -0.218894, 0.384909 - -0.637674, -0.630810, -0.219297, 0.383874 - -0.637943, -0.631027, -0.219701, 0.382838 - -0.638211, -0.631243, -0.220106, 0.381802 - -0.638476, -0.631459, -0.220513, 0.380765 - -0.638738, -0.631675, -0.220921, 0.379728 - -0.638999, -0.631892, -0.221331, 0.378690 - -0.639257, -0.632108, -0.221742, 0.377651 - -0.639513, -0.632324, -0.222154, 0.376612 - -0.639767, -0.632541, -0.222568, 0.375572 - -0.640018, -0.632757, -0.222983, 0.374531 - -0.640267, -0.632974, -0.223400, 0.373490 - -0.640514, -0.633190, -0.223818, 0.372449 - -0.640758, -0.633407, -0.224237, 0.371406 - -0.641000, -0.633623, -0.224658, 0.370364 - -0.641240, -0.633840, -0.225080, 0.369320 - -0.641478, -0.634056, -0.225503, 0.368276 - -0.641713, -0.634273, -0.225928, 0.367232 - -0.641946, -0.634489, -0.226354, 0.366186 - -0.642177, -0.634705, -0.226782, 0.365141 - -0.642405, -0.634922, -0.227211, 0.364095 - -0.642631, -0.635138, -0.227642, 0.363048 - -0.642855, -0.635355, -0.228074, 0.362001 - -0.643077, -0.635571, -0.228507, 0.360953 - -0.643296, -0.635787, -0.228942, 0.359904 - -0.643513, -0.636003, -0.229378, 0.358856 - -0.643727, -0.636219, -0.229815, 0.357806 - -0.643939, -0.636435, -0.230254, 0.356756 - -0.644149, -0.636651, -0.230695, 0.355706 - -0.644357, -0.636867, -0.231136, 0.354655 - -0.644562, -0.637083, -0.231580, 0.353604 - -0.644765, -0.637299, -0.232024, 0.352552 - -0.644966, -0.637515, -0.232470, 0.351500 - -0.645164, -0.637730, -0.232918, 0.350447 - -0.645360, -0.637946, -0.233367, 0.349394 - -0.645553, -0.638161, -0.233817, 0.348340 - -0.645745, -0.638377, -0.234269, 0.347286 - -0.645933, -0.638592, -0.234722, 0.346231 - -0.646120, -0.638807, -0.235176, 0.345176 - -0.646304, -0.639022, -0.235632, 0.344121 - -0.646486, -0.639237, -0.236090, 0.343065 - -0.646666, -0.639451, -0.236549, 0.342009 - -0.646843, -0.639666, -0.237009, 0.340952 - -0.647018, -0.639881, -0.237471, 0.339895 - -0.647190, -0.640095, -0.237934, 0.338837 - -0.647361, -0.640309, -0.238398, 0.337779 - -0.647528, -0.640523, -0.238864, 0.336721 - -0.647694, -0.640737, -0.239332, 0.335662 - -0.647857, -0.640951, -0.239801, 0.334603 - -0.648018, -0.641164, -0.240271, 0.333544 - -0.648176, -0.641377, -0.240743, 0.332484 - -0.648332, -0.641591, -0.241216, 0.331424 - -0.648486, -0.641804, -0.241691, 0.330363 - -0.648637, -0.642016, -0.242167, 0.329303 - -0.648786, -0.642229, -0.242645, 0.328241 - -0.648933, -0.642441, -0.243124, 0.327180 - -0.649077, -0.642653, -0.243604, 0.326118 - -0.649219, -0.642865, -0.244086, 0.325056 - -0.649358, -0.643077, -0.244569, 0.323993 - -0.649495, -0.643289, -0.245054, 0.322930 - -0.649630, -0.643500, -0.245540, 0.321867 - -0.649762, -0.643711, -0.246028, 0.320804 - -0.649892, -0.643922, -0.246517, 0.319740 - -0.650020, -0.644133, -0.247008, 0.318676 - -0.650145, -0.644343, -0.247500, 0.317612 - -0.650268, -0.644553, -0.247993, 0.316547 - -0.650388, -0.644763, -0.248488, 0.315482 - -0.650506, -0.644973, -0.248985, 0.314417 - -0.650622, -0.645182, -0.249483, 0.313352 - -0.650735, -0.645391, -0.249982, 0.312286 - -0.650846, -0.645600, -0.250483, 0.311220 - -0.650955, -0.645809, -0.250985, 0.310154 - -0.651061, -0.646017, -0.251489, 0.309088 - -0.651165, -0.646225, -0.251994, 0.308021 - -0.651266, -0.646433, -0.252500, 0.306955 - -0.651365, -0.646640, -0.253008, 0.305888 - -0.651461, -0.646847, -0.253518, 0.304821 - -0.651556, -0.647054, -0.254029, 0.303753 - -0.651647, -0.647260, -0.254541, 0.302686 - -0.651737, -0.647466, -0.255055, 0.301618 - -0.651824, -0.647672, -0.255571, 0.300550 - -0.651908, -0.647878, -0.256088, 0.299482 - -0.651991, -0.648083, -0.256606, 0.298413 - -0.652070, -0.648287, -0.257126, 0.297345 - -0.652148, -0.648492, -0.257647, 0.296276 - -0.652223, -0.648696, -0.258170, 0.295208 - -0.652295, -0.648900, -0.258694, 0.294139 - -0.652365, -0.649103, -0.259220, 0.293070 - -0.652433, -0.649306, -0.259747, 0.292000 - -0.652498, -0.649509, -0.260275, 0.290931 - -0.652561, -0.649711, -0.260805, 0.289862 - -0.652622, -0.649913, -0.261337, 0.288792 - -0.652680, -0.650114, -0.261870, 0.287722 - -0.652736, -0.650316, -0.262404, 0.286653 - -0.652789, -0.650516, -0.262940, 0.285583 - -0.652840, -0.650717, -0.263478, 0.284513 - -0.652888, -0.650916, -0.264017, 0.283443 - -0.652934, -0.651116, -0.264557, 0.282373 - -0.652978, -0.651315, -0.265099, 0.281302 - -0.653019, -0.651514, -0.265642, 0.280232 - -0.653058, -0.651712, -0.266187, 0.279162 - -0.653095, -0.651910, -0.266733, 0.278091 - -0.653128, -0.652107, -0.267281, 0.277021 - -0.653160, -0.652304, -0.267830, 0.275951 - -0.653189, -0.652500, -0.268381, 0.274880 - -0.653216, -0.652696, -0.268933, 0.273810 - -0.653240, -0.652892, -0.269486, 0.272739 - -0.653262, -0.653087, -0.270041, 0.271669 - -0.653281, -0.653281, -0.270598, 0.270598 diff --git a/scripts/trajectories/rotate_euler_quaternion_5s.csv b/scripts/trajectories/rotate_euler_quaternion_5s.csv deleted file mode 100644 index 0052e3d7c7a49f78f8880e203ee2fd99b4c19f29..0000000000000000000000000000000000000000 --- a/scripts/trajectories/rotate_euler_quaternion_5s.csv +++ /dev/null @@ -1,1000 +0,0 @@ --3,360,0,0 --3,359.1,0,0 --3,358.2,0,0 --3,357.3,0,0 --3,356.4,0,0 --3,355.5,0,0 --3,354.6,0,0 --3,353.7,0,0 --3,352.8,0,0 --3,351.9,0,0 --3,351,0,0 --3,350.1,0,0 --3,349.2,0,0 --3,348.3,0,0 --3,347.4,0,0 --3,346.5,0,0 --3,345.6,0,0 --3,344.7,0,0 --3,343.8,0,0 --3,342.9,0,0 --3,342,0,0 --3,341.1,0,0 --3,340.2,0,0 --3,339.2,0,0 --3,338.3,0,0 --3,337.4,0,0 --3,336.5,0,0 --3,335.6,0,0 --3,334.7,0,0 --3,333.8,0,0 --3,332.9,0,0 --3,332,0,0 --3,331.1,0,0 --3,330.2,0,0 --3,329.3,0,0 --3,328.4,0,0 --3,327.5,0,0 --3,326.6,0,0 --3,325.7,0,0 --3,324.8,0,0 --3,323.9,0,0 --3,323,0,0 --3,322.1,0,0 --3,321.2,0,0 --3,320.3,0,0 --3,319.4,0,0 --3,318.5,0,0 --3,317.6,0,0 --3,316.7,0,0 --3,315.8,0,0 --3,314.9,0,0 --3,314,0,0 --3,313.1,0,0 --3,312.2,0,0 --3,311.3,0,0 --3,310.4,0,0 --3,309.5,0,0 --3,308.6,0,0 --3,307.7,0,0 --3,306.8,0,0 --3,305.9,0,0 --3,305,0,0 --3,304.1,0,0 --3,303.2,0,0 --3,302.3,0,0 --3,301.4,0,0 --3,300.5,0,0 --3,299.5,0,0 --3,298.6,0,0 --3,297.7,0,0 --3,296.8,0,0 --3,295.9,0,0 --3,295,0,0 --3,294.1,0,0 --3,293.2,0,0 --3,292.3,0,0 --3,291.4,0,0 --3,290.5,0,0 --3,289.6,0,0 --3,288.7,0,0 --3,287.8,0,0 --3,286.9,0,0 --3,286,0,0 --3,285.1,0,0 --3,284.2,0,0 --3,283.3,0,0 --3,282.4,0,0 --3,281.5,0,0 --3,280.6,0,0 --3,279.7,0,0 --3,278.8,0,0 --3,277.9,0,0 --3,277,0,0 --3,276.1,0,0 --3,275.2,0,0 --3,274.3,0,0 --3,273.4,0,0 --3,272.5,0,0 --3,271.6,0,0 --3,270.7,0,0 --3,269.8,0,0 --3,268.9,0,0 --3,268,0,0 --3,267.1,0,0 --3,266.2,0,0 --3,265.3,0,0 --3,264.4,0,0 --3,263.5,0,0 --3,262.6,0,0 --3,261.7,0,0 --3,260.8,0,0 --3,259.8,0,0 --3,258.9,0,0 --3,258,0,0 --3,257.1,0,0 --3,256.2,0,0 --3,255.3,0,0 --3,254.4,0,0 --3,253.5,0,0 --3,252.6,0,0 --3,251.7,0,0 --3,250.8,0,0 --3,249.9,0,0 --3,249,0,0 --3,248.1,0,0 --3,247.2,0,0 --3,246.3,0,0 --3,245.4,0,0 --3,244.5,0,0 --3,243.6,0,0 --3,242.7,0,0 --3,241.8,0,0 --3,240.9,0,0 --3,240,0,0 --3,239.1,0,0 --3,238.2,0,0 --3,237.3,0,0 --3,236.4,0,0 --3,235.5,0,0 --3,234.6,0,0 --3,233.7,0,0 --3,232.8,0,0 --3,231.9,0,0 --3,231,0,0 --3,230.1,0,0 --3,229.2,0,0 --3,228.3,0,0 --3,227.4,0,0 --3,226.5,0,0 --3,225.6,0,0 --3,224.7,0,0 --3,223.8,0,0 --3,222.9,0,0 --3,222,0,0 --3,221.1,0,0 --3,220.2,0,0 --3,219.2,0,0 --3,218.3,0,0 --3,217.4,0,0 --3,216.5,0,0 --3,215.6,0,0 --3,214.7,0,0 --3,213.8,0,0 --3,212.9,0,0 --3,212,0,0 --3,211.1,0,0 --3,210.2,0,0 --3,209.3,0,0 --3,208.4,0,0 --3,207.5,0,0 --3,206.6,0,0 --3,205.7,0,0 --3,204.8,0,0 --3,203.9,0,0 --3,203,0,0 --3,202.1,0,0 --3,201.2,0,0 --3,200.3,0,0 --3,199.4,0,0 --3,198.5,0,0 --3,197.6,0,0 --3,196.7,0,0 --3,195.8,0,0 --3,194.9,0,0 --3,194,0,0 --3,193.1,0,0 --3,192.2,0,0 --3,191.3,0,0 --3,190.4,0,0 --3,189.5,0,0 --3,188.6,0,0 --3,187.7,0,0 --3,186.8,0,0 --3,185.9,0,0 --3,185,0,0 --3,184.1,0,0 --3,183.2,0,0 --3,182.3,0,0 --3,181.4,0,0 --3,180.5,0,0 --3,179.5,-90,0 --3,178.6,-89.5,0 --3,177.7,-89.1,0 --3,176.8,-88.6,0 --3,175.9,-88.2,0 --3,175,-87.7,0 --3,174.1,-87.3,0 --3,173.2,-86.8,0 --3,172.3,-86.4,0 --3,171.4,-85.9,0 --3,170.5,-85.5,0 --3,169.6,-85,0 --3,168.7,-84.6,0 --3,167.8,-84.1,0 --3,166.9,-83.7,0 --3,166,-83.2,0 --3,165.1,-82.8,0 --3,164.2,-82.3,0 --3,163.3,-81.9,0 --3,162.4,-81.4,0 --3,161.5,-81,0 --3,160.6,-80.5,0 --3,159.7,-80.1,0 --3,158.8,-79.6,0 --3,157.9,-79.1,0 --3,157,-78.7,0 --3,156.1,-78.2,0 --3,155.2,-77.8,0 --3,154.3,-77.3,0 --3,153.4,-76.9,0 --3,152.5,-76.4,0 --3,151.6,-76,0 --3,150.7,-75.5,0 --3,149.8,-75.1,0 --3,148.9,-74.6,0 --3,148,-74.2,0 --3,147.1,-73.7,0 --3,146.2,-73.3,0 --3,145.3,-72.8,0 --3,144.4,-72.4,0 --3,143.5,-71.9,0 --3,142.6,-71.5,0 --3,141.7,-71,0 --3,140.8,-70.6,0 --3,139.8,-70.1,0 --3,138.9,-69.6,0 --3,138,-69.2,0 --3,137.1,-68.7,0 --3,136.2,-68.3,0 --3,135.3,-67.8,0 --3,134.4,-67.4,0 --3,133.5,-66.9,0 --3,132.6,-66.5,0 --3,131.7,-66,0 --3,130.8,-65.6,0 --3,129.9,-65.1,0 --3,129,-64.7,0 --3,128.1,-64.2,0 --3,127.2,-63.8,0 --3,126.3,-63.3,0 --3,125.4,-62.9,0 --3,124.5,-62.4,0 --3,123.6,-62,0 --3,122.7,-61.5,0 --3,121.8,-61.1,0 --3,120.9,-60.6,0 --3,120,-60.2,0 --3,119.1,-59.7,0 --3,118.2,-59.2,0 --3,117.3,-58.8,0 --3,116.4,-58.3,0 --3,115.5,-57.9,0 --3,114.6,-57.4,0 --3,113.7,-57,0 --3,112.8,-56.5,0 --3,111.9,-56.1,0 --3,111,-55.6,0 --3,110.1,-55.2,0 --3,109.2,-54.7,0 --3,108.3,-54.3,0 --3,107.4,-53.8,0 --3,106.5,-53.4,0 --3,105.6,-52.9,0 --3,104.7,-52.5,0 --3,103.8,-52,0 --3,102.9,-51.6,0 --3,102,-51.1,0 --3,101.1,-50.7,0 --3,100.2,-50.2,0 --3,99.2,-49.7,0 --3,98.3,-49.3,0 --3,97.4,-48.8,0 --3,96.5,-48.4,0 --3,95.6,-47.9,0 --3,94.7,-47.5,0 --3,93.8,-47,0 --3,92.9,-46.6,0 --3,92,-46.1,0 --3,91.1,-45.7,0 --3,90.2,-45.2,0 --3,89.3,-44.8,90 --3,88.4,-44.3,89.1 --3,87.5,-43.9,88.2 --3,86.6,-43.4,87.3 --3,85.7,-43,86.4 --3,84.8,-42.5,85.5 --3,83.9,-42.1,84.5 --3,83,-41.6,83.6 --3,82.1,-41.2,82.7 --3,81.2,-40.7,81.8 --3,80.3,-40.3,80.9 --3,79.4,-39.8,80 --3,78.5,-39.3,79.1 --3,77.6,-38.9,78.2 --3,76.7,-38.4,77.3 --3,75.8,-38,76.4 --3,74.9,-37.5,75.5 --3,74,-37.1,74.5 --3,73.1,-36.6,73.6 --3,72.2,-36.2,72.7 --3,71.3,-35.7,71.8 --3,70.4,-35.3,70.9 --3,69.5,-34.8,70 --3,68.6,-34.4,69.1 --3,67.7,-33.9,68.2 --3,66.8,-33.5,67.3 --3,65.9,-33,66.4 --3,65,-32.6,65.5 --3,64.1,-32.1,64.5 --3,63.2,-31.7,63.6 --3,62.3,-31.2,62.7 --3,61.4,-30.8,61.8 --3,60.5,-30.3,60.9 --3,59.5,-29.8,60 --3,58.6,-29.4,59.1 --3,57.7,-28.9,58.2 --3,56.8,-28.5,57.3 --3,55.9,-28,56.4 --3,55,-27.6,55.5 --3,54.1,-27.1,54.5 --3,53.2,-26.7,53.6 --3,52.3,-26.2,52.7 --3,51.4,-25.8,51.8 --3,50.5,-25.3,50.9 --3,49.6,-24.9,50 --3,48.7,-24.4,49.1 --3,47.8,-24,48.2 --3,46.9,-23.5,47.3 --3,46,-23.1,46.4 --3,45.1,-22.6,45.5 --3,44.2,-22.2,44.5 --3,43.3,-21.7,43.6 --3,42.4,-21.3,42.7 --3,41.5,-20.8,41.8 --3,40.6,-20.4,40.9 --3,39.7,-19.9,40 --3,38.8,-19.4,39.1 --3,37.9,-19,38.2 --3,37,-18.5,37.3 --3,36.1,-18.1,36.4 --3,35.2,-17.6,35.5 --3,34.3,-17.2,34.5 --3,33.4,-16.7,33.6 --3,32.5,-16.3,32.7 --3,31.6,-15.8,31.8 --3,30.7,-15.4,30.9 --3,29.8,-14.9,30 --3,28.9,-14.5,29.1 --3,28,-14,28.2 --3,27.1,-13.6,27.3 --3,26.2,-13.1,26.4 --3,25.3,-12.7,25.5 --3,24.4,-12.2,24.5 --3,23.5,-11.8,23.6 --3,22.6,-11.3,22.7 --3,21.7,-10.9,21.8 --3,20.8,-10.4,20.9 --3,19.8,-9.9,20 --3,18.9,-9.5,19.1 --3,18,-9,18.2 --3,17.1,-8.6,17.3 --3,16.2,-8.1,16.4 --3,15.3,-7.7,15.5 --3,14.4,-7.2,14.5 --3,13.5,-6.8,13.6 --3,12.6,-6.3,12.7 --3,11.7,-5.9,11.8 --3,10.8,-5.4,10.9 --3,9.9,-5,10 --3,9,-4.5,9.1 --3,8.1,-4.1,8.2 --3,7.2,-3.6,7.3 --3,6.3,-3.2,6.4 --3,5.4,-2.7,5.5 --3,4.5,-2.3,4.5 --3,3.6,-1.8,3.6 --3,2.7,-1.4,2.7 --3,1.8,-0.9,1.8 --3,0.9,-0.5,0.9 --3,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -0.9,0,0,0.3 -0.9,0,0,0.3 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.8,0,0,0.5 -0.8,0,0,0.5 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.5,0,0,0.8 -0.5,0,0,0.8 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.3,0,0,0.9 -0.3,0,0,0.9 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,0.9 -0.3,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.8 -0.5,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.7,0,0,0.8 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.8,0,0,0.7 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.5 -0.8,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.3 -0.9,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0 --3,0,0,0 --3,0.9,-0.5,0.9 --3,1.8,-0.9,1.8 --3,2.7,-1.4,2.7 --3,3.6,-1.8,3.6 --3,4.5,-2.3,4.5 --3,5.4,-2.7,5.5 --3,6.3,-3.2,6.4 --3,7.2,-3.6,7.3 --3,8.1,-4.1,8.2 --3,9,-4.5,9.1 --3,9.9,-5,10 --3,10.8,-5.4,10.9 --3,11.7,-5.9,11.8 --3,12.6,-6.3,12.7 --3,13.5,-6.8,13.6 --3,14.4,-7.2,14.5 --3,15.3,-7.7,15.5 --3,16.2,-8.1,16.4 --3,17.1,-8.6,17.3 --3,18,-9,18.2 --3,18.9,-9.5,19.1 --3,19.8,-9.9,20 --3,20.8,-10.4,20.9 --3,21.7,-10.9,21.8 --3,22.6,-11.3,22.7 --3,23.5,-11.8,23.6 --3,24.4,-12.2,24.5 --3,25.3,-12.7,25.5 --3,26.2,-13.1,26.4 --3,27.1,-13.6,27.3 --3,28,-14,28.2 --3,28.9,-14.5,29.1 --3,29.8,-14.9,30 --3,30.7,-15.4,30.9 --3,31.6,-15.8,31.8 --3,32.5,-16.3,32.7 --3,33.4,-16.7,33.6 --3,34.3,-17.2,34.5 --3,35.2,-17.6,35.5 --3,36.1,-18.1,36.4 --3,37,-18.5,37.3 --3,37.9,-19,38.2 --3,38.8,-19.4,39.1 --3,39.7,-19.9,40 --3,40.6,-20.4,40.9 --3,41.5,-20.8,41.8 --3,42.4,-21.3,42.7 --3,43.3,-21.7,43.6 --3,44.2,-22.2,44.5 --3,45.1,-22.6,45.5 --3,46,-23.1,46.4 --3,46.9,-23.5,47.3 --3,47.8,-24,48.2 --3,48.7,-24.4,49.1 --3,49.6,-24.9,50 --3,50.5,-25.3,50.9 --3,51.4,-25.8,51.8 --3,52.3,-26.2,52.7 --3,53.2,-26.7,53.6 --3,54.1,-27.1,54.5 --3,55,-27.6,55.5 --3,55.9,-28,56.4 --3,56.8,-28.5,57.3 --3,57.7,-28.9,58.2 --3,58.6,-29.4,59.1 --3,59.5,-29.8,60 --3,60.5,-30.3,60.9 --3,61.4,-30.8,61.8 --3,62.3,-31.2,62.7 --3,63.2,-31.7,63.6 --3,64.1,-32.1,64.5 --3,65,-32.6,65.5 --3,65.9,-33,66.4 --3,66.8,-33.5,67.3 --3,67.7,-33.9,68.2 --3,68.6,-34.4,69.1 --3,69.5,-34.8,70 --3,70.4,-35.3,70.9 --3,71.3,-35.7,71.8 --3,72.2,-36.2,72.7 --3,73.1,-36.6,73.6 --3,74,-37.1,74.5 --3,74.9,-37.5,75.5 --3,75.8,-38,76.4 --3,76.7,-38.4,77.3 --3,77.6,-38.9,78.2 --3,78.5,-39.3,79.1 --3,79.4,-39.8,80 --3,80.3,-40.3,80.9 --3,81.2,-40.7,81.8 --3,82.1,-41.2,82.7 --3,83,-41.6,83.6 --3,83.9,-42.1,84.5 --3,84.8,-42.5,85.5 --3,85.7,-43,86.4 --3,86.6,-43.4,87.3 --3,87.5,-43.9,88.2 --3,88.4,-44.3,89.1 --3,89.3,-44.8,90 --3,90.2,-45.2,0 --3,91.1,-45.7,0 --3,92,-46.1,0 --3,92.9,-46.6,0 --3,93.8,-47,0 --3,94.7,-47.5,0 --3,95.6,-47.9,0 --3,96.5,-48.4,0 --3,97.4,-48.8,0 --3,98.3,-49.3,0 --3,99.2,-49.7,0 --3,100.2,-50.2,0 --3,101.1,-50.7,0 --3,102,-51.1,0 --3,102.9,-51.6,0 --3,103.8,-52,0 --3,104.7,-52.5,0 --3,105.6,-52.9,0 --3,106.5,-53.4,0 --3,107.4,-53.8,0 --3,108.3,-54.3,0 --3,109.2,-54.7,0 --3,110.1,-55.2,0 --3,111,-55.6,0 --3,111.9,-56.1,0 --3,112.8,-56.5,0 --3,113.7,-57,0 --3,114.6,-57.4,0 --3,115.5,-57.9,0 --3,116.4,-58.3,0 --3,117.3,-58.8,0 --3,118.2,-59.2,0 --3,119.1,-59.7,0 --3,120,-60.2,0 --3,120.9,-60.6,0 --3,121.8,-61.1,0 --3,122.7,-61.5,0 --3,123.6,-62,0 --3,124.5,-62.4,0 --3,125.4,-62.9,0 --3,126.3,-63.3,0 --3,127.2,-63.8,0 --3,128.1,-64.2,0 --3,129,-64.7,0 --3,129.9,-65.1,0 --3,130.8,-65.6,0 --3,131.7,-66,0 --3,132.6,-66.5,0 --3,133.5,-66.9,0 --3,134.4,-67.4,0 --3,135.3,-67.8,0 --3,136.2,-68.3,0 --3,137.1,-68.7,0 --3,138,-69.2,0 --3,138.9,-69.6,0 --3,139.8,-70.1,0 --3,140.8,-70.6,0 --3,141.7,-71,0 --3,142.6,-71.5,0 --3,143.5,-71.9,0 --3,144.4,-72.4,0 --3,145.3,-72.8,0 --3,146.2,-73.3,0 --3,147.1,-73.7,0 --3,148,-74.2,0 --3,148.9,-74.6,0 --3,149.8,-75.1,0 --3,150.7,-75.5,0 --3,151.6,-76,0 --3,152.5,-76.4,0 --3,153.4,-76.9,0 --3,154.3,-77.3,0 --3,155.2,-77.8,0 --3,156.1,-78.2,0 --3,157,-78.7,0 --3,157.9,-79.1,0 --3,158.8,-79.6,0 --3,159.7,-80.1,0 --3,160.6,-80.5,0 --3,161.5,-81,0 --3,162.4,-81.4,0 --3,163.3,-81.9,0 --3,164.2,-82.3,0 --3,165.1,-82.8,0 --3,166,-83.2,0 --3,166.9,-83.7,0 --3,167.8,-84.1,0 --3,168.7,-84.6,0 --3,169.6,-85,0 --3,170.5,-85.5,0 --3,171.4,-85.9,0 --3,172.3,-86.4,0 --3,173.2,-86.8,0 --3,174.1,-87.3,0 --3,175,-87.7,0 --3,175.9,-88.2,0 --3,176.8,-88.6,0 --3,177.7,-89.1,0 --3,178.6,-89.5,0 --3,179.5,-90,0 --3,180.5,0,0 --3,181.4,0,0 --3,182.3,0,0 --3,183.2,0,0 --3,184.1,0,0 --3,185,0,0 --3,185.9,0,0 --3,186.8,0,0 --3,187.7,0,0 --3,188.6,0,0 --3,189.5,0,0 --3,190.4,0,0 --3,191.3,0,0 --3,192.2,0,0 --3,193.1,0,0 --3,194,0,0 --3,194.9,0,0 --3,195.8,0,0 --3,196.7,0,0 --3,197.6,0,0 --3,198.5,0,0 --3,199.4,0,0 --3,200.3,0,0 --3,201.2,0,0 --3,202.1,0,0 --3,203,0,0 --3,203.9,0,0 --3,204.8,0,0 --3,205.7,0,0 --3,206.6,0,0 --3,207.5,0,0 --3,208.4,0,0 --3,209.3,0,0 --3,210.2,0,0 --3,211.1,0,0 --3,212,0,0 --3,212.9,0,0 --3,213.8,0,0 --3,214.7,0,0 --3,215.6,0,0 --3,216.5,0,0 --3,217.4,0,0 --3,218.3,0,0 --3,219.2,0,0 --3,220.2,0,0 --3,221.1,0,0 --3,222,0,0 --3,222.9,0,0 --3,223.8,0,0 --3,224.7,0,0 --3,225.6,0,0 --3,226.5,0,0 --3,227.4,0,0 --3,228.3,0,0 --3,229.2,0,0 --3,230.1,0,0 --3,231,0,0 --3,231.9,0,0 --3,232.8,0,0 --3,233.7,0,0 --3,234.6,0,0 --3,235.5,0,0 --3,236.4,0,0 --3,237.3,0,0 --3,238.2,0,0 --3,239.1,0,0 --3,240,0,0 --3,240.9,0,0 --3,241.8,0,0 --3,242.7,0,0 --3,243.6,0,0 --3,244.5,0,0 --3,245.4,0,0 --3,246.3,0,0 --3,247.2,0,0 --3,248.1,0,0 --3,249,0,0 --3,249.9,0,0 --3,250.8,0,0 --3,251.7,0,0 --3,252.6,0,0 --3,253.5,0,0 --3,254.4,0,0 --3,255.3,0,0 --3,256.2,0,0 --3,257.1,0,0 --3,258,0,0 --3,258.9,0,0 --3,259.8,0,0 --3,260.8,0,0 --3,261.7,0,0 --3,262.6,0,0 --3,263.5,0,0 --3,264.4,0,0 --3,265.3,0,0 --3,266.2,0,0 --3,267.1,0,0 --3,268,0,0 --3,268.9,0,0 --3,269.8,0,0 --3,270.7,0,0 --3,271.6,0,0 --3,272.5,0,0 --3,273.4,0,0 --3,274.3,0,0 --3,275.2,0,0 --3,276.1,0,0 --3,277,0,0 --3,277.9,0,0 --3,278.8,0,0 --3,279.7,0,0 --3,280.6,0,0 --3,281.5,0,0 --3,282.4,0,0 --3,283.3,0,0 --3,284.2,0,0 --3,285.1,0,0 --3,286,0,0 --3,286.9,0,0 --3,287.8,0,0 --3,288.7,0,0 --3,289.6,0,0 --3,290.5,0,0 --3,291.4,0,0 --3,292.3,0,0 --3,293.2,0,0 --3,294.1,0,0 --3,295,0,0 --3,295.9,0,0 --3,296.8,0,0 --3,297.7,0,0 --3,298.6,0,0 --3,299.5,0,0 --3,300.5,0,0 --3,301.4,0,0 --3,302.3,0,0 --3,303.2,0,0 --3,304.1,0,0 --3,305,0,0 --3,305.9,0,0 --3,306.8,0,0 --3,307.7,0,0 --3,308.6,0,0 --3,309.5,0,0 --3,310.4,0,0 --3,311.3,0,0 --3,312.2,0,0 --3,313.1,0,0 --3,314,0,0 --3,314.9,0,0 --3,315.8,0,0 --3,316.7,0,0 --3,317.6,0,0 --3,318.5,0,0 --3,319.4,0,0 --3,320.3,0,0 --3,321.2,0,0 --3,322.1,0,0 --3,323,0,0 --3,323.9,0,0 --3,324.8,0,0 --3,325.7,0,0 --3,326.6,0,0 --3,327.5,0,0 --3,328.4,0,0 --3,329.3,0,0 --3,330.2,0,0 --3,331.1,0,0 --3,332,0,0 --3,332.9,0,0 --3,333.8,0,0 --3,334.7,0,0 --3,335.6,0,0 --3,336.5,0,0 --3,337.4,0,0 --3,338.3,0,0 --3,339.2,0,0 --3,340.2,0,0 --3,341.1,0,0 --3,342,0,0 --3,342.9,0,0 --3,343.8,0,0 --3,344.7,0,0 --3,345.6,0,0 --3,346.5,0,0 --3,347.4,0,0 --3,348.3,0,0 --3,349.2,0,0 --3,350.1,0,0 --3,351,0,0 --3,351.9,0,0 --3,352.8,0,0 --3,353.7,0,0 --3,354.6,0,0 --3,355.5,0,0 --3,356.4,0,0 --3,357.3,0,0 --3,358.2,0,0 --3,359.1,0,0 --3,360,0,0 diff --git a/scripts/trajectories/rotate_euler_quaternion_5s_delayed.csv b/scripts/trajectories/rotate_euler_quaternion_5s_delayed.csv deleted file mode 100644 index 99c54e3c52a9252d38520920c392e0df553611e1..0000000000000000000000000000000000000000 --- a/scripts/trajectories/rotate_euler_quaternion_5s_delayed.csv +++ /dev/null @@ -1,1020 +0,0 @@ --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,360,0,0 --3,359.1,0,0 --3,358.2,0,0 --3,357.3,0,0 --3,356.4,0,0 --3,355.5,0,0 --3,354.6,0,0 --3,353.7,0,0 --3,352.8,0,0 --3,351.9,0,0 --3,351,0,0 --3,350.1,0,0 --3,349.2,0,0 --3,348.3,0,0 --3,347.4,0,0 --3,346.5,0,0 --3,345.6,0,0 --3,344.7,0,0 --3,343.8,0,0 --3,342.9,0,0 --3,342,0,0 --3,341.1,0,0 --3,340.2,0,0 --3,339.2,0,0 --3,338.3,0,0 --3,337.4,0,0 --3,336.5,0,0 --3,335.6,0,0 --3,334.7,0,0 --3,333.8,0,0 --3,332.9,0,0 --3,332,0,0 --3,331.1,0,0 --3,330.2,0,0 --3,329.3,0,0 --3,328.4,0,0 --3,327.5,0,0 --3,326.6,0,0 --3,325.7,0,0 --3,324.8,0,0 --3,323.9,0,0 --3,323,0,0 --3,322.1,0,0 --3,321.2,0,0 --3,320.3,0,0 --3,319.4,0,0 --3,318.5,0,0 --3,317.6,0,0 --3,316.7,0,0 --3,315.8,0,0 --3,314.9,0,0 --3,314,0,0 --3,313.1,0,0 --3,312.2,0,0 --3,311.3,0,0 --3,310.4,0,0 --3,309.5,0,0 --3,308.6,0,0 --3,307.7,0,0 --3,306.8,0,0 --3,305.9,0,0 --3,305,0,0 --3,304.1,0,0 --3,303.2,0,0 --3,302.3,0,0 --3,301.4,0,0 --3,300.5,0,0 --3,299.5,0,0 --3,298.6,0,0 --3,297.7,0,0 --3,296.8,0,0 --3,295.9,0,0 --3,295,0,0 --3,294.1,0,0 --3,293.2,0,0 --3,292.3,0,0 --3,291.4,0,0 --3,290.5,0,0 --3,289.6,0,0 --3,288.7,0,0 --3,287.8,0,0 --3,286.9,0,0 --3,286,0,0 --3,285.1,0,0 --3,284.2,0,0 --3,283.3,0,0 --3,282.4,0,0 --3,281.5,0,0 --3,280.6,0,0 --3,279.7,0,0 --3,278.8,0,0 --3,277.9,0,0 --3,277,0,0 --3,276.1,0,0 --3,275.2,0,0 --3,274.3,0,0 --3,273.4,0,0 --3,272.5,0,0 --3,271.6,0,0 --3,270.7,0,0 --3,269.8,0,0 --3,268.9,0,0 --3,268,0,0 --3,267.1,0,0 --3,266.2,0,0 --3,265.3,0,0 --3,264.4,0,0 --3,263.5,0,0 --3,262.6,0,0 --3,261.7,0,0 --3,260.8,0,0 --3,259.8,0,0 --3,258.9,0,0 --3,258,0,0 --3,257.1,0,0 --3,256.2,0,0 --3,255.3,0,0 --3,254.4,0,0 --3,253.5,0,0 --3,252.6,0,0 --3,251.7,0,0 --3,250.8,0,0 --3,249.9,0,0 --3,249,0,0 --3,248.1,0,0 --3,247.2,0,0 --3,246.3,0,0 --3,245.4,0,0 --3,244.5,0,0 --3,243.6,0,0 --3,242.7,0,0 --3,241.8,0,0 --3,240.9,0,0 --3,240,0,0 --3,239.1,0,0 --3,238.2,0,0 --3,237.3,0,0 --3,236.4,0,0 --3,235.5,0,0 --3,234.6,0,0 --3,233.7,0,0 --3,232.8,0,0 --3,231.9,0,0 --3,231,0,0 --3,230.1,0,0 --3,229.2,0,0 --3,228.3,0,0 --3,227.4,0,0 --3,226.5,0,0 --3,225.6,0,0 --3,224.7,0,0 --3,223.8,0,0 --3,222.9,0,0 --3,222,0,0 --3,221.1,0,0 --3,220.2,0,0 --3,219.2,0,0 --3,218.3,0,0 --3,217.4,0,0 --3,216.5,0,0 --3,215.6,0,0 --3,214.7,0,0 --3,213.8,0,0 --3,212.9,0,0 --3,212,0,0 --3,211.1,0,0 --3,210.2,0,0 --3,209.3,0,0 --3,208.4,0,0 --3,207.5,0,0 --3,206.6,0,0 --3,205.7,0,0 --3,204.8,0,0 --3,203.9,0,0 --3,203,0,0 --3,202.1,0,0 --3,201.2,0,0 --3,200.3,0,0 --3,199.4,0,0 --3,198.5,0,0 --3,197.6,0,0 --3,196.7,0,0 --3,195.8,0,0 --3,194.9,0,0 --3,194,0,0 --3,193.1,0,0 --3,192.2,0,0 --3,191.3,0,0 --3,190.4,0,0 --3,189.5,0,0 --3,188.6,0,0 --3,187.7,0,0 --3,186.8,0,0 --3,185.9,0,0 --3,185,0,0 --3,184.1,0,0 --3,183.2,0,0 --3,182.3,0,0 --3,181.4,0,0 --3,180.5,0,0 --3,179.5,-90,0 --3,178.6,-89.5,0 --3,177.7,-89.1,0 --3,176.8,-88.6,0 --3,175.9,-88.2,0 --3,175,-87.7,0 --3,174.1,-87.3,0 --3,173.2,-86.8,0 --3,172.3,-86.4,0 --3,171.4,-85.9,0 --3,170.5,-85.5,0 --3,169.6,-85,0 --3,168.7,-84.6,0 --3,167.8,-84.1,0 --3,166.9,-83.7,0 --3,166,-83.2,0 --3,165.1,-82.8,0 --3,164.2,-82.3,0 --3,163.3,-81.9,0 --3,162.4,-81.4,0 --3,161.5,-81,0 --3,160.6,-80.5,0 --3,159.7,-80.1,0 --3,158.8,-79.6,0 --3,157.9,-79.1,0 --3,157,-78.7,0 --3,156.1,-78.2,0 --3,155.2,-77.8,0 --3,154.3,-77.3,0 --3,153.4,-76.9,0 --3,152.5,-76.4,0 --3,151.6,-76,0 --3,150.7,-75.5,0 --3,149.8,-75.1,0 --3,148.9,-74.6,0 --3,148,-74.2,0 --3,147.1,-73.7,0 --3,146.2,-73.3,0 --3,145.3,-72.8,0 --3,144.4,-72.4,0 --3,143.5,-71.9,0 --3,142.6,-71.5,0 --3,141.7,-71,0 --3,140.8,-70.6,0 --3,139.8,-70.1,0 --3,138.9,-69.6,0 --3,138,-69.2,0 --3,137.1,-68.7,0 --3,136.2,-68.3,0 --3,135.3,-67.8,0 --3,134.4,-67.4,0 --3,133.5,-66.9,0 --3,132.6,-66.5,0 --3,131.7,-66,0 --3,130.8,-65.6,0 --3,129.9,-65.1,0 --3,129,-64.7,0 --3,128.1,-64.2,0 --3,127.2,-63.8,0 --3,126.3,-63.3,0 --3,125.4,-62.9,0 --3,124.5,-62.4,0 --3,123.6,-62,0 --3,122.7,-61.5,0 --3,121.8,-61.1,0 --3,120.9,-60.6,0 --3,120,-60.2,0 --3,119.1,-59.7,0 --3,118.2,-59.2,0 --3,117.3,-58.8,0 --3,116.4,-58.3,0 --3,115.5,-57.9,0 --3,114.6,-57.4,0 --3,113.7,-57,0 --3,112.8,-56.5,0 --3,111.9,-56.1,0 --3,111,-55.6,0 --3,110.1,-55.2,0 --3,109.2,-54.7,0 --3,108.3,-54.3,0 --3,107.4,-53.8,0 --3,106.5,-53.4,0 --3,105.6,-52.9,0 --3,104.7,-52.5,0 --3,103.8,-52,0 --3,102.9,-51.6,0 --3,102,-51.1,0 --3,101.1,-50.7,0 --3,100.2,-50.2,0 --3,99.2,-49.7,0 --3,98.3,-49.3,0 --3,97.4,-48.8,0 --3,96.5,-48.4,0 --3,95.6,-47.9,0 --3,94.7,-47.5,0 --3,93.8,-47,0 --3,92.9,-46.6,0 --3,92,-46.1,0 --3,91.1,-45.7,0 --3,90.2,-45.2,0 --3,89.3,-44.8,90 --3,88.4,-44.3,89.1 --3,87.5,-43.9,88.2 --3,86.6,-43.4,87.3 --3,85.7,-43,86.4 --3,84.8,-42.5,85.5 --3,83.9,-42.1,84.5 --3,83,-41.6,83.6 --3,82.1,-41.2,82.7 --3,81.2,-40.7,81.8 --3,80.3,-40.3,80.9 --3,79.4,-39.8,80 --3,78.5,-39.3,79.1 --3,77.6,-38.9,78.2 --3,76.7,-38.4,77.3 --3,75.8,-38,76.4 --3,74.9,-37.5,75.5 --3,74,-37.1,74.5 --3,73.1,-36.6,73.6 --3,72.2,-36.2,72.7 --3,71.3,-35.7,71.8 --3,70.4,-35.3,70.9 --3,69.5,-34.8,70 --3,68.6,-34.4,69.1 --3,67.7,-33.9,68.2 --3,66.8,-33.5,67.3 --3,65.9,-33,66.4 --3,65,-32.6,65.5 --3,64.1,-32.1,64.5 --3,63.2,-31.7,63.6 --3,62.3,-31.2,62.7 --3,61.4,-30.8,61.8 --3,60.5,-30.3,60.9 --3,59.5,-29.8,60 --3,58.6,-29.4,59.1 --3,57.7,-28.9,58.2 --3,56.8,-28.5,57.3 --3,55.9,-28,56.4 --3,55,-27.6,55.5 --3,54.1,-27.1,54.5 --3,53.2,-26.7,53.6 --3,52.3,-26.2,52.7 --3,51.4,-25.8,51.8 --3,50.5,-25.3,50.9 --3,49.6,-24.9,50 --3,48.7,-24.4,49.1 --3,47.8,-24,48.2 --3,46.9,-23.5,47.3 --3,46,-23.1,46.4 --3,45.1,-22.6,45.5 --3,44.2,-22.2,44.5 --3,43.3,-21.7,43.6 --3,42.4,-21.3,42.7 --3,41.5,-20.8,41.8 --3,40.6,-20.4,40.9 --3,39.7,-19.9,40 --3,38.8,-19.4,39.1 --3,37.9,-19,38.2 --3,37,-18.5,37.3 --3,36.1,-18.1,36.4 --3,35.2,-17.6,35.5 --3,34.3,-17.2,34.5 --3,33.4,-16.7,33.6 --3,32.5,-16.3,32.7 --3,31.6,-15.8,31.8 --3,30.7,-15.4,30.9 --3,29.8,-14.9,30 --3,28.9,-14.5,29.1 --3,28,-14,28.2 --3,27.1,-13.6,27.3 --3,26.2,-13.1,26.4 --3,25.3,-12.7,25.5 --3,24.4,-12.2,24.5 --3,23.5,-11.8,23.6 --3,22.6,-11.3,22.7 --3,21.7,-10.9,21.8 --3,20.8,-10.4,20.9 --3,19.8,-9.9,20 --3,18.9,-9.5,19.1 --3,18,-9,18.2 --3,17.1,-8.6,17.3 --3,16.2,-8.1,16.4 --3,15.3,-7.7,15.5 --3,14.4,-7.2,14.5 --3,13.5,-6.8,13.6 --3,12.6,-6.3,12.7 --3,11.7,-5.9,11.8 --3,10.8,-5.4,10.9 --3,9.9,-5,10 --3,9,-4.5,9.1 --3,8.1,-4.1,8.2 --3,7.2,-3.6,7.3 --3,6.3,-3.2,6.4 --3,5.4,-2.7,5.5 --3,4.5,-2.3,4.5 --3,3.6,-1.8,3.6 --3,2.7,-1.4,2.7 --3,1.8,-0.9,1.8 --3,0.9,-0.5,0.9 --3,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -0.9,0,0,0.3 -0.9,0,0,0.3 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.8,0,0,0.5 -0.8,0,0,0.5 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.5,0,0,0.8 -0.5,0,0,0.8 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.3,0,0,0.9 -0.3,0,0,0.9 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.1,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.2,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,1 -0.3,0,0,0.9 -0.3,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.4,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.9 -0.5,0,0,0.8 -0.5,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.6,0,0,0.8 -0.7,0,0,0.8 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.7,0,0,0.7 -0.8,0,0,0.7 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.6 -0.8,0,0,0.5 -0.8,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.5 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.4 -0.9,0,0,0.3 -0.9,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.3 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.2 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0.1 -1,0,0,0 -1,0,0,0 -1,0,0,0 -1,0,0,0 --3,0,0,0 --3,0.9,-0.5,0.9 --3,1.8,-0.9,1.8 --3,2.7,-1.4,2.7 --3,3.6,-1.8,3.6 --3,4.5,-2.3,4.5 --3,5.4,-2.7,5.5 --3,6.3,-3.2,6.4 --3,7.2,-3.6,7.3 --3,8.1,-4.1,8.2 --3,9,-4.5,9.1 --3,9.9,-5,10 --3,10.8,-5.4,10.9 --3,11.7,-5.9,11.8 --3,12.6,-6.3,12.7 --3,13.5,-6.8,13.6 --3,14.4,-7.2,14.5 --3,15.3,-7.7,15.5 --3,16.2,-8.1,16.4 --3,17.1,-8.6,17.3 --3,18,-9,18.2 --3,18.9,-9.5,19.1 --3,19.8,-9.9,20 --3,20.8,-10.4,20.9 --3,21.7,-10.9,21.8 --3,22.6,-11.3,22.7 --3,23.5,-11.8,23.6 --3,24.4,-12.2,24.5 --3,25.3,-12.7,25.5 --3,26.2,-13.1,26.4 --3,27.1,-13.6,27.3 --3,28,-14,28.2 --3,28.9,-14.5,29.1 --3,29.8,-14.9,30 --3,30.7,-15.4,30.9 --3,31.6,-15.8,31.8 --3,32.5,-16.3,32.7 --3,33.4,-16.7,33.6 --3,34.3,-17.2,34.5 --3,35.2,-17.6,35.5 --3,36.1,-18.1,36.4 --3,37,-18.5,37.3 --3,37.9,-19,38.2 --3,38.8,-19.4,39.1 --3,39.7,-19.9,40 --3,40.6,-20.4,40.9 --3,41.5,-20.8,41.8 --3,42.4,-21.3,42.7 --3,43.3,-21.7,43.6 --3,44.2,-22.2,44.5 --3,45.1,-22.6,45.5 --3,46,-23.1,46.4 --3,46.9,-23.5,47.3 --3,47.8,-24,48.2 --3,48.7,-24.4,49.1 --3,49.6,-24.9,50 --3,50.5,-25.3,50.9 --3,51.4,-25.8,51.8 --3,52.3,-26.2,52.7 --3,53.2,-26.7,53.6 --3,54.1,-27.1,54.5 --3,55,-27.6,55.5 --3,55.9,-28,56.4 --3,56.8,-28.5,57.3 --3,57.7,-28.9,58.2 --3,58.6,-29.4,59.1 --3,59.5,-29.8,60 --3,60.5,-30.3,60.9 --3,61.4,-30.8,61.8 --3,62.3,-31.2,62.7 --3,63.2,-31.7,63.6 --3,64.1,-32.1,64.5 --3,65,-32.6,65.5 --3,65.9,-33,66.4 --3,66.8,-33.5,67.3 --3,67.7,-33.9,68.2 --3,68.6,-34.4,69.1 --3,69.5,-34.8,70 --3,70.4,-35.3,70.9 --3,71.3,-35.7,71.8 --3,72.2,-36.2,72.7 --3,73.1,-36.6,73.6 --3,74,-37.1,74.5 --3,74.9,-37.5,75.5 --3,75.8,-38,76.4 --3,76.7,-38.4,77.3 --3,77.6,-38.9,78.2 --3,78.5,-39.3,79.1 --3,79.4,-39.8,80 --3,80.3,-40.3,80.9 --3,81.2,-40.7,81.8 --3,82.1,-41.2,82.7 --3,83,-41.6,83.6 --3,83.9,-42.1,84.5 --3,84.8,-42.5,85.5 --3,85.7,-43,86.4 --3,86.6,-43.4,87.3 --3,87.5,-43.9,88.2 --3,88.4,-44.3,89.1 --3,89.3,-44.8,90 --3,90.2,-45.2,0 --3,91.1,-45.7,0 --3,92,-46.1,0 --3,92.9,-46.6,0 --3,93.8,-47,0 --3,94.7,-47.5,0 --3,95.6,-47.9,0 --3,96.5,-48.4,0 --3,97.4,-48.8,0 --3,98.3,-49.3,0 --3,99.2,-49.7,0 --3,100.2,-50.2,0 --3,101.1,-50.7,0 --3,102,-51.1,0 --3,102.9,-51.6,0 --3,103.8,-52,0 --3,104.7,-52.5,0 --3,105.6,-52.9,0 --3,106.5,-53.4,0 --3,107.4,-53.8,0 --3,108.3,-54.3,0 --3,109.2,-54.7,0 --3,110.1,-55.2,0 --3,111,-55.6,0 --3,111.9,-56.1,0 --3,112.8,-56.5,0 --3,113.7,-57,0 --3,114.6,-57.4,0 --3,115.5,-57.9,0 --3,116.4,-58.3,0 --3,117.3,-58.8,0 --3,118.2,-59.2,0 --3,119.1,-59.7,0 --3,120,-60.2,0 --3,120.9,-60.6,0 --3,121.8,-61.1,0 --3,122.7,-61.5,0 --3,123.6,-62,0 --3,124.5,-62.4,0 --3,125.4,-62.9,0 --3,126.3,-63.3,0 --3,127.2,-63.8,0 --3,128.1,-64.2,0 --3,129,-64.7,0 --3,129.9,-65.1,0 --3,130.8,-65.6,0 --3,131.7,-66,0 --3,132.6,-66.5,0 --3,133.5,-66.9,0 --3,134.4,-67.4,0 --3,135.3,-67.8,0 --3,136.2,-68.3,0 --3,137.1,-68.7,0 --3,138,-69.2,0 --3,138.9,-69.6,0 --3,139.8,-70.1,0 --3,140.8,-70.6,0 --3,141.7,-71,0 --3,142.6,-71.5,0 --3,143.5,-71.9,0 --3,144.4,-72.4,0 --3,145.3,-72.8,0 --3,146.2,-73.3,0 --3,147.1,-73.7,0 --3,148,-74.2,0 --3,148.9,-74.6,0 --3,149.8,-75.1,0 --3,150.7,-75.5,0 --3,151.6,-76,0 --3,152.5,-76.4,0 --3,153.4,-76.9,0 --3,154.3,-77.3,0 --3,155.2,-77.8,0 --3,156.1,-78.2,0 --3,157,-78.7,0 --3,157.9,-79.1,0 --3,158.8,-79.6,0 --3,159.7,-80.1,0 --3,160.6,-80.5,0 --3,161.5,-81,0 --3,162.4,-81.4,0 --3,163.3,-81.9,0 --3,164.2,-82.3,0 --3,165.1,-82.8,0 --3,166,-83.2,0 --3,166.9,-83.7,0 --3,167.8,-84.1,0 --3,168.7,-84.6,0 --3,169.6,-85,0 --3,170.5,-85.5,0 --3,171.4,-85.9,0 --3,172.3,-86.4,0 --3,173.2,-86.8,0 --3,174.1,-87.3,0 --3,175,-87.7,0 --3,175.9,-88.2,0 --3,176.8,-88.6,0 --3,177.7,-89.1,0 --3,178.6,-89.5,0 --3,179.5,-90,0 --3,180.5,0,0 --3,181.4,0,0 --3,182.3,0,0 --3,183.2,0,0 --3,184.1,0,0 --3,185,0,0 --3,185.9,0,0 --3,186.8,0,0 --3,187.7,0,0 --3,188.6,0,0 --3,189.5,0,0 --3,190.4,0,0 --3,191.3,0,0 --3,192.2,0,0 --3,193.1,0,0 --3,194,0,0 --3,194.9,0,0 --3,195.8,0,0 --3,196.7,0,0 --3,197.6,0,0 --3,198.5,0,0 --3,199.4,0,0 --3,200.3,0,0 --3,201.2,0,0 --3,202.1,0,0 --3,203,0,0 --3,203.9,0,0 --3,204.8,0,0 --3,205.7,0,0 --3,206.6,0,0 --3,207.5,0,0 --3,208.4,0,0 --3,209.3,0,0 --3,210.2,0,0 --3,211.1,0,0 --3,212,0,0 --3,212.9,0,0 --3,213.8,0,0 --3,214.7,0,0 --3,215.6,0,0 --3,216.5,0,0 --3,217.4,0,0 --3,218.3,0,0 --3,219.2,0,0 --3,220.2,0,0 --3,221.1,0,0 --3,222,0,0 --3,222.9,0,0 --3,223.8,0,0 --3,224.7,0,0 --3,225.6,0,0 --3,226.5,0,0 --3,227.4,0,0 --3,228.3,0,0 --3,229.2,0,0 --3,230.1,0,0 --3,231,0,0 --3,231.9,0,0 --3,232.8,0,0 --3,233.7,0,0 --3,234.6,0,0 --3,235.5,0,0 --3,236.4,0,0 --3,237.3,0,0 --3,238.2,0,0 --3,239.1,0,0 --3,240,0,0 --3,240.9,0,0 --3,241.8,0,0 --3,242.7,0,0 --3,243.6,0,0 --3,244.5,0,0 --3,245.4,0,0 --3,246.3,0,0 --3,247.2,0,0 --3,248.1,0,0 --3,249,0,0 --3,249.9,0,0 --3,250.8,0,0 --3,251.7,0,0 --3,252.6,0,0 --3,253.5,0,0 --3,254.4,0,0 --3,255.3,0,0 --3,256.2,0,0 --3,257.1,0,0 --3,258,0,0 --3,258.9,0,0 --3,259.8,0,0 --3,260.8,0,0 --3,261.7,0,0 --3,262.6,0,0 --3,263.5,0,0 --3,264.4,0,0 --3,265.3,0,0 --3,266.2,0,0 --3,267.1,0,0 --3,268,0,0 --3,268.9,0,0 --3,269.8,0,0 --3,270.7,0,0 --3,271.6,0,0 --3,272.5,0,0 --3,273.4,0,0 --3,274.3,0,0 --3,275.2,0,0 --3,276.1,0,0 --3,277,0,0 --3,277.9,0,0 --3,278.8,0,0 --3,279.7,0,0 --3,280.6,0,0 --3,281.5,0,0 --3,282.4,0,0 --3,283.3,0,0 --3,284.2,0,0 --3,285.1,0,0 --3,286,0,0 --3,286.9,0,0 --3,287.8,0,0 --3,288.7,0,0 --3,289.6,0,0 --3,290.5,0,0 --3,291.4,0,0 --3,292.3,0,0 --3,293.2,0,0 --3,294.1,0,0 --3,295,0,0 --3,295.9,0,0 --3,296.8,0,0 --3,297.7,0,0 --3,298.6,0,0 --3,299.5,0,0 --3,300.5,0,0 --3,301.4,0,0 --3,302.3,0,0 --3,303.2,0,0 --3,304.1,0,0 --3,305,0,0 --3,305.9,0,0 --3,306.8,0,0 --3,307.7,0,0 --3,308.6,0,0 --3,309.5,0,0 --3,310.4,0,0 --3,311.3,0,0 --3,312.2,0,0 --3,313.1,0,0 --3,314,0,0 --3,314.9,0,0 --3,315.8,0,0 --3,316.7,0,0 --3,317.6,0,0 --3,318.5,0,0 --3,319.4,0,0 --3,320.3,0,0 --3,321.2,0,0 --3,322.1,0,0 --3,323,0,0 --3,323.9,0,0 --3,324.8,0,0 --3,325.7,0,0 --3,326.6,0,0 --3,327.5,0,0 --3,328.4,0,0 --3,329.3,0,0 --3,330.2,0,0 --3,331.1,0,0 --3,332,0,0 --3,332.9,0,0 --3,333.8,0,0 --3,334.7,0,0 --3,335.6,0,0 --3,336.5,0,0 --3,337.4,0,0 --3,338.3,0,0 --3,339.2,0,0 --3,340.2,0,0 --3,341.1,0,0 --3,342,0,0 --3,342.9,0,0 --3,343.8,0,0 --3,344.7,0,0 --3,345.6,0,0 --3,346.5,0,0 --3,347.4,0,0 --3,348.3,0,0 --3,349.2,0,0 --3,350.1,0,0 --3,351,0,0 --3,351.9,0,0 --3,352.8,0,0 --3,353.7,0,0 --3,354.6,0,0 --3,355.5,0,0 --3,356.4,0,0 --3,357.3,0,0 --3,358.2,0,0 --3,359.1,0,0 --3,360,0,0 diff --git a/scripts/trajectories/rotate_yaw_pitch_roll1.csv b/scripts/trajectories/rotate_yaw_pitch_roll1.csv deleted file mode 100644 index 9c572e3cfbcc8ab658fad7ecd741e450edb3f1e5..0000000000000000000000000000000000000000 --- a/scripts/trajectories/rotate_yaw_pitch_roll1.csv +++ /dev/null @@ -1,2401 +0,0 @@ --3.0,-360.000000,0.000000,0.000000 --3.0,-359.100000,0.000000,0.000000 --3.0,-358.200000,0.000000,0.000000 --3.0,-357.300000,0.000000,0.000000 --3.0,-356.400000,0.000000,0.000000 --3.0,-355.500000,0.000000,0.000000 --3.0,-354.600000,0.000000,0.000000 --3.0,-353.700000,0.000000,0.000000 --3.0,-352.800000,0.000000,0.000000 --3.0,-351.900000,0.000000,0.000000 --3.0,-351.000000,0.000000,0.000000 --3.0,-350.100000,0.000000,0.000000 --3.0,-349.200000,0.000000,0.000000 --3.0,-348.300000,0.000000,0.000000 --3.0,-347.400000,0.000000,0.000000 --3.0,-346.500000,0.000000,0.000000 --3.0,-345.600000,0.000000,0.000000 --3.0,-344.700000,0.000000,0.000000 --3.0,-343.800000,0.000000,0.000000 --3.0,-342.900000,0.000000,0.000000 --3.0,-342.000000,0.000000,0.000000 --3.0,-341.100000,0.000000,0.000000 --3.0,-340.200000,0.000000,0.000000 --3.0,-339.300000,0.000000,0.000000 --3.0,-338.400000,0.000000,0.000000 --3.0,-337.500000,0.000000,0.000000 --3.0,-336.600000,0.000000,0.000000 --3.0,-335.700000,0.000000,0.000000 --3.0,-334.800000,0.000000,0.000000 --3.0,-333.900000,0.000000,0.000000 --3.0,-333.000000,0.000000,0.000000 --3.0,-332.100000,0.000000,0.000000 --3.0,-331.200000,0.000000,0.000000 --3.0,-330.300000,0.000000,0.000000 --3.0,-329.400000,0.000000,0.000000 --3.0,-328.500000,0.000000,0.000000 --3.0,-327.600000,0.000000,0.000000 --3.0,-326.700000,0.000000,0.000000 --3.0,-325.800000,0.000000,0.000000 --3.0,-324.900000,0.000000,0.000000 --3.0,-324.000000,0.000000,0.000000 --3.0,-323.100000,0.000000,0.000000 --3.0,-322.200000,0.000000,0.000000 --3.0,-321.300000,0.000000,0.000000 --3.0,-320.400000,0.000000,0.000000 --3.0,-319.500000,0.000000,0.000000 --3.0,-318.600000,0.000000,0.000000 --3.0,-317.700000,0.000000,0.000000 --3.0,-316.800000,0.000000,0.000000 --3.0,-315.900000,0.000000,0.000000 --3.0,-315.000000,0.000000,0.000000 --3.0,-314.100000,0.000000,0.000000 --3.0,-313.200000,0.000000,0.000000 --3.0,-312.300000,0.000000,0.000000 --3.0,-311.400000,0.000000,0.000000 --3.0,-310.500000,0.000000,0.000000 --3.0,-309.600000,0.000000,0.000000 --3.0,-308.700000,0.000000,0.000000 --3.0,-307.800000,0.000000,0.000000 --3.0,-306.900000,0.000000,0.000000 --3.0,-306.000000,0.000000,0.000000 --3.0,-305.100000,0.000000,0.000000 --3.0,-304.200000,0.000000,0.000000 --3.0,-303.300000,0.000000,0.000000 --3.0,-302.400000,0.000000,0.000000 --3.0,-301.500000,0.000000,0.000000 --3.0,-300.600000,0.000000,0.000000 --3.0,-299.700000,0.000000,0.000000 --3.0,-298.800000,0.000000,0.000000 --3.0,-297.900000,0.000000,0.000000 --3.0,-297.000000,0.000000,0.000000 --3.0,-296.100000,0.000000,0.000000 --3.0,-295.200000,0.000000,0.000000 --3.0,-294.300000,0.000000,0.000000 --3.0,-293.400000,0.000000,0.000000 --3.0,-292.500000,0.000000,0.000000 --3.0,-291.600000,0.000000,0.000000 --3.0,-290.700000,0.000000,0.000000 --3.0,-289.800000,0.000000,0.000000 --3.0,-288.900000,0.000000,0.000000 --3.0,-288.000000,0.000000,0.000000 --3.0,-287.100000,0.000000,0.000000 --3.0,-286.200000,0.000000,0.000000 --3.0,-285.300000,0.000000,0.000000 --3.0,-284.400000,0.000000,0.000000 --3.0,-283.500000,0.000000,0.000000 --3.0,-282.600000,0.000000,0.000000 --3.0,-281.700000,0.000000,0.000000 --3.0,-280.800000,0.000000,0.000000 --3.0,-279.900000,0.000000,0.000000 --3.0,-279.000000,0.000000,0.000000 --3.0,-278.100000,0.000000,0.000000 --3.0,-277.200000,0.000000,0.000000 --3.0,-276.300000,0.000000,0.000000 --3.0,-275.400000,0.000000,0.000000 --3.0,-274.500000,0.000000,0.000000 --3.0,-273.600000,0.000000,0.000000 --3.0,-272.700000,0.000000,0.000000 --3.0,-271.800000,0.000000,0.000000 --3.0,-270.900000,0.000000,0.000000 --3.0,-270.000000,0.000000,0.000000 --3.0,-269.100000,0.000000,0.000000 --3.0,-268.200000,0.000000,0.000000 --3.0,-267.300000,0.000000,0.000000 --3.0,-266.400000,0.000000,0.000000 --3.0,-265.500000,0.000000,0.000000 --3.0,-264.600000,0.000000,0.000000 --3.0,-263.700000,0.000000,0.000000 --3.0,-262.800000,0.000000,0.000000 --3.0,-261.900000,0.000000,0.000000 --3.0,-261.000000,0.000000,0.000000 --3.0,-260.100000,0.000000,0.000000 --3.0,-259.200000,0.000000,0.000000 --3.0,-258.300000,0.000000,0.000000 --3.0,-257.400000,0.000000,0.000000 --3.0,-256.500000,0.000000,0.000000 --3.0,-255.600000,0.000000,0.000000 --3.0,-254.700000,0.000000,0.000000 --3.0,-253.800000,0.000000,0.000000 --3.0,-252.900000,0.000000,0.000000 --3.0,-252.000000,0.000000,0.000000 --3.0,-251.100000,0.000000,0.000000 --3.0,-250.200000,0.000000,0.000000 --3.0,-249.300000,0.000000,0.000000 --3.0,-248.400000,0.000000,0.000000 --3.0,-247.500000,0.000000,0.000000 --3.0,-246.600000,0.000000,0.000000 --3.0,-245.700000,0.000000,0.000000 --3.0,-244.800000,0.000000,0.000000 --3.0,-243.900000,0.000000,0.000000 --3.0,-243.000000,0.000000,0.000000 --3.0,-242.100000,0.000000,0.000000 --3.0,-241.200000,0.000000,0.000000 --3.0,-240.300000,0.000000,0.000000 --3.0,-239.400000,0.000000,0.000000 --3.0,-238.500000,0.000000,0.000000 --3.0,-237.600000,0.000000,0.000000 --3.0,-236.700000,0.000000,0.000000 --3.0,-235.800000,0.000000,0.000000 --3.0,-234.900000,0.000000,0.000000 --3.0,-234.000000,0.000000,0.000000 --3.0,-233.100000,0.000000,0.000000 --3.0,-232.200000,0.000000,0.000000 --3.0,-231.300000,0.000000,0.000000 --3.0,-230.400000,0.000000,0.000000 --3.0,-229.500000,0.000000,0.000000 --3.0,-228.600000,0.000000,0.000000 --3.0,-227.700000,0.000000,0.000000 --3.0,-226.800000,0.000000,0.000000 --3.0,-225.900000,0.000000,0.000000 --3.0,-225.000000,0.000000,0.000000 --3.0,-224.100000,0.000000,0.000000 --3.0,-223.200000,0.000000,0.000000 --3.0,-222.300000,0.000000,0.000000 --3.0,-221.400000,0.000000,0.000000 --3.0,-220.500000,0.000000,0.000000 --3.0,-219.600000,0.000000,0.000000 --3.0,-218.700000,0.000000,0.000000 --3.0,-217.800000,0.000000,0.000000 --3.0,-216.900000,0.000000,0.000000 --3.0,-216.000000,0.000000,0.000000 --3.0,-215.100000,0.000000,0.000000 --3.0,-214.200000,0.000000,0.000000 --3.0,-213.300000,0.000000,0.000000 --3.0,-212.400000,0.000000,0.000000 --3.0,-211.500000,0.000000,0.000000 --3.0,-210.600000,0.000000,0.000000 --3.0,-209.700000,0.000000,0.000000 --3.0,-208.800000,0.000000,0.000000 --3.0,-207.900000,0.000000,0.000000 --3.0,-207.000000,0.000000,0.000000 --3.0,-206.100000,0.000000,0.000000 --3.0,-205.200000,0.000000,0.000000 --3.0,-204.300000,0.000000,0.000000 --3.0,-203.400000,0.000000,0.000000 --3.0,-202.500000,0.000000,0.000000 --3.0,-201.600000,0.000000,0.000000 --3.0,-200.700000,0.000000,0.000000 --3.0,-199.800000,0.000000,0.000000 --3.0,-198.900000,0.000000,0.000000 --3.0,-198.000000,0.000000,0.000000 --3.0,-197.100000,0.000000,0.000000 --3.0,-196.200000,0.000000,0.000000 --3.0,-195.300000,0.000000,0.000000 --3.0,-194.400000,0.000000,0.000000 --3.0,-193.500000,0.000000,0.000000 --3.0,-192.600000,0.000000,0.000000 --3.0,-191.700000,0.000000,0.000000 --3.0,-190.800000,0.000000,0.000000 --3.0,-189.900000,0.000000,0.000000 --3.0,-189.000000,0.000000,0.000000 --3.0,-188.100000,0.000000,0.000000 --3.0,-187.200000,0.000000,0.000000 --3.0,-186.300000,0.000000,0.000000 --3.0,-185.400000,0.000000,0.000000 --3.0,-184.500000,0.000000,0.000000 --3.0,-183.600000,0.000000,0.000000 --3.0,-182.700000,0.000000,0.000000 --3.0,-181.800000,0.000000,0.000000 --3.0,-180.900000,0.000000,0.000000 --3.0,-180.000000,0.000000,0.000000 --3.0,-179.100000,0.000000,0.000000 --3.0,-178.200000,0.000000,0.000000 --3.0,-177.300000,0.000000,0.000000 --3.0,-176.400000,0.000000,0.000000 --3.0,-175.500000,0.000000,0.000000 --3.0,-174.600000,0.000000,0.000000 --3.0,-173.700000,0.000000,0.000000 --3.0,-172.800000,0.000000,0.000000 --3.0,-171.900000,0.000000,0.000000 --3.0,-171.000000,0.000000,0.000000 --3.0,-170.100000,0.000000,0.000000 --3.0,-169.200000,0.000000,0.000000 --3.0,-168.300000,0.000000,0.000000 --3.0,-167.400000,0.000000,0.000000 --3.0,-166.500000,0.000000,0.000000 --3.0,-165.600000,0.000000,0.000000 --3.0,-164.700000,0.000000,0.000000 --3.0,-163.800000,0.000000,0.000000 --3.0,-162.900000,0.000000,0.000000 --3.0,-162.000000,0.000000,0.000000 --3.0,-161.100000,0.000000,0.000000 --3.0,-160.200000,0.000000,0.000000 --3.0,-159.300000,0.000000,0.000000 --3.0,-158.400000,0.000000,0.000000 --3.0,-157.500000,0.000000,0.000000 --3.0,-156.600000,0.000000,0.000000 --3.0,-155.700000,0.000000,0.000000 --3.0,-154.800000,0.000000,0.000000 --3.0,-153.900000,0.000000,0.000000 --3.0,-153.000000,0.000000,0.000000 --3.0,-152.100000,0.000000,0.000000 --3.0,-151.200000,0.000000,0.000000 --3.0,-150.300000,0.000000,0.000000 --3.0,-149.400000,0.000000,0.000000 --3.0,-148.500000,0.000000,0.000000 --3.0,-147.600000,0.000000,0.000000 --3.0,-146.700000,0.000000,0.000000 --3.0,-145.800000,0.000000,0.000000 --3.0,-144.900000,0.000000,0.000000 --3.0,-144.000000,0.000000,0.000000 --3.0,-143.100000,0.000000,0.000000 --3.0,-142.200000,0.000000,0.000000 --3.0,-141.300000,0.000000,0.000000 --3.0,-140.400000,0.000000,0.000000 --3.0,-139.500000,0.000000,0.000000 --3.0,-138.600000,0.000000,0.000000 --3.0,-137.700000,0.000000,0.000000 --3.0,-136.800000,0.000000,0.000000 --3.0,-135.900000,0.000000,0.000000 --3.0,-135.000000,0.000000,0.000000 --3.0,-134.100000,0.000000,0.000000 --3.0,-133.200000,0.000000,0.000000 --3.0,-132.300000,0.000000,0.000000 --3.0,-131.400000,0.000000,0.000000 --3.0,-130.500000,0.000000,0.000000 --3.0,-129.600000,0.000000,0.000000 --3.0,-128.700000,0.000000,0.000000 --3.0,-127.800000,0.000000,0.000000 --3.0,-126.900000,0.000000,0.000000 --3.0,-126.000000,0.000000,0.000000 --3.0,-125.100000,0.000000,0.000000 --3.0,-124.200000,0.000000,0.000000 --3.0,-123.300000,0.000000,0.000000 --3.0,-122.400000,0.000000,0.000000 --3.0,-121.500000,0.000000,0.000000 --3.0,-120.600000,0.000000,0.000000 --3.0,-119.700000,0.000000,0.000000 --3.0,-118.800000,0.000000,0.000000 --3.0,-117.900000,0.000000,0.000000 --3.0,-117.000000,0.000000,0.000000 --3.0,-116.100000,0.000000,0.000000 --3.0,-115.200000,0.000000,0.000000 --3.0,-114.300000,0.000000,0.000000 --3.0,-113.400000,0.000000,0.000000 --3.0,-112.500000,0.000000,0.000000 --3.0,-111.600000,0.000000,0.000000 --3.0,-110.700000,0.000000,0.000000 --3.0,-109.800000,0.000000,0.000000 --3.0,-108.900000,0.000000,0.000000 --3.0,-108.000000,0.000000,0.000000 --3.0,-107.100000,0.000000,0.000000 --3.0,-106.200000,0.000000,0.000000 --3.0,-105.300000,0.000000,0.000000 --3.0,-104.400000,0.000000,0.000000 --3.0,-103.500000,0.000000,0.000000 --3.0,-102.600000,0.000000,0.000000 --3.0,-101.700000,0.000000,0.000000 --3.0,-100.800000,0.000000,0.000000 --3.0,-99.900000,0.000000,0.000000 --3.0,-99.000000,0.000000,0.000000 --3.0,-98.100000,0.000000,0.000000 --3.0,-97.200000,0.000000,0.000000 --3.0,-96.300000,0.000000,0.000000 --3.0,-95.400000,0.000000,0.000000 --3.0,-94.500000,0.000000,0.000000 --3.0,-93.600000,0.000000,0.000000 --3.0,-92.700000,0.000000,0.000000 --3.0,-91.800000,0.000000,0.000000 --3.0,-90.900000,0.000000,0.000000 --3.0,-90.000000,0.000000,0.000000 --3.0,-89.100000,0.000000,0.000000 --3.0,-88.200000,0.000000,0.000000 --3.0,-87.300000,0.000000,0.000000 --3.0,-86.400000,0.000000,0.000000 --3.0,-85.500000,0.000000,0.000000 --3.0,-84.600000,0.000000,0.000000 --3.0,-83.700000,0.000000,0.000000 --3.0,-82.800000,0.000000,0.000000 --3.0,-81.900000,0.000000,0.000000 --3.0,-81.000000,0.000000,0.000000 --3.0,-80.100000,0.000000,0.000000 --3.0,-79.200000,0.000000,0.000000 --3.0,-78.300000,0.000000,0.000000 --3.0,-77.400000,0.000000,0.000000 --3.0,-76.500000,0.000000,0.000000 --3.0,-75.600000,0.000000,0.000000 --3.0,-74.700000,0.000000,0.000000 --3.0,-73.800000,0.000000,0.000000 --3.0,-72.900000,0.000000,0.000000 --3.0,-72.000000,0.000000,0.000000 --3.0,-71.100000,0.000000,0.000000 --3.0,-70.200000,0.000000,0.000000 --3.0,-69.300000,0.000000,0.000000 --3.0,-68.400000,0.000000,0.000000 --3.0,-67.500000,0.000000,0.000000 --3.0,-66.600000,0.000000,0.000000 --3.0,-65.700000,0.000000,0.000000 --3.0,-64.800000,0.000000,0.000000 --3.0,-63.900000,0.000000,0.000000 --3.0,-63.000000,0.000000,0.000000 --3.0,-62.100000,0.000000,0.000000 --3.0,-61.200000,0.000000,0.000000 --3.0,-60.300000,0.000000,0.000000 --3.0,-59.400000,0.000000,0.000000 --3.0,-58.500000,0.000000,0.000000 --3.0,-57.600000,0.000000,0.000000 --3.0,-56.700000,0.000000,0.000000 --3.0,-55.800000,0.000000,0.000000 --3.0,-54.900000,0.000000,0.000000 --3.0,-54.000000,0.000000,0.000000 --3.0,-53.100000,0.000000,0.000000 --3.0,-52.200000,0.000000,0.000000 --3.0,-51.300000,0.000000,0.000000 --3.0,-50.400000,0.000000,0.000000 --3.0,-49.500000,0.000000,0.000000 --3.0,-48.600000,0.000000,0.000000 --3.0,-47.700000,0.000000,0.000000 --3.0,-46.800000,0.000000,0.000000 --3.0,-45.900000,0.000000,0.000000 --3.0,-45.000000,0.000000,0.000000 --3.0,-44.100000,0.000000,0.000000 --3.0,-43.200000,0.000000,0.000000 --3.0,-42.300000,0.000000,0.000000 --3.0,-41.400000,0.000000,0.000000 --3.0,-40.500000,0.000000,0.000000 --3.0,-39.600000,0.000000,0.000000 --3.0,-38.700000,0.000000,0.000000 --3.0,-37.800000,0.000000,0.000000 --3.0,-36.900000,0.000000,0.000000 --3.0,-36.000000,0.000000,0.000000 --3.0,-35.100000,0.000000,0.000000 --3.0,-34.200000,0.000000,0.000000 --3.0,-33.300000,0.000000,0.000000 --3.0,-32.400000,0.000000,0.000000 --3.0,-31.500000,0.000000,0.000000 --3.0,-30.600000,0.000000,0.000000 --3.0,-29.700000,0.000000,0.000000 --3.0,-28.800000,0.000000,0.000000 --3.0,-27.900000,0.000000,0.000000 --3.0,-27.000000,0.000000,0.000000 --3.0,-26.100000,0.000000,0.000000 --3.0,-25.200000,0.000000,0.000000 --3.0,-24.300000,0.000000,0.000000 --3.0,-23.400000,0.000000,0.000000 --3.0,-22.500000,0.000000,0.000000 --3.0,-21.600000,0.000000,0.000000 --3.0,-20.700000,0.000000,0.000000 --3.0,-19.800000,0.000000,0.000000 --3.0,-18.900000,0.000000,0.000000 --3.0,-18.000000,0.000000,0.000000 --3.0,-17.100000,0.000000,0.000000 --3.0,-16.200000,0.000000,0.000000 --3.0,-15.300000,0.000000,0.000000 --3.0,-14.400000,0.000000,0.000000 --3.0,-13.500000,0.000000,0.000000 --3.0,-12.600000,0.000000,0.000000 --3.0,-11.700000,0.000000,0.000000 --3.0,-10.800000,0.000000,0.000000 --3.0,-9.900000,0.000000,0.000000 --3.0,-9.000000,0.000000,0.000000 --3.0,-8.100000,0.000000,0.000000 --3.0,-7.200000,0.000000,0.000000 --3.0,-6.300000,0.000000,0.000000 --3.0,-5.400000,0.000000,0.000000 --3.0,-4.500000,0.000000,0.000000 --3.0,-3.600000,0.000000,0.000000 --3.0,-2.700000,0.000000,0.000000 --3.0,-1.800000,0.000000,0.000000 --3.0,-0.900000,0.000000,0.000000 --3.0,0.000000,0.000000,0.000000 --3.0,0.900000,0.000000,0.000000 --3.0,1.800000,0.000000,0.000000 --3.0,2.700000,0.000000,0.000000 --3.0,3.600000,0.000000,0.000000 --3.0,4.500000,0.000000,0.000000 --3.0,5.400000,0.000000,0.000000 --3.0,6.300000,0.000000,0.000000 --3.0,7.200000,0.000000,0.000000 --3.0,8.100000,0.000000,0.000000 --3.0,9.000000,0.000000,0.000000 --3.0,9.900000,0.000000,0.000000 --3.0,10.800000,0.000000,0.000000 --3.0,11.700000,0.000000,0.000000 --3.0,12.600000,0.000000,0.000000 --3.0,13.500000,0.000000,0.000000 --3.0,14.400000,0.000000,0.000000 --3.0,15.300000,0.000000,0.000000 --3.0,16.200000,0.000000,0.000000 --3.0,17.100000,0.000000,0.000000 --3.0,18.000000,0.000000,0.000000 --3.0,18.900000,0.000000,0.000000 --3.0,19.800000,0.000000,0.000000 --3.0,20.700000,0.000000,0.000000 --3.0,21.600000,0.000000,0.000000 --3.0,22.500000,0.000000,0.000000 --3.0,23.400000,0.000000,0.000000 --3.0,24.300000,0.000000,0.000000 --3.0,25.200000,0.000000,0.000000 --3.0,26.100000,0.000000,0.000000 --3.0,27.000000,0.000000,0.000000 --3.0,27.900000,0.000000,0.000000 --3.0,28.800000,0.000000,0.000000 --3.0,29.700000,0.000000,0.000000 --3.0,30.600000,0.000000,0.000000 --3.0,31.500000,0.000000,0.000000 --3.0,32.400000,0.000000,0.000000 --3.0,33.300000,0.000000,0.000000 --3.0,34.200000,0.000000,0.000000 --3.0,35.100000,0.000000,0.000000 --3.0,36.000000,0.000000,0.000000 --3.0,36.900000,0.000000,0.000000 --3.0,37.800000,0.000000,0.000000 --3.0,38.700000,0.000000,0.000000 --3.0,39.600000,0.000000,0.000000 --3.0,40.500000,0.000000,0.000000 --3.0,41.400000,0.000000,0.000000 --3.0,42.300000,0.000000,0.000000 --3.0,43.200000,0.000000,0.000000 --3.0,44.100000,0.000000,0.000000 --3.0,45.000000,0.000000,0.000000 --3.0,45.900000,0.000000,0.000000 --3.0,46.800000,0.000000,0.000000 --3.0,47.700000,0.000000,0.000000 --3.0,48.600000,0.000000,0.000000 --3.0,49.500000,0.000000,0.000000 --3.0,50.400000,0.000000,0.000000 --3.0,51.300000,0.000000,0.000000 --3.0,52.200000,0.000000,0.000000 --3.0,53.100000,0.000000,0.000000 --3.0,54.000000,0.000000,0.000000 --3.0,54.900000,0.000000,0.000000 --3.0,55.800000,0.000000,0.000000 --3.0,56.700000,0.000000,0.000000 --3.0,57.600000,0.000000,0.000000 --3.0,58.500000,0.000000,0.000000 --3.0,59.400000,0.000000,0.000000 --3.0,60.300000,0.000000,0.000000 --3.0,61.200000,0.000000,0.000000 --3.0,62.100000,0.000000,0.000000 --3.0,63.000000,0.000000,0.000000 --3.0,63.900000,0.000000,0.000000 --3.0,64.800000,0.000000,0.000000 --3.0,65.700000,0.000000,0.000000 --3.0,66.600000,0.000000,0.000000 --3.0,67.500000,0.000000,0.000000 --3.0,68.400000,0.000000,0.000000 --3.0,69.300000,0.000000,0.000000 --3.0,70.200000,0.000000,0.000000 --3.0,71.100000,0.000000,0.000000 --3.0,72.000000,0.000000,0.000000 --3.0,72.900000,0.000000,0.000000 --3.0,73.800000,0.000000,0.000000 --3.0,74.700000,0.000000,0.000000 --3.0,75.600000,0.000000,0.000000 --3.0,76.500000,0.000000,0.000000 --3.0,77.400000,0.000000,0.000000 --3.0,78.300000,0.000000,0.000000 --3.0,79.200000,0.000000,0.000000 --3.0,80.100000,0.000000,0.000000 --3.0,81.000000,0.000000,0.000000 --3.0,81.900000,0.000000,0.000000 --3.0,82.800000,0.000000,0.000000 --3.0,83.700000,0.000000,0.000000 --3.0,84.600000,0.000000,0.000000 --3.0,85.500000,0.000000,0.000000 --3.0,86.400000,0.000000,0.000000 --3.0,87.300000,0.000000,0.000000 --3.0,88.200000,0.000000,0.000000 --3.0,89.100000,0.000000,0.000000 --3.0,90.000000,0.000000,0.000000 --3.0,90.900000,0.000000,0.000000 --3.0,91.800000,0.000000,0.000000 --3.0,92.700000,0.000000,0.000000 --3.0,93.600000,0.000000,0.000000 --3.0,94.500000,0.000000,0.000000 --3.0,95.400000,0.000000,0.000000 --3.0,96.300000,0.000000,0.000000 --3.0,97.200000,0.000000,0.000000 --3.0,98.100000,0.000000,0.000000 --3.0,99.000000,0.000000,0.000000 --3.0,99.900000,0.000000,0.000000 --3.0,100.800000,0.000000,0.000000 --3.0,101.700000,0.000000,0.000000 --3.0,102.600000,0.000000,0.000000 --3.0,103.500000,0.000000,0.000000 --3.0,104.400000,0.000000,0.000000 --3.0,105.300000,0.000000,0.000000 --3.0,106.200000,0.000000,0.000000 --3.0,107.100000,0.000000,0.000000 --3.0,108.000000,0.000000,0.000000 --3.0,108.900000,0.000000,0.000000 --3.0,109.800000,0.000000,0.000000 --3.0,110.700000,0.000000,0.000000 --3.0,111.600000,0.000000,0.000000 --3.0,112.500000,0.000000,0.000000 --3.0,113.400000,0.000000,0.000000 --3.0,114.300000,0.000000,0.000000 --3.0,115.200000,0.000000,0.000000 --3.0,116.100000,0.000000,0.000000 --3.0,117.000000,0.000000,0.000000 --3.0,117.900000,0.000000,0.000000 --3.0,118.800000,0.000000,0.000000 --3.0,119.700000,0.000000,0.000000 --3.0,120.600000,0.000000,0.000000 --3.0,121.500000,0.000000,0.000000 --3.0,122.400000,0.000000,0.000000 --3.0,123.300000,0.000000,0.000000 --3.0,124.200000,0.000000,0.000000 --3.0,125.100000,0.000000,0.000000 --3.0,126.000000,0.000000,0.000000 --3.0,126.900000,0.000000,0.000000 --3.0,127.800000,0.000000,0.000000 --3.0,128.700000,0.000000,0.000000 --3.0,129.600000,0.000000,0.000000 --3.0,130.500000,0.000000,0.000000 --3.0,131.400000,0.000000,0.000000 --3.0,132.300000,0.000000,0.000000 --3.0,133.200000,0.000000,0.000000 --3.0,134.100000,0.000000,0.000000 --3.0,135.000000,0.000000,0.000000 --3.0,135.900000,0.000000,0.000000 --3.0,136.800000,0.000000,0.000000 --3.0,137.700000,0.000000,0.000000 --3.0,138.600000,0.000000,0.000000 --3.0,139.500000,0.000000,0.000000 --3.0,140.400000,0.000000,0.000000 --3.0,141.300000,0.000000,0.000000 --3.0,142.200000,0.000000,0.000000 --3.0,143.100000,0.000000,0.000000 --3.0,144.000000,0.000000,0.000000 --3.0,144.900000,0.000000,0.000000 --3.0,145.800000,0.000000,0.000000 --3.0,146.700000,0.000000,0.000000 --3.0,147.600000,0.000000,0.000000 --3.0,148.500000,0.000000,0.000000 --3.0,149.400000,0.000000,0.000000 --3.0,150.300000,0.000000,0.000000 --3.0,151.200000,0.000000,0.000000 --3.0,152.100000,0.000000,0.000000 --3.0,153.000000,0.000000,0.000000 --3.0,153.900000,0.000000,0.000000 --3.0,154.800000,0.000000,0.000000 --3.0,155.700000,0.000000,0.000000 --3.0,156.600000,0.000000,0.000000 --3.0,157.500000,0.000000,0.000000 --3.0,158.400000,0.000000,0.000000 --3.0,159.300000,0.000000,0.000000 --3.0,160.200000,0.000000,0.000000 --3.0,161.100000,0.000000,0.000000 --3.0,162.000000,0.000000,0.000000 --3.0,162.900000,0.000000,0.000000 --3.0,163.800000,0.000000,0.000000 --3.0,164.700000,0.000000,0.000000 --3.0,165.600000,0.000000,0.000000 --3.0,166.500000,0.000000,0.000000 --3.0,167.400000,0.000000,0.000000 --3.0,168.300000,0.000000,0.000000 --3.0,169.200000,0.000000,0.000000 --3.0,170.100000,0.000000,0.000000 --3.0,171.000000,0.000000,0.000000 --3.0,171.900000,0.000000,0.000000 --3.0,172.800000,0.000000,0.000000 --3.0,173.700000,0.000000,0.000000 --3.0,174.600000,0.000000,0.000000 --3.0,175.500000,0.000000,0.000000 --3.0,176.400000,0.000000,0.000000 --3.0,177.300000,0.000000,0.000000 --3.0,178.200000,0.000000,0.000000 --3.0,179.100000,0.000000,0.000000 --3.0,180.000000,0.000000,0.000000 --3.0,180.900000,0.000000,0.000000 --3.0,181.800000,0.000000,0.000000 --3.0,182.700000,0.000000,0.000000 --3.0,183.600000,0.000000,0.000000 --3.0,184.500000,0.000000,0.000000 --3.0,185.400000,0.000000,0.000000 --3.0,186.300000,0.000000,0.000000 --3.0,187.200000,0.000000,0.000000 --3.0,188.100000,0.000000,0.000000 --3.0,189.000000,0.000000,0.000000 --3.0,189.900000,0.000000,0.000000 --3.0,190.800000,0.000000,0.000000 --3.0,191.700000,0.000000,0.000000 --3.0,192.600000,0.000000,0.000000 --3.0,193.500000,0.000000,0.000000 --3.0,194.400000,0.000000,0.000000 --3.0,195.300000,0.000000,0.000000 --3.0,196.200000,0.000000,0.000000 --3.0,197.100000,0.000000,0.000000 --3.0,198.000000,0.000000,0.000000 --3.0,198.900000,0.000000,0.000000 --3.0,199.800000,0.000000,0.000000 --3.0,200.700000,0.000000,0.000000 --3.0,201.600000,0.000000,0.000000 --3.0,202.500000,0.000000,0.000000 --3.0,203.400000,0.000000,0.000000 --3.0,204.300000,0.000000,0.000000 --3.0,205.200000,0.000000,0.000000 --3.0,206.100000,0.000000,0.000000 --3.0,207.000000,0.000000,0.000000 --3.0,207.900000,0.000000,0.000000 --3.0,208.800000,0.000000,0.000000 --3.0,209.700000,0.000000,0.000000 --3.0,210.600000,0.000000,0.000000 --3.0,211.500000,0.000000,0.000000 --3.0,212.400000,0.000000,0.000000 --3.0,213.300000,0.000000,0.000000 --3.0,214.200000,0.000000,0.000000 --3.0,215.100000,0.000000,0.000000 --3.0,216.000000,0.000000,0.000000 --3.0,216.900000,0.000000,0.000000 --3.0,217.800000,0.000000,0.000000 --3.0,218.700000,0.000000,0.000000 --3.0,219.600000,0.000000,0.000000 --3.0,220.500000,0.000000,0.000000 --3.0,221.400000,0.000000,0.000000 --3.0,222.300000,0.000000,0.000000 --3.0,223.200000,0.000000,0.000000 --3.0,224.100000,0.000000,0.000000 --3.0,225.000000,0.000000,0.000000 --3.0,225.900000,0.000000,0.000000 --3.0,226.800000,0.000000,0.000000 --3.0,227.700000,0.000000,0.000000 --3.0,228.600000,0.000000,0.000000 --3.0,229.500000,0.000000,0.000000 --3.0,230.400000,0.000000,0.000000 --3.0,231.300000,0.000000,0.000000 --3.0,232.200000,0.000000,0.000000 --3.0,233.100000,0.000000,0.000000 --3.0,234.000000,0.000000,0.000000 --3.0,234.900000,0.000000,0.000000 --3.0,235.800000,0.000000,0.000000 --3.0,236.700000,0.000000,0.000000 --3.0,237.600000,0.000000,0.000000 --3.0,238.500000,0.000000,0.000000 --3.0,239.400000,0.000000,0.000000 --3.0,240.300000,0.000000,0.000000 --3.0,241.200000,0.000000,0.000000 --3.0,242.100000,0.000000,0.000000 --3.0,243.000000,0.000000,0.000000 --3.0,243.900000,0.000000,0.000000 --3.0,244.800000,0.000000,0.000000 --3.0,245.700000,0.000000,0.000000 --3.0,246.600000,0.000000,0.000000 --3.0,247.500000,0.000000,0.000000 --3.0,248.400000,0.000000,0.000000 --3.0,249.300000,0.000000,0.000000 --3.0,250.200000,0.000000,0.000000 --3.0,251.100000,0.000000,0.000000 --3.0,252.000000,0.000000,0.000000 --3.0,252.900000,0.000000,0.000000 --3.0,253.800000,0.000000,0.000000 --3.0,254.700000,0.000000,0.000000 --3.0,255.600000,0.000000,0.000000 --3.0,256.500000,0.000000,0.000000 --3.0,257.400000,0.000000,0.000000 --3.0,258.300000,0.000000,0.000000 --3.0,259.200000,0.000000,0.000000 --3.0,260.100000,0.000000,0.000000 --3.0,261.000000,0.000000,0.000000 --3.0,261.900000,0.000000,0.000000 --3.0,262.800000,0.000000,0.000000 --3.0,263.700000,0.000000,0.000000 --3.0,264.600000,0.000000,0.000000 --3.0,265.500000,0.000000,0.000000 --3.0,266.400000,0.000000,0.000000 --3.0,267.300000,0.000000,0.000000 --3.0,268.200000,0.000000,0.000000 --3.0,269.100000,0.000000,0.000000 --3.0,270.000000,0.000000,0.000000 --3.0,270.900000,0.000000,0.000000 --3.0,271.800000,0.000000,0.000000 --3.0,272.700000,0.000000,0.000000 --3.0,273.600000,0.000000,0.000000 --3.0,274.500000,0.000000,0.000000 --3.0,275.400000,0.000000,0.000000 --3.0,276.300000,0.000000,0.000000 --3.0,277.200000,0.000000,0.000000 --3.0,278.100000,0.000000,0.000000 --3.0,279.000000,0.000000,0.000000 --3.0,279.900000,0.000000,0.000000 --3.0,280.800000,0.000000,0.000000 --3.0,281.700000,0.000000,0.000000 --3.0,282.600000,0.000000,0.000000 --3.0,283.500000,0.000000,0.000000 --3.0,284.400000,0.000000,0.000000 --3.0,285.300000,0.000000,0.000000 --3.0,286.200000,0.000000,0.000000 --3.0,287.100000,0.000000,0.000000 --3.0,288.000000,0.000000,0.000000 --3.0,288.900000,0.000000,0.000000 --3.0,289.800000,0.000000,0.000000 --3.0,290.700000,0.000000,0.000000 --3.0,291.600000,0.000000,0.000000 --3.0,292.500000,0.000000,0.000000 --3.0,293.400000,0.000000,0.000000 --3.0,294.300000,0.000000,0.000000 --3.0,295.200000,0.000000,0.000000 --3.0,296.100000,0.000000,0.000000 --3.0,297.000000,0.000000,0.000000 --3.0,297.900000,0.000000,0.000000 --3.0,298.800000,0.000000,0.000000 --3.0,299.700000,0.000000,0.000000 --3.0,300.600000,0.000000,0.000000 --3.0,301.500000,0.000000,0.000000 --3.0,302.400000,0.000000,0.000000 --3.0,303.300000,0.000000,0.000000 --3.0,304.200000,0.000000,0.000000 --3.0,305.100000,0.000000,0.000000 --3.0,306.000000,0.000000,0.000000 --3.0,306.900000,0.000000,0.000000 --3.0,307.800000,0.000000,0.000000 --3.0,308.700000,0.000000,0.000000 --3.0,309.600000,0.000000,0.000000 --3.0,310.500000,0.000000,0.000000 --3.0,311.400000,0.000000,0.000000 --3.0,312.300000,0.000000,0.000000 --3.0,313.200000,0.000000,0.000000 --3.0,314.100000,0.000000,0.000000 --3.0,315.000000,0.000000,0.000000 --3.0,315.900000,0.000000,0.000000 --3.0,316.800000,0.000000,0.000000 --3.0,317.700000,0.000000,0.000000 --3.0,318.600000,0.000000,0.000000 --3.0,319.500000,0.000000,0.000000 --3.0,320.400000,0.000000,0.000000 --3.0,321.300000,0.000000,0.000000 --3.0,322.200000,0.000000,0.000000 --3.0,323.100000,0.000000,0.000000 --3.0,324.000000,0.000000,0.000000 --3.0,324.900000,0.000000,0.000000 --3.0,325.800000,0.000000,0.000000 --3.0,326.700000,0.000000,0.000000 --3.0,327.600000,0.000000,0.000000 --3.0,328.500000,0.000000,0.000000 --3.0,329.400000,0.000000,0.000000 --3.0,330.300000,0.000000,0.000000 --3.0,331.200000,0.000000,0.000000 --3.0,332.100000,0.000000,0.000000 --3.0,333.000000,0.000000,0.000000 --3.0,333.900000,0.000000,0.000000 --3.0,334.800000,0.000000,0.000000 --3.0,335.700000,0.000000,0.000000 --3.0,336.600000,0.000000,0.000000 --3.0,337.500000,0.000000,0.000000 --3.0,338.400000,0.000000,0.000000 --3.0,339.300000,0.000000,0.000000 --3.0,340.200000,0.000000,0.000000 --3.0,341.100000,0.000000,0.000000 --3.0,342.000000,0.000000,0.000000 --3.0,342.900000,0.000000,0.000000 --3.0,343.800000,0.000000,0.000000 --3.0,344.700000,0.000000,0.000000 --3.0,345.600000,0.000000,0.000000 --3.0,346.500000,0.000000,0.000000 --3.0,347.400000,0.000000,0.000000 --3.0,348.300000,0.000000,0.000000 --3.0,349.200000,0.000000,0.000000 --3.0,350.100000,0.000000,0.000000 --3.0,351.000000,0.000000,0.000000 --3.0,351.900000,0.000000,0.000000 --3.0,352.800000,0.000000,0.000000 --3.0,353.700000,0.000000,0.000000 --3.0,354.600000,0.000000,0.000000 --3.0,355.500000,0.000000,0.000000 --3.0,356.400000,0.000000,0.000000 --3.0,357.300000,0.000000,0.000000 --3.0,358.200000,0.000000,0.000000 --3.0,359.100000,0.000000,0.000000 --3.0,0.000000,-360.000000,0.000000 --3.0,0.000000,-359.100000,0.000000 --3.0,0.000000,-358.200000,0.000000 --3.0,0.000000,-357.300000,0.000000 --3.0,0.000000,-356.400000,0.000000 --3.0,0.000000,-355.500000,0.000000 --3.0,0.000000,-354.600000,0.000000 --3.0,0.000000,-353.700000,0.000000 --3.0,0.000000,-352.800000,0.000000 --3.0,0.000000,-351.900000,0.000000 --3.0,0.000000,-351.000000,0.000000 --3.0,0.000000,-350.100000,0.000000 --3.0,0.000000,-349.200000,0.000000 --3.0,0.000000,-348.300000,0.000000 --3.0,0.000000,-347.400000,0.000000 --3.0,0.000000,-346.500000,0.000000 --3.0,0.000000,-345.600000,0.000000 --3.0,0.000000,-344.700000,0.000000 --3.0,0.000000,-343.800000,0.000000 --3.0,0.000000,-342.900000,0.000000 --3.0,0.000000,-342.000000,0.000000 --3.0,0.000000,-341.100000,0.000000 --3.0,0.000000,-340.200000,0.000000 --3.0,0.000000,-339.300000,0.000000 --3.0,0.000000,-338.400000,0.000000 --3.0,0.000000,-337.500000,0.000000 --3.0,0.000000,-336.600000,0.000000 --3.0,0.000000,-335.700000,0.000000 --3.0,0.000000,-334.800000,0.000000 --3.0,0.000000,-333.900000,0.000000 --3.0,0.000000,-333.000000,0.000000 --3.0,0.000000,-332.100000,0.000000 --3.0,0.000000,-331.200000,0.000000 --3.0,0.000000,-330.300000,0.000000 --3.0,0.000000,-329.400000,0.000000 --3.0,0.000000,-328.500000,0.000000 --3.0,0.000000,-327.600000,0.000000 --3.0,0.000000,-326.700000,0.000000 --3.0,0.000000,-325.800000,0.000000 --3.0,0.000000,-324.900000,0.000000 --3.0,0.000000,-324.000000,0.000000 --3.0,0.000000,-323.100000,0.000000 --3.0,0.000000,-322.200000,0.000000 --3.0,0.000000,-321.300000,0.000000 --3.0,0.000000,-320.400000,0.000000 --3.0,0.000000,-319.500000,0.000000 --3.0,0.000000,-318.600000,0.000000 --3.0,0.000000,-317.700000,0.000000 --3.0,0.000000,-316.800000,0.000000 --3.0,0.000000,-315.900000,0.000000 --3.0,0.000000,-315.000000,0.000000 --3.0,0.000000,-314.100000,0.000000 --3.0,0.000000,-313.200000,0.000000 --3.0,0.000000,-312.300000,0.000000 --3.0,0.000000,-311.400000,0.000000 --3.0,0.000000,-310.500000,0.000000 --3.0,0.000000,-309.600000,0.000000 --3.0,0.000000,-308.700000,0.000000 --3.0,0.000000,-307.800000,0.000000 --3.0,0.000000,-306.900000,0.000000 --3.0,0.000000,-306.000000,0.000000 --3.0,0.000000,-305.100000,0.000000 --3.0,0.000000,-304.200000,0.000000 --3.0,0.000000,-303.300000,0.000000 --3.0,0.000000,-302.400000,0.000000 --3.0,0.000000,-301.500000,0.000000 --3.0,0.000000,-300.600000,0.000000 --3.0,0.000000,-299.700000,0.000000 --3.0,0.000000,-298.800000,0.000000 --3.0,0.000000,-297.900000,0.000000 --3.0,0.000000,-297.000000,0.000000 --3.0,0.000000,-296.100000,0.000000 --3.0,0.000000,-295.200000,0.000000 --3.0,0.000000,-294.300000,0.000000 --3.0,0.000000,-293.400000,0.000000 --3.0,0.000000,-292.500000,0.000000 --3.0,0.000000,-291.600000,0.000000 --3.0,0.000000,-290.700000,0.000000 --3.0,0.000000,-289.800000,0.000000 --3.0,0.000000,-288.900000,0.000000 --3.0,0.000000,-288.000000,0.000000 --3.0,0.000000,-287.100000,0.000000 --3.0,0.000000,-286.200000,0.000000 --3.0,0.000000,-285.300000,0.000000 --3.0,0.000000,-284.400000,0.000000 --3.0,0.000000,-283.500000,0.000000 --3.0,0.000000,-282.600000,0.000000 --3.0,0.000000,-281.700000,0.000000 --3.0,0.000000,-280.800000,0.000000 --3.0,0.000000,-279.900000,0.000000 --3.0,0.000000,-279.000000,0.000000 --3.0,0.000000,-278.100000,0.000000 --3.0,0.000000,-277.200000,0.000000 --3.0,0.000000,-276.300000,0.000000 --3.0,0.000000,-275.400000,0.000000 --3.0,0.000000,-274.500000,0.000000 --3.0,0.000000,-273.600000,0.000000 --3.0,0.000000,-272.700000,0.000000 --3.0,0.000000,-271.800000,0.000000 --3.0,0.000000,-270.900000,0.000000 --3.0,0.000000,-270.000000,0.000000 --3.0,0.000000,-269.100000,0.000000 --3.0,0.000000,-268.200000,0.000000 --3.0,0.000000,-267.300000,0.000000 --3.0,0.000000,-266.400000,0.000000 --3.0,0.000000,-265.500000,0.000000 --3.0,0.000000,-264.600000,0.000000 --3.0,0.000000,-263.700000,0.000000 --3.0,0.000000,-262.800000,0.000000 --3.0,0.000000,-261.900000,0.000000 --3.0,0.000000,-261.000000,0.000000 --3.0,0.000000,-260.100000,0.000000 --3.0,0.000000,-259.200000,0.000000 --3.0,0.000000,-258.300000,0.000000 --3.0,0.000000,-257.400000,0.000000 --3.0,0.000000,-256.500000,0.000000 --3.0,0.000000,-255.600000,0.000000 --3.0,0.000000,-254.700000,0.000000 --3.0,0.000000,-253.800000,0.000000 --3.0,0.000000,-252.900000,0.000000 --3.0,0.000000,-252.000000,0.000000 --3.0,0.000000,-251.100000,0.000000 --3.0,0.000000,-250.200000,0.000000 --3.0,0.000000,-249.300000,0.000000 --3.0,0.000000,-248.400000,0.000000 --3.0,0.000000,-247.500000,0.000000 --3.0,0.000000,-246.600000,0.000000 --3.0,0.000000,-245.700000,0.000000 --3.0,0.000000,-244.800000,0.000000 --3.0,0.000000,-243.900000,0.000000 --3.0,0.000000,-243.000000,0.000000 --3.0,0.000000,-242.100000,0.000000 --3.0,0.000000,-241.200000,0.000000 --3.0,0.000000,-240.300000,0.000000 --3.0,0.000000,-239.400000,0.000000 --3.0,0.000000,-238.500000,0.000000 --3.0,0.000000,-237.600000,0.000000 --3.0,0.000000,-236.700000,0.000000 --3.0,0.000000,-235.800000,0.000000 --3.0,0.000000,-234.900000,0.000000 --3.0,0.000000,-234.000000,0.000000 --3.0,0.000000,-233.100000,0.000000 --3.0,0.000000,-232.200000,0.000000 --3.0,0.000000,-231.300000,0.000000 --3.0,0.000000,-230.400000,0.000000 --3.0,0.000000,-229.500000,0.000000 --3.0,0.000000,-228.600000,0.000000 --3.0,0.000000,-227.700000,0.000000 --3.0,0.000000,-226.800000,0.000000 --3.0,0.000000,-225.900000,0.000000 --3.0,0.000000,-225.000000,0.000000 --3.0,0.000000,-224.100000,0.000000 --3.0,0.000000,-223.200000,0.000000 --3.0,0.000000,-222.300000,0.000000 --3.0,0.000000,-221.400000,0.000000 --3.0,0.000000,-220.500000,0.000000 --3.0,0.000000,-219.600000,0.000000 --3.0,0.000000,-218.700000,0.000000 --3.0,0.000000,-217.800000,0.000000 --3.0,0.000000,-216.900000,0.000000 --3.0,0.000000,-216.000000,0.000000 --3.0,0.000000,-215.100000,0.000000 --3.0,0.000000,-214.200000,0.000000 --3.0,0.000000,-213.300000,0.000000 --3.0,0.000000,-212.400000,0.000000 --3.0,0.000000,-211.500000,0.000000 --3.0,0.000000,-210.600000,0.000000 --3.0,0.000000,-209.700000,0.000000 --3.0,0.000000,-208.800000,0.000000 --3.0,0.000000,-207.900000,0.000000 --3.0,0.000000,-207.000000,0.000000 --3.0,0.000000,-206.100000,0.000000 --3.0,0.000000,-205.200000,0.000000 --3.0,0.000000,-204.300000,0.000000 --3.0,0.000000,-203.400000,0.000000 --3.0,0.000000,-202.500000,0.000000 --3.0,0.000000,-201.600000,0.000000 --3.0,0.000000,-200.700000,0.000000 --3.0,0.000000,-199.800000,0.000000 --3.0,0.000000,-198.900000,0.000000 --3.0,0.000000,-198.000000,0.000000 --3.0,0.000000,-197.100000,0.000000 --3.0,0.000000,-196.200000,0.000000 --3.0,0.000000,-195.300000,0.000000 --3.0,0.000000,-194.400000,0.000000 --3.0,0.000000,-193.500000,0.000000 --3.0,0.000000,-192.600000,0.000000 --3.0,0.000000,-191.700000,0.000000 --3.0,0.000000,-190.800000,0.000000 --3.0,0.000000,-189.900000,0.000000 --3.0,0.000000,-189.000000,0.000000 --3.0,0.000000,-188.100000,0.000000 --3.0,0.000000,-187.200000,0.000000 --3.0,0.000000,-186.300000,0.000000 --3.0,0.000000,-185.400000,0.000000 --3.0,0.000000,-184.500000,0.000000 --3.0,0.000000,-183.600000,0.000000 --3.0,0.000000,-182.700000,0.000000 --3.0,0.000000,-181.800000,0.000000 --3.0,0.000000,-180.900000,0.000000 --3.0,0.000000,-180.000000,0.000000 --3.0,0.000000,-179.100000,0.000000 --3.0,0.000000,-178.200000,0.000000 --3.0,0.000000,-177.300000,0.000000 --3.0,0.000000,-176.400000,0.000000 --3.0,0.000000,-175.500000,0.000000 --3.0,0.000000,-174.600000,0.000000 --3.0,0.000000,-173.700000,0.000000 --3.0,0.000000,-172.800000,0.000000 --3.0,0.000000,-171.900000,0.000000 --3.0,0.000000,-171.000000,0.000000 --3.0,0.000000,-170.100000,0.000000 --3.0,0.000000,-169.200000,0.000000 --3.0,0.000000,-168.300000,0.000000 --3.0,0.000000,-167.400000,0.000000 --3.0,0.000000,-166.500000,0.000000 --3.0,0.000000,-165.600000,0.000000 --3.0,0.000000,-164.700000,0.000000 --3.0,0.000000,-163.800000,0.000000 --3.0,0.000000,-162.900000,0.000000 --3.0,0.000000,-162.000000,0.000000 --3.0,0.000000,-161.100000,0.000000 --3.0,0.000000,-160.200000,0.000000 --3.0,0.000000,-159.300000,0.000000 --3.0,0.000000,-158.400000,0.000000 --3.0,0.000000,-157.500000,0.000000 --3.0,0.000000,-156.600000,0.000000 --3.0,0.000000,-155.700000,0.000000 --3.0,0.000000,-154.800000,0.000000 --3.0,0.000000,-153.900000,0.000000 --3.0,0.000000,-153.000000,0.000000 --3.0,0.000000,-152.100000,0.000000 --3.0,0.000000,-151.200000,0.000000 --3.0,0.000000,-150.300000,0.000000 --3.0,0.000000,-149.400000,0.000000 --3.0,0.000000,-148.500000,0.000000 --3.0,0.000000,-147.600000,0.000000 --3.0,0.000000,-146.700000,0.000000 --3.0,0.000000,-145.800000,0.000000 --3.0,0.000000,-144.900000,0.000000 --3.0,0.000000,-144.000000,0.000000 --3.0,0.000000,-143.100000,0.000000 --3.0,0.000000,-142.200000,0.000000 --3.0,0.000000,-141.300000,0.000000 --3.0,0.000000,-140.400000,0.000000 --3.0,0.000000,-139.500000,0.000000 --3.0,0.000000,-138.600000,0.000000 --3.0,0.000000,-137.700000,0.000000 --3.0,0.000000,-136.800000,0.000000 --3.0,0.000000,-135.900000,0.000000 --3.0,0.000000,-135.000000,0.000000 --3.0,0.000000,-134.100000,0.000000 --3.0,0.000000,-133.200000,0.000000 --3.0,0.000000,-132.300000,0.000000 --3.0,0.000000,-131.400000,0.000000 --3.0,0.000000,-130.500000,0.000000 --3.0,0.000000,-129.600000,0.000000 --3.0,0.000000,-128.700000,0.000000 --3.0,0.000000,-127.800000,0.000000 --3.0,0.000000,-126.900000,0.000000 --3.0,0.000000,-126.000000,0.000000 --3.0,0.000000,-125.100000,0.000000 --3.0,0.000000,-124.200000,0.000000 --3.0,0.000000,-123.300000,0.000000 --3.0,0.000000,-122.400000,0.000000 --3.0,0.000000,-121.500000,0.000000 --3.0,0.000000,-120.600000,0.000000 --3.0,0.000000,-119.700000,0.000000 --3.0,0.000000,-118.800000,0.000000 --3.0,0.000000,-117.900000,0.000000 --3.0,0.000000,-117.000000,0.000000 --3.0,0.000000,-116.100000,0.000000 --3.0,0.000000,-115.200000,0.000000 --3.0,0.000000,-114.300000,0.000000 --3.0,0.000000,-113.400000,0.000000 --3.0,0.000000,-112.500000,0.000000 --3.0,0.000000,-111.600000,0.000000 --3.0,0.000000,-110.700000,0.000000 --3.0,0.000000,-109.800000,0.000000 --3.0,0.000000,-108.900000,0.000000 --3.0,0.000000,-108.000000,0.000000 --3.0,0.000000,-107.100000,0.000000 --3.0,0.000000,-106.200000,0.000000 --3.0,0.000000,-105.300000,0.000000 --3.0,0.000000,-104.400000,0.000000 --3.0,0.000000,-103.500000,0.000000 --3.0,0.000000,-102.600000,0.000000 --3.0,0.000000,-101.700000,0.000000 --3.0,0.000000,-100.800000,0.000000 --3.0,0.000000,-99.900000,0.000000 --3.0,0.000000,-99.000000,0.000000 --3.0,0.000000,-98.100000,0.000000 --3.0,0.000000,-97.200000,0.000000 --3.0,0.000000,-96.300000,0.000000 --3.0,0.000000,-95.400000,0.000000 --3.0,0.000000,-94.500000,0.000000 --3.0,0.000000,-93.600000,0.000000 --3.0,0.000000,-92.700000,0.000000 --3.0,0.000000,-91.800000,0.000000 --3.0,0.000000,-90.900000,0.000000 --3.0,0.000000,-90.000000,0.000000 --3.0,0.000000,-89.100000,0.000000 --3.0,0.000000,-88.200000,0.000000 --3.0,0.000000,-87.300000,0.000000 --3.0,0.000000,-86.400000,0.000000 --3.0,0.000000,-85.500000,0.000000 --3.0,0.000000,-84.600000,0.000000 --3.0,0.000000,-83.700000,0.000000 --3.0,0.000000,-82.800000,0.000000 --3.0,0.000000,-81.900000,0.000000 --3.0,0.000000,-81.000000,0.000000 --3.0,0.000000,-80.100000,0.000000 --3.0,0.000000,-79.200000,0.000000 --3.0,0.000000,-78.300000,0.000000 --3.0,0.000000,-77.400000,0.000000 --3.0,0.000000,-76.500000,0.000000 --3.0,0.000000,-75.600000,0.000000 --3.0,0.000000,-74.700000,0.000000 --3.0,0.000000,-73.800000,0.000000 --3.0,0.000000,-72.900000,0.000000 --3.0,0.000000,-72.000000,0.000000 --3.0,0.000000,-71.100000,0.000000 --3.0,0.000000,-70.200000,0.000000 --3.0,0.000000,-69.300000,0.000000 --3.0,0.000000,-68.400000,0.000000 --3.0,0.000000,-67.500000,0.000000 --3.0,0.000000,-66.600000,0.000000 --3.0,0.000000,-65.700000,0.000000 --3.0,0.000000,-64.800000,0.000000 --3.0,0.000000,-63.900000,0.000000 --3.0,0.000000,-63.000000,0.000000 --3.0,0.000000,-62.100000,0.000000 --3.0,0.000000,-61.200000,0.000000 --3.0,0.000000,-60.300000,0.000000 --3.0,0.000000,-59.400000,0.000000 --3.0,0.000000,-58.500000,0.000000 --3.0,0.000000,-57.600000,0.000000 --3.0,0.000000,-56.700000,0.000000 --3.0,0.000000,-55.800000,0.000000 --3.0,0.000000,-54.900000,0.000000 --3.0,0.000000,-54.000000,0.000000 --3.0,0.000000,-53.100000,0.000000 --3.0,0.000000,-52.200000,0.000000 --3.0,0.000000,-51.300000,0.000000 --3.0,0.000000,-50.400000,0.000000 --3.0,0.000000,-49.500000,0.000000 --3.0,0.000000,-48.600000,0.000000 --3.0,0.000000,-47.700000,0.000000 --3.0,0.000000,-46.800000,0.000000 --3.0,0.000000,-45.900000,0.000000 --3.0,0.000000,-45.000000,0.000000 --3.0,0.000000,-44.100000,0.000000 --3.0,0.000000,-43.200000,0.000000 --3.0,0.000000,-42.300000,0.000000 --3.0,0.000000,-41.400000,0.000000 --3.0,0.000000,-40.500000,0.000000 --3.0,0.000000,-39.600000,0.000000 --3.0,0.000000,-38.700000,0.000000 --3.0,0.000000,-37.800000,0.000000 --3.0,0.000000,-36.900000,0.000000 --3.0,0.000000,-36.000000,0.000000 --3.0,0.000000,-35.100000,0.000000 --3.0,0.000000,-34.200000,0.000000 --3.0,0.000000,-33.300000,0.000000 --3.0,0.000000,-32.400000,0.000000 --3.0,0.000000,-31.500000,0.000000 --3.0,0.000000,-30.600000,0.000000 --3.0,0.000000,-29.700000,0.000000 --3.0,0.000000,-28.800000,0.000000 --3.0,0.000000,-27.900000,0.000000 --3.0,0.000000,-27.000000,0.000000 --3.0,0.000000,-26.100000,0.000000 --3.0,0.000000,-25.200000,0.000000 --3.0,0.000000,-24.300000,0.000000 --3.0,0.000000,-23.400000,0.000000 --3.0,0.000000,-22.500000,0.000000 --3.0,0.000000,-21.600000,0.000000 --3.0,0.000000,-20.700000,0.000000 --3.0,0.000000,-19.800000,0.000000 --3.0,0.000000,-18.900000,0.000000 --3.0,0.000000,-18.000000,0.000000 --3.0,0.000000,-17.100000,0.000000 --3.0,0.000000,-16.200000,0.000000 --3.0,0.000000,-15.300000,0.000000 --3.0,0.000000,-14.400000,0.000000 --3.0,0.000000,-13.500000,0.000000 --3.0,0.000000,-12.600000,0.000000 --3.0,0.000000,-11.700000,0.000000 --3.0,0.000000,-10.800000,0.000000 --3.0,0.000000,-9.900000,0.000000 --3.0,0.000000,-9.000000,0.000000 --3.0,0.000000,-8.100000,0.000000 --3.0,0.000000,-7.200000,0.000000 --3.0,0.000000,-6.300000,0.000000 --3.0,0.000000,-5.400000,0.000000 --3.0,0.000000,-4.500000,0.000000 --3.0,0.000000,-3.600000,0.000000 --3.0,0.000000,-2.700000,0.000000 --3.0,0.000000,-1.800000,0.000000 --3.0,0.000000,-0.900000,0.000000 --3.0,0.000000,0.000000,0.000000 --3.0,0.000000,0.900000,0.000000 --3.0,0.000000,1.800000,0.000000 --3.0,0.000000,2.700000,0.000000 --3.0,0.000000,3.600000,0.000000 --3.0,0.000000,4.500000,0.000000 --3.0,0.000000,5.400000,0.000000 --3.0,0.000000,6.300000,0.000000 --3.0,0.000000,7.200000,0.000000 --3.0,0.000000,8.100000,0.000000 --3.0,0.000000,9.000000,0.000000 --3.0,0.000000,9.900000,0.000000 --3.0,0.000000,10.800000,0.000000 --3.0,0.000000,11.700000,0.000000 --3.0,0.000000,12.600000,0.000000 --3.0,0.000000,13.500000,0.000000 --3.0,0.000000,14.400000,0.000000 --3.0,0.000000,15.300000,0.000000 --3.0,0.000000,16.200000,0.000000 --3.0,0.000000,17.100000,0.000000 --3.0,0.000000,18.000000,0.000000 --3.0,0.000000,18.900000,0.000000 --3.0,0.000000,19.800000,0.000000 --3.0,0.000000,20.700000,0.000000 --3.0,0.000000,21.600000,0.000000 --3.0,0.000000,22.500000,0.000000 --3.0,0.000000,23.400000,0.000000 --3.0,0.000000,24.300000,0.000000 --3.0,0.000000,25.200000,0.000000 --3.0,0.000000,26.100000,0.000000 --3.0,0.000000,27.000000,0.000000 --3.0,0.000000,27.900000,0.000000 --3.0,0.000000,28.800000,0.000000 --3.0,0.000000,29.700000,0.000000 --3.0,0.000000,30.600000,0.000000 --3.0,0.000000,31.500000,0.000000 --3.0,0.000000,32.400000,0.000000 --3.0,0.000000,33.300000,0.000000 --3.0,0.000000,34.200000,0.000000 --3.0,0.000000,35.100000,0.000000 --3.0,0.000000,36.000000,0.000000 --3.0,0.000000,36.900000,0.000000 --3.0,0.000000,37.800000,0.000000 --3.0,0.000000,38.700000,0.000000 --3.0,0.000000,39.600000,0.000000 --3.0,0.000000,40.500000,0.000000 --3.0,0.000000,41.400000,0.000000 --3.0,0.000000,42.300000,0.000000 --3.0,0.000000,43.200000,0.000000 --3.0,0.000000,44.100000,0.000000 --3.0,0.000000,45.000000,0.000000 --3.0,0.000000,45.900000,0.000000 --3.0,0.000000,46.800000,0.000000 --3.0,0.000000,47.700000,0.000000 --3.0,0.000000,48.600000,0.000000 --3.0,0.000000,49.500000,0.000000 --3.0,0.000000,50.400000,0.000000 --3.0,0.000000,51.300000,0.000000 --3.0,0.000000,52.200000,0.000000 --3.0,0.000000,53.100000,0.000000 --3.0,0.000000,54.000000,0.000000 --3.0,0.000000,54.900000,0.000000 --3.0,0.000000,55.800000,0.000000 --3.0,0.000000,56.700000,0.000000 --3.0,0.000000,57.600000,0.000000 --3.0,0.000000,58.500000,0.000000 --3.0,0.000000,59.400000,0.000000 --3.0,0.000000,60.300000,0.000000 --3.0,0.000000,61.200000,0.000000 --3.0,0.000000,62.100000,0.000000 --3.0,0.000000,63.000000,0.000000 --3.0,0.000000,63.900000,0.000000 --3.0,0.000000,64.800000,0.000000 --3.0,0.000000,65.700000,0.000000 --3.0,0.000000,66.600000,0.000000 --3.0,0.000000,67.500000,0.000000 --3.0,0.000000,68.400000,0.000000 --3.0,0.000000,69.300000,0.000000 --3.0,0.000000,70.200000,0.000000 --3.0,0.000000,71.100000,0.000000 --3.0,0.000000,72.000000,0.000000 --3.0,0.000000,72.900000,0.000000 --3.0,0.000000,73.800000,0.000000 --3.0,0.000000,74.700000,0.000000 --3.0,0.000000,75.600000,0.000000 --3.0,0.000000,76.500000,0.000000 --3.0,0.000000,77.400000,0.000000 --3.0,0.000000,78.300000,0.000000 --3.0,0.000000,79.200000,0.000000 --3.0,0.000000,80.100000,0.000000 --3.0,0.000000,81.000000,0.000000 --3.0,0.000000,81.900000,0.000000 --3.0,0.000000,82.800000,0.000000 --3.0,0.000000,83.700000,0.000000 --3.0,0.000000,84.600000,0.000000 --3.0,0.000000,85.500000,0.000000 --3.0,0.000000,86.400000,0.000000 --3.0,0.000000,87.300000,0.000000 --3.0,0.000000,88.200000,0.000000 --3.0,0.000000,89.100000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.900000,0.000000 --3.0,0.000000,91.800000,0.000000 --3.0,0.000000,92.700000,0.000000 --3.0,0.000000,93.600000,0.000000 --3.0,0.000000,94.500000,0.000000 --3.0,0.000000,95.400000,0.000000 --3.0,0.000000,96.300000,0.000000 --3.0,0.000000,97.200000,0.000000 --3.0,0.000000,98.100000,0.000000 --3.0,0.000000,99.000000,0.000000 --3.0,0.000000,99.900000,0.000000 --3.0,0.000000,100.800000,0.000000 --3.0,0.000000,101.700000,0.000000 --3.0,0.000000,102.600000,0.000000 --3.0,0.000000,103.500000,0.000000 --3.0,0.000000,104.400000,0.000000 --3.0,0.000000,105.300000,0.000000 --3.0,0.000000,106.200000,0.000000 --3.0,0.000000,107.100000,0.000000 --3.0,0.000000,108.000000,0.000000 --3.0,0.000000,108.900000,0.000000 --3.0,0.000000,109.800000,0.000000 --3.0,0.000000,110.700000,0.000000 --3.0,0.000000,111.600000,0.000000 --3.0,0.000000,112.500000,0.000000 --3.0,0.000000,113.400000,0.000000 --3.0,0.000000,114.300000,0.000000 --3.0,0.000000,115.200000,0.000000 --3.0,0.000000,116.100000,0.000000 --3.0,0.000000,117.000000,0.000000 --3.0,0.000000,117.900000,0.000000 --3.0,0.000000,118.800000,0.000000 --3.0,0.000000,119.700000,0.000000 --3.0,0.000000,120.600000,0.000000 --3.0,0.000000,121.500000,0.000000 --3.0,0.000000,122.400000,0.000000 --3.0,0.000000,123.300000,0.000000 --3.0,0.000000,124.200000,0.000000 --3.0,0.000000,125.100000,0.000000 --3.0,0.000000,126.000000,0.000000 --3.0,0.000000,126.900000,0.000000 --3.0,0.000000,127.800000,0.000000 --3.0,0.000000,128.700000,0.000000 --3.0,0.000000,129.600000,0.000000 --3.0,0.000000,130.500000,0.000000 --3.0,0.000000,131.400000,0.000000 --3.0,0.000000,132.300000,0.000000 --3.0,0.000000,133.200000,0.000000 --3.0,0.000000,134.100000,0.000000 --3.0,0.000000,135.000000,0.000000 --3.0,0.000000,135.900000,0.000000 --3.0,0.000000,136.800000,0.000000 --3.0,0.000000,137.700000,0.000000 --3.0,0.000000,138.600000,0.000000 --3.0,0.000000,139.500000,0.000000 --3.0,0.000000,140.400000,0.000000 --3.0,0.000000,141.300000,0.000000 --3.0,0.000000,142.200000,0.000000 --3.0,0.000000,143.100000,0.000000 --3.0,0.000000,144.000000,0.000000 --3.0,0.000000,144.900000,0.000000 --3.0,0.000000,145.800000,0.000000 --3.0,0.000000,146.700000,0.000000 --3.0,0.000000,147.600000,0.000000 --3.0,0.000000,148.500000,0.000000 --3.0,0.000000,149.400000,0.000000 --3.0,0.000000,150.300000,0.000000 --3.0,0.000000,151.200000,0.000000 --3.0,0.000000,152.100000,0.000000 --3.0,0.000000,153.000000,0.000000 --3.0,0.000000,153.900000,0.000000 --3.0,0.000000,154.800000,0.000000 --3.0,0.000000,155.700000,0.000000 --3.0,0.000000,156.600000,0.000000 --3.0,0.000000,157.500000,0.000000 --3.0,0.000000,158.400000,0.000000 --3.0,0.000000,159.300000,0.000000 --3.0,0.000000,160.200000,0.000000 --3.0,0.000000,161.100000,0.000000 --3.0,0.000000,162.000000,0.000000 --3.0,0.000000,162.900000,0.000000 --3.0,0.000000,163.800000,0.000000 --3.0,0.000000,164.700000,0.000000 --3.0,0.000000,165.600000,0.000000 --3.0,0.000000,166.500000,0.000000 --3.0,0.000000,167.400000,0.000000 --3.0,0.000000,168.300000,0.000000 --3.0,0.000000,169.200000,0.000000 --3.0,0.000000,170.100000,0.000000 --3.0,0.000000,171.000000,0.000000 --3.0,0.000000,171.900000,0.000000 --3.0,0.000000,172.800000,0.000000 --3.0,0.000000,173.700000,0.000000 --3.0,0.000000,174.600000,0.000000 --3.0,0.000000,175.500000,0.000000 --3.0,0.000000,176.400000,0.000000 --3.0,0.000000,177.300000,0.000000 --3.0,0.000000,178.200000,0.000000 --3.0,0.000000,179.100000,0.000000 --3.0,0.000000,180.000000,0.000000 --3.0,0.000000,180.900000,0.000000 --3.0,0.000000,181.800000,0.000000 --3.0,0.000000,182.700000,0.000000 --3.0,0.000000,183.600000,0.000000 --3.0,0.000000,184.500000,0.000000 --3.0,0.000000,185.400000,0.000000 --3.0,0.000000,186.300000,0.000000 --3.0,0.000000,187.200000,0.000000 --3.0,0.000000,188.100000,0.000000 --3.0,0.000000,189.000000,0.000000 --3.0,0.000000,189.900000,0.000000 --3.0,0.000000,190.800000,0.000000 --3.0,0.000000,191.700000,0.000000 --3.0,0.000000,192.600000,0.000000 --3.0,0.000000,193.500000,0.000000 --3.0,0.000000,194.400000,0.000000 --3.0,0.000000,195.300000,0.000000 --3.0,0.000000,196.200000,0.000000 --3.0,0.000000,197.100000,0.000000 --3.0,0.000000,198.000000,0.000000 --3.0,0.000000,198.900000,0.000000 --3.0,0.000000,199.800000,0.000000 --3.0,0.000000,200.700000,0.000000 --3.0,0.000000,201.600000,0.000000 --3.0,0.000000,202.500000,0.000000 --3.0,0.000000,203.400000,0.000000 --3.0,0.000000,204.300000,0.000000 --3.0,0.000000,205.200000,0.000000 --3.0,0.000000,206.100000,0.000000 --3.0,0.000000,207.000000,0.000000 --3.0,0.000000,207.900000,0.000000 --3.0,0.000000,208.800000,0.000000 --3.0,0.000000,209.700000,0.000000 --3.0,0.000000,210.600000,0.000000 --3.0,0.000000,211.500000,0.000000 --3.0,0.000000,212.400000,0.000000 --3.0,0.000000,213.300000,0.000000 --3.0,0.000000,214.200000,0.000000 --3.0,0.000000,215.100000,0.000000 --3.0,0.000000,216.000000,0.000000 --3.0,0.000000,216.900000,0.000000 --3.0,0.000000,217.800000,0.000000 --3.0,0.000000,218.700000,0.000000 --3.0,0.000000,219.600000,0.000000 --3.0,0.000000,220.500000,0.000000 --3.0,0.000000,221.400000,0.000000 --3.0,0.000000,222.300000,0.000000 --3.0,0.000000,223.200000,0.000000 --3.0,0.000000,224.100000,0.000000 --3.0,0.000000,225.000000,0.000000 --3.0,0.000000,225.900000,0.000000 --3.0,0.000000,226.800000,0.000000 --3.0,0.000000,227.700000,0.000000 --3.0,0.000000,228.600000,0.000000 --3.0,0.000000,229.500000,0.000000 --3.0,0.000000,230.400000,0.000000 --3.0,0.000000,231.300000,0.000000 --3.0,0.000000,232.200000,0.000000 --3.0,0.000000,233.100000,0.000000 --3.0,0.000000,234.000000,0.000000 --3.0,0.000000,234.900000,0.000000 --3.0,0.000000,235.800000,0.000000 --3.0,0.000000,236.700000,0.000000 --3.0,0.000000,237.600000,0.000000 --3.0,0.000000,238.500000,0.000000 --3.0,0.000000,239.400000,0.000000 --3.0,0.000000,240.300000,0.000000 --3.0,0.000000,241.200000,0.000000 --3.0,0.000000,242.100000,0.000000 --3.0,0.000000,243.000000,0.000000 --3.0,0.000000,243.900000,0.000000 --3.0,0.000000,244.800000,0.000000 --3.0,0.000000,245.700000,0.000000 --3.0,0.000000,246.600000,0.000000 --3.0,0.000000,247.500000,0.000000 --3.0,0.000000,248.400000,0.000000 --3.0,0.000000,249.300000,0.000000 --3.0,0.000000,250.200000,0.000000 --3.0,0.000000,251.100000,0.000000 --3.0,0.000000,252.000000,0.000000 --3.0,0.000000,252.900000,0.000000 --3.0,0.000000,253.800000,0.000000 --3.0,0.000000,254.700000,0.000000 --3.0,0.000000,255.600000,0.000000 --3.0,0.000000,256.500000,0.000000 --3.0,0.000000,257.400000,0.000000 --3.0,0.000000,258.300000,0.000000 --3.0,0.000000,259.200000,0.000000 --3.0,0.000000,260.100000,0.000000 --3.0,0.000000,261.000000,0.000000 --3.0,0.000000,261.900000,0.000000 --3.0,0.000000,262.800000,0.000000 --3.0,0.000000,263.700000,0.000000 --3.0,0.000000,264.600000,0.000000 --3.0,0.000000,265.500000,0.000000 --3.0,0.000000,266.400000,0.000000 --3.0,0.000000,267.300000,0.000000 --3.0,0.000000,268.200000,0.000000 --3.0,0.000000,269.100000,0.000000 --3.0,0.000000,270.000000,0.000000 --3.0,0.000000,270.900000,0.000000 --3.0,0.000000,271.800000,0.000000 --3.0,0.000000,272.700000,0.000000 --3.0,0.000000,273.600000,0.000000 --3.0,0.000000,274.500000,0.000000 --3.0,0.000000,275.400000,0.000000 --3.0,0.000000,276.300000,0.000000 --3.0,0.000000,277.200000,0.000000 --3.0,0.000000,278.100000,0.000000 --3.0,0.000000,279.000000,0.000000 --3.0,0.000000,279.900000,0.000000 --3.0,0.000000,280.800000,0.000000 --3.0,0.000000,281.700000,0.000000 --3.0,0.000000,282.600000,0.000000 --3.0,0.000000,283.500000,0.000000 --3.0,0.000000,284.400000,0.000000 --3.0,0.000000,285.300000,0.000000 --3.0,0.000000,286.200000,0.000000 --3.0,0.000000,287.100000,0.000000 --3.0,0.000000,288.000000,0.000000 --3.0,0.000000,288.900000,0.000000 --3.0,0.000000,289.800000,0.000000 --3.0,0.000000,290.700000,0.000000 --3.0,0.000000,291.600000,0.000000 --3.0,0.000000,292.500000,0.000000 --3.0,0.000000,293.400000,0.000000 --3.0,0.000000,294.300000,0.000000 --3.0,0.000000,295.200000,0.000000 --3.0,0.000000,296.100000,0.000000 --3.0,0.000000,297.000000,0.000000 --3.0,0.000000,297.900000,0.000000 --3.0,0.000000,298.800000,0.000000 --3.0,0.000000,299.700000,0.000000 --3.0,0.000000,300.600000,0.000000 --3.0,0.000000,301.500000,0.000000 --3.0,0.000000,302.400000,0.000000 --3.0,0.000000,303.300000,0.000000 --3.0,0.000000,304.200000,0.000000 --3.0,0.000000,305.100000,0.000000 --3.0,0.000000,306.000000,0.000000 --3.0,0.000000,306.900000,0.000000 --3.0,0.000000,307.800000,0.000000 --3.0,0.000000,308.700000,0.000000 --3.0,0.000000,309.600000,0.000000 --3.0,0.000000,310.500000,0.000000 --3.0,0.000000,311.400000,0.000000 --3.0,0.000000,312.300000,0.000000 --3.0,0.000000,313.200000,0.000000 --3.0,0.000000,314.100000,0.000000 --3.0,0.000000,315.000000,0.000000 --3.0,0.000000,315.900000,0.000000 --3.0,0.000000,316.800000,0.000000 --3.0,0.000000,317.700000,0.000000 --3.0,0.000000,318.600000,0.000000 --3.0,0.000000,319.500000,0.000000 --3.0,0.000000,320.400000,0.000000 --3.0,0.000000,321.300000,0.000000 --3.0,0.000000,322.200000,0.000000 --3.0,0.000000,323.100000,0.000000 --3.0,0.000000,324.000000,0.000000 --3.0,0.000000,324.900000,0.000000 --3.0,0.000000,325.800000,0.000000 --3.0,0.000000,326.700000,0.000000 --3.0,0.000000,327.600000,0.000000 --3.0,0.000000,328.500000,0.000000 --3.0,0.000000,329.400000,0.000000 --3.0,0.000000,330.300000,0.000000 --3.0,0.000000,331.200000,0.000000 --3.0,0.000000,332.100000,0.000000 --3.0,0.000000,333.000000,0.000000 --3.0,0.000000,333.900000,0.000000 --3.0,0.000000,334.800000,0.000000 --3.0,0.000000,335.700000,0.000000 --3.0,0.000000,336.600000,0.000000 --3.0,0.000000,337.500000,0.000000 --3.0,0.000000,338.400000,0.000000 --3.0,0.000000,339.300000,0.000000 --3.0,0.000000,340.200000,0.000000 --3.0,0.000000,341.100000,0.000000 --3.0,0.000000,342.000000,0.000000 --3.0,0.000000,342.900000,0.000000 --3.0,0.000000,343.800000,0.000000 --3.0,0.000000,344.700000,0.000000 --3.0,0.000000,345.600000,0.000000 --3.0,0.000000,346.500000,0.000000 --3.0,0.000000,347.400000,0.000000 --3.0,0.000000,348.300000,0.000000 --3.0,0.000000,349.200000,0.000000 --3.0,0.000000,350.100000,0.000000 --3.0,0.000000,351.000000,0.000000 --3.0,0.000000,351.900000,0.000000 --3.0,0.000000,352.800000,0.000000 --3.0,0.000000,353.700000,0.000000 --3.0,0.000000,354.600000,0.000000 --3.0,0.000000,355.500000,0.000000 --3.0,0.000000,356.400000,0.000000 --3.0,0.000000,357.300000,0.000000 --3.0,0.000000,358.200000,0.000000 --3.0,0.000000,359.100000,0.000000 --3.0,90.000000,0.000000,-360.000000 --3.0,90.000000,0.000000,-359.100000 --3.0,90.000000,0.000000,-358.200000 --3.0,90.000000,0.000000,-357.300000 --3.0,90.000000,0.000000,-356.400000 --3.0,90.000000,0.000000,-355.500000 --3.0,90.000000,0.000000,-354.600000 --3.0,90.000000,0.000000,-353.700000 --3.0,90.000000,0.000000,-352.800000 --3.0,90.000000,0.000000,-351.900000 --3.0,90.000000,0.000000,-351.000000 --3.0,90.000000,0.000000,-350.100000 --3.0,90.000000,0.000000,-349.200000 --3.0,90.000000,0.000000,-348.300000 --3.0,90.000000,0.000000,-347.400000 --3.0,90.000000,0.000000,-346.500000 --3.0,90.000000,0.000000,-345.600000 --3.0,90.000000,0.000000,-344.700000 --3.0,90.000000,0.000000,-343.800000 --3.0,90.000000,0.000000,-342.900000 --3.0,90.000000,0.000000,-342.000000 --3.0,90.000000,0.000000,-341.100000 --3.0,90.000000,0.000000,-340.200000 --3.0,90.000000,0.000000,-339.300000 --3.0,90.000000,0.000000,-338.400000 --3.0,90.000000,0.000000,-337.500000 --3.0,90.000000,0.000000,-336.600000 --3.0,90.000000,0.000000,-335.700000 --3.0,90.000000,0.000000,-334.800000 --3.0,90.000000,0.000000,-333.900000 --3.0,90.000000,0.000000,-333.000000 --3.0,90.000000,0.000000,-332.100000 --3.0,90.000000,0.000000,-331.200000 --3.0,90.000000,0.000000,-330.300000 --3.0,90.000000,0.000000,-329.400000 --3.0,90.000000,0.000000,-328.500000 --3.0,90.000000,0.000000,-327.600000 --3.0,90.000000,0.000000,-326.700000 --3.0,90.000000,0.000000,-325.800000 --3.0,90.000000,0.000000,-324.900000 --3.0,90.000000,0.000000,-324.000000 --3.0,90.000000,0.000000,-323.100000 --3.0,90.000000,0.000000,-322.200000 --3.0,90.000000,0.000000,-321.300000 --3.0,90.000000,0.000000,-320.400000 --3.0,90.000000,0.000000,-319.500000 --3.0,90.000000,0.000000,-318.600000 --3.0,90.000000,0.000000,-317.700000 --3.0,90.000000,0.000000,-316.800000 --3.0,90.000000,0.000000,-315.900000 --3.0,90.000000,0.000000,-315.000000 --3.0,90.000000,0.000000,-314.100000 --3.0,90.000000,0.000000,-313.200000 --3.0,90.000000,0.000000,-312.300000 --3.0,90.000000,0.000000,-311.400000 --3.0,90.000000,0.000000,-310.500000 --3.0,90.000000,0.000000,-309.600000 --3.0,90.000000,0.000000,-308.700000 --3.0,90.000000,0.000000,-307.800000 --3.0,90.000000,0.000000,-306.900000 --3.0,90.000000,0.000000,-306.000000 --3.0,90.000000,0.000000,-305.100000 --3.0,90.000000,0.000000,-304.200000 --3.0,90.000000,0.000000,-303.300000 --3.0,90.000000,0.000000,-302.400000 --3.0,90.000000,0.000000,-301.500000 --3.0,90.000000,0.000000,-300.600000 --3.0,90.000000,0.000000,-299.700000 --3.0,90.000000,0.000000,-298.800000 --3.0,90.000000,0.000000,-297.900000 --3.0,90.000000,0.000000,-297.000000 --3.0,90.000000,0.000000,-296.100000 --3.0,90.000000,0.000000,-295.200000 --3.0,90.000000,0.000000,-294.300000 --3.0,90.000000,0.000000,-293.400000 --3.0,90.000000,0.000000,-292.500000 --3.0,90.000000,0.000000,-291.600000 --3.0,90.000000,0.000000,-290.700000 --3.0,90.000000,0.000000,-289.800000 --3.0,90.000000,0.000000,-288.900000 --3.0,90.000000,0.000000,-288.000000 --3.0,90.000000,0.000000,-287.100000 --3.0,90.000000,0.000000,-286.200000 --3.0,90.000000,0.000000,-285.300000 --3.0,90.000000,0.000000,-284.400000 --3.0,90.000000,0.000000,-283.500000 --3.0,90.000000,0.000000,-282.600000 --3.0,90.000000,0.000000,-281.700000 --3.0,90.000000,0.000000,-280.800000 --3.0,90.000000,0.000000,-279.900000 --3.0,90.000000,0.000000,-279.000000 --3.0,90.000000,0.000000,-278.100000 --3.0,90.000000,0.000000,-277.200000 --3.0,90.000000,0.000000,-276.300000 --3.0,90.000000,0.000000,-275.400000 --3.0,90.000000,0.000000,-274.500000 --3.0,90.000000,0.000000,-273.600000 --3.0,90.000000,0.000000,-272.700000 --3.0,90.000000,0.000000,-271.800000 --3.0,90.000000,0.000000,-270.900000 --3.0,90.000000,0.000000,-270.000000 --3.0,90.000000,0.000000,-269.100000 --3.0,90.000000,0.000000,-268.200000 --3.0,90.000000,0.000000,-267.300000 --3.0,90.000000,0.000000,-266.400000 --3.0,90.000000,0.000000,-265.500000 --3.0,90.000000,0.000000,-264.600000 --3.0,90.000000,0.000000,-263.700000 --3.0,90.000000,0.000000,-262.800000 --3.0,90.000000,0.000000,-261.900000 --3.0,90.000000,0.000000,-261.000000 --3.0,90.000000,0.000000,-260.100000 --3.0,90.000000,0.000000,-259.200000 --3.0,90.000000,0.000000,-258.300000 --3.0,90.000000,0.000000,-257.400000 --3.0,90.000000,0.000000,-256.500000 --3.0,90.000000,0.000000,-255.600000 --3.0,90.000000,0.000000,-254.700000 --3.0,90.000000,0.000000,-253.800000 --3.0,90.000000,0.000000,-252.900000 --3.0,90.000000,0.000000,-252.000000 --3.0,90.000000,0.000000,-251.100000 --3.0,90.000000,0.000000,-250.200000 --3.0,90.000000,0.000000,-249.300000 --3.0,90.000000,0.000000,-248.400000 --3.0,90.000000,0.000000,-247.500000 --3.0,90.000000,0.000000,-246.600000 --3.0,90.000000,0.000000,-245.700000 --3.0,90.000000,0.000000,-244.800000 --3.0,90.000000,0.000000,-243.900000 --3.0,90.000000,0.000000,-243.000000 --3.0,90.000000,0.000000,-242.100000 --3.0,90.000000,0.000000,-241.200000 --3.0,90.000000,0.000000,-240.300000 --3.0,90.000000,0.000000,-239.400000 --3.0,90.000000,0.000000,-238.500000 --3.0,90.000000,0.000000,-237.600000 --3.0,90.000000,0.000000,-236.700000 --3.0,90.000000,0.000000,-235.800000 --3.0,90.000000,0.000000,-234.900000 --3.0,90.000000,0.000000,-234.000000 --3.0,90.000000,0.000000,-233.100000 --3.0,90.000000,0.000000,-232.200000 --3.0,90.000000,0.000000,-231.300000 --3.0,90.000000,0.000000,-230.400000 --3.0,90.000000,0.000000,-229.500000 --3.0,90.000000,0.000000,-228.600000 --3.0,90.000000,0.000000,-227.700000 --3.0,90.000000,0.000000,-226.800000 --3.0,90.000000,0.000000,-225.900000 --3.0,90.000000,0.000000,-225.000000 --3.0,90.000000,0.000000,-224.100000 --3.0,90.000000,0.000000,-223.200000 --3.0,90.000000,0.000000,-222.300000 --3.0,90.000000,0.000000,-221.400000 --3.0,90.000000,0.000000,-220.500000 --3.0,90.000000,0.000000,-219.600000 --3.0,90.000000,0.000000,-218.700000 --3.0,90.000000,0.000000,-217.800000 --3.0,90.000000,0.000000,-216.900000 --3.0,90.000000,0.000000,-216.000000 --3.0,90.000000,0.000000,-215.100000 --3.0,90.000000,0.000000,-214.200000 --3.0,90.000000,0.000000,-213.300000 --3.0,90.000000,0.000000,-212.400000 --3.0,90.000000,0.000000,-211.500000 --3.0,90.000000,0.000000,-210.600000 --3.0,90.000000,0.000000,-209.700000 --3.0,90.000000,0.000000,-208.800000 --3.0,90.000000,0.000000,-207.900000 --3.0,90.000000,0.000000,-207.000000 --3.0,90.000000,0.000000,-206.100000 --3.0,90.000000,0.000000,-205.200000 --3.0,90.000000,0.000000,-204.300000 --3.0,90.000000,0.000000,-203.400000 --3.0,90.000000,0.000000,-202.500000 --3.0,90.000000,0.000000,-201.600000 --3.0,90.000000,0.000000,-200.700000 --3.0,90.000000,0.000000,-199.800000 --3.0,90.000000,0.000000,-198.900000 --3.0,90.000000,0.000000,-198.000000 --3.0,90.000000,0.000000,-197.100000 --3.0,90.000000,0.000000,-196.200000 --3.0,90.000000,0.000000,-195.300000 --3.0,90.000000,0.000000,-194.400000 --3.0,90.000000,0.000000,-193.500000 --3.0,90.000000,0.000000,-192.600000 --3.0,90.000000,0.000000,-191.700000 --3.0,90.000000,0.000000,-190.800000 --3.0,90.000000,0.000000,-189.900000 --3.0,90.000000,0.000000,-189.000000 --3.0,90.000000,0.000000,-188.100000 --3.0,90.000000,0.000000,-187.200000 --3.0,90.000000,0.000000,-186.300000 --3.0,90.000000,0.000000,-185.400000 --3.0,90.000000,0.000000,-184.500000 --3.0,90.000000,0.000000,-183.600000 --3.0,90.000000,0.000000,-182.700000 --3.0,90.000000,0.000000,-181.800000 --3.0,90.000000,0.000000,-180.900000 --3.0,90.000000,0.000000,-180.000000 --3.0,90.000000,0.000000,-179.100000 --3.0,90.000000,0.000000,-178.200000 --3.0,90.000000,0.000000,-177.300000 --3.0,90.000000,0.000000,-176.400000 --3.0,90.000000,0.000000,-175.500000 --3.0,90.000000,0.000000,-174.600000 --3.0,90.000000,0.000000,-173.700000 --3.0,90.000000,0.000000,-172.800000 --3.0,90.000000,0.000000,-171.900000 --3.0,90.000000,0.000000,-171.000000 --3.0,90.000000,0.000000,-170.100000 --3.0,90.000000,0.000000,-169.200000 --3.0,90.000000,0.000000,-168.300000 --3.0,90.000000,0.000000,-167.400000 --3.0,90.000000,0.000000,-166.500000 --3.0,90.000000,0.000000,-165.600000 --3.0,90.000000,0.000000,-164.700000 --3.0,90.000000,0.000000,-163.800000 --3.0,90.000000,0.000000,-162.900000 --3.0,90.000000,0.000000,-162.000000 --3.0,90.000000,0.000000,-161.100000 --3.0,90.000000,0.000000,-160.200000 --3.0,90.000000,0.000000,-159.300000 --3.0,90.000000,0.000000,-158.400000 --3.0,90.000000,0.000000,-157.500000 --3.0,90.000000,0.000000,-156.600000 --3.0,90.000000,0.000000,-155.700000 --3.0,90.000000,0.000000,-154.800000 --3.0,90.000000,0.000000,-153.900000 --3.0,90.000000,0.000000,-153.000000 --3.0,90.000000,0.000000,-152.100000 --3.0,90.000000,0.000000,-151.200000 --3.0,90.000000,0.000000,-150.300000 --3.0,90.000000,0.000000,-149.400000 --3.0,90.000000,0.000000,-148.500000 --3.0,90.000000,0.000000,-147.600000 --3.0,90.000000,0.000000,-146.700000 --3.0,90.000000,0.000000,-145.800000 --3.0,90.000000,0.000000,-144.900000 --3.0,90.000000,0.000000,-144.000000 --3.0,90.000000,0.000000,-143.100000 --3.0,90.000000,0.000000,-142.200000 --3.0,90.000000,0.000000,-141.300000 --3.0,90.000000,0.000000,-140.400000 --3.0,90.000000,0.000000,-139.500000 --3.0,90.000000,0.000000,-138.600000 --3.0,90.000000,0.000000,-137.700000 --3.0,90.000000,0.000000,-136.800000 --3.0,90.000000,0.000000,-135.900000 --3.0,90.000000,0.000000,-135.000000 --3.0,90.000000,0.000000,-134.100000 --3.0,90.000000,0.000000,-133.200000 --3.0,90.000000,0.000000,-132.300000 --3.0,90.000000,0.000000,-131.400000 --3.0,90.000000,0.000000,-130.500000 --3.0,90.000000,0.000000,-129.600000 --3.0,90.000000,0.000000,-128.700000 --3.0,90.000000,0.000000,-127.800000 --3.0,90.000000,0.000000,-126.900000 --3.0,90.000000,0.000000,-126.000000 --3.0,90.000000,0.000000,-125.100000 --3.0,90.000000,0.000000,-124.200000 --3.0,90.000000,0.000000,-123.300000 --3.0,90.000000,0.000000,-122.400000 --3.0,90.000000,0.000000,-121.500000 --3.0,90.000000,0.000000,-120.600000 --3.0,90.000000,0.000000,-119.700000 --3.0,90.000000,0.000000,-118.800000 --3.0,90.000000,0.000000,-117.900000 --3.0,90.000000,0.000000,-117.000000 --3.0,90.000000,0.000000,-116.100000 --3.0,90.000000,0.000000,-115.200000 --3.0,90.000000,0.000000,-114.300000 --3.0,90.000000,0.000000,-113.400000 --3.0,90.000000,0.000000,-112.500000 --3.0,90.000000,0.000000,-111.600000 --3.0,90.000000,0.000000,-110.700000 --3.0,90.000000,0.000000,-109.800000 --3.0,90.000000,0.000000,-108.900000 --3.0,90.000000,0.000000,-108.000000 --3.0,90.000000,0.000000,-107.100000 --3.0,90.000000,0.000000,-106.200000 --3.0,90.000000,0.000000,-105.300000 --3.0,90.000000,0.000000,-104.400000 --3.0,90.000000,0.000000,-103.500000 --3.0,90.000000,0.000000,-102.600000 --3.0,90.000000,0.000000,-101.700000 --3.0,90.000000,0.000000,-100.800000 --3.0,90.000000,0.000000,-99.900000 --3.0,90.000000,0.000000,-99.000000 --3.0,90.000000,0.000000,-98.100000 --3.0,90.000000,0.000000,-97.200000 --3.0,90.000000,0.000000,-96.300000 --3.0,90.000000,0.000000,-95.400000 --3.0,90.000000,0.000000,-94.500000 --3.0,90.000000,0.000000,-93.600000 --3.0,90.000000,0.000000,-92.700000 --3.0,90.000000,0.000000,-91.800000 --3.0,90.000000,0.000000,-90.900000 --3.0,90.000000,0.000000,-90.000000 --3.0,90.000000,0.000000,-89.100000 --3.0,90.000000,0.000000,-88.200000 --3.0,90.000000,0.000000,-87.300000 --3.0,90.000000,0.000000,-86.400000 --3.0,90.000000,0.000000,-85.500000 --3.0,90.000000,0.000000,-84.600000 --3.0,90.000000,0.000000,-83.700000 --3.0,90.000000,0.000000,-82.800000 --3.0,90.000000,0.000000,-81.900000 --3.0,90.000000,0.000000,-81.000000 --3.0,90.000000,0.000000,-80.100000 --3.0,90.000000,0.000000,-79.200000 --3.0,90.000000,0.000000,-78.300000 --3.0,90.000000,0.000000,-77.400000 --3.0,90.000000,0.000000,-76.500000 --3.0,90.000000,0.000000,-75.600000 --3.0,90.000000,0.000000,-74.700000 --3.0,90.000000,0.000000,-73.800000 --3.0,90.000000,0.000000,-72.900000 --3.0,90.000000,0.000000,-72.000000 --3.0,90.000000,0.000000,-71.100000 --3.0,90.000000,0.000000,-70.200000 --3.0,90.000000,0.000000,-69.300000 --3.0,90.000000,0.000000,-68.400000 --3.0,90.000000,0.000000,-67.500000 --3.0,90.000000,0.000000,-66.600000 --3.0,90.000000,0.000000,-65.700000 --3.0,90.000000,0.000000,-64.800000 --3.0,90.000000,0.000000,-63.900000 --3.0,90.000000,0.000000,-63.000000 --3.0,90.000000,0.000000,-62.100000 --3.0,90.000000,0.000000,-61.200000 --3.0,90.000000,0.000000,-60.300000 --3.0,90.000000,0.000000,-59.400000 --3.0,90.000000,0.000000,-58.500000 --3.0,90.000000,0.000000,-57.600000 --3.0,90.000000,0.000000,-56.700000 --3.0,90.000000,0.000000,-55.800000 --3.0,90.000000,0.000000,-54.900000 --3.0,90.000000,0.000000,-54.000000 --3.0,90.000000,0.000000,-53.100000 --3.0,90.000000,0.000000,-52.200000 --3.0,90.000000,0.000000,-51.300000 --3.0,90.000000,0.000000,-50.400000 --3.0,90.000000,0.000000,-49.500000 --3.0,90.000000,0.000000,-48.600000 --3.0,90.000000,0.000000,-47.700000 --3.0,90.000000,0.000000,-46.800000 --3.0,90.000000,0.000000,-45.900000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-44.100000 --3.0,90.000000,0.000000,-43.200000 --3.0,90.000000,0.000000,-42.300000 --3.0,90.000000,0.000000,-41.400000 --3.0,90.000000,0.000000,-40.500000 --3.0,90.000000,0.000000,-39.600000 --3.0,90.000000,0.000000,-38.700000 --3.0,90.000000,0.000000,-37.800000 --3.0,90.000000,0.000000,-36.900000 --3.0,90.000000,0.000000,-36.000000 --3.0,90.000000,0.000000,-35.100000 --3.0,90.000000,0.000000,-34.200000 --3.0,90.000000,0.000000,-33.300000 --3.0,90.000000,0.000000,-32.400000 --3.0,90.000000,0.000000,-31.500000 --3.0,90.000000,0.000000,-30.600000 --3.0,90.000000,0.000000,-29.700000 --3.0,90.000000,0.000000,-28.800000 --3.0,90.000000,0.000000,-27.900000 --3.0,90.000000,0.000000,-27.000000 --3.0,90.000000,0.000000,-26.100000 --3.0,90.000000,0.000000,-25.200000 --3.0,90.000000,0.000000,-24.300000 --3.0,90.000000,0.000000,-23.400000 --3.0,90.000000,0.000000,-22.500000 --3.0,90.000000,0.000000,-21.600000 --3.0,90.000000,0.000000,-20.700000 --3.0,90.000000,0.000000,-19.800000 --3.0,90.000000,0.000000,-18.900000 --3.0,90.000000,0.000000,-18.000000 --3.0,90.000000,0.000000,-17.100000 --3.0,90.000000,0.000000,-16.200000 --3.0,90.000000,0.000000,-15.300000 --3.0,90.000000,0.000000,-14.400000 --3.0,90.000000,0.000000,-13.500000 --3.0,90.000000,0.000000,-12.600000 --3.0,90.000000,0.000000,-11.700000 --3.0,90.000000,0.000000,-10.800000 --3.0,90.000000,0.000000,-9.900000 --3.0,90.000000,0.000000,-9.000000 --3.0,90.000000,0.000000,-8.100000 --3.0,90.000000,0.000000,-7.200000 --3.0,90.000000,0.000000,-6.300000 --3.0,90.000000,0.000000,-5.400000 --3.0,90.000000,0.000000,-4.500000 --3.0,90.000000,0.000000,-3.600000 --3.0,90.000000,0.000000,-2.700000 --3.0,90.000000,0.000000,-1.800000 --3.0,90.000000,0.000000,-0.900000 --3.0,90.000000,0.000000,0.000000 --3.0,90.000000,0.000000,0.900000 --3.0,90.000000,0.000000,1.800000 --3.0,90.000000,0.000000,2.700000 --3.0,90.000000,0.000000,3.600000 --3.0,90.000000,0.000000,4.500000 --3.0,90.000000,0.000000,5.400000 --3.0,90.000000,0.000000,6.300000 --3.0,90.000000,0.000000,7.200000 --3.0,90.000000,0.000000,8.100000 --3.0,90.000000,0.000000,9.000000 --3.0,90.000000,0.000000,9.900000 --3.0,90.000000,0.000000,10.800000 --3.0,90.000000,0.000000,11.700000 --3.0,90.000000,0.000000,12.600000 --3.0,90.000000,0.000000,13.500000 --3.0,90.000000,0.000000,14.400000 --3.0,90.000000,0.000000,15.300000 --3.0,90.000000,0.000000,16.200000 --3.0,90.000000,0.000000,17.100000 --3.0,90.000000,0.000000,18.000000 --3.0,90.000000,0.000000,18.900000 --3.0,90.000000,0.000000,19.800000 --3.0,90.000000,0.000000,20.700000 --3.0,90.000000,0.000000,21.600000 --3.0,90.000000,0.000000,22.500000 --3.0,90.000000,0.000000,23.400000 --3.0,90.000000,0.000000,24.300000 --3.0,90.000000,0.000000,25.200000 --3.0,90.000000,0.000000,26.100000 --3.0,90.000000,0.000000,27.000000 --3.0,90.000000,0.000000,27.900000 --3.0,90.000000,0.000000,28.800000 --3.0,90.000000,0.000000,29.700000 --3.0,90.000000,0.000000,30.600000 --3.0,90.000000,0.000000,31.500000 --3.0,90.000000,0.000000,32.400000 --3.0,90.000000,0.000000,33.300000 --3.0,90.000000,0.000000,34.200000 --3.0,90.000000,0.000000,35.100000 --3.0,90.000000,0.000000,36.000000 --3.0,90.000000,0.000000,36.900000 --3.0,90.000000,0.000000,37.800000 --3.0,90.000000,0.000000,38.700000 --3.0,90.000000,0.000000,39.600000 --3.0,90.000000,0.000000,40.500000 --3.0,90.000000,0.000000,41.400000 --3.0,90.000000,0.000000,42.300000 --3.0,90.000000,0.000000,43.200000 --3.0,90.000000,0.000000,44.100000 --3.0,90.000000,0.000000,45.000000 --3.0,90.000000,0.000000,45.900000 --3.0,90.000000,0.000000,46.800000 --3.0,90.000000,0.000000,47.700000 --3.0,90.000000,0.000000,48.600000 --3.0,90.000000,0.000000,49.500000 --3.0,90.000000,0.000000,50.400000 --3.0,90.000000,0.000000,51.300000 --3.0,90.000000,0.000000,52.200000 --3.0,90.000000,0.000000,53.100000 --3.0,90.000000,0.000000,54.000000 --3.0,90.000000,0.000000,54.900000 --3.0,90.000000,0.000000,55.800000 --3.0,90.000000,0.000000,56.700000 --3.0,90.000000,0.000000,57.600000 --3.0,90.000000,0.000000,58.500000 --3.0,90.000000,0.000000,59.400000 --3.0,90.000000,0.000000,60.300000 --3.0,90.000000,0.000000,61.200000 --3.0,90.000000,0.000000,62.100000 --3.0,90.000000,0.000000,63.000000 --3.0,90.000000,0.000000,63.900000 --3.0,90.000000,0.000000,64.800000 --3.0,90.000000,0.000000,65.700000 --3.0,90.000000,0.000000,66.600000 --3.0,90.000000,0.000000,67.500000 --3.0,90.000000,0.000000,68.400000 --3.0,90.000000,0.000000,69.300000 --3.0,90.000000,0.000000,70.200000 --3.0,90.000000,0.000000,71.100000 --3.0,90.000000,0.000000,72.000000 --3.0,90.000000,0.000000,72.900000 --3.0,90.000000,0.000000,73.800000 --3.0,90.000000,0.000000,74.700000 --3.0,90.000000,0.000000,75.600000 --3.0,90.000000,0.000000,76.500000 --3.0,90.000000,0.000000,77.400000 --3.0,90.000000,0.000000,78.300000 --3.0,90.000000,0.000000,79.200000 --3.0,90.000000,0.000000,80.100000 --3.0,90.000000,0.000000,81.000000 --3.0,90.000000,0.000000,81.900000 --3.0,90.000000,0.000000,82.800000 --3.0,90.000000,0.000000,83.700000 --3.0,90.000000,0.000000,84.600000 --3.0,90.000000,0.000000,85.500000 --3.0,90.000000,0.000000,86.400000 --3.0,90.000000,0.000000,87.300000 --3.0,90.000000,0.000000,88.200000 --3.0,90.000000,0.000000,89.100000 --3.0,90.000000,0.000000,90.000000 --3.0,90.000000,0.000000,90.900000 --3.0,90.000000,0.000000,91.800000 --3.0,90.000000,0.000000,92.700000 --3.0,90.000000,0.000000,93.600000 --3.0,90.000000,0.000000,94.500000 --3.0,90.000000,0.000000,95.400000 --3.0,90.000000,0.000000,96.300000 --3.0,90.000000,0.000000,97.200000 --3.0,90.000000,0.000000,98.100000 --3.0,90.000000,0.000000,99.000000 --3.0,90.000000,0.000000,99.900000 --3.0,90.000000,0.000000,100.800000 --3.0,90.000000,0.000000,101.700000 --3.0,90.000000,0.000000,102.600000 --3.0,90.000000,0.000000,103.500000 --3.0,90.000000,0.000000,104.400000 --3.0,90.000000,0.000000,105.300000 --3.0,90.000000,0.000000,106.200000 --3.0,90.000000,0.000000,107.100000 --3.0,90.000000,0.000000,108.000000 --3.0,90.000000,0.000000,108.900000 --3.0,90.000000,0.000000,109.800000 --3.0,90.000000,0.000000,110.700000 --3.0,90.000000,0.000000,111.600000 --3.0,90.000000,0.000000,112.500000 --3.0,90.000000,0.000000,113.400000 --3.0,90.000000,0.000000,114.300000 --3.0,90.000000,0.000000,115.200000 --3.0,90.000000,0.000000,116.100000 --3.0,90.000000,0.000000,117.000000 --3.0,90.000000,0.000000,117.900000 --3.0,90.000000,0.000000,118.800000 --3.0,90.000000,0.000000,119.700000 --3.0,90.000000,0.000000,120.600000 --3.0,90.000000,0.000000,121.500000 --3.0,90.000000,0.000000,122.400000 --3.0,90.000000,0.000000,123.300000 --3.0,90.000000,0.000000,124.200000 --3.0,90.000000,0.000000,125.100000 --3.0,90.000000,0.000000,126.000000 --3.0,90.000000,0.000000,126.900000 --3.0,90.000000,0.000000,127.800000 --3.0,90.000000,0.000000,128.700000 --3.0,90.000000,0.000000,129.600000 --3.0,90.000000,0.000000,130.500000 --3.0,90.000000,0.000000,131.400000 --3.0,90.000000,0.000000,132.300000 --3.0,90.000000,0.000000,133.200000 --3.0,90.000000,0.000000,134.100000 --3.0,90.000000,0.000000,135.000000 --3.0,90.000000,0.000000,135.900000 --3.0,90.000000,0.000000,136.800000 --3.0,90.000000,0.000000,137.700000 --3.0,90.000000,0.000000,138.600000 --3.0,90.000000,0.000000,139.500000 --3.0,90.000000,0.000000,140.400000 --3.0,90.000000,0.000000,141.300000 --3.0,90.000000,0.000000,142.200000 --3.0,90.000000,0.000000,143.100000 --3.0,90.000000,0.000000,144.000000 --3.0,90.000000,0.000000,144.900000 --3.0,90.000000,0.000000,145.800000 --3.0,90.000000,0.000000,146.700000 --3.0,90.000000,0.000000,147.600000 --3.0,90.000000,0.000000,148.500000 --3.0,90.000000,0.000000,149.400000 --3.0,90.000000,0.000000,150.300000 --3.0,90.000000,0.000000,151.200000 --3.0,90.000000,0.000000,152.100000 --3.0,90.000000,0.000000,153.000000 --3.0,90.000000,0.000000,153.900000 --3.0,90.000000,0.000000,154.800000 --3.0,90.000000,0.000000,155.700000 --3.0,90.000000,0.000000,156.600000 --3.0,90.000000,0.000000,157.500000 --3.0,90.000000,0.000000,158.400000 --3.0,90.000000,0.000000,159.300000 --3.0,90.000000,0.000000,160.200000 --3.0,90.000000,0.000000,161.100000 --3.0,90.000000,0.000000,162.000000 --3.0,90.000000,0.000000,162.900000 --3.0,90.000000,0.000000,163.800000 --3.0,90.000000,0.000000,164.700000 --3.0,90.000000,0.000000,165.600000 --3.0,90.000000,0.000000,166.500000 --3.0,90.000000,0.000000,167.400000 --3.0,90.000000,0.000000,168.300000 --3.0,90.000000,0.000000,169.200000 --3.0,90.000000,0.000000,170.100000 --3.0,90.000000,0.000000,171.000000 --3.0,90.000000,0.000000,171.900000 --3.0,90.000000,0.000000,172.800000 --3.0,90.000000,0.000000,173.700000 --3.0,90.000000,0.000000,174.600000 --3.0,90.000000,0.000000,175.500000 --3.0,90.000000,0.000000,176.400000 --3.0,90.000000,0.000000,177.300000 --3.0,90.000000,0.000000,178.200000 --3.0,90.000000,0.000000,179.100000 --3.0,90.000000,0.000000,180.000000 --3.0,90.000000,0.000000,180.900000 --3.0,90.000000,0.000000,181.800000 --3.0,90.000000,0.000000,182.700000 --3.0,90.000000,0.000000,183.600000 --3.0,90.000000,0.000000,184.500000 --3.0,90.000000,0.000000,185.400000 --3.0,90.000000,0.000000,186.300000 --3.0,90.000000,0.000000,187.200000 --3.0,90.000000,0.000000,188.100000 --3.0,90.000000,0.000000,189.000000 --3.0,90.000000,0.000000,189.900000 --3.0,90.000000,0.000000,190.800000 --3.0,90.000000,0.000000,191.700000 --3.0,90.000000,0.000000,192.600000 --3.0,90.000000,0.000000,193.500000 --3.0,90.000000,0.000000,194.400000 --3.0,90.000000,0.000000,195.300000 --3.0,90.000000,0.000000,196.200000 --3.0,90.000000,0.000000,197.100000 --3.0,90.000000,0.000000,198.000000 --3.0,90.000000,0.000000,198.900000 --3.0,90.000000,0.000000,199.800000 --3.0,90.000000,0.000000,200.700000 --3.0,90.000000,0.000000,201.600000 --3.0,90.000000,0.000000,202.500000 --3.0,90.000000,0.000000,203.400000 --3.0,90.000000,0.000000,204.300000 --3.0,90.000000,0.000000,205.200000 --3.0,90.000000,0.000000,206.100000 --3.0,90.000000,0.000000,207.000000 --3.0,90.000000,0.000000,207.900000 --3.0,90.000000,0.000000,208.800000 --3.0,90.000000,0.000000,209.700000 --3.0,90.000000,0.000000,210.600000 --3.0,90.000000,0.000000,211.500000 --3.0,90.000000,0.000000,212.400000 --3.0,90.000000,0.000000,213.300000 --3.0,90.000000,0.000000,214.200000 --3.0,90.000000,0.000000,215.100000 --3.0,90.000000,0.000000,216.000000 --3.0,90.000000,0.000000,216.900000 --3.0,90.000000,0.000000,217.800000 --3.0,90.000000,0.000000,218.700000 --3.0,90.000000,0.000000,219.600000 --3.0,90.000000,0.000000,220.500000 --3.0,90.000000,0.000000,221.400000 --3.0,90.000000,0.000000,222.300000 --3.0,90.000000,0.000000,223.200000 --3.0,90.000000,0.000000,224.100000 --3.0,90.000000,0.000000,225.000000 --3.0,90.000000,0.000000,225.900000 --3.0,90.000000,0.000000,226.800000 --3.0,90.000000,0.000000,227.700000 --3.0,90.000000,0.000000,228.600000 --3.0,90.000000,0.000000,229.500000 --3.0,90.000000,0.000000,230.400000 --3.0,90.000000,0.000000,231.300000 --3.0,90.000000,0.000000,232.200000 --3.0,90.000000,0.000000,233.100000 --3.0,90.000000,0.000000,234.000000 --3.0,90.000000,0.000000,234.900000 --3.0,90.000000,0.000000,235.800000 --3.0,90.000000,0.000000,236.700000 --3.0,90.000000,0.000000,237.600000 --3.0,90.000000,0.000000,238.500000 --3.0,90.000000,0.000000,239.400000 --3.0,90.000000,0.000000,240.300000 --3.0,90.000000,0.000000,241.200000 --3.0,90.000000,0.000000,242.100000 --3.0,90.000000,0.000000,243.000000 --3.0,90.000000,0.000000,243.900000 --3.0,90.000000,0.000000,244.800000 --3.0,90.000000,0.000000,245.700000 --3.0,90.000000,0.000000,246.600000 --3.0,90.000000,0.000000,247.500000 --3.0,90.000000,0.000000,248.400000 --3.0,90.000000,0.000000,249.300000 --3.0,90.000000,0.000000,250.200000 --3.0,90.000000,0.000000,251.100000 --3.0,90.000000,0.000000,252.000000 --3.0,90.000000,0.000000,252.900000 --3.0,90.000000,0.000000,253.800000 --3.0,90.000000,0.000000,254.700000 --3.0,90.000000,0.000000,255.600000 --3.0,90.000000,0.000000,256.500000 --3.0,90.000000,0.000000,257.400000 --3.0,90.000000,0.000000,258.300000 --3.0,90.000000,0.000000,259.200000 --3.0,90.000000,0.000000,260.100000 --3.0,90.000000,0.000000,261.000000 --3.0,90.000000,0.000000,261.900000 --3.0,90.000000,0.000000,262.800000 --3.0,90.000000,0.000000,263.700000 --3.0,90.000000,0.000000,264.600000 --3.0,90.000000,0.000000,265.500000 --3.0,90.000000,0.000000,266.400000 --3.0,90.000000,0.000000,267.300000 --3.0,90.000000,0.000000,268.200000 --3.0,90.000000,0.000000,269.100000 --3.0,90.000000,0.000000,270.000000 --3.0,90.000000,0.000000,270.900000 --3.0,90.000000,0.000000,271.800000 --3.0,90.000000,0.000000,272.700000 --3.0,90.000000,0.000000,273.600000 --3.0,90.000000,0.000000,274.500000 --3.0,90.000000,0.000000,275.400000 --3.0,90.000000,0.000000,276.300000 --3.0,90.000000,0.000000,277.200000 --3.0,90.000000,0.000000,278.100000 --3.0,90.000000,0.000000,279.000000 --3.0,90.000000,0.000000,279.900000 --3.0,90.000000,0.000000,280.800000 --3.0,90.000000,0.000000,281.700000 --3.0,90.000000,0.000000,282.600000 --3.0,90.000000,0.000000,283.500000 --3.0,90.000000,0.000000,284.400000 --3.0,90.000000,0.000000,285.300000 --3.0,90.000000,0.000000,286.200000 --3.0,90.000000,0.000000,287.100000 --3.0,90.000000,0.000000,288.000000 --3.0,90.000000,0.000000,288.900000 --3.0,90.000000,0.000000,289.800000 --3.0,90.000000,0.000000,290.700000 --3.0,90.000000,0.000000,291.600000 --3.0,90.000000,0.000000,292.500000 --3.0,90.000000,0.000000,293.400000 --3.0,90.000000,0.000000,294.300000 --3.0,90.000000,0.000000,295.200000 --3.0,90.000000,0.000000,296.100000 --3.0,90.000000,0.000000,297.000000 --3.0,90.000000,0.000000,297.900000 --3.0,90.000000,0.000000,298.800000 --3.0,90.000000,0.000000,299.700000 --3.0,90.000000,0.000000,300.600000 --3.0,90.000000,0.000000,301.500000 --3.0,90.000000,0.000000,302.400000 --3.0,90.000000,0.000000,303.300000 --3.0,90.000000,0.000000,304.200000 --3.0,90.000000,0.000000,305.100000 --3.0,90.000000,0.000000,306.000000 --3.0,90.000000,0.000000,306.900000 --3.0,90.000000,0.000000,307.800000 --3.0,90.000000,0.000000,308.700000 --3.0,90.000000,0.000000,309.600000 --3.0,90.000000,0.000000,310.500000 --3.0,90.000000,0.000000,311.400000 --3.0,90.000000,0.000000,312.300000 --3.0,90.000000,0.000000,313.200000 --3.0,90.000000,0.000000,314.100000 --3.0,90.000000,0.000000,315.000000 --3.0,90.000000,0.000000,315.900000 --3.0,90.000000,0.000000,316.800000 --3.0,90.000000,0.000000,317.700000 --3.0,90.000000,0.000000,318.600000 --3.0,90.000000,0.000000,319.500000 --3.0,90.000000,0.000000,320.400000 --3.0,90.000000,0.000000,321.300000 --3.0,90.000000,0.000000,322.200000 --3.0,90.000000,0.000000,323.100000 --3.0,90.000000,0.000000,324.000000 --3.0,90.000000,0.000000,324.900000 --3.0,90.000000,0.000000,325.800000 --3.0,90.000000,0.000000,326.700000 --3.0,90.000000,0.000000,327.600000 --3.0,90.000000,0.000000,328.500000 --3.0,90.000000,0.000000,329.400000 --3.0,90.000000,0.000000,330.300000 --3.0,90.000000,0.000000,331.200000 --3.0,90.000000,0.000000,332.100000 --3.0,90.000000,0.000000,333.000000 --3.0,90.000000,0.000000,333.900000 --3.0,90.000000,0.000000,334.800000 --3.0,90.000000,0.000000,335.700000 --3.0,90.000000,0.000000,336.600000 --3.0,90.000000,0.000000,337.500000 --3.0,90.000000,0.000000,338.400000 --3.0,90.000000,0.000000,339.300000 --3.0,90.000000,0.000000,340.200000 --3.0,90.000000,0.000000,341.100000 --3.0,90.000000,0.000000,342.000000 --3.0,90.000000,0.000000,342.900000 --3.0,90.000000,0.000000,343.800000 --3.0,90.000000,0.000000,344.700000 --3.0,90.000000,0.000000,345.600000 --3.0,90.000000,0.000000,346.500000 --3.0,90.000000,0.000000,347.400000 --3.0,90.000000,0.000000,348.300000 --3.0,90.000000,0.000000,349.200000 --3.0,90.000000,0.000000,350.100000 --3.0,90.000000,0.000000,351.000000 --3.0,90.000000,0.000000,351.900000 --3.0,90.000000,0.000000,352.800000 --3.0,90.000000,0.000000,353.700000 --3.0,90.000000,0.000000,354.600000 --3.0,90.000000,0.000000,355.500000 --3.0,90.000000,0.000000,356.400000 --3.0,90.000000,0.000000,357.300000 --3.0,90.000000,0.000000,358.200000 --3.0,90.000000,0.000000,359.100000 - diff --git a/scripts/trajectories/rotate_yaw_pitch_roll1_delayed.csv b/scripts/trajectories/rotate_yaw_pitch_roll1_delayed.csv deleted file mode 100644 index 86c7a77bf8ea8d894501a08437ae2c3a5dc9dfff..0000000000000000000000000000000000000000 --- a/scripts/trajectories/rotate_yaw_pitch_roll1_delayed.csv +++ /dev/null @@ -1,2421 +0,0 @@ --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-360.000000,0.000000,0.000000 --3.0,-359.100000,0.000000,0.000000 --3.0,-358.200000,0.000000,0.000000 --3.0,-357.300000,0.000000,0.000000 --3.0,-356.400000,0.000000,0.000000 --3.0,-355.500000,0.000000,0.000000 --3.0,-354.600000,0.000000,0.000000 --3.0,-353.700000,0.000000,0.000000 --3.0,-352.800000,0.000000,0.000000 --3.0,-351.900000,0.000000,0.000000 --3.0,-351.000000,0.000000,0.000000 --3.0,-350.100000,0.000000,0.000000 --3.0,-349.200000,0.000000,0.000000 --3.0,-348.300000,0.000000,0.000000 --3.0,-347.400000,0.000000,0.000000 --3.0,-346.500000,0.000000,0.000000 --3.0,-345.600000,0.000000,0.000000 --3.0,-344.700000,0.000000,0.000000 --3.0,-343.800000,0.000000,0.000000 --3.0,-342.900000,0.000000,0.000000 --3.0,-342.000000,0.000000,0.000000 --3.0,-341.100000,0.000000,0.000000 --3.0,-340.200000,0.000000,0.000000 --3.0,-339.300000,0.000000,0.000000 --3.0,-338.400000,0.000000,0.000000 --3.0,-337.500000,0.000000,0.000000 --3.0,-336.600000,0.000000,0.000000 --3.0,-335.700000,0.000000,0.000000 --3.0,-334.800000,0.000000,0.000000 --3.0,-333.900000,0.000000,0.000000 --3.0,-333.000000,0.000000,0.000000 --3.0,-332.100000,0.000000,0.000000 --3.0,-331.200000,0.000000,0.000000 --3.0,-330.300000,0.000000,0.000000 --3.0,-329.400000,0.000000,0.000000 --3.0,-328.500000,0.000000,0.000000 --3.0,-327.600000,0.000000,0.000000 --3.0,-326.700000,0.000000,0.000000 --3.0,-325.800000,0.000000,0.000000 --3.0,-324.900000,0.000000,0.000000 --3.0,-324.000000,0.000000,0.000000 --3.0,-323.100000,0.000000,0.000000 --3.0,-322.200000,0.000000,0.000000 --3.0,-321.300000,0.000000,0.000000 --3.0,-320.400000,0.000000,0.000000 --3.0,-319.500000,0.000000,0.000000 --3.0,-318.600000,0.000000,0.000000 --3.0,-317.700000,0.000000,0.000000 --3.0,-316.800000,0.000000,0.000000 --3.0,-315.900000,0.000000,0.000000 --3.0,-315.000000,0.000000,0.000000 --3.0,-314.100000,0.000000,0.000000 --3.0,-313.200000,0.000000,0.000000 --3.0,-312.300000,0.000000,0.000000 --3.0,-311.400000,0.000000,0.000000 --3.0,-310.500000,0.000000,0.000000 --3.0,-309.600000,0.000000,0.000000 --3.0,-308.700000,0.000000,0.000000 --3.0,-307.800000,0.000000,0.000000 --3.0,-306.900000,0.000000,0.000000 --3.0,-306.000000,0.000000,0.000000 --3.0,-305.100000,0.000000,0.000000 --3.0,-304.200000,0.000000,0.000000 --3.0,-303.300000,0.000000,0.000000 --3.0,-302.400000,0.000000,0.000000 --3.0,-301.500000,0.000000,0.000000 --3.0,-300.600000,0.000000,0.000000 --3.0,-299.700000,0.000000,0.000000 --3.0,-298.800000,0.000000,0.000000 --3.0,-297.900000,0.000000,0.000000 --3.0,-297.000000,0.000000,0.000000 --3.0,-296.100000,0.000000,0.000000 --3.0,-295.200000,0.000000,0.000000 --3.0,-294.300000,0.000000,0.000000 --3.0,-293.400000,0.000000,0.000000 --3.0,-292.500000,0.000000,0.000000 --3.0,-291.600000,0.000000,0.000000 --3.0,-290.700000,0.000000,0.000000 --3.0,-289.800000,0.000000,0.000000 --3.0,-288.900000,0.000000,0.000000 --3.0,-288.000000,0.000000,0.000000 --3.0,-287.100000,0.000000,0.000000 --3.0,-286.200000,0.000000,0.000000 --3.0,-285.300000,0.000000,0.000000 --3.0,-284.400000,0.000000,0.000000 --3.0,-283.500000,0.000000,0.000000 --3.0,-282.600000,0.000000,0.000000 --3.0,-281.700000,0.000000,0.000000 --3.0,-280.800000,0.000000,0.000000 --3.0,-279.900000,0.000000,0.000000 --3.0,-279.000000,0.000000,0.000000 --3.0,-278.100000,0.000000,0.000000 --3.0,-277.200000,0.000000,0.000000 --3.0,-276.300000,0.000000,0.000000 --3.0,-275.400000,0.000000,0.000000 --3.0,-274.500000,0.000000,0.000000 --3.0,-273.600000,0.000000,0.000000 --3.0,-272.700000,0.000000,0.000000 --3.0,-271.800000,0.000000,0.000000 --3.0,-270.900000,0.000000,0.000000 --3.0,-270.000000,0.000000,0.000000 --3.0,-269.100000,0.000000,0.000000 --3.0,-268.200000,0.000000,0.000000 --3.0,-267.300000,0.000000,0.000000 --3.0,-266.400000,0.000000,0.000000 --3.0,-265.500000,0.000000,0.000000 --3.0,-264.600000,0.000000,0.000000 --3.0,-263.700000,0.000000,0.000000 --3.0,-262.800000,0.000000,0.000000 --3.0,-261.900000,0.000000,0.000000 --3.0,-261.000000,0.000000,0.000000 --3.0,-260.100000,0.000000,0.000000 --3.0,-259.200000,0.000000,0.000000 --3.0,-258.300000,0.000000,0.000000 --3.0,-257.400000,0.000000,0.000000 --3.0,-256.500000,0.000000,0.000000 --3.0,-255.600000,0.000000,0.000000 --3.0,-254.700000,0.000000,0.000000 --3.0,-253.800000,0.000000,0.000000 --3.0,-252.900000,0.000000,0.000000 --3.0,-252.000000,0.000000,0.000000 --3.0,-251.100000,0.000000,0.000000 --3.0,-250.200000,0.000000,0.000000 --3.0,-249.300000,0.000000,0.000000 --3.0,-248.400000,0.000000,0.000000 --3.0,-247.500000,0.000000,0.000000 --3.0,-246.600000,0.000000,0.000000 --3.0,-245.700000,0.000000,0.000000 --3.0,-244.800000,0.000000,0.000000 --3.0,-243.900000,0.000000,0.000000 --3.0,-243.000000,0.000000,0.000000 --3.0,-242.100000,0.000000,0.000000 --3.0,-241.200000,0.000000,0.000000 --3.0,-240.300000,0.000000,0.000000 --3.0,-239.400000,0.000000,0.000000 --3.0,-238.500000,0.000000,0.000000 --3.0,-237.600000,0.000000,0.000000 --3.0,-236.700000,0.000000,0.000000 --3.0,-235.800000,0.000000,0.000000 --3.0,-234.900000,0.000000,0.000000 --3.0,-234.000000,0.000000,0.000000 --3.0,-233.100000,0.000000,0.000000 --3.0,-232.200000,0.000000,0.000000 --3.0,-231.300000,0.000000,0.000000 --3.0,-230.400000,0.000000,0.000000 --3.0,-229.500000,0.000000,0.000000 --3.0,-228.600000,0.000000,0.000000 --3.0,-227.700000,0.000000,0.000000 --3.0,-226.800000,0.000000,0.000000 --3.0,-225.900000,0.000000,0.000000 --3.0,-225.000000,0.000000,0.000000 --3.0,-224.100000,0.000000,0.000000 --3.0,-223.200000,0.000000,0.000000 --3.0,-222.300000,0.000000,0.000000 --3.0,-221.400000,0.000000,0.000000 --3.0,-220.500000,0.000000,0.000000 --3.0,-219.600000,0.000000,0.000000 --3.0,-218.700000,0.000000,0.000000 --3.0,-217.800000,0.000000,0.000000 --3.0,-216.900000,0.000000,0.000000 --3.0,-216.000000,0.000000,0.000000 --3.0,-215.100000,0.000000,0.000000 --3.0,-214.200000,0.000000,0.000000 --3.0,-213.300000,0.000000,0.000000 --3.0,-212.400000,0.000000,0.000000 --3.0,-211.500000,0.000000,0.000000 --3.0,-210.600000,0.000000,0.000000 --3.0,-209.700000,0.000000,0.000000 --3.0,-208.800000,0.000000,0.000000 --3.0,-207.900000,0.000000,0.000000 --3.0,-207.000000,0.000000,0.000000 --3.0,-206.100000,0.000000,0.000000 --3.0,-205.200000,0.000000,0.000000 --3.0,-204.300000,0.000000,0.000000 --3.0,-203.400000,0.000000,0.000000 --3.0,-202.500000,0.000000,0.000000 --3.0,-201.600000,0.000000,0.000000 --3.0,-200.700000,0.000000,0.000000 --3.0,-199.800000,0.000000,0.000000 --3.0,-198.900000,0.000000,0.000000 --3.0,-198.000000,0.000000,0.000000 --3.0,-197.100000,0.000000,0.000000 --3.0,-196.200000,0.000000,0.000000 --3.0,-195.300000,0.000000,0.000000 --3.0,-194.400000,0.000000,0.000000 --3.0,-193.500000,0.000000,0.000000 --3.0,-192.600000,0.000000,0.000000 --3.0,-191.700000,0.000000,0.000000 --3.0,-190.800000,0.000000,0.000000 --3.0,-189.900000,0.000000,0.000000 --3.0,-189.000000,0.000000,0.000000 --3.0,-188.100000,0.000000,0.000000 --3.0,-187.200000,0.000000,0.000000 --3.0,-186.300000,0.000000,0.000000 --3.0,-185.400000,0.000000,0.000000 --3.0,-184.500000,0.000000,0.000000 --3.0,-183.600000,0.000000,0.000000 --3.0,-182.700000,0.000000,0.000000 --3.0,-181.800000,0.000000,0.000000 --3.0,-180.900000,0.000000,0.000000 --3.0,-180.000000,0.000000,0.000000 --3.0,-179.100000,0.000000,0.000000 --3.0,-178.200000,0.000000,0.000000 --3.0,-177.300000,0.000000,0.000000 --3.0,-176.400000,0.000000,0.000000 --3.0,-175.500000,0.000000,0.000000 --3.0,-174.600000,0.000000,0.000000 --3.0,-173.700000,0.000000,0.000000 --3.0,-172.800000,0.000000,0.000000 --3.0,-171.900000,0.000000,0.000000 --3.0,-171.000000,0.000000,0.000000 --3.0,-170.100000,0.000000,0.000000 --3.0,-169.200000,0.000000,0.000000 --3.0,-168.300000,0.000000,0.000000 --3.0,-167.400000,0.000000,0.000000 --3.0,-166.500000,0.000000,0.000000 --3.0,-165.600000,0.000000,0.000000 --3.0,-164.700000,0.000000,0.000000 --3.0,-163.800000,0.000000,0.000000 --3.0,-162.900000,0.000000,0.000000 --3.0,-162.000000,0.000000,0.000000 --3.0,-161.100000,0.000000,0.000000 --3.0,-160.200000,0.000000,0.000000 --3.0,-159.300000,0.000000,0.000000 --3.0,-158.400000,0.000000,0.000000 --3.0,-157.500000,0.000000,0.000000 --3.0,-156.600000,0.000000,0.000000 --3.0,-155.700000,0.000000,0.000000 --3.0,-154.800000,0.000000,0.000000 --3.0,-153.900000,0.000000,0.000000 --3.0,-153.000000,0.000000,0.000000 --3.0,-152.100000,0.000000,0.000000 --3.0,-151.200000,0.000000,0.000000 --3.0,-150.300000,0.000000,0.000000 --3.0,-149.400000,0.000000,0.000000 --3.0,-148.500000,0.000000,0.000000 --3.0,-147.600000,0.000000,0.000000 --3.0,-146.700000,0.000000,0.000000 --3.0,-145.800000,0.000000,0.000000 --3.0,-144.900000,0.000000,0.000000 --3.0,-144.000000,0.000000,0.000000 --3.0,-143.100000,0.000000,0.000000 --3.0,-142.200000,0.000000,0.000000 --3.0,-141.300000,0.000000,0.000000 --3.0,-140.400000,0.000000,0.000000 --3.0,-139.500000,0.000000,0.000000 --3.0,-138.600000,0.000000,0.000000 --3.0,-137.700000,0.000000,0.000000 --3.0,-136.800000,0.000000,0.000000 --3.0,-135.900000,0.000000,0.000000 --3.0,-135.000000,0.000000,0.000000 --3.0,-134.100000,0.000000,0.000000 --3.0,-133.200000,0.000000,0.000000 --3.0,-132.300000,0.000000,0.000000 --3.0,-131.400000,0.000000,0.000000 --3.0,-130.500000,0.000000,0.000000 --3.0,-129.600000,0.000000,0.000000 --3.0,-128.700000,0.000000,0.000000 --3.0,-127.800000,0.000000,0.000000 --3.0,-126.900000,0.000000,0.000000 --3.0,-126.000000,0.000000,0.000000 --3.0,-125.100000,0.000000,0.000000 --3.0,-124.200000,0.000000,0.000000 --3.0,-123.300000,0.000000,0.000000 --3.0,-122.400000,0.000000,0.000000 --3.0,-121.500000,0.000000,0.000000 --3.0,-120.600000,0.000000,0.000000 --3.0,-119.700000,0.000000,0.000000 --3.0,-118.800000,0.000000,0.000000 --3.0,-117.900000,0.000000,0.000000 --3.0,-117.000000,0.000000,0.000000 --3.0,-116.100000,0.000000,0.000000 --3.0,-115.200000,0.000000,0.000000 --3.0,-114.300000,0.000000,0.000000 --3.0,-113.400000,0.000000,0.000000 --3.0,-112.500000,0.000000,0.000000 --3.0,-111.600000,0.000000,0.000000 --3.0,-110.700000,0.000000,0.000000 --3.0,-109.800000,0.000000,0.000000 --3.0,-108.900000,0.000000,0.000000 --3.0,-108.000000,0.000000,0.000000 --3.0,-107.100000,0.000000,0.000000 --3.0,-106.200000,0.000000,0.000000 --3.0,-105.300000,0.000000,0.000000 --3.0,-104.400000,0.000000,0.000000 --3.0,-103.500000,0.000000,0.000000 --3.0,-102.600000,0.000000,0.000000 --3.0,-101.700000,0.000000,0.000000 --3.0,-100.800000,0.000000,0.000000 --3.0,-99.900000,0.000000,0.000000 --3.0,-99.000000,0.000000,0.000000 --3.0,-98.100000,0.000000,0.000000 --3.0,-97.200000,0.000000,0.000000 --3.0,-96.300000,0.000000,0.000000 --3.0,-95.400000,0.000000,0.000000 --3.0,-94.500000,0.000000,0.000000 --3.0,-93.600000,0.000000,0.000000 --3.0,-92.700000,0.000000,0.000000 --3.0,-91.800000,0.000000,0.000000 --3.0,-90.900000,0.000000,0.000000 --3.0,-90.000000,0.000000,0.000000 --3.0,-89.100000,0.000000,0.000000 --3.0,-88.200000,0.000000,0.000000 --3.0,-87.300000,0.000000,0.000000 --3.0,-86.400000,0.000000,0.000000 --3.0,-85.500000,0.000000,0.000000 --3.0,-84.600000,0.000000,0.000000 --3.0,-83.700000,0.000000,0.000000 --3.0,-82.800000,0.000000,0.000000 --3.0,-81.900000,0.000000,0.000000 --3.0,-81.000000,0.000000,0.000000 --3.0,-80.100000,0.000000,0.000000 --3.0,-79.200000,0.000000,0.000000 --3.0,-78.300000,0.000000,0.000000 --3.0,-77.400000,0.000000,0.000000 --3.0,-76.500000,0.000000,0.000000 --3.0,-75.600000,0.000000,0.000000 --3.0,-74.700000,0.000000,0.000000 --3.0,-73.800000,0.000000,0.000000 --3.0,-72.900000,0.000000,0.000000 --3.0,-72.000000,0.000000,0.000000 --3.0,-71.100000,0.000000,0.000000 --3.0,-70.200000,0.000000,0.000000 --3.0,-69.300000,0.000000,0.000000 --3.0,-68.400000,0.000000,0.000000 --3.0,-67.500000,0.000000,0.000000 --3.0,-66.600000,0.000000,0.000000 --3.0,-65.700000,0.000000,0.000000 --3.0,-64.800000,0.000000,0.000000 --3.0,-63.900000,0.000000,0.000000 --3.0,-63.000000,0.000000,0.000000 --3.0,-62.100000,0.000000,0.000000 --3.0,-61.200000,0.000000,0.000000 --3.0,-60.300000,0.000000,0.000000 --3.0,-59.400000,0.000000,0.000000 --3.0,-58.500000,0.000000,0.000000 --3.0,-57.600000,0.000000,0.000000 --3.0,-56.700000,0.000000,0.000000 --3.0,-55.800000,0.000000,0.000000 --3.0,-54.900000,0.000000,0.000000 --3.0,-54.000000,0.000000,0.000000 --3.0,-53.100000,0.000000,0.000000 --3.0,-52.200000,0.000000,0.000000 --3.0,-51.300000,0.000000,0.000000 --3.0,-50.400000,0.000000,0.000000 --3.0,-49.500000,0.000000,0.000000 --3.0,-48.600000,0.000000,0.000000 --3.0,-47.700000,0.000000,0.000000 --3.0,-46.800000,0.000000,0.000000 --3.0,-45.900000,0.000000,0.000000 --3.0,-45.000000,0.000000,0.000000 --3.0,-44.100000,0.000000,0.000000 --3.0,-43.200000,0.000000,0.000000 --3.0,-42.300000,0.000000,0.000000 --3.0,-41.400000,0.000000,0.000000 --3.0,-40.500000,0.000000,0.000000 --3.0,-39.600000,0.000000,0.000000 --3.0,-38.700000,0.000000,0.000000 --3.0,-37.800000,0.000000,0.000000 --3.0,-36.900000,0.000000,0.000000 --3.0,-36.000000,0.000000,0.000000 --3.0,-35.100000,0.000000,0.000000 --3.0,-34.200000,0.000000,0.000000 --3.0,-33.300000,0.000000,0.000000 --3.0,-32.400000,0.000000,0.000000 --3.0,-31.500000,0.000000,0.000000 --3.0,-30.600000,0.000000,0.000000 --3.0,-29.700000,0.000000,0.000000 --3.0,-28.800000,0.000000,0.000000 --3.0,-27.900000,0.000000,0.000000 --3.0,-27.000000,0.000000,0.000000 --3.0,-26.100000,0.000000,0.000000 --3.0,-25.200000,0.000000,0.000000 --3.0,-24.300000,0.000000,0.000000 --3.0,-23.400000,0.000000,0.000000 --3.0,-22.500000,0.000000,0.000000 --3.0,-21.600000,0.000000,0.000000 --3.0,-20.700000,0.000000,0.000000 --3.0,-19.800000,0.000000,0.000000 --3.0,-18.900000,0.000000,0.000000 --3.0,-18.000000,0.000000,0.000000 --3.0,-17.100000,0.000000,0.000000 --3.0,-16.200000,0.000000,0.000000 --3.0,-15.300000,0.000000,0.000000 --3.0,-14.400000,0.000000,0.000000 --3.0,-13.500000,0.000000,0.000000 --3.0,-12.600000,0.000000,0.000000 --3.0,-11.700000,0.000000,0.000000 --3.0,-10.800000,0.000000,0.000000 --3.0,-9.900000,0.000000,0.000000 --3.0,-9.000000,0.000000,0.000000 --3.0,-8.100000,0.000000,0.000000 --3.0,-7.200000,0.000000,0.000000 --3.0,-6.300000,0.000000,0.000000 --3.0,-5.400000,0.000000,0.000000 --3.0,-4.500000,0.000000,0.000000 --3.0,-3.600000,0.000000,0.000000 --3.0,-2.700000,0.000000,0.000000 --3.0,-1.800000,0.000000,0.000000 --3.0,-0.900000,0.000000,0.000000 --3.0,0.000000,0.000000,0.000000 --3.0,0.900000,0.000000,0.000000 --3.0,1.800000,0.000000,0.000000 --3.0,2.700000,0.000000,0.000000 --3.0,3.600000,0.000000,0.000000 --3.0,4.500000,0.000000,0.000000 --3.0,5.400000,0.000000,0.000000 --3.0,6.300000,0.000000,0.000000 --3.0,7.200000,0.000000,0.000000 --3.0,8.100000,0.000000,0.000000 --3.0,9.000000,0.000000,0.000000 --3.0,9.900000,0.000000,0.000000 --3.0,10.800000,0.000000,0.000000 --3.0,11.700000,0.000000,0.000000 --3.0,12.600000,0.000000,0.000000 --3.0,13.500000,0.000000,0.000000 --3.0,14.400000,0.000000,0.000000 --3.0,15.300000,0.000000,0.000000 --3.0,16.200000,0.000000,0.000000 --3.0,17.100000,0.000000,0.000000 --3.0,18.000000,0.000000,0.000000 --3.0,18.900000,0.000000,0.000000 --3.0,19.800000,0.000000,0.000000 --3.0,20.700000,0.000000,0.000000 --3.0,21.600000,0.000000,0.000000 --3.0,22.500000,0.000000,0.000000 --3.0,23.400000,0.000000,0.000000 --3.0,24.300000,0.000000,0.000000 --3.0,25.200000,0.000000,0.000000 --3.0,26.100000,0.000000,0.000000 --3.0,27.000000,0.000000,0.000000 --3.0,27.900000,0.000000,0.000000 --3.0,28.800000,0.000000,0.000000 --3.0,29.700000,0.000000,0.000000 --3.0,30.600000,0.000000,0.000000 --3.0,31.500000,0.000000,0.000000 --3.0,32.400000,0.000000,0.000000 --3.0,33.300000,0.000000,0.000000 --3.0,34.200000,0.000000,0.000000 --3.0,35.100000,0.000000,0.000000 --3.0,36.000000,0.000000,0.000000 --3.0,36.900000,0.000000,0.000000 --3.0,37.800000,0.000000,0.000000 --3.0,38.700000,0.000000,0.000000 --3.0,39.600000,0.000000,0.000000 --3.0,40.500000,0.000000,0.000000 --3.0,41.400000,0.000000,0.000000 --3.0,42.300000,0.000000,0.000000 --3.0,43.200000,0.000000,0.000000 --3.0,44.100000,0.000000,0.000000 --3.0,45.000000,0.000000,0.000000 --3.0,45.900000,0.000000,0.000000 --3.0,46.800000,0.000000,0.000000 --3.0,47.700000,0.000000,0.000000 --3.0,48.600000,0.000000,0.000000 --3.0,49.500000,0.000000,0.000000 --3.0,50.400000,0.000000,0.000000 --3.0,51.300000,0.000000,0.000000 --3.0,52.200000,0.000000,0.000000 --3.0,53.100000,0.000000,0.000000 --3.0,54.000000,0.000000,0.000000 --3.0,54.900000,0.000000,0.000000 --3.0,55.800000,0.000000,0.000000 --3.0,56.700000,0.000000,0.000000 --3.0,57.600000,0.000000,0.000000 --3.0,58.500000,0.000000,0.000000 --3.0,59.400000,0.000000,0.000000 --3.0,60.300000,0.000000,0.000000 --3.0,61.200000,0.000000,0.000000 --3.0,62.100000,0.000000,0.000000 --3.0,63.000000,0.000000,0.000000 --3.0,63.900000,0.000000,0.000000 --3.0,64.800000,0.000000,0.000000 --3.0,65.700000,0.000000,0.000000 --3.0,66.600000,0.000000,0.000000 --3.0,67.500000,0.000000,0.000000 --3.0,68.400000,0.000000,0.000000 --3.0,69.300000,0.000000,0.000000 --3.0,70.200000,0.000000,0.000000 --3.0,71.100000,0.000000,0.000000 --3.0,72.000000,0.000000,0.000000 --3.0,72.900000,0.000000,0.000000 --3.0,73.800000,0.000000,0.000000 --3.0,74.700000,0.000000,0.000000 --3.0,75.600000,0.000000,0.000000 --3.0,76.500000,0.000000,0.000000 --3.0,77.400000,0.000000,0.000000 --3.0,78.300000,0.000000,0.000000 --3.0,79.200000,0.000000,0.000000 --3.0,80.100000,0.000000,0.000000 --3.0,81.000000,0.000000,0.000000 --3.0,81.900000,0.000000,0.000000 --3.0,82.800000,0.000000,0.000000 --3.0,83.700000,0.000000,0.000000 --3.0,84.600000,0.000000,0.000000 --3.0,85.500000,0.000000,0.000000 --3.0,86.400000,0.000000,0.000000 --3.0,87.300000,0.000000,0.000000 --3.0,88.200000,0.000000,0.000000 --3.0,89.100000,0.000000,0.000000 --3.0,90.000000,0.000000,0.000000 --3.0,90.900000,0.000000,0.000000 --3.0,91.800000,0.000000,0.000000 --3.0,92.700000,0.000000,0.000000 --3.0,93.600000,0.000000,0.000000 --3.0,94.500000,0.000000,0.000000 --3.0,95.400000,0.000000,0.000000 --3.0,96.300000,0.000000,0.000000 --3.0,97.200000,0.000000,0.000000 --3.0,98.100000,0.000000,0.000000 --3.0,99.000000,0.000000,0.000000 --3.0,99.900000,0.000000,0.000000 --3.0,100.800000,0.000000,0.000000 --3.0,101.700000,0.000000,0.000000 --3.0,102.600000,0.000000,0.000000 --3.0,103.500000,0.000000,0.000000 --3.0,104.400000,0.000000,0.000000 --3.0,105.300000,0.000000,0.000000 --3.0,106.200000,0.000000,0.000000 --3.0,107.100000,0.000000,0.000000 --3.0,108.000000,0.000000,0.000000 --3.0,108.900000,0.000000,0.000000 --3.0,109.800000,0.000000,0.000000 --3.0,110.700000,0.000000,0.000000 --3.0,111.600000,0.000000,0.000000 --3.0,112.500000,0.000000,0.000000 --3.0,113.400000,0.000000,0.000000 --3.0,114.300000,0.000000,0.000000 --3.0,115.200000,0.000000,0.000000 --3.0,116.100000,0.000000,0.000000 --3.0,117.000000,0.000000,0.000000 --3.0,117.900000,0.000000,0.000000 --3.0,118.800000,0.000000,0.000000 --3.0,119.700000,0.000000,0.000000 --3.0,120.600000,0.000000,0.000000 --3.0,121.500000,0.000000,0.000000 --3.0,122.400000,0.000000,0.000000 --3.0,123.300000,0.000000,0.000000 --3.0,124.200000,0.000000,0.000000 --3.0,125.100000,0.000000,0.000000 --3.0,126.000000,0.000000,0.000000 --3.0,126.900000,0.000000,0.000000 --3.0,127.800000,0.000000,0.000000 --3.0,128.700000,0.000000,0.000000 --3.0,129.600000,0.000000,0.000000 --3.0,130.500000,0.000000,0.000000 --3.0,131.400000,0.000000,0.000000 --3.0,132.300000,0.000000,0.000000 --3.0,133.200000,0.000000,0.000000 --3.0,134.100000,0.000000,0.000000 --3.0,135.000000,0.000000,0.000000 --3.0,135.900000,0.000000,0.000000 --3.0,136.800000,0.000000,0.000000 --3.0,137.700000,0.000000,0.000000 --3.0,138.600000,0.000000,0.000000 --3.0,139.500000,0.000000,0.000000 --3.0,140.400000,0.000000,0.000000 --3.0,141.300000,0.000000,0.000000 --3.0,142.200000,0.000000,0.000000 --3.0,143.100000,0.000000,0.000000 --3.0,144.000000,0.000000,0.000000 --3.0,144.900000,0.000000,0.000000 --3.0,145.800000,0.000000,0.000000 --3.0,146.700000,0.000000,0.000000 --3.0,147.600000,0.000000,0.000000 --3.0,148.500000,0.000000,0.000000 --3.0,149.400000,0.000000,0.000000 --3.0,150.300000,0.000000,0.000000 --3.0,151.200000,0.000000,0.000000 --3.0,152.100000,0.000000,0.000000 --3.0,153.000000,0.000000,0.000000 --3.0,153.900000,0.000000,0.000000 --3.0,154.800000,0.000000,0.000000 --3.0,155.700000,0.000000,0.000000 --3.0,156.600000,0.000000,0.000000 --3.0,157.500000,0.000000,0.000000 --3.0,158.400000,0.000000,0.000000 --3.0,159.300000,0.000000,0.000000 --3.0,160.200000,0.000000,0.000000 --3.0,161.100000,0.000000,0.000000 --3.0,162.000000,0.000000,0.000000 --3.0,162.900000,0.000000,0.000000 --3.0,163.800000,0.000000,0.000000 --3.0,164.700000,0.000000,0.000000 --3.0,165.600000,0.000000,0.000000 --3.0,166.500000,0.000000,0.000000 --3.0,167.400000,0.000000,0.000000 --3.0,168.300000,0.000000,0.000000 --3.0,169.200000,0.000000,0.000000 --3.0,170.100000,0.000000,0.000000 --3.0,171.000000,0.000000,0.000000 --3.0,171.900000,0.000000,0.000000 --3.0,172.800000,0.000000,0.000000 --3.0,173.700000,0.000000,0.000000 --3.0,174.600000,0.000000,0.000000 --3.0,175.500000,0.000000,0.000000 --3.0,176.400000,0.000000,0.000000 --3.0,177.300000,0.000000,0.000000 --3.0,178.200000,0.000000,0.000000 --3.0,179.100000,0.000000,0.000000 --3.0,180.000000,0.000000,0.000000 --3.0,180.900000,0.000000,0.000000 --3.0,181.800000,0.000000,0.000000 --3.0,182.700000,0.000000,0.000000 --3.0,183.600000,0.000000,0.000000 --3.0,184.500000,0.000000,0.000000 --3.0,185.400000,0.000000,0.000000 --3.0,186.300000,0.000000,0.000000 --3.0,187.200000,0.000000,0.000000 --3.0,188.100000,0.000000,0.000000 --3.0,189.000000,0.000000,0.000000 --3.0,189.900000,0.000000,0.000000 --3.0,190.800000,0.000000,0.000000 --3.0,191.700000,0.000000,0.000000 --3.0,192.600000,0.000000,0.000000 --3.0,193.500000,0.000000,0.000000 --3.0,194.400000,0.000000,0.000000 --3.0,195.300000,0.000000,0.000000 --3.0,196.200000,0.000000,0.000000 --3.0,197.100000,0.000000,0.000000 --3.0,198.000000,0.000000,0.000000 --3.0,198.900000,0.000000,0.000000 --3.0,199.800000,0.000000,0.000000 --3.0,200.700000,0.000000,0.000000 --3.0,201.600000,0.000000,0.000000 --3.0,202.500000,0.000000,0.000000 --3.0,203.400000,0.000000,0.000000 --3.0,204.300000,0.000000,0.000000 --3.0,205.200000,0.000000,0.000000 --3.0,206.100000,0.000000,0.000000 --3.0,207.000000,0.000000,0.000000 --3.0,207.900000,0.000000,0.000000 --3.0,208.800000,0.000000,0.000000 --3.0,209.700000,0.000000,0.000000 --3.0,210.600000,0.000000,0.000000 --3.0,211.500000,0.000000,0.000000 --3.0,212.400000,0.000000,0.000000 --3.0,213.300000,0.000000,0.000000 --3.0,214.200000,0.000000,0.000000 --3.0,215.100000,0.000000,0.000000 --3.0,216.000000,0.000000,0.000000 --3.0,216.900000,0.000000,0.000000 --3.0,217.800000,0.000000,0.000000 --3.0,218.700000,0.000000,0.000000 --3.0,219.600000,0.000000,0.000000 --3.0,220.500000,0.000000,0.000000 --3.0,221.400000,0.000000,0.000000 --3.0,222.300000,0.000000,0.000000 --3.0,223.200000,0.000000,0.000000 --3.0,224.100000,0.000000,0.000000 --3.0,225.000000,0.000000,0.000000 --3.0,225.900000,0.000000,0.000000 --3.0,226.800000,0.000000,0.000000 --3.0,227.700000,0.000000,0.000000 --3.0,228.600000,0.000000,0.000000 --3.0,229.500000,0.000000,0.000000 --3.0,230.400000,0.000000,0.000000 --3.0,231.300000,0.000000,0.000000 --3.0,232.200000,0.000000,0.000000 --3.0,233.100000,0.000000,0.000000 --3.0,234.000000,0.000000,0.000000 --3.0,234.900000,0.000000,0.000000 --3.0,235.800000,0.000000,0.000000 --3.0,236.700000,0.000000,0.000000 --3.0,237.600000,0.000000,0.000000 --3.0,238.500000,0.000000,0.000000 --3.0,239.400000,0.000000,0.000000 --3.0,240.300000,0.000000,0.000000 --3.0,241.200000,0.000000,0.000000 --3.0,242.100000,0.000000,0.000000 --3.0,243.000000,0.000000,0.000000 --3.0,243.900000,0.000000,0.000000 --3.0,244.800000,0.000000,0.000000 --3.0,245.700000,0.000000,0.000000 --3.0,246.600000,0.000000,0.000000 --3.0,247.500000,0.000000,0.000000 --3.0,248.400000,0.000000,0.000000 --3.0,249.300000,0.000000,0.000000 --3.0,250.200000,0.000000,0.000000 --3.0,251.100000,0.000000,0.000000 --3.0,252.000000,0.000000,0.000000 --3.0,252.900000,0.000000,0.000000 --3.0,253.800000,0.000000,0.000000 --3.0,254.700000,0.000000,0.000000 --3.0,255.600000,0.000000,0.000000 --3.0,256.500000,0.000000,0.000000 --3.0,257.400000,0.000000,0.000000 --3.0,258.300000,0.000000,0.000000 --3.0,259.200000,0.000000,0.000000 --3.0,260.100000,0.000000,0.000000 --3.0,261.000000,0.000000,0.000000 --3.0,261.900000,0.000000,0.000000 --3.0,262.800000,0.000000,0.000000 --3.0,263.700000,0.000000,0.000000 --3.0,264.600000,0.000000,0.000000 --3.0,265.500000,0.000000,0.000000 --3.0,266.400000,0.000000,0.000000 --3.0,267.300000,0.000000,0.000000 --3.0,268.200000,0.000000,0.000000 --3.0,269.100000,0.000000,0.000000 --3.0,270.000000,0.000000,0.000000 --3.0,270.900000,0.000000,0.000000 --3.0,271.800000,0.000000,0.000000 --3.0,272.700000,0.000000,0.000000 --3.0,273.600000,0.000000,0.000000 --3.0,274.500000,0.000000,0.000000 --3.0,275.400000,0.000000,0.000000 --3.0,276.300000,0.000000,0.000000 --3.0,277.200000,0.000000,0.000000 --3.0,278.100000,0.000000,0.000000 --3.0,279.000000,0.000000,0.000000 --3.0,279.900000,0.000000,0.000000 --3.0,280.800000,0.000000,0.000000 --3.0,281.700000,0.000000,0.000000 --3.0,282.600000,0.000000,0.000000 --3.0,283.500000,0.000000,0.000000 --3.0,284.400000,0.000000,0.000000 --3.0,285.300000,0.000000,0.000000 --3.0,286.200000,0.000000,0.000000 --3.0,287.100000,0.000000,0.000000 --3.0,288.000000,0.000000,0.000000 --3.0,288.900000,0.000000,0.000000 --3.0,289.800000,0.000000,0.000000 --3.0,290.700000,0.000000,0.000000 --3.0,291.600000,0.000000,0.000000 --3.0,292.500000,0.000000,0.000000 --3.0,293.400000,0.000000,0.000000 --3.0,294.300000,0.000000,0.000000 --3.0,295.200000,0.000000,0.000000 --3.0,296.100000,0.000000,0.000000 --3.0,297.000000,0.000000,0.000000 --3.0,297.900000,0.000000,0.000000 --3.0,298.800000,0.000000,0.000000 --3.0,299.700000,0.000000,0.000000 --3.0,300.600000,0.000000,0.000000 --3.0,301.500000,0.000000,0.000000 --3.0,302.400000,0.000000,0.000000 --3.0,303.300000,0.000000,0.000000 --3.0,304.200000,0.000000,0.000000 --3.0,305.100000,0.000000,0.000000 --3.0,306.000000,0.000000,0.000000 --3.0,306.900000,0.000000,0.000000 --3.0,307.800000,0.000000,0.000000 --3.0,308.700000,0.000000,0.000000 --3.0,309.600000,0.000000,0.000000 --3.0,310.500000,0.000000,0.000000 --3.0,311.400000,0.000000,0.000000 --3.0,312.300000,0.000000,0.000000 --3.0,313.200000,0.000000,0.000000 --3.0,314.100000,0.000000,0.000000 --3.0,315.000000,0.000000,0.000000 --3.0,315.900000,0.000000,0.000000 --3.0,316.800000,0.000000,0.000000 --3.0,317.700000,0.000000,0.000000 --3.0,318.600000,0.000000,0.000000 --3.0,319.500000,0.000000,0.000000 --3.0,320.400000,0.000000,0.000000 --3.0,321.300000,0.000000,0.000000 --3.0,322.200000,0.000000,0.000000 --3.0,323.100000,0.000000,0.000000 --3.0,324.000000,0.000000,0.000000 --3.0,324.900000,0.000000,0.000000 --3.0,325.800000,0.000000,0.000000 --3.0,326.700000,0.000000,0.000000 --3.0,327.600000,0.000000,0.000000 --3.0,328.500000,0.000000,0.000000 --3.0,329.400000,0.000000,0.000000 --3.0,330.300000,0.000000,0.000000 --3.0,331.200000,0.000000,0.000000 --3.0,332.100000,0.000000,0.000000 --3.0,333.000000,0.000000,0.000000 --3.0,333.900000,0.000000,0.000000 --3.0,334.800000,0.000000,0.000000 --3.0,335.700000,0.000000,0.000000 --3.0,336.600000,0.000000,0.000000 --3.0,337.500000,0.000000,0.000000 --3.0,338.400000,0.000000,0.000000 --3.0,339.300000,0.000000,0.000000 --3.0,340.200000,0.000000,0.000000 --3.0,341.100000,0.000000,0.000000 --3.0,342.000000,0.000000,0.000000 --3.0,342.900000,0.000000,0.000000 --3.0,343.800000,0.000000,0.000000 --3.0,344.700000,0.000000,0.000000 --3.0,345.600000,0.000000,0.000000 --3.0,346.500000,0.000000,0.000000 --3.0,347.400000,0.000000,0.000000 --3.0,348.300000,0.000000,0.000000 --3.0,349.200000,0.000000,0.000000 --3.0,350.100000,0.000000,0.000000 --3.0,351.000000,0.000000,0.000000 --3.0,351.900000,0.000000,0.000000 --3.0,352.800000,0.000000,0.000000 --3.0,353.700000,0.000000,0.000000 --3.0,354.600000,0.000000,0.000000 --3.0,355.500000,0.000000,0.000000 --3.0,356.400000,0.000000,0.000000 --3.0,357.300000,0.000000,0.000000 --3.0,358.200000,0.000000,0.000000 --3.0,359.100000,0.000000,0.000000 --3.0,0.000000,-360.000000,0.000000 --3.0,0.000000,-359.100000,0.000000 --3.0,0.000000,-358.200000,0.000000 --3.0,0.000000,-357.300000,0.000000 --3.0,0.000000,-356.400000,0.000000 --3.0,0.000000,-355.500000,0.000000 --3.0,0.000000,-354.600000,0.000000 --3.0,0.000000,-353.700000,0.000000 --3.0,0.000000,-352.800000,0.000000 --3.0,0.000000,-351.900000,0.000000 --3.0,0.000000,-351.000000,0.000000 --3.0,0.000000,-350.100000,0.000000 --3.0,0.000000,-349.200000,0.000000 --3.0,0.000000,-348.300000,0.000000 --3.0,0.000000,-347.400000,0.000000 --3.0,0.000000,-346.500000,0.000000 --3.0,0.000000,-345.600000,0.000000 --3.0,0.000000,-344.700000,0.000000 --3.0,0.000000,-343.800000,0.000000 --3.0,0.000000,-342.900000,0.000000 --3.0,0.000000,-342.000000,0.000000 --3.0,0.000000,-341.100000,0.000000 --3.0,0.000000,-340.200000,0.000000 --3.0,0.000000,-339.300000,0.000000 --3.0,0.000000,-338.400000,0.000000 --3.0,0.000000,-337.500000,0.000000 --3.0,0.000000,-336.600000,0.000000 --3.0,0.000000,-335.700000,0.000000 --3.0,0.000000,-334.800000,0.000000 --3.0,0.000000,-333.900000,0.000000 --3.0,0.000000,-333.000000,0.000000 --3.0,0.000000,-332.100000,0.000000 --3.0,0.000000,-331.200000,0.000000 --3.0,0.000000,-330.300000,0.000000 --3.0,0.000000,-329.400000,0.000000 --3.0,0.000000,-328.500000,0.000000 --3.0,0.000000,-327.600000,0.000000 --3.0,0.000000,-326.700000,0.000000 --3.0,0.000000,-325.800000,0.000000 --3.0,0.000000,-324.900000,0.000000 --3.0,0.000000,-324.000000,0.000000 --3.0,0.000000,-323.100000,0.000000 --3.0,0.000000,-322.200000,0.000000 --3.0,0.000000,-321.300000,0.000000 --3.0,0.000000,-320.400000,0.000000 --3.0,0.000000,-319.500000,0.000000 --3.0,0.000000,-318.600000,0.000000 --3.0,0.000000,-317.700000,0.000000 --3.0,0.000000,-316.800000,0.000000 --3.0,0.000000,-315.900000,0.000000 --3.0,0.000000,-315.000000,0.000000 --3.0,0.000000,-314.100000,0.000000 --3.0,0.000000,-313.200000,0.000000 --3.0,0.000000,-312.300000,0.000000 --3.0,0.000000,-311.400000,0.000000 --3.0,0.000000,-310.500000,0.000000 --3.0,0.000000,-309.600000,0.000000 --3.0,0.000000,-308.700000,0.000000 --3.0,0.000000,-307.800000,0.000000 --3.0,0.000000,-306.900000,0.000000 --3.0,0.000000,-306.000000,0.000000 --3.0,0.000000,-305.100000,0.000000 --3.0,0.000000,-304.200000,0.000000 --3.0,0.000000,-303.300000,0.000000 --3.0,0.000000,-302.400000,0.000000 --3.0,0.000000,-301.500000,0.000000 --3.0,0.000000,-300.600000,0.000000 --3.0,0.000000,-299.700000,0.000000 --3.0,0.000000,-298.800000,0.000000 --3.0,0.000000,-297.900000,0.000000 --3.0,0.000000,-297.000000,0.000000 --3.0,0.000000,-296.100000,0.000000 --3.0,0.000000,-295.200000,0.000000 --3.0,0.000000,-294.300000,0.000000 --3.0,0.000000,-293.400000,0.000000 --3.0,0.000000,-292.500000,0.000000 --3.0,0.000000,-291.600000,0.000000 --3.0,0.000000,-290.700000,0.000000 --3.0,0.000000,-289.800000,0.000000 --3.0,0.000000,-288.900000,0.000000 --3.0,0.000000,-288.000000,0.000000 --3.0,0.000000,-287.100000,0.000000 --3.0,0.000000,-286.200000,0.000000 --3.0,0.000000,-285.300000,0.000000 --3.0,0.000000,-284.400000,0.000000 --3.0,0.000000,-283.500000,0.000000 --3.0,0.000000,-282.600000,0.000000 --3.0,0.000000,-281.700000,0.000000 --3.0,0.000000,-280.800000,0.000000 --3.0,0.000000,-279.900000,0.000000 --3.0,0.000000,-279.000000,0.000000 --3.0,0.000000,-278.100000,0.000000 --3.0,0.000000,-277.200000,0.000000 --3.0,0.000000,-276.300000,0.000000 --3.0,0.000000,-275.400000,0.000000 --3.0,0.000000,-274.500000,0.000000 --3.0,0.000000,-273.600000,0.000000 --3.0,0.000000,-272.700000,0.000000 --3.0,0.000000,-271.800000,0.000000 --3.0,0.000000,-270.900000,0.000000 --3.0,0.000000,-270.000000,0.000000 --3.0,0.000000,-269.100000,0.000000 --3.0,0.000000,-268.200000,0.000000 --3.0,0.000000,-267.300000,0.000000 --3.0,0.000000,-266.400000,0.000000 --3.0,0.000000,-265.500000,0.000000 --3.0,0.000000,-264.600000,0.000000 --3.0,0.000000,-263.700000,0.000000 --3.0,0.000000,-262.800000,0.000000 --3.0,0.000000,-261.900000,0.000000 --3.0,0.000000,-261.000000,0.000000 --3.0,0.000000,-260.100000,0.000000 --3.0,0.000000,-259.200000,0.000000 --3.0,0.000000,-258.300000,0.000000 --3.0,0.000000,-257.400000,0.000000 --3.0,0.000000,-256.500000,0.000000 --3.0,0.000000,-255.600000,0.000000 --3.0,0.000000,-254.700000,0.000000 --3.0,0.000000,-253.800000,0.000000 --3.0,0.000000,-252.900000,0.000000 --3.0,0.000000,-252.000000,0.000000 --3.0,0.000000,-251.100000,0.000000 --3.0,0.000000,-250.200000,0.000000 --3.0,0.000000,-249.300000,0.000000 --3.0,0.000000,-248.400000,0.000000 --3.0,0.000000,-247.500000,0.000000 --3.0,0.000000,-246.600000,0.000000 --3.0,0.000000,-245.700000,0.000000 --3.0,0.000000,-244.800000,0.000000 --3.0,0.000000,-243.900000,0.000000 --3.0,0.000000,-243.000000,0.000000 --3.0,0.000000,-242.100000,0.000000 --3.0,0.000000,-241.200000,0.000000 --3.0,0.000000,-240.300000,0.000000 --3.0,0.000000,-239.400000,0.000000 --3.0,0.000000,-238.500000,0.000000 --3.0,0.000000,-237.600000,0.000000 --3.0,0.000000,-236.700000,0.000000 --3.0,0.000000,-235.800000,0.000000 --3.0,0.000000,-234.900000,0.000000 --3.0,0.000000,-234.000000,0.000000 --3.0,0.000000,-233.100000,0.000000 --3.0,0.000000,-232.200000,0.000000 --3.0,0.000000,-231.300000,0.000000 --3.0,0.000000,-230.400000,0.000000 --3.0,0.000000,-229.500000,0.000000 --3.0,0.000000,-228.600000,0.000000 --3.0,0.000000,-227.700000,0.000000 --3.0,0.000000,-226.800000,0.000000 --3.0,0.000000,-225.900000,0.000000 --3.0,0.000000,-225.000000,0.000000 --3.0,0.000000,-224.100000,0.000000 --3.0,0.000000,-223.200000,0.000000 --3.0,0.000000,-222.300000,0.000000 --3.0,0.000000,-221.400000,0.000000 --3.0,0.000000,-220.500000,0.000000 --3.0,0.000000,-219.600000,0.000000 --3.0,0.000000,-218.700000,0.000000 --3.0,0.000000,-217.800000,0.000000 --3.0,0.000000,-216.900000,0.000000 --3.0,0.000000,-216.000000,0.000000 --3.0,0.000000,-215.100000,0.000000 --3.0,0.000000,-214.200000,0.000000 --3.0,0.000000,-213.300000,0.000000 --3.0,0.000000,-212.400000,0.000000 --3.0,0.000000,-211.500000,0.000000 --3.0,0.000000,-210.600000,0.000000 --3.0,0.000000,-209.700000,0.000000 --3.0,0.000000,-208.800000,0.000000 --3.0,0.000000,-207.900000,0.000000 --3.0,0.000000,-207.000000,0.000000 --3.0,0.000000,-206.100000,0.000000 --3.0,0.000000,-205.200000,0.000000 --3.0,0.000000,-204.300000,0.000000 --3.0,0.000000,-203.400000,0.000000 --3.0,0.000000,-202.500000,0.000000 --3.0,0.000000,-201.600000,0.000000 --3.0,0.000000,-200.700000,0.000000 --3.0,0.000000,-199.800000,0.000000 --3.0,0.000000,-198.900000,0.000000 --3.0,0.000000,-198.000000,0.000000 --3.0,0.000000,-197.100000,0.000000 --3.0,0.000000,-196.200000,0.000000 --3.0,0.000000,-195.300000,0.000000 --3.0,0.000000,-194.400000,0.000000 --3.0,0.000000,-193.500000,0.000000 --3.0,0.000000,-192.600000,0.000000 --3.0,0.000000,-191.700000,0.000000 --3.0,0.000000,-190.800000,0.000000 --3.0,0.000000,-189.900000,0.000000 --3.0,0.000000,-189.000000,0.000000 --3.0,0.000000,-188.100000,0.000000 --3.0,0.000000,-187.200000,0.000000 --3.0,0.000000,-186.300000,0.000000 --3.0,0.000000,-185.400000,0.000000 --3.0,0.000000,-184.500000,0.000000 --3.0,0.000000,-183.600000,0.000000 --3.0,0.000000,-182.700000,0.000000 --3.0,0.000000,-181.800000,0.000000 --3.0,0.000000,-180.900000,0.000000 --3.0,0.000000,-180.000000,0.000000 --3.0,0.000000,-179.100000,0.000000 --3.0,0.000000,-178.200000,0.000000 --3.0,0.000000,-177.300000,0.000000 --3.0,0.000000,-176.400000,0.000000 --3.0,0.000000,-175.500000,0.000000 --3.0,0.000000,-174.600000,0.000000 --3.0,0.000000,-173.700000,0.000000 --3.0,0.000000,-172.800000,0.000000 --3.0,0.000000,-171.900000,0.000000 --3.0,0.000000,-171.000000,0.000000 --3.0,0.000000,-170.100000,0.000000 --3.0,0.000000,-169.200000,0.000000 --3.0,0.000000,-168.300000,0.000000 --3.0,0.000000,-167.400000,0.000000 --3.0,0.000000,-166.500000,0.000000 --3.0,0.000000,-165.600000,0.000000 --3.0,0.000000,-164.700000,0.000000 --3.0,0.000000,-163.800000,0.000000 --3.0,0.000000,-162.900000,0.000000 --3.0,0.000000,-162.000000,0.000000 --3.0,0.000000,-161.100000,0.000000 --3.0,0.000000,-160.200000,0.000000 --3.0,0.000000,-159.300000,0.000000 --3.0,0.000000,-158.400000,0.000000 --3.0,0.000000,-157.500000,0.000000 --3.0,0.000000,-156.600000,0.000000 --3.0,0.000000,-155.700000,0.000000 --3.0,0.000000,-154.800000,0.000000 --3.0,0.000000,-153.900000,0.000000 --3.0,0.000000,-153.000000,0.000000 --3.0,0.000000,-152.100000,0.000000 --3.0,0.000000,-151.200000,0.000000 --3.0,0.000000,-150.300000,0.000000 --3.0,0.000000,-149.400000,0.000000 --3.0,0.000000,-148.500000,0.000000 --3.0,0.000000,-147.600000,0.000000 --3.0,0.000000,-146.700000,0.000000 --3.0,0.000000,-145.800000,0.000000 --3.0,0.000000,-144.900000,0.000000 --3.0,0.000000,-144.000000,0.000000 --3.0,0.000000,-143.100000,0.000000 --3.0,0.000000,-142.200000,0.000000 --3.0,0.000000,-141.300000,0.000000 --3.0,0.000000,-140.400000,0.000000 --3.0,0.000000,-139.500000,0.000000 --3.0,0.000000,-138.600000,0.000000 --3.0,0.000000,-137.700000,0.000000 --3.0,0.000000,-136.800000,0.000000 --3.0,0.000000,-135.900000,0.000000 --3.0,0.000000,-135.000000,0.000000 --3.0,0.000000,-134.100000,0.000000 --3.0,0.000000,-133.200000,0.000000 --3.0,0.000000,-132.300000,0.000000 --3.0,0.000000,-131.400000,0.000000 --3.0,0.000000,-130.500000,0.000000 --3.0,0.000000,-129.600000,0.000000 --3.0,0.000000,-128.700000,0.000000 --3.0,0.000000,-127.800000,0.000000 --3.0,0.000000,-126.900000,0.000000 --3.0,0.000000,-126.000000,0.000000 --3.0,0.000000,-125.100000,0.000000 --3.0,0.000000,-124.200000,0.000000 --3.0,0.000000,-123.300000,0.000000 --3.0,0.000000,-122.400000,0.000000 --3.0,0.000000,-121.500000,0.000000 --3.0,0.000000,-120.600000,0.000000 --3.0,0.000000,-119.700000,0.000000 --3.0,0.000000,-118.800000,0.000000 --3.0,0.000000,-117.900000,0.000000 --3.0,0.000000,-117.000000,0.000000 --3.0,0.000000,-116.100000,0.000000 --3.0,0.000000,-115.200000,0.000000 --3.0,0.000000,-114.300000,0.000000 --3.0,0.000000,-113.400000,0.000000 --3.0,0.000000,-112.500000,0.000000 --3.0,0.000000,-111.600000,0.000000 --3.0,0.000000,-110.700000,0.000000 --3.0,0.000000,-109.800000,0.000000 --3.0,0.000000,-108.900000,0.000000 --3.0,0.000000,-108.000000,0.000000 --3.0,0.000000,-107.100000,0.000000 --3.0,0.000000,-106.200000,0.000000 --3.0,0.000000,-105.300000,0.000000 --3.0,0.000000,-104.400000,0.000000 --3.0,0.000000,-103.500000,0.000000 --3.0,0.000000,-102.600000,0.000000 --3.0,0.000000,-101.700000,0.000000 --3.0,0.000000,-100.800000,0.000000 --3.0,0.000000,-99.900000,0.000000 --3.0,0.000000,-99.000000,0.000000 --3.0,0.000000,-98.100000,0.000000 --3.0,0.000000,-97.200000,0.000000 --3.0,0.000000,-96.300000,0.000000 --3.0,0.000000,-95.400000,0.000000 --3.0,0.000000,-94.500000,0.000000 --3.0,0.000000,-93.600000,0.000000 --3.0,0.000000,-92.700000,0.000000 --3.0,0.000000,-91.800000,0.000000 --3.0,0.000000,-90.900000,0.000000 --3.0,0.000000,-90.000000,0.000000 --3.0,0.000000,-89.100000,0.000000 --3.0,0.000000,-88.200000,0.000000 --3.0,0.000000,-87.300000,0.000000 --3.0,0.000000,-86.400000,0.000000 --3.0,0.000000,-85.500000,0.000000 --3.0,0.000000,-84.600000,0.000000 --3.0,0.000000,-83.700000,0.000000 --3.0,0.000000,-82.800000,0.000000 --3.0,0.000000,-81.900000,0.000000 --3.0,0.000000,-81.000000,0.000000 --3.0,0.000000,-80.100000,0.000000 --3.0,0.000000,-79.200000,0.000000 --3.0,0.000000,-78.300000,0.000000 --3.0,0.000000,-77.400000,0.000000 --3.0,0.000000,-76.500000,0.000000 --3.0,0.000000,-75.600000,0.000000 --3.0,0.000000,-74.700000,0.000000 --3.0,0.000000,-73.800000,0.000000 --3.0,0.000000,-72.900000,0.000000 --3.0,0.000000,-72.000000,0.000000 --3.0,0.000000,-71.100000,0.000000 --3.0,0.000000,-70.200000,0.000000 --3.0,0.000000,-69.300000,0.000000 --3.0,0.000000,-68.400000,0.000000 --3.0,0.000000,-67.500000,0.000000 --3.0,0.000000,-66.600000,0.000000 --3.0,0.000000,-65.700000,0.000000 --3.0,0.000000,-64.800000,0.000000 --3.0,0.000000,-63.900000,0.000000 --3.0,0.000000,-63.000000,0.000000 --3.0,0.000000,-62.100000,0.000000 --3.0,0.000000,-61.200000,0.000000 --3.0,0.000000,-60.300000,0.000000 --3.0,0.000000,-59.400000,0.000000 --3.0,0.000000,-58.500000,0.000000 --3.0,0.000000,-57.600000,0.000000 --3.0,0.000000,-56.700000,0.000000 --3.0,0.000000,-55.800000,0.000000 --3.0,0.000000,-54.900000,0.000000 --3.0,0.000000,-54.000000,0.000000 --3.0,0.000000,-53.100000,0.000000 --3.0,0.000000,-52.200000,0.000000 --3.0,0.000000,-51.300000,0.000000 --3.0,0.000000,-50.400000,0.000000 --3.0,0.000000,-49.500000,0.000000 --3.0,0.000000,-48.600000,0.000000 --3.0,0.000000,-47.700000,0.000000 --3.0,0.000000,-46.800000,0.000000 --3.0,0.000000,-45.900000,0.000000 --3.0,0.000000,-45.000000,0.000000 --3.0,0.000000,-44.100000,0.000000 --3.0,0.000000,-43.200000,0.000000 --3.0,0.000000,-42.300000,0.000000 --3.0,0.000000,-41.400000,0.000000 --3.0,0.000000,-40.500000,0.000000 --3.0,0.000000,-39.600000,0.000000 --3.0,0.000000,-38.700000,0.000000 --3.0,0.000000,-37.800000,0.000000 --3.0,0.000000,-36.900000,0.000000 --3.0,0.000000,-36.000000,0.000000 --3.0,0.000000,-35.100000,0.000000 --3.0,0.000000,-34.200000,0.000000 --3.0,0.000000,-33.300000,0.000000 --3.0,0.000000,-32.400000,0.000000 --3.0,0.000000,-31.500000,0.000000 --3.0,0.000000,-30.600000,0.000000 --3.0,0.000000,-29.700000,0.000000 --3.0,0.000000,-28.800000,0.000000 --3.0,0.000000,-27.900000,0.000000 --3.0,0.000000,-27.000000,0.000000 --3.0,0.000000,-26.100000,0.000000 --3.0,0.000000,-25.200000,0.000000 --3.0,0.000000,-24.300000,0.000000 --3.0,0.000000,-23.400000,0.000000 --3.0,0.000000,-22.500000,0.000000 --3.0,0.000000,-21.600000,0.000000 --3.0,0.000000,-20.700000,0.000000 --3.0,0.000000,-19.800000,0.000000 --3.0,0.000000,-18.900000,0.000000 --3.0,0.000000,-18.000000,0.000000 --3.0,0.000000,-17.100000,0.000000 --3.0,0.000000,-16.200000,0.000000 --3.0,0.000000,-15.300000,0.000000 --3.0,0.000000,-14.400000,0.000000 --3.0,0.000000,-13.500000,0.000000 --3.0,0.000000,-12.600000,0.000000 --3.0,0.000000,-11.700000,0.000000 --3.0,0.000000,-10.800000,0.000000 --3.0,0.000000,-9.900000,0.000000 --3.0,0.000000,-9.000000,0.000000 --3.0,0.000000,-8.100000,0.000000 --3.0,0.000000,-7.200000,0.000000 --3.0,0.000000,-6.300000,0.000000 --3.0,0.000000,-5.400000,0.000000 --3.0,0.000000,-4.500000,0.000000 --3.0,0.000000,-3.600000,0.000000 --3.0,0.000000,-2.700000,0.000000 --3.0,0.000000,-1.800000,0.000000 --3.0,0.000000,-0.900000,0.000000 --3.0,0.000000,0.000000,0.000000 --3.0,0.000000,0.900000,0.000000 --3.0,0.000000,1.800000,0.000000 --3.0,0.000000,2.700000,0.000000 --3.0,0.000000,3.600000,0.000000 --3.0,0.000000,4.500000,0.000000 --3.0,0.000000,5.400000,0.000000 --3.0,0.000000,6.300000,0.000000 --3.0,0.000000,7.200000,0.000000 --3.0,0.000000,8.100000,0.000000 --3.0,0.000000,9.000000,0.000000 --3.0,0.000000,9.900000,0.000000 --3.0,0.000000,10.800000,0.000000 --3.0,0.000000,11.700000,0.000000 --3.0,0.000000,12.600000,0.000000 --3.0,0.000000,13.500000,0.000000 --3.0,0.000000,14.400000,0.000000 --3.0,0.000000,15.300000,0.000000 --3.0,0.000000,16.200000,0.000000 --3.0,0.000000,17.100000,0.000000 --3.0,0.000000,18.000000,0.000000 --3.0,0.000000,18.900000,0.000000 --3.0,0.000000,19.800000,0.000000 --3.0,0.000000,20.700000,0.000000 --3.0,0.000000,21.600000,0.000000 --3.0,0.000000,22.500000,0.000000 --3.0,0.000000,23.400000,0.000000 --3.0,0.000000,24.300000,0.000000 --3.0,0.000000,25.200000,0.000000 --3.0,0.000000,26.100000,0.000000 --3.0,0.000000,27.000000,0.000000 --3.0,0.000000,27.900000,0.000000 --3.0,0.000000,28.800000,0.000000 --3.0,0.000000,29.700000,0.000000 --3.0,0.000000,30.600000,0.000000 --3.0,0.000000,31.500000,0.000000 --3.0,0.000000,32.400000,0.000000 --3.0,0.000000,33.300000,0.000000 --3.0,0.000000,34.200000,0.000000 --3.0,0.000000,35.100000,0.000000 --3.0,0.000000,36.000000,0.000000 --3.0,0.000000,36.900000,0.000000 --3.0,0.000000,37.800000,0.000000 --3.0,0.000000,38.700000,0.000000 --3.0,0.000000,39.600000,0.000000 --3.0,0.000000,40.500000,0.000000 --3.0,0.000000,41.400000,0.000000 --3.0,0.000000,42.300000,0.000000 --3.0,0.000000,43.200000,0.000000 --3.0,0.000000,44.100000,0.000000 --3.0,0.000000,45.000000,0.000000 --3.0,0.000000,45.900000,0.000000 --3.0,0.000000,46.800000,0.000000 --3.0,0.000000,47.700000,0.000000 --3.0,0.000000,48.600000,0.000000 --3.0,0.000000,49.500000,0.000000 --3.0,0.000000,50.400000,0.000000 --3.0,0.000000,51.300000,0.000000 --3.0,0.000000,52.200000,0.000000 --3.0,0.000000,53.100000,0.000000 --3.0,0.000000,54.000000,0.000000 --3.0,0.000000,54.900000,0.000000 --3.0,0.000000,55.800000,0.000000 --3.0,0.000000,56.700000,0.000000 --3.0,0.000000,57.600000,0.000000 --3.0,0.000000,58.500000,0.000000 --3.0,0.000000,59.400000,0.000000 --3.0,0.000000,60.300000,0.000000 --3.0,0.000000,61.200000,0.000000 --3.0,0.000000,62.100000,0.000000 --3.0,0.000000,63.000000,0.000000 --3.0,0.000000,63.900000,0.000000 --3.0,0.000000,64.800000,0.000000 --3.0,0.000000,65.700000,0.000000 --3.0,0.000000,66.600000,0.000000 --3.0,0.000000,67.500000,0.000000 --3.0,0.000000,68.400000,0.000000 --3.0,0.000000,69.300000,0.000000 --3.0,0.000000,70.200000,0.000000 --3.0,0.000000,71.100000,0.000000 --3.0,0.000000,72.000000,0.000000 --3.0,0.000000,72.900000,0.000000 --3.0,0.000000,73.800000,0.000000 --3.0,0.000000,74.700000,0.000000 --3.0,0.000000,75.600000,0.000000 --3.0,0.000000,76.500000,0.000000 --3.0,0.000000,77.400000,0.000000 --3.0,0.000000,78.300000,0.000000 --3.0,0.000000,79.200000,0.000000 --3.0,0.000000,80.100000,0.000000 --3.0,0.000000,81.000000,0.000000 --3.0,0.000000,81.900000,0.000000 --3.0,0.000000,82.800000,0.000000 --3.0,0.000000,83.700000,0.000000 --3.0,0.000000,84.600000,0.000000 --3.0,0.000000,85.500000,0.000000 --3.0,0.000000,86.400000,0.000000 --3.0,0.000000,87.300000,0.000000 --3.0,0.000000,88.200000,0.000000 --3.0,0.000000,89.100000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.900000,0.000000 --3.0,0.000000,91.800000,0.000000 --3.0,0.000000,92.700000,0.000000 --3.0,0.000000,93.600000,0.000000 --3.0,0.000000,94.500000,0.000000 --3.0,0.000000,95.400000,0.000000 --3.0,0.000000,96.300000,0.000000 --3.0,0.000000,97.200000,0.000000 --3.0,0.000000,98.100000,0.000000 --3.0,0.000000,99.000000,0.000000 --3.0,0.000000,99.900000,0.000000 --3.0,0.000000,100.800000,0.000000 --3.0,0.000000,101.700000,0.000000 --3.0,0.000000,102.600000,0.000000 --3.0,0.000000,103.500000,0.000000 --3.0,0.000000,104.400000,0.000000 --3.0,0.000000,105.300000,0.000000 --3.0,0.000000,106.200000,0.000000 --3.0,0.000000,107.100000,0.000000 --3.0,0.000000,108.000000,0.000000 --3.0,0.000000,108.900000,0.000000 --3.0,0.000000,109.800000,0.000000 --3.0,0.000000,110.700000,0.000000 --3.0,0.000000,111.600000,0.000000 --3.0,0.000000,112.500000,0.000000 --3.0,0.000000,113.400000,0.000000 --3.0,0.000000,114.300000,0.000000 --3.0,0.000000,115.200000,0.000000 --3.0,0.000000,116.100000,0.000000 --3.0,0.000000,117.000000,0.000000 --3.0,0.000000,117.900000,0.000000 --3.0,0.000000,118.800000,0.000000 --3.0,0.000000,119.700000,0.000000 --3.0,0.000000,120.600000,0.000000 --3.0,0.000000,121.500000,0.000000 --3.0,0.000000,122.400000,0.000000 --3.0,0.000000,123.300000,0.000000 --3.0,0.000000,124.200000,0.000000 --3.0,0.000000,125.100000,0.000000 --3.0,0.000000,126.000000,0.000000 --3.0,0.000000,126.900000,0.000000 --3.0,0.000000,127.800000,0.000000 --3.0,0.000000,128.700000,0.000000 --3.0,0.000000,129.600000,0.000000 --3.0,0.000000,130.500000,0.000000 --3.0,0.000000,131.400000,0.000000 --3.0,0.000000,132.300000,0.000000 --3.0,0.000000,133.200000,0.000000 --3.0,0.000000,134.100000,0.000000 --3.0,0.000000,135.000000,0.000000 --3.0,0.000000,135.900000,0.000000 --3.0,0.000000,136.800000,0.000000 --3.0,0.000000,137.700000,0.000000 --3.0,0.000000,138.600000,0.000000 --3.0,0.000000,139.500000,0.000000 --3.0,0.000000,140.400000,0.000000 --3.0,0.000000,141.300000,0.000000 --3.0,0.000000,142.200000,0.000000 --3.0,0.000000,143.100000,0.000000 --3.0,0.000000,144.000000,0.000000 --3.0,0.000000,144.900000,0.000000 --3.0,0.000000,145.800000,0.000000 --3.0,0.000000,146.700000,0.000000 --3.0,0.000000,147.600000,0.000000 --3.0,0.000000,148.500000,0.000000 --3.0,0.000000,149.400000,0.000000 --3.0,0.000000,150.300000,0.000000 --3.0,0.000000,151.200000,0.000000 --3.0,0.000000,152.100000,0.000000 --3.0,0.000000,153.000000,0.000000 --3.0,0.000000,153.900000,0.000000 --3.0,0.000000,154.800000,0.000000 --3.0,0.000000,155.700000,0.000000 --3.0,0.000000,156.600000,0.000000 --3.0,0.000000,157.500000,0.000000 --3.0,0.000000,158.400000,0.000000 --3.0,0.000000,159.300000,0.000000 --3.0,0.000000,160.200000,0.000000 --3.0,0.000000,161.100000,0.000000 --3.0,0.000000,162.000000,0.000000 --3.0,0.000000,162.900000,0.000000 --3.0,0.000000,163.800000,0.000000 --3.0,0.000000,164.700000,0.000000 --3.0,0.000000,165.600000,0.000000 --3.0,0.000000,166.500000,0.000000 --3.0,0.000000,167.400000,0.000000 --3.0,0.000000,168.300000,0.000000 --3.0,0.000000,169.200000,0.000000 --3.0,0.000000,170.100000,0.000000 --3.0,0.000000,171.000000,0.000000 --3.0,0.000000,171.900000,0.000000 --3.0,0.000000,172.800000,0.000000 --3.0,0.000000,173.700000,0.000000 --3.0,0.000000,174.600000,0.000000 --3.0,0.000000,175.500000,0.000000 --3.0,0.000000,176.400000,0.000000 --3.0,0.000000,177.300000,0.000000 --3.0,0.000000,178.200000,0.000000 --3.0,0.000000,179.100000,0.000000 --3.0,0.000000,180.000000,0.000000 --3.0,0.000000,180.900000,0.000000 --3.0,0.000000,181.800000,0.000000 --3.0,0.000000,182.700000,0.000000 --3.0,0.000000,183.600000,0.000000 --3.0,0.000000,184.500000,0.000000 --3.0,0.000000,185.400000,0.000000 --3.0,0.000000,186.300000,0.000000 --3.0,0.000000,187.200000,0.000000 --3.0,0.000000,188.100000,0.000000 --3.0,0.000000,189.000000,0.000000 --3.0,0.000000,189.900000,0.000000 --3.0,0.000000,190.800000,0.000000 --3.0,0.000000,191.700000,0.000000 --3.0,0.000000,192.600000,0.000000 --3.0,0.000000,193.500000,0.000000 --3.0,0.000000,194.400000,0.000000 --3.0,0.000000,195.300000,0.000000 --3.0,0.000000,196.200000,0.000000 --3.0,0.000000,197.100000,0.000000 --3.0,0.000000,198.000000,0.000000 --3.0,0.000000,198.900000,0.000000 --3.0,0.000000,199.800000,0.000000 --3.0,0.000000,200.700000,0.000000 --3.0,0.000000,201.600000,0.000000 --3.0,0.000000,202.500000,0.000000 --3.0,0.000000,203.400000,0.000000 --3.0,0.000000,204.300000,0.000000 --3.0,0.000000,205.200000,0.000000 --3.0,0.000000,206.100000,0.000000 --3.0,0.000000,207.000000,0.000000 --3.0,0.000000,207.900000,0.000000 --3.0,0.000000,208.800000,0.000000 --3.0,0.000000,209.700000,0.000000 --3.0,0.000000,210.600000,0.000000 --3.0,0.000000,211.500000,0.000000 --3.0,0.000000,212.400000,0.000000 --3.0,0.000000,213.300000,0.000000 --3.0,0.000000,214.200000,0.000000 --3.0,0.000000,215.100000,0.000000 --3.0,0.000000,216.000000,0.000000 --3.0,0.000000,216.900000,0.000000 --3.0,0.000000,217.800000,0.000000 --3.0,0.000000,218.700000,0.000000 --3.0,0.000000,219.600000,0.000000 --3.0,0.000000,220.500000,0.000000 --3.0,0.000000,221.400000,0.000000 --3.0,0.000000,222.300000,0.000000 --3.0,0.000000,223.200000,0.000000 --3.0,0.000000,224.100000,0.000000 --3.0,0.000000,225.000000,0.000000 --3.0,0.000000,225.900000,0.000000 --3.0,0.000000,226.800000,0.000000 --3.0,0.000000,227.700000,0.000000 --3.0,0.000000,228.600000,0.000000 --3.0,0.000000,229.500000,0.000000 --3.0,0.000000,230.400000,0.000000 --3.0,0.000000,231.300000,0.000000 --3.0,0.000000,232.200000,0.000000 --3.0,0.000000,233.100000,0.000000 --3.0,0.000000,234.000000,0.000000 --3.0,0.000000,234.900000,0.000000 --3.0,0.000000,235.800000,0.000000 --3.0,0.000000,236.700000,0.000000 --3.0,0.000000,237.600000,0.000000 --3.0,0.000000,238.500000,0.000000 --3.0,0.000000,239.400000,0.000000 --3.0,0.000000,240.300000,0.000000 --3.0,0.000000,241.200000,0.000000 --3.0,0.000000,242.100000,0.000000 --3.0,0.000000,243.000000,0.000000 --3.0,0.000000,243.900000,0.000000 --3.0,0.000000,244.800000,0.000000 --3.0,0.000000,245.700000,0.000000 --3.0,0.000000,246.600000,0.000000 --3.0,0.000000,247.500000,0.000000 --3.0,0.000000,248.400000,0.000000 --3.0,0.000000,249.300000,0.000000 --3.0,0.000000,250.200000,0.000000 --3.0,0.000000,251.100000,0.000000 --3.0,0.000000,252.000000,0.000000 --3.0,0.000000,252.900000,0.000000 --3.0,0.000000,253.800000,0.000000 --3.0,0.000000,254.700000,0.000000 --3.0,0.000000,255.600000,0.000000 --3.0,0.000000,256.500000,0.000000 --3.0,0.000000,257.400000,0.000000 --3.0,0.000000,258.300000,0.000000 --3.0,0.000000,259.200000,0.000000 --3.0,0.000000,260.100000,0.000000 --3.0,0.000000,261.000000,0.000000 --3.0,0.000000,261.900000,0.000000 --3.0,0.000000,262.800000,0.000000 --3.0,0.000000,263.700000,0.000000 --3.0,0.000000,264.600000,0.000000 --3.0,0.000000,265.500000,0.000000 --3.0,0.000000,266.400000,0.000000 --3.0,0.000000,267.300000,0.000000 --3.0,0.000000,268.200000,0.000000 --3.0,0.000000,269.100000,0.000000 --3.0,0.000000,270.000000,0.000000 --3.0,0.000000,270.900000,0.000000 --3.0,0.000000,271.800000,0.000000 --3.0,0.000000,272.700000,0.000000 --3.0,0.000000,273.600000,0.000000 --3.0,0.000000,274.500000,0.000000 --3.0,0.000000,275.400000,0.000000 --3.0,0.000000,276.300000,0.000000 --3.0,0.000000,277.200000,0.000000 --3.0,0.000000,278.100000,0.000000 --3.0,0.000000,279.000000,0.000000 --3.0,0.000000,279.900000,0.000000 --3.0,0.000000,280.800000,0.000000 --3.0,0.000000,281.700000,0.000000 --3.0,0.000000,282.600000,0.000000 --3.0,0.000000,283.500000,0.000000 --3.0,0.000000,284.400000,0.000000 --3.0,0.000000,285.300000,0.000000 --3.0,0.000000,286.200000,0.000000 --3.0,0.000000,287.100000,0.000000 --3.0,0.000000,288.000000,0.000000 --3.0,0.000000,288.900000,0.000000 --3.0,0.000000,289.800000,0.000000 --3.0,0.000000,290.700000,0.000000 --3.0,0.000000,291.600000,0.000000 --3.0,0.000000,292.500000,0.000000 --3.0,0.000000,293.400000,0.000000 --3.0,0.000000,294.300000,0.000000 --3.0,0.000000,295.200000,0.000000 --3.0,0.000000,296.100000,0.000000 --3.0,0.000000,297.000000,0.000000 --3.0,0.000000,297.900000,0.000000 --3.0,0.000000,298.800000,0.000000 --3.0,0.000000,299.700000,0.000000 --3.0,0.000000,300.600000,0.000000 --3.0,0.000000,301.500000,0.000000 --3.0,0.000000,302.400000,0.000000 --3.0,0.000000,303.300000,0.000000 --3.0,0.000000,304.200000,0.000000 --3.0,0.000000,305.100000,0.000000 --3.0,0.000000,306.000000,0.000000 --3.0,0.000000,306.900000,0.000000 --3.0,0.000000,307.800000,0.000000 --3.0,0.000000,308.700000,0.000000 --3.0,0.000000,309.600000,0.000000 --3.0,0.000000,310.500000,0.000000 --3.0,0.000000,311.400000,0.000000 --3.0,0.000000,312.300000,0.000000 --3.0,0.000000,313.200000,0.000000 --3.0,0.000000,314.100000,0.000000 --3.0,0.000000,315.000000,0.000000 --3.0,0.000000,315.900000,0.000000 --3.0,0.000000,316.800000,0.000000 --3.0,0.000000,317.700000,0.000000 --3.0,0.000000,318.600000,0.000000 --3.0,0.000000,319.500000,0.000000 --3.0,0.000000,320.400000,0.000000 --3.0,0.000000,321.300000,0.000000 --3.0,0.000000,322.200000,0.000000 --3.0,0.000000,323.100000,0.000000 --3.0,0.000000,324.000000,0.000000 --3.0,0.000000,324.900000,0.000000 --3.0,0.000000,325.800000,0.000000 --3.0,0.000000,326.700000,0.000000 --3.0,0.000000,327.600000,0.000000 --3.0,0.000000,328.500000,0.000000 --3.0,0.000000,329.400000,0.000000 --3.0,0.000000,330.300000,0.000000 --3.0,0.000000,331.200000,0.000000 --3.0,0.000000,332.100000,0.000000 --3.0,0.000000,333.000000,0.000000 --3.0,0.000000,333.900000,0.000000 --3.0,0.000000,334.800000,0.000000 --3.0,0.000000,335.700000,0.000000 --3.0,0.000000,336.600000,0.000000 --3.0,0.000000,337.500000,0.000000 --3.0,0.000000,338.400000,0.000000 --3.0,0.000000,339.300000,0.000000 --3.0,0.000000,340.200000,0.000000 --3.0,0.000000,341.100000,0.000000 --3.0,0.000000,342.000000,0.000000 --3.0,0.000000,342.900000,0.000000 --3.0,0.000000,343.800000,0.000000 --3.0,0.000000,344.700000,0.000000 --3.0,0.000000,345.600000,0.000000 --3.0,0.000000,346.500000,0.000000 --3.0,0.000000,347.400000,0.000000 --3.0,0.000000,348.300000,0.000000 --3.0,0.000000,349.200000,0.000000 --3.0,0.000000,350.100000,0.000000 --3.0,0.000000,351.000000,0.000000 --3.0,0.000000,351.900000,0.000000 --3.0,0.000000,352.800000,0.000000 --3.0,0.000000,353.700000,0.000000 --3.0,0.000000,354.600000,0.000000 --3.0,0.000000,355.500000,0.000000 --3.0,0.000000,356.400000,0.000000 --3.0,0.000000,357.300000,0.000000 --3.0,0.000000,358.200000,0.000000 --3.0,0.000000,359.100000,0.000000 --3.0,90.000000,0.000000,-360.000000 --3.0,90.000000,0.000000,-359.100000 --3.0,90.000000,0.000000,-358.200000 --3.0,90.000000,0.000000,-357.300000 --3.0,90.000000,0.000000,-356.400000 --3.0,90.000000,0.000000,-355.500000 --3.0,90.000000,0.000000,-354.600000 --3.0,90.000000,0.000000,-353.700000 --3.0,90.000000,0.000000,-352.800000 --3.0,90.000000,0.000000,-351.900000 --3.0,90.000000,0.000000,-351.000000 --3.0,90.000000,0.000000,-350.100000 --3.0,90.000000,0.000000,-349.200000 --3.0,90.000000,0.000000,-348.300000 --3.0,90.000000,0.000000,-347.400000 --3.0,90.000000,0.000000,-346.500000 --3.0,90.000000,0.000000,-345.600000 --3.0,90.000000,0.000000,-344.700000 --3.0,90.000000,0.000000,-343.800000 --3.0,90.000000,0.000000,-342.900000 --3.0,90.000000,0.000000,-342.000000 --3.0,90.000000,0.000000,-341.100000 --3.0,90.000000,0.000000,-340.200000 --3.0,90.000000,0.000000,-339.300000 --3.0,90.000000,0.000000,-338.400000 --3.0,90.000000,0.000000,-337.500000 --3.0,90.000000,0.000000,-336.600000 --3.0,90.000000,0.000000,-335.700000 --3.0,90.000000,0.000000,-334.800000 --3.0,90.000000,0.000000,-333.900000 --3.0,90.000000,0.000000,-333.000000 --3.0,90.000000,0.000000,-332.100000 --3.0,90.000000,0.000000,-331.200000 --3.0,90.000000,0.000000,-330.300000 --3.0,90.000000,0.000000,-329.400000 --3.0,90.000000,0.000000,-328.500000 --3.0,90.000000,0.000000,-327.600000 --3.0,90.000000,0.000000,-326.700000 --3.0,90.000000,0.000000,-325.800000 --3.0,90.000000,0.000000,-324.900000 --3.0,90.000000,0.000000,-324.000000 --3.0,90.000000,0.000000,-323.100000 --3.0,90.000000,0.000000,-322.200000 --3.0,90.000000,0.000000,-321.300000 --3.0,90.000000,0.000000,-320.400000 --3.0,90.000000,0.000000,-319.500000 --3.0,90.000000,0.000000,-318.600000 --3.0,90.000000,0.000000,-317.700000 --3.0,90.000000,0.000000,-316.800000 --3.0,90.000000,0.000000,-315.900000 --3.0,90.000000,0.000000,-315.000000 --3.0,90.000000,0.000000,-314.100000 --3.0,90.000000,0.000000,-313.200000 --3.0,90.000000,0.000000,-312.300000 --3.0,90.000000,0.000000,-311.400000 --3.0,90.000000,0.000000,-310.500000 --3.0,90.000000,0.000000,-309.600000 --3.0,90.000000,0.000000,-308.700000 --3.0,90.000000,0.000000,-307.800000 --3.0,90.000000,0.000000,-306.900000 --3.0,90.000000,0.000000,-306.000000 --3.0,90.000000,0.000000,-305.100000 --3.0,90.000000,0.000000,-304.200000 --3.0,90.000000,0.000000,-303.300000 --3.0,90.000000,0.000000,-302.400000 --3.0,90.000000,0.000000,-301.500000 --3.0,90.000000,0.000000,-300.600000 --3.0,90.000000,0.000000,-299.700000 --3.0,90.000000,0.000000,-298.800000 --3.0,90.000000,0.000000,-297.900000 --3.0,90.000000,0.000000,-297.000000 --3.0,90.000000,0.000000,-296.100000 --3.0,90.000000,0.000000,-295.200000 --3.0,90.000000,0.000000,-294.300000 --3.0,90.000000,0.000000,-293.400000 --3.0,90.000000,0.000000,-292.500000 --3.0,90.000000,0.000000,-291.600000 --3.0,90.000000,0.000000,-290.700000 --3.0,90.000000,0.000000,-289.800000 --3.0,90.000000,0.000000,-288.900000 --3.0,90.000000,0.000000,-288.000000 --3.0,90.000000,0.000000,-287.100000 --3.0,90.000000,0.000000,-286.200000 --3.0,90.000000,0.000000,-285.300000 --3.0,90.000000,0.000000,-284.400000 --3.0,90.000000,0.000000,-283.500000 --3.0,90.000000,0.000000,-282.600000 --3.0,90.000000,0.000000,-281.700000 --3.0,90.000000,0.000000,-280.800000 --3.0,90.000000,0.000000,-279.900000 --3.0,90.000000,0.000000,-279.000000 --3.0,90.000000,0.000000,-278.100000 --3.0,90.000000,0.000000,-277.200000 --3.0,90.000000,0.000000,-276.300000 --3.0,90.000000,0.000000,-275.400000 --3.0,90.000000,0.000000,-274.500000 --3.0,90.000000,0.000000,-273.600000 --3.0,90.000000,0.000000,-272.700000 --3.0,90.000000,0.000000,-271.800000 --3.0,90.000000,0.000000,-270.900000 --3.0,90.000000,0.000000,-270.000000 --3.0,90.000000,0.000000,-269.100000 --3.0,90.000000,0.000000,-268.200000 --3.0,90.000000,0.000000,-267.300000 --3.0,90.000000,0.000000,-266.400000 --3.0,90.000000,0.000000,-265.500000 --3.0,90.000000,0.000000,-264.600000 --3.0,90.000000,0.000000,-263.700000 --3.0,90.000000,0.000000,-262.800000 --3.0,90.000000,0.000000,-261.900000 --3.0,90.000000,0.000000,-261.000000 --3.0,90.000000,0.000000,-260.100000 --3.0,90.000000,0.000000,-259.200000 --3.0,90.000000,0.000000,-258.300000 --3.0,90.000000,0.000000,-257.400000 --3.0,90.000000,0.000000,-256.500000 --3.0,90.000000,0.000000,-255.600000 --3.0,90.000000,0.000000,-254.700000 --3.0,90.000000,0.000000,-253.800000 --3.0,90.000000,0.000000,-252.900000 --3.0,90.000000,0.000000,-252.000000 --3.0,90.000000,0.000000,-251.100000 --3.0,90.000000,0.000000,-250.200000 --3.0,90.000000,0.000000,-249.300000 --3.0,90.000000,0.000000,-248.400000 --3.0,90.000000,0.000000,-247.500000 --3.0,90.000000,0.000000,-246.600000 --3.0,90.000000,0.000000,-245.700000 --3.0,90.000000,0.000000,-244.800000 --3.0,90.000000,0.000000,-243.900000 --3.0,90.000000,0.000000,-243.000000 --3.0,90.000000,0.000000,-242.100000 --3.0,90.000000,0.000000,-241.200000 --3.0,90.000000,0.000000,-240.300000 --3.0,90.000000,0.000000,-239.400000 --3.0,90.000000,0.000000,-238.500000 --3.0,90.000000,0.000000,-237.600000 --3.0,90.000000,0.000000,-236.700000 --3.0,90.000000,0.000000,-235.800000 --3.0,90.000000,0.000000,-234.900000 --3.0,90.000000,0.000000,-234.000000 --3.0,90.000000,0.000000,-233.100000 --3.0,90.000000,0.000000,-232.200000 --3.0,90.000000,0.000000,-231.300000 --3.0,90.000000,0.000000,-230.400000 --3.0,90.000000,0.000000,-229.500000 --3.0,90.000000,0.000000,-228.600000 --3.0,90.000000,0.000000,-227.700000 --3.0,90.000000,0.000000,-226.800000 --3.0,90.000000,0.000000,-225.900000 --3.0,90.000000,0.000000,-225.000000 --3.0,90.000000,0.000000,-224.100000 --3.0,90.000000,0.000000,-223.200000 --3.0,90.000000,0.000000,-222.300000 --3.0,90.000000,0.000000,-221.400000 --3.0,90.000000,0.000000,-220.500000 --3.0,90.000000,0.000000,-219.600000 --3.0,90.000000,0.000000,-218.700000 --3.0,90.000000,0.000000,-217.800000 --3.0,90.000000,0.000000,-216.900000 --3.0,90.000000,0.000000,-216.000000 --3.0,90.000000,0.000000,-215.100000 --3.0,90.000000,0.000000,-214.200000 --3.0,90.000000,0.000000,-213.300000 --3.0,90.000000,0.000000,-212.400000 --3.0,90.000000,0.000000,-211.500000 --3.0,90.000000,0.000000,-210.600000 --3.0,90.000000,0.000000,-209.700000 --3.0,90.000000,0.000000,-208.800000 --3.0,90.000000,0.000000,-207.900000 --3.0,90.000000,0.000000,-207.000000 --3.0,90.000000,0.000000,-206.100000 --3.0,90.000000,0.000000,-205.200000 --3.0,90.000000,0.000000,-204.300000 --3.0,90.000000,0.000000,-203.400000 --3.0,90.000000,0.000000,-202.500000 --3.0,90.000000,0.000000,-201.600000 --3.0,90.000000,0.000000,-200.700000 --3.0,90.000000,0.000000,-199.800000 --3.0,90.000000,0.000000,-198.900000 --3.0,90.000000,0.000000,-198.000000 --3.0,90.000000,0.000000,-197.100000 --3.0,90.000000,0.000000,-196.200000 --3.0,90.000000,0.000000,-195.300000 --3.0,90.000000,0.000000,-194.400000 --3.0,90.000000,0.000000,-193.500000 --3.0,90.000000,0.000000,-192.600000 --3.0,90.000000,0.000000,-191.700000 --3.0,90.000000,0.000000,-190.800000 --3.0,90.000000,0.000000,-189.900000 --3.0,90.000000,0.000000,-189.000000 --3.0,90.000000,0.000000,-188.100000 --3.0,90.000000,0.000000,-187.200000 --3.0,90.000000,0.000000,-186.300000 --3.0,90.000000,0.000000,-185.400000 --3.0,90.000000,0.000000,-184.500000 --3.0,90.000000,0.000000,-183.600000 --3.0,90.000000,0.000000,-182.700000 --3.0,90.000000,0.000000,-181.800000 --3.0,90.000000,0.000000,-180.900000 --3.0,90.000000,0.000000,-180.000000 --3.0,90.000000,0.000000,-179.100000 --3.0,90.000000,0.000000,-178.200000 --3.0,90.000000,0.000000,-177.300000 --3.0,90.000000,0.000000,-176.400000 --3.0,90.000000,0.000000,-175.500000 --3.0,90.000000,0.000000,-174.600000 --3.0,90.000000,0.000000,-173.700000 --3.0,90.000000,0.000000,-172.800000 --3.0,90.000000,0.000000,-171.900000 --3.0,90.000000,0.000000,-171.000000 --3.0,90.000000,0.000000,-170.100000 --3.0,90.000000,0.000000,-169.200000 --3.0,90.000000,0.000000,-168.300000 --3.0,90.000000,0.000000,-167.400000 --3.0,90.000000,0.000000,-166.500000 --3.0,90.000000,0.000000,-165.600000 --3.0,90.000000,0.000000,-164.700000 --3.0,90.000000,0.000000,-163.800000 --3.0,90.000000,0.000000,-162.900000 --3.0,90.000000,0.000000,-162.000000 --3.0,90.000000,0.000000,-161.100000 --3.0,90.000000,0.000000,-160.200000 --3.0,90.000000,0.000000,-159.300000 --3.0,90.000000,0.000000,-158.400000 --3.0,90.000000,0.000000,-157.500000 --3.0,90.000000,0.000000,-156.600000 --3.0,90.000000,0.000000,-155.700000 --3.0,90.000000,0.000000,-154.800000 --3.0,90.000000,0.000000,-153.900000 --3.0,90.000000,0.000000,-153.000000 --3.0,90.000000,0.000000,-152.100000 --3.0,90.000000,0.000000,-151.200000 --3.0,90.000000,0.000000,-150.300000 --3.0,90.000000,0.000000,-149.400000 --3.0,90.000000,0.000000,-148.500000 --3.0,90.000000,0.000000,-147.600000 --3.0,90.000000,0.000000,-146.700000 --3.0,90.000000,0.000000,-145.800000 --3.0,90.000000,0.000000,-144.900000 --3.0,90.000000,0.000000,-144.000000 --3.0,90.000000,0.000000,-143.100000 --3.0,90.000000,0.000000,-142.200000 --3.0,90.000000,0.000000,-141.300000 --3.0,90.000000,0.000000,-140.400000 --3.0,90.000000,0.000000,-139.500000 --3.0,90.000000,0.000000,-138.600000 --3.0,90.000000,0.000000,-137.700000 --3.0,90.000000,0.000000,-136.800000 --3.0,90.000000,0.000000,-135.900000 --3.0,90.000000,0.000000,-135.000000 --3.0,90.000000,0.000000,-134.100000 --3.0,90.000000,0.000000,-133.200000 --3.0,90.000000,0.000000,-132.300000 --3.0,90.000000,0.000000,-131.400000 --3.0,90.000000,0.000000,-130.500000 --3.0,90.000000,0.000000,-129.600000 --3.0,90.000000,0.000000,-128.700000 --3.0,90.000000,0.000000,-127.800000 --3.0,90.000000,0.000000,-126.900000 --3.0,90.000000,0.000000,-126.000000 --3.0,90.000000,0.000000,-125.100000 --3.0,90.000000,0.000000,-124.200000 --3.0,90.000000,0.000000,-123.300000 --3.0,90.000000,0.000000,-122.400000 --3.0,90.000000,0.000000,-121.500000 --3.0,90.000000,0.000000,-120.600000 --3.0,90.000000,0.000000,-119.700000 --3.0,90.000000,0.000000,-118.800000 --3.0,90.000000,0.000000,-117.900000 --3.0,90.000000,0.000000,-117.000000 --3.0,90.000000,0.000000,-116.100000 --3.0,90.000000,0.000000,-115.200000 --3.0,90.000000,0.000000,-114.300000 --3.0,90.000000,0.000000,-113.400000 --3.0,90.000000,0.000000,-112.500000 --3.0,90.000000,0.000000,-111.600000 --3.0,90.000000,0.000000,-110.700000 --3.0,90.000000,0.000000,-109.800000 --3.0,90.000000,0.000000,-108.900000 --3.0,90.000000,0.000000,-108.000000 --3.0,90.000000,0.000000,-107.100000 --3.0,90.000000,0.000000,-106.200000 --3.0,90.000000,0.000000,-105.300000 --3.0,90.000000,0.000000,-104.400000 --3.0,90.000000,0.000000,-103.500000 --3.0,90.000000,0.000000,-102.600000 --3.0,90.000000,0.000000,-101.700000 --3.0,90.000000,0.000000,-100.800000 --3.0,90.000000,0.000000,-99.900000 --3.0,90.000000,0.000000,-99.000000 --3.0,90.000000,0.000000,-98.100000 --3.0,90.000000,0.000000,-97.200000 --3.0,90.000000,0.000000,-96.300000 --3.0,90.000000,0.000000,-95.400000 --3.0,90.000000,0.000000,-94.500000 --3.0,90.000000,0.000000,-93.600000 --3.0,90.000000,0.000000,-92.700000 --3.0,90.000000,0.000000,-91.800000 --3.0,90.000000,0.000000,-90.900000 --3.0,90.000000,0.000000,-90.000000 --3.0,90.000000,0.000000,-89.100000 --3.0,90.000000,0.000000,-88.200000 --3.0,90.000000,0.000000,-87.300000 --3.0,90.000000,0.000000,-86.400000 --3.0,90.000000,0.000000,-85.500000 --3.0,90.000000,0.000000,-84.600000 --3.0,90.000000,0.000000,-83.700000 --3.0,90.000000,0.000000,-82.800000 --3.0,90.000000,0.000000,-81.900000 --3.0,90.000000,0.000000,-81.000000 --3.0,90.000000,0.000000,-80.100000 --3.0,90.000000,0.000000,-79.200000 --3.0,90.000000,0.000000,-78.300000 --3.0,90.000000,0.000000,-77.400000 --3.0,90.000000,0.000000,-76.500000 --3.0,90.000000,0.000000,-75.600000 --3.0,90.000000,0.000000,-74.700000 --3.0,90.000000,0.000000,-73.800000 --3.0,90.000000,0.000000,-72.900000 --3.0,90.000000,0.000000,-72.000000 --3.0,90.000000,0.000000,-71.100000 --3.0,90.000000,0.000000,-70.200000 --3.0,90.000000,0.000000,-69.300000 --3.0,90.000000,0.000000,-68.400000 --3.0,90.000000,0.000000,-67.500000 --3.0,90.000000,0.000000,-66.600000 --3.0,90.000000,0.000000,-65.700000 --3.0,90.000000,0.000000,-64.800000 --3.0,90.000000,0.000000,-63.900000 --3.0,90.000000,0.000000,-63.000000 --3.0,90.000000,0.000000,-62.100000 --3.0,90.000000,0.000000,-61.200000 --3.0,90.000000,0.000000,-60.300000 --3.0,90.000000,0.000000,-59.400000 --3.0,90.000000,0.000000,-58.500000 --3.0,90.000000,0.000000,-57.600000 --3.0,90.000000,0.000000,-56.700000 --3.0,90.000000,0.000000,-55.800000 --3.0,90.000000,0.000000,-54.900000 --3.0,90.000000,0.000000,-54.000000 --3.0,90.000000,0.000000,-53.100000 --3.0,90.000000,0.000000,-52.200000 --3.0,90.000000,0.000000,-51.300000 --3.0,90.000000,0.000000,-50.400000 --3.0,90.000000,0.000000,-49.500000 --3.0,90.000000,0.000000,-48.600000 --3.0,90.000000,0.000000,-47.700000 --3.0,90.000000,0.000000,-46.800000 --3.0,90.000000,0.000000,-45.900000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-44.100000 --3.0,90.000000,0.000000,-43.200000 --3.0,90.000000,0.000000,-42.300000 --3.0,90.000000,0.000000,-41.400000 --3.0,90.000000,0.000000,-40.500000 --3.0,90.000000,0.000000,-39.600000 --3.0,90.000000,0.000000,-38.700000 --3.0,90.000000,0.000000,-37.800000 --3.0,90.000000,0.000000,-36.900000 --3.0,90.000000,0.000000,-36.000000 --3.0,90.000000,0.000000,-35.100000 --3.0,90.000000,0.000000,-34.200000 --3.0,90.000000,0.000000,-33.300000 --3.0,90.000000,0.000000,-32.400000 --3.0,90.000000,0.000000,-31.500000 --3.0,90.000000,0.000000,-30.600000 --3.0,90.000000,0.000000,-29.700000 --3.0,90.000000,0.000000,-28.800000 --3.0,90.000000,0.000000,-27.900000 --3.0,90.000000,0.000000,-27.000000 --3.0,90.000000,0.000000,-26.100000 --3.0,90.000000,0.000000,-25.200000 --3.0,90.000000,0.000000,-24.300000 --3.0,90.000000,0.000000,-23.400000 --3.0,90.000000,0.000000,-22.500000 --3.0,90.000000,0.000000,-21.600000 --3.0,90.000000,0.000000,-20.700000 --3.0,90.000000,0.000000,-19.800000 --3.0,90.000000,0.000000,-18.900000 --3.0,90.000000,0.000000,-18.000000 --3.0,90.000000,0.000000,-17.100000 --3.0,90.000000,0.000000,-16.200000 --3.0,90.000000,0.000000,-15.300000 --3.0,90.000000,0.000000,-14.400000 --3.0,90.000000,0.000000,-13.500000 --3.0,90.000000,0.000000,-12.600000 --3.0,90.000000,0.000000,-11.700000 --3.0,90.000000,0.000000,-10.800000 --3.0,90.000000,0.000000,-9.900000 --3.0,90.000000,0.000000,-9.000000 --3.0,90.000000,0.000000,-8.100000 --3.0,90.000000,0.000000,-7.200000 --3.0,90.000000,0.000000,-6.300000 --3.0,90.000000,0.000000,-5.400000 --3.0,90.000000,0.000000,-4.500000 --3.0,90.000000,0.000000,-3.600000 --3.0,90.000000,0.000000,-2.700000 --3.0,90.000000,0.000000,-1.800000 --3.0,90.000000,0.000000,-0.900000 --3.0,90.000000,0.000000,0.000000 --3.0,90.000000,0.000000,0.900000 --3.0,90.000000,0.000000,1.800000 --3.0,90.000000,0.000000,2.700000 --3.0,90.000000,0.000000,3.600000 --3.0,90.000000,0.000000,4.500000 --3.0,90.000000,0.000000,5.400000 --3.0,90.000000,0.000000,6.300000 --3.0,90.000000,0.000000,7.200000 --3.0,90.000000,0.000000,8.100000 --3.0,90.000000,0.000000,9.000000 --3.0,90.000000,0.000000,9.900000 --3.0,90.000000,0.000000,10.800000 --3.0,90.000000,0.000000,11.700000 --3.0,90.000000,0.000000,12.600000 --3.0,90.000000,0.000000,13.500000 --3.0,90.000000,0.000000,14.400000 --3.0,90.000000,0.000000,15.300000 --3.0,90.000000,0.000000,16.200000 --3.0,90.000000,0.000000,17.100000 --3.0,90.000000,0.000000,18.000000 --3.0,90.000000,0.000000,18.900000 --3.0,90.000000,0.000000,19.800000 --3.0,90.000000,0.000000,20.700000 --3.0,90.000000,0.000000,21.600000 --3.0,90.000000,0.000000,22.500000 --3.0,90.000000,0.000000,23.400000 --3.0,90.000000,0.000000,24.300000 --3.0,90.000000,0.000000,25.200000 --3.0,90.000000,0.000000,26.100000 --3.0,90.000000,0.000000,27.000000 --3.0,90.000000,0.000000,27.900000 --3.0,90.000000,0.000000,28.800000 --3.0,90.000000,0.000000,29.700000 --3.0,90.000000,0.000000,30.600000 --3.0,90.000000,0.000000,31.500000 --3.0,90.000000,0.000000,32.400000 --3.0,90.000000,0.000000,33.300000 --3.0,90.000000,0.000000,34.200000 --3.0,90.000000,0.000000,35.100000 --3.0,90.000000,0.000000,36.000000 --3.0,90.000000,0.000000,36.900000 --3.0,90.000000,0.000000,37.800000 --3.0,90.000000,0.000000,38.700000 --3.0,90.000000,0.000000,39.600000 --3.0,90.000000,0.000000,40.500000 --3.0,90.000000,0.000000,41.400000 --3.0,90.000000,0.000000,42.300000 --3.0,90.000000,0.000000,43.200000 --3.0,90.000000,0.000000,44.100000 --3.0,90.000000,0.000000,45.000000 --3.0,90.000000,0.000000,45.900000 --3.0,90.000000,0.000000,46.800000 --3.0,90.000000,0.000000,47.700000 --3.0,90.000000,0.000000,48.600000 --3.0,90.000000,0.000000,49.500000 --3.0,90.000000,0.000000,50.400000 --3.0,90.000000,0.000000,51.300000 --3.0,90.000000,0.000000,52.200000 --3.0,90.000000,0.000000,53.100000 --3.0,90.000000,0.000000,54.000000 --3.0,90.000000,0.000000,54.900000 --3.0,90.000000,0.000000,55.800000 --3.0,90.000000,0.000000,56.700000 --3.0,90.000000,0.000000,57.600000 --3.0,90.000000,0.000000,58.500000 --3.0,90.000000,0.000000,59.400000 --3.0,90.000000,0.000000,60.300000 --3.0,90.000000,0.000000,61.200000 --3.0,90.000000,0.000000,62.100000 --3.0,90.000000,0.000000,63.000000 --3.0,90.000000,0.000000,63.900000 --3.0,90.000000,0.000000,64.800000 --3.0,90.000000,0.000000,65.700000 --3.0,90.000000,0.000000,66.600000 --3.0,90.000000,0.000000,67.500000 --3.0,90.000000,0.000000,68.400000 --3.0,90.000000,0.000000,69.300000 --3.0,90.000000,0.000000,70.200000 --3.0,90.000000,0.000000,71.100000 --3.0,90.000000,0.000000,72.000000 --3.0,90.000000,0.000000,72.900000 --3.0,90.000000,0.000000,73.800000 --3.0,90.000000,0.000000,74.700000 --3.0,90.000000,0.000000,75.600000 --3.0,90.000000,0.000000,76.500000 --3.0,90.000000,0.000000,77.400000 --3.0,90.000000,0.000000,78.300000 --3.0,90.000000,0.000000,79.200000 --3.0,90.000000,0.000000,80.100000 --3.0,90.000000,0.000000,81.000000 --3.0,90.000000,0.000000,81.900000 --3.0,90.000000,0.000000,82.800000 --3.0,90.000000,0.000000,83.700000 --3.0,90.000000,0.000000,84.600000 --3.0,90.000000,0.000000,85.500000 --3.0,90.000000,0.000000,86.400000 --3.0,90.000000,0.000000,87.300000 --3.0,90.000000,0.000000,88.200000 --3.0,90.000000,0.000000,89.100000 --3.0,90.000000,0.000000,90.000000 --3.0,90.000000,0.000000,90.900000 --3.0,90.000000,0.000000,91.800000 --3.0,90.000000,0.000000,92.700000 --3.0,90.000000,0.000000,93.600000 --3.0,90.000000,0.000000,94.500000 --3.0,90.000000,0.000000,95.400000 --3.0,90.000000,0.000000,96.300000 --3.0,90.000000,0.000000,97.200000 --3.0,90.000000,0.000000,98.100000 --3.0,90.000000,0.000000,99.000000 --3.0,90.000000,0.000000,99.900000 --3.0,90.000000,0.000000,100.800000 --3.0,90.000000,0.000000,101.700000 --3.0,90.000000,0.000000,102.600000 --3.0,90.000000,0.000000,103.500000 --3.0,90.000000,0.000000,104.400000 --3.0,90.000000,0.000000,105.300000 --3.0,90.000000,0.000000,106.200000 --3.0,90.000000,0.000000,107.100000 --3.0,90.000000,0.000000,108.000000 --3.0,90.000000,0.000000,108.900000 --3.0,90.000000,0.000000,109.800000 --3.0,90.000000,0.000000,110.700000 --3.0,90.000000,0.000000,111.600000 --3.0,90.000000,0.000000,112.500000 --3.0,90.000000,0.000000,113.400000 --3.0,90.000000,0.000000,114.300000 --3.0,90.000000,0.000000,115.200000 --3.0,90.000000,0.000000,116.100000 --3.0,90.000000,0.000000,117.000000 --3.0,90.000000,0.000000,117.900000 --3.0,90.000000,0.000000,118.800000 --3.0,90.000000,0.000000,119.700000 --3.0,90.000000,0.000000,120.600000 --3.0,90.000000,0.000000,121.500000 --3.0,90.000000,0.000000,122.400000 --3.0,90.000000,0.000000,123.300000 --3.0,90.000000,0.000000,124.200000 --3.0,90.000000,0.000000,125.100000 --3.0,90.000000,0.000000,126.000000 --3.0,90.000000,0.000000,126.900000 --3.0,90.000000,0.000000,127.800000 --3.0,90.000000,0.000000,128.700000 --3.0,90.000000,0.000000,129.600000 --3.0,90.000000,0.000000,130.500000 --3.0,90.000000,0.000000,131.400000 --3.0,90.000000,0.000000,132.300000 --3.0,90.000000,0.000000,133.200000 --3.0,90.000000,0.000000,134.100000 --3.0,90.000000,0.000000,135.000000 --3.0,90.000000,0.000000,135.900000 --3.0,90.000000,0.000000,136.800000 --3.0,90.000000,0.000000,137.700000 --3.0,90.000000,0.000000,138.600000 --3.0,90.000000,0.000000,139.500000 --3.0,90.000000,0.000000,140.400000 --3.0,90.000000,0.000000,141.300000 --3.0,90.000000,0.000000,142.200000 --3.0,90.000000,0.000000,143.100000 --3.0,90.000000,0.000000,144.000000 --3.0,90.000000,0.000000,144.900000 --3.0,90.000000,0.000000,145.800000 --3.0,90.000000,0.000000,146.700000 --3.0,90.000000,0.000000,147.600000 --3.0,90.000000,0.000000,148.500000 --3.0,90.000000,0.000000,149.400000 --3.0,90.000000,0.000000,150.300000 --3.0,90.000000,0.000000,151.200000 --3.0,90.000000,0.000000,152.100000 --3.0,90.000000,0.000000,153.000000 --3.0,90.000000,0.000000,153.900000 --3.0,90.000000,0.000000,154.800000 --3.0,90.000000,0.000000,155.700000 --3.0,90.000000,0.000000,156.600000 --3.0,90.000000,0.000000,157.500000 --3.0,90.000000,0.000000,158.400000 --3.0,90.000000,0.000000,159.300000 --3.0,90.000000,0.000000,160.200000 --3.0,90.000000,0.000000,161.100000 --3.0,90.000000,0.000000,162.000000 --3.0,90.000000,0.000000,162.900000 --3.0,90.000000,0.000000,163.800000 --3.0,90.000000,0.000000,164.700000 --3.0,90.000000,0.000000,165.600000 --3.0,90.000000,0.000000,166.500000 --3.0,90.000000,0.000000,167.400000 --3.0,90.000000,0.000000,168.300000 --3.0,90.000000,0.000000,169.200000 --3.0,90.000000,0.000000,170.100000 --3.0,90.000000,0.000000,171.000000 --3.0,90.000000,0.000000,171.900000 --3.0,90.000000,0.000000,172.800000 --3.0,90.000000,0.000000,173.700000 --3.0,90.000000,0.000000,174.600000 --3.0,90.000000,0.000000,175.500000 --3.0,90.000000,0.000000,176.400000 --3.0,90.000000,0.000000,177.300000 --3.0,90.000000,0.000000,178.200000 --3.0,90.000000,0.000000,179.100000 --3.0,90.000000,0.000000,180.000000 --3.0,90.000000,0.000000,180.900000 --3.0,90.000000,0.000000,181.800000 --3.0,90.000000,0.000000,182.700000 --3.0,90.000000,0.000000,183.600000 --3.0,90.000000,0.000000,184.500000 --3.0,90.000000,0.000000,185.400000 --3.0,90.000000,0.000000,186.300000 --3.0,90.000000,0.000000,187.200000 --3.0,90.000000,0.000000,188.100000 --3.0,90.000000,0.000000,189.000000 --3.0,90.000000,0.000000,189.900000 --3.0,90.000000,0.000000,190.800000 --3.0,90.000000,0.000000,191.700000 --3.0,90.000000,0.000000,192.600000 --3.0,90.000000,0.000000,193.500000 --3.0,90.000000,0.000000,194.400000 --3.0,90.000000,0.000000,195.300000 --3.0,90.000000,0.000000,196.200000 --3.0,90.000000,0.000000,197.100000 --3.0,90.000000,0.000000,198.000000 --3.0,90.000000,0.000000,198.900000 --3.0,90.000000,0.000000,199.800000 --3.0,90.000000,0.000000,200.700000 --3.0,90.000000,0.000000,201.600000 --3.0,90.000000,0.000000,202.500000 --3.0,90.000000,0.000000,203.400000 --3.0,90.000000,0.000000,204.300000 --3.0,90.000000,0.000000,205.200000 --3.0,90.000000,0.000000,206.100000 --3.0,90.000000,0.000000,207.000000 --3.0,90.000000,0.000000,207.900000 --3.0,90.000000,0.000000,208.800000 --3.0,90.000000,0.000000,209.700000 --3.0,90.000000,0.000000,210.600000 --3.0,90.000000,0.000000,211.500000 --3.0,90.000000,0.000000,212.400000 --3.0,90.000000,0.000000,213.300000 --3.0,90.000000,0.000000,214.200000 --3.0,90.000000,0.000000,215.100000 --3.0,90.000000,0.000000,216.000000 --3.0,90.000000,0.000000,216.900000 --3.0,90.000000,0.000000,217.800000 --3.0,90.000000,0.000000,218.700000 --3.0,90.000000,0.000000,219.600000 --3.0,90.000000,0.000000,220.500000 --3.0,90.000000,0.000000,221.400000 --3.0,90.000000,0.000000,222.300000 --3.0,90.000000,0.000000,223.200000 --3.0,90.000000,0.000000,224.100000 --3.0,90.000000,0.000000,225.000000 --3.0,90.000000,0.000000,225.900000 --3.0,90.000000,0.000000,226.800000 --3.0,90.000000,0.000000,227.700000 --3.0,90.000000,0.000000,228.600000 --3.0,90.000000,0.000000,229.500000 --3.0,90.000000,0.000000,230.400000 --3.0,90.000000,0.000000,231.300000 --3.0,90.000000,0.000000,232.200000 --3.0,90.000000,0.000000,233.100000 --3.0,90.000000,0.000000,234.000000 --3.0,90.000000,0.000000,234.900000 --3.0,90.000000,0.000000,235.800000 --3.0,90.000000,0.000000,236.700000 --3.0,90.000000,0.000000,237.600000 --3.0,90.000000,0.000000,238.500000 --3.0,90.000000,0.000000,239.400000 --3.0,90.000000,0.000000,240.300000 --3.0,90.000000,0.000000,241.200000 --3.0,90.000000,0.000000,242.100000 --3.0,90.000000,0.000000,243.000000 --3.0,90.000000,0.000000,243.900000 --3.0,90.000000,0.000000,244.800000 --3.0,90.000000,0.000000,245.700000 --3.0,90.000000,0.000000,246.600000 --3.0,90.000000,0.000000,247.500000 --3.0,90.000000,0.000000,248.400000 --3.0,90.000000,0.000000,249.300000 --3.0,90.000000,0.000000,250.200000 --3.0,90.000000,0.000000,251.100000 --3.0,90.000000,0.000000,252.000000 --3.0,90.000000,0.000000,252.900000 --3.0,90.000000,0.000000,253.800000 --3.0,90.000000,0.000000,254.700000 --3.0,90.000000,0.000000,255.600000 --3.0,90.000000,0.000000,256.500000 --3.0,90.000000,0.000000,257.400000 --3.0,90.000000,0.000000,258.300000 --3.0,90.000000,0.000000,259.200000 --3.0,90.000000,0.000000,260.100000 --3.0,90.000000,0.000000,261.000000 --3.0,90.000000,0.000000,261.900000 --3.0,90.000000,0.000000,262.800000 --3.0,90.000000,0.000000,263.700000 --3.0,90.000000,0.000000,264.600000 --3.0,90.000000,0.000000,265.500000 --3.0,90.000000,0.000000,266.400000 --3.0,90.000000,0.000000,267.300000 --3.0,90.000000,0.000000,268.200000 --3.0,90.000000,0.000000,269.100000 --3.0,90.000000,0.000000,270.000000 --3.0,90.000000,0.000000,270.900000 --3.0,90.000000,0.000000,271.800000 --3.0,90.000000,0.000000,272.700000 --3.0,90.000000,0.000000,273.600000 --3.0,90.000000,0.000000,274.500000 --3.0,90.000000,0.000000,275.400000 --3.0,90.000000,0.000000,276.300000 --3.0,90.000000,0.000000,277.200000 --3.0,90.000000,0.000000,278.100000 --3.0,90.000000,0.000000,279.000000 --3.0,90.000000,0.000000,279.900000 --3.0,90.000000,0.000000,280.800000 --3.0,90.000000,0.000000,281.700000 --3.0,90.000000,0.000000,282.600000 --3.0,90.000000,0.000000,283.500000 --3.0,90.000000,0.000000,284.400000 --3.0,90.000000,0.000000,285.300000 --3.0,90.000000,0.000000,286.200000 --3.0,90.000000,0.000000,287.100000 --3.0,90.000000,0.000000,288.000000 --3.0,90.000000,0.000000,288.900000 --3.0,90.000000,0.000000,289.800000 --3.0,90.000000,0.000000,290.700000 --3.0,90.000000,0.000000,291.600000 --3.0,90.000000,0.000000,292.500000 --3.0,90.000000,0.000000,293.400000 --3.0,90.000000,0.000000,294.300000 --3.0,90.000000,0.000000,295.200000 --3.0,90.000000,0.000000,296.100000 --3.0,90.000000,0.000000,297.000000 --3.0,90.000000,0.000000,297.900000 --3.0,90.000000,0.000000,298.800000 --3.0,90.000000,0.000000,299.700000 --3.0,90.000000,0.000000,300.600000 --3.0,90.000000,0.000000,301.500000 --3.0,90.000000,0.000000,302.400000 --3.0,90.000000,0.000000,303.300000 --3.0,90.000000,0.000000,304.200000 --3.0,90.000000,0.000000,305.100000 --3.0,90.000000,0.000000,306.000000 --3.0,90.000000,0.000000,306.900000 --3.0,90.000000,0.000000,307.800000 --3.0,90.000000,0.000000,308.700000 --3.0,90.000000,0.000000,309.600000 --3.0,90.000000,0.000000,310.500000 --3.0,90.000000,0.000000,311.400000 --3.0,90.000000,0.000000,312.300000 --3.0,90.000000,0.000000,313.200000 --3.0,90.000000,0.000000,314.100000 --3.0,90.000000,0.000000,315.000000 --3.0,90.000000,0.000000,315.900000 --3.0,90.000000,0.000000,316.800000 --3.0,90.000000,0.000000,317.700000 --3.0,90.000000,0.000000,318.600000 --3.0,90.000000,0.000000,319.500000 --3.0,90.000000,0.000000,320.400000 --3.0,90.000000,0.000000,321.300000 --3.0,90.000000,0.000000,322.200000 --3.0,90.000000,0.000000,323.100000 --3.0,90.000000,0.000000,324.000000 --3.0,90.000000,0.000000,324.900000 --3.0,90.000000,0.000000,325.800000 --3.0,90.000000,0.000000,326.700000 --3.0,90.000000,0.000000,327.600000 --3.0,90.000000,0.000000,328.500000 --3.0,90.000000,0.000000,329.400000 --3.0,90.000000,0.000000,330.300000 --3.0,90.000000,0.000000,331.200000 --3.0,90.000000,0.000000,332.100000 --3.0,90.000000,0.000000,333.000000 --3.0,90.000000,0.000000,333.900000 --3.0,90.000000,0.000000,334.800000 --3.0,90.000000,0.000000,335.700000 --3.0,90.000000,0.000000,336.600000 --3.0,90.000000,0.000000,337.500000 --3.0,90.000000,0.000000,338.400000 --3.0,90.000000,0.000000,339.300000 --3.0,90.000000,0.000000,340.200000 --3.0,90.000000,0.000000,341.100000 --3.0,90.000000,0.000000,342.000000 --3.0,90.000000,0.000000,342.900000 --3.0,90.000000,0.000000,343.800000 --3.0,90.000000,0.000000,344.700000 --3.0,90.000000,0.000000,345.600000 --3.0,90.000000,0.000000,346.500000 --3.0,90.000000,0.000000,347.400000 --3.0,90.000000,0.000000,348.300000 --3.0,90.000000,0.000000,349.200000 --3.0,90.000000,0.000000,350.100000 --3.0,90.000000,0.000000,351.000000 --3.0,90.000000,0.000000,351.900000 --3.0,90.000000,0.000000,352.800000 --3.0,90.000000,0.000000,353.700000 --3.0,90.000000,0.000000,354.600000 --3.0,90.000000,0.000000,355.500000 --3.0,90.000000,0.000000,356.400000 --3.0,90.000000,0.000000,357.300000 --3.0,90.000000,0.000000,358.200000 --3.0,90.000000,0.000000,359.100000 - diff --git a/scripts/trajectories/rotate_yaw_pitch_roll2.csv b/scripts/trajectories/rotate_yaw_pitch_roll2.csv deleted file mode 100644 index c3675950ba935219536d5f622e1e9466da409cab..0000000000000000000000000000000000000000 --- a/scripts/trajectories/rotate_yaw_pitch_roll2.csv +++ /dev/null @@ -1,2401 +0,0 @@ --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.00000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.0000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.0000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,-90.00000,0.000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.0000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.000000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,90.00000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.0000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,0.000000,-90.00000,0.000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.00000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,45.0000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 --3.0,90.000000,0.000000,-45.000000 - diff --git a/scripts/ubsan.supp b/scripts/ubsan.supp deleted file mode 100644 index c1602085d2fc8036d0b083fbfed56f21e9a30ebe..0000000000000000000000000000000000000000 --- a/scripts/ubsan.supp +++ /dev/null @@ -1,40 +0,0 @@ -# From self_test.py -alignment:hrtf_file_reader.c -bounds:dec_acelp.c -bounds:enc_acelp.c -bounds:enc_gain.c -bounds:trans_direct.c -bounds:trans_inv.c -implicit-integer-sign-change:ACcontextMapping.c -implicit-integer-sign-change:avq_dec.c -implicit-integer-sign-change:bitstream.c -implicit-integer-sign-change:cod4t64.c -implicit-integer-sign-change:dec_prm.c -implicit-integer-sign-change:dec4t64.c -implicit-integer-sign-change:enc_acelp.c -implicit-integer-sign-change:enc_prm.c -implicit-integer-sign-change:enh40.c -implicit-integer-sign-change:inov_dec.c -implicit-integer-sign-change:inov_enc.c -implicit-integer-sign-change:jbm_jb4sb.c -implicit-integer-sign-change:jbm_pcmdsp_apa.c -implicit-integer-sign-change:cod4t64_fast.c -implicit-integer-sign-change:range_enc.c -implicit-integer-sign-change:tcq_position_arith.c -implicit-integer-sign-change:tonalMDCTconcealment.c -implicit-signed-integer-truncation:ACcontextMapping_dec.c -implicit-signed-integer-truncation:ACcontextMapping_enc.c -implicit-signed-integer-truncation:cng_dec.c -implicit-signed-integer-truncation:cod_tcx.c -implicit-signed-integer-truncation:dec_tcx.c -implicit-signed-integer-truncation:hdecnrm.c -implicit-signed-integer-truncation:lib_dec.c -implicit-signed-integer-truncation:longarith.c -implicit-signed-integer-truncation:tcq_position_arith.c -implicit-signed-integer-truncation:tools.c -shift-base:basop32.c -shift-base:enh40.c -shift-base:enh40.h -shift-base:enh1632.c -shift-base:hq_lr_dec.c -signed-integer-overflow:basop32.c